Add httpx to pip registry#101
Conversation
|
moshest
left a comment
There was a problem hiding this comment.
Looks good. Clean, minimal addition that matches the existing pip registry conventions.
Verified against the repo and existing entries:
- Format — mirrors the other pip entries (
django,flask,pydantic,fastapi): same keys, same structure,lang: en. tag_pattern: "{version}"— correct.git ls-remote --tags encode/httpxshows bare version tags (0.25.0,0.28.1, …), novprefix, unlike pydantic which usesv{version}.min_version: "0.25.0"— exists as a real tag, and stable releases run through0.28.1.docs_path: docs— confirmed thedocs/directory at tag0.28.1contains the markdown docs (index.md,quickstart.md,api.md,advanced/, etc.).- No duplicate — httpx isn't already in
registry/pip/.
One non-blocking note: CI is still pending (no checks have reported yet) — worth confirming it goes green before merge, but nothing in the diff suggests a problem.
Generated by Claude Code
Summary
Adds httpx — a next-generation HTTP client for Python — to the pip registry.
httpx is a widely-used, stable library (30M+ monthly downloads) that provides both synchronous and asynchronous HTTP client functionality. Its documentation lives in the
docs/directory of the main repository.Changes
registry/pip/httpx.yamlmin_version: "0.25.0"(stable API, docs indocs/)tag_pattern: "{version}"(httpx uses bare version tags, e.g.0.28.1)Verification
docs_path: docsmatches the repository structure at https://github.com/encode/httpx/tree/main/docs