🔎
HTTPX Snippets 实用指南
一份注重实操的 HTTPX 指南:涵盖同步与异步请求、请求头、参数、JSON、重试机制、超时、文件上传以及 FastAPI 集成。
httpx
web-development
Tutorial Progress
Step 1 of 11
1 Introduction to HTTPX
HTTPX is the modern HTTP client for Python. It preserves the familiar requests API while giving you HTTP/2, async support, and connection pooling out of the box. If you know requests, you already know most of HTTPX—just add “sync or async?” to your mental checklist.
- Sync and async with the same mental model
- Modern protocols: HTTP/2 when available
- Great defaults: connection pooling, timeouts, retries
Click “Next” to install HTTPX and send your first request.