httpx icon indicating copy to clipboard operation
httpx copied to clipboard

A next generation HTTP client for Python. 🦋

Results 184 httpx issues
Sort by recently updated
recently updated
newest added
trafficstars

We've got a handful of open issues around HTTP/2 robustness. I'm going to collate these into a single issue, to help us keep the issue easily reviewable & improve prioritisation....

http/2

This pull request removes an undocumented style for setting the timeout, leading to a neater API. Setting a timeout as an unnamed 4-tuple is no longer supported... ```python timeout =...

In [this comment](https://github.com/encode/httpx/issues/382#issuecomment-553519788) @florimondmanca suggests that the connection pool limits can be used to rate-limit the number of requests made. I can see, of course, how setting those limits will...

Prompted by #3524 Update Python package with up to date classifiers.

# Summary related #3396. Currently, a multipart request can only be sent when the files parameter is non-empty. This restriction limits cases where users might want to send data using...

Currently, a multipart request can only be sent when the files parameter is non-empty. This restriction limits cases where users might want to send data using multipart mode without attaching...

The section in `environment_variables.md` is taken from 3f7657, which was the last commit before it was mistakenly removed. # Summary Re-add the documentation for `SSL_CERT_FILE` and `SSL_CERT_DIR`, as discussed in...

Transport classes do support socket_options, though there is no way to tell the client what it needs to pass to the underlying transport constructor when creating it, so there is...