httpx
httpx copied to clipboard
A next generation HTTP client for Python. 🦋
The starting point for issues should usually be a discussion... https://github.com/encode/httpx/discussions Possible bugs may be raised as a "Potential Issue" discussion, feature requests may be raised as an "Ideas" discussion....
Hello, I'm trying to use httpx(in asyncio) for my web scraper program. In my use case, for preventing my connection from banning, I usually want to limit the requests on...
I just managed to get myself `httpx==1.0.dev2` entirely by mistake - I was messing around with `uv run --prerelease=allow` - and I started getting errors about `httpx.AsyncClient` not being available....
The starting point for issues should usually be a discussion... https://github.com/encode/httpx/discussions/ Possible bugs may be raised as a "Potential Issue" discussion, feature requests may be raised as an "Ideas" discussion....
# Summary When seeing an [unofficial status code](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes#Unofficial_codes) the suggested further reading link to MDN Web Docs will be broken since it contains only official codes. As an example, the...
I am experiencing a problem where my container crashes or resets immediately after an HTTP POST request logs this debug message: ``` 2025-08-06 10:07:03,466 - httpcore.connection - DEBUG - close.started...
- This issue is a follow-up of #3076 But it became a real problem if you try to set a query parameter within the `base_url`. Test case: ```py import httpx...
Hi! Problem: The test_write_timeout is failing with the following ResourceWarning: `ResourceWarning: Async generator 'httpx._content.ByteStream.__aiter__' was garbage collected before it had been exhausted. Surround its use in 'async with aclosing(...):' to...
# Summary Updated _content.py: encode_content to accept a bytearray as well as bytes/str as a static content type. This allows sending a mutable bytearray without having to cast to an...