Migrating to HTTPX2
- Programming
- Open Source
- Developer Tools
- AI
OpenAI’s note explains how to move its Python client onto `httpx2`, a fork of the popular `httpx` HTTP client that keeps the existing API instead of following the breaking path planned for `httpx` 1.0. The guide also calls out one real behavior change: TLS trust now comes from the operating system trust store instead of `certifi`, which removes a common pain point for companies with internal certificate authorities but can still break some managed corporate environments.
If your Python stack depends on `httpx`, treat this as a supply-chain signal, not just an SDK footnote. Audit whether you are pinned to the original project, and expect more teams to prefer forks with boring governance and API stability over upstream purity.
-
github.com
- Discuss on HN