Chủ Nhật, 20 tháng 7, 2025

🌐 BÀI 14: XỬ LÝ JSON VÀ API TRONG PYTHON – ĐỌC, GHI, TRÍCH XUẤT DỮ LIỆU HIỆN ĐẠI

📦 1. Làm việc với JSON

Ví dụ 1: Đọc chuỗi JSON thành dict

python
import json json_str = '{"name": "Minh", "age": 30}' data = json.loads(json_str) print(data["name"]) # Output: Minh

Ví dụ 2: Ghi dict thành chuỗi JSON

python
person = {"name": "An", "age": 25} json_text = json.dumps(person, indent=4) print(json_text)

Ví dụ 3: Đọc file JSON

Tạo file data.json:

json
{ "students": [ {"name": "Minh", "score": 9.0}, {"name": "Linh", "score": 7.5}, {"name": "An", "score": 8.2} ] }

Sau đó:

python
import json with open("data.json", "r") as f: data = json.load(f) for student in data["students"]: print(f"{student['name']} - {student['score']}")

Ví dụ 4: Ghi dict ra file JSON

python
import json person = {"name": "Linh", "city": "Hanoi"} with open("output.json", "w") as f: json.dump(person, f, indent=4)

🌐 2. Làm việc với API bằng requests

⚠️ Cài thư viện nếu chưa có:

bash
pip install requests

Ví dụ 5: Gửi GET request (nhận JSON)

python
import requests res = requests.get("https://jsonplaceholder.typicode.com/users/1") if res.status_code == 200: data = res.json() print("Tên người dùng:", data["name"])

Ví dụ 6: Gửi POST request (đưa dữ liệu JSON)

python
import requests payload = {"title": "Hello", "body": "World", "userId": 1} res = requests.post("https://jsonplaceholder.typicode.com/posts", json=payload) print("Mã trạng thái:", res.status_code) print("ID được tạo:", res.json()["id"])

🧪 3. Bài tập + Lời giải


✅ Bài 1: Đọc file sinhvien.json, in tên SV có điểm > 8

File: sinhvien.json

json
{ "students": [ {"name": "Minh", "score": 9.0}, {"name": "Linh", "score": 7.5}, {"name": "An", "score": 8.2} ] }

Script:

python
import json with open("sinhvien.json", "r") as f: data = json.load(f) for sv in data["students"]: if sv["score"] > 8: print(sv["name"])

✅ Bài 2: Gửi GET đến jsonplaceholder.typicode.com/posts, in tiêu đề

python
import requests res = requests.get("https://jsonplaceholder.typicode.com/posts") posts = res.json() for post in posts[:5]: # in 5 bài đầu print(f"- {post['title']}")

✅ Bài 3: Nhập dữ liệu từ bàn phím và lưu thành JSON

python
import json name = input("Tên: ") age = int(input("Tuổi: ")) info = {"name": name, "age": age} with open("nguoidung.json", "w") as f: json.dump(info, f, indent=4) print("Đã lưu vào nguoidung.json")

✅ Bài 4: Gửi POST request tạo user

python
import requests payload = { "name": "Minh", "email": "minh@example.com", "phone": "0901234567" } res = requests.post("https://jsonplaceholder.typicode.com/users", json=payload) print(res.status_code) print(res.json())

✅ Bài 5: Tải danh sách sản phẩm và tính tổng giá

(⚠️ Bạn cần 1 API giả lập có danh sách sản phẩm, đây là ví dụ nếu bạn có dữ liệu như:)

python
products = [ {"name": "Laptop", "price": 1200}, {"name": "Phone", "price": 800}, {"name": "Mouse", "price": 50} ] total = sum(p["price"] for p in products) print("Tổng giá:", total)

✅ 4. Kết luận

  • json: xử lý dữ liệu dạng cấu trúc – lưu trữ, phân tích, chia sẻ

  • requests: giúp gọi API để lấy/gửi dữ liệu (RESTful)

  • Biết dùng json + requests = bước đầu làm chủ web API, backend, data crawling, automation

