httpx
httpx copied to clipboard
A next generation HTTP client for Python. 🦋
### Checklist - [ x] The bug is reproducible against the latest release and/or `master`. - [ x] There are no similar issues or pull requests to fix it yet....
We ought to support the following cases. Raw upload content from an async file interface: ```python import httpx import trio async def main(): async with httpx.AsyncClient() as client: async with...
It'd be really neat to offer built-in support for server sent events, which are a way for servers to stream events to an HTTP client. (Similar to WebSockets, but uni-directional)...
close #1278
This is an issue that many people have been trying to tackle for Python but hasn't been done yet. I think we're in a pretty good position to try to...
(After initial discussion in https://github.com/encode/httpx/discussions/2227.) As far as I can see, there's no way to stream `multipart/form-data` uploads when the `Content-Length` is unknown, since HTTPX tries to get body size...
Hi, I just found out a issue while building an RPC framework which is run by Hypercorn which requires 0.13.0 that conflicts with the httpx's requirement which is h11
New release decided to change the behavior and disable redirects by default. This is clearly, and bold-faced, mentioned on the website documentation but is not mentioned in the GitHub readme....
Currently `rfc3986` 2.0.0 is not supported. https://github.com/encode/httpx/blob/3af5146788f2945c806d4225cd588a2aa8073b90/setup.py#L58-L62 Do you have any plans to provide such support?
- [x] Initially raised as discussion #1787 Current behaviour: - Running `uvicorn test_endless_sse:app --reload` then `python test_endless_sse.py` works. - Running `pytest test_endless_sse.py` hangs forever. Expected behaviour: - `pytest test_endless_sse.py` should...