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

``` root@scw-hopeful-gould:~# httpx --version The httpx command line client could not run because the required dependencies were not installed. Make sure you've installed everything with: pip install 'httpx[cli]' root@scw-hopeful-gould:~# pip3...

# Summary Obey retry after as defined by the [specifications](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After) # Checklist - [x] I understand that this PR may be closed in case there was no previous discussion. (This...

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....

http/2

Hi! Is there a way to use an alternative JSON library to decode the request? Like [orjson](https://github.com/ijl/orjson) for example? Thanks!

question

# Summary Closes #2992 # Checklist - [x] I understand that this PR may be closed in case there was no previous discussion. (This doesn't apply to typos!) - [x]...

# Summary Following #2931 When users passes cookies to a `client.request()` as a dict or list, they're stored as a `Cookies` instance, with domain taken from the URL, and `secure`...

Discussed in https://github.com/encode/httpx/discussions/3007 TODO: - [ ] Add changelog - [x] Add more migration examples ## Migration examples ### Enabling and disabling verification ``` python import httpx # instead of...

api change
1.0 proposal

Discussed in https://github.com/encode/httpx/issues/947#issuecomment-1881173378 This PR adds the `Mounts` and `AsyncMounts` transport classes. Currently in draft... switch `mounts=...` out of the `Client` class directly. --- Here's the synopsis... We currently have...

1.0 proposal

The default encoding function is allowed to return None, in which case the encoding property of httpx.Response defaults to utf-8. The example in https://www.python-httpx.org/advanced/#using-character-set-auto-detection that passes a default_encoding function uses...

See the ["Version 1.0, Minimising project dependancies"](https://github.com/encode/httpx/issues/947#issuecomment-1715532202) discussion for background, as well as [the proposed PR for `httpcore` version 1.0](https://github.com/encode/httpcore/pull/809). This pull request would changes our default install footprint from......

1.0 proposal