=============================
Website không chứa bất kỳ quảng cáo nào, mọi đóng góp để duy trì phát triển cho website (donation) xin vui lòng gửi về STK 90.2142.8888 - Ngân hàng Vietcombank Thăng Long - TRAN VAN BINH
=============================
Nếu bạn không muốn bị AI thay thế và tiết kiệm 3-5 NĂM trên con đường trở thành DBA chuyên nghiệp hay làm chủ Database thì hãy đăng ký ngay KHOÁ HỌC ORACLE DATABASE A-Z ENTERPRISE, được Coaching trực tiếp từ tôi với toàn bộ bí kíp thực chiến, thủ tục, quy trình của gần 20 năm kinh nghiệm (mà bạn sẽ KHÔNG THỂ tìm kiếm trên Internet/Google) từ đó giúp bạn dễ dàng quản trị mọi hệ thống Core tại Việt Nam và trên thế giới, đỗ OCP.
- CÁCH ĐĂNG KÝ: Gõ (.) hoặc để lại số điện thoại hoặc inbox https://m.me/tranvanbinh.vn hoặc Hotline/Zalo 090.29.12.888
- Chi tiết tham khảo:
https://bit.ly/oaz_w
=============================
2 khóa học online qua video giúp bạn nhanh chóng có những kiến thức nền tảng về Linux, Oracle, học mọi nơi, chỉ cần có Internet/4G:
- Oracle cơ bản: https://bit.ly/admin_1200
- Linux: https://bit.ly/linux_1200
=============================
KẾT NỐI VỚI CHUYÊN GIA TRẦN VĂN BÌNH:
📧 Mail: binhoracle@gmail.com
☎️ Mobile/Zalo: 0902912888
👨 Facebook: https://www.facebook.com/BinhOracleMaster
👨 Inbox Messenger: https://m.me/101036604657441 (profile)
👨 Fanpage: https://www.facebook.com/tranvanbinh.vn
👨 Inbox Fanpage: https://m.me/tranvanbinh.vn
👨👩 Group FB: https://www.facebook.com/groups/DBAVietNam
👨 Website: https://www.tranvanbinh.vn
👨 Blogger: https://tranvanbinhmaster.blogspot.com
🎬 Youtube: https://www.youtube.com/@binhguru
👨 Tiktok: https://www.tiktok.com/@binhguru
👨 Linkin: https://www.linkedin.com/in/binhoracle
👨 Twitter: https://twitter.com/binhguru
👨 Podcast: https://www.podbean.com/pu/pbblog-eskre-5f82d6
👨 Địa chỉ: Tòa nhà Sun Square - 21 Lê Đức Thọ - Phường Mỹ Đình 1 - Quận Nam Từ Liêm - TP.Hà Nội

=============================
AI, trí tuệ nhân tạo, artificial intelligence, machine learning, deep learning, LLM, ChatGPT, DeepSeek, Grok, oracle tutorial, học oracle database, Tự học Oracle, Tài liệu Oracle 12c tiếng Việt, Hướng dẫn sử dụng Oracle Database, Oracle SQL cơ bản, Oracle SQL là gì, Khóa học Oracle Hà Nội, Học chứng chỉ Oracle ở đầu, Khóa học Oracle online,sql tutorial, khóa học pl/sql tutorial, học dba, học dba ở việt nam, khóa học dba, khóa học dba sql, tài liệu học dba oracle, Khóa học Oracle online, học oracle sql, học oracle ở đâu tphcm, học oracle bắt đầu từ đâu, học oracle ở hà nội, oracle database tutorial, oracle database 12c, oracle database là gì, oracle database 11g, oracle download, oracle database 19c, oracle dba tutorial, oracle tunning, sql tunning , oracle 12c, oracle multitenant, Container Databases (CDB), Pluggable Databases (PDB), oracle cloud, oracle security, oracle fga, audit_trail,oracle RAC, ASM, oracle dataguard, oracle goldengate, mview, oracle exadata, oracle oca, oracle ocp, oracle ocm , oracle weblogic, postgresql tutorial, mysql tutorial, mariadb tutorial, ms sql server tutorial, nosql, mongodb tutorial, oci, cloud, middleware tutorial, hoc solaris tutorial, hoc linux tutorial, hoc aix tutorial, unix tutorial, securecrt, xshell, mobaxterm, putty

ĐỌC NHIỀU

Trần Văn Bình - Oracle Database Master