requests icon indicating copy to clipboard operation
requests copied to clipboard

A simple, yet elegant, HTTP library.

Results 212 requests issues
Sort by recently updated
recently updated
newest added

hi, making a poor socks server at localhost on port 8001 with ssh/sshd running at localhost : ```console @term1$ ssh -N -D localhost:8001 localhost ``` making a self-signed certificate for...

When running a request using `HTTPS` proxy the proxy certificate is ignored even when `verify=True`. Is there a way to validate the proxy certificate? ``` >>> requests.get("https://www.google.com", proxies={"https": "https://100.117.2.81:3129"}, verify=True)...

When using string enums as key values for the `headers` dict parameter with `requests.get()` function in `v2.28.0` it raises an `InvalidHeader` error but using previous version `v2.27.1` works well without...

Sending of chunked-encoded data is not currently tested to be correct anywhere in requests' tests, and is called out as a needed improvement in #5906. This is a hurdle to...

`requests.cookies.RequestsCookieJar`'s `popitem()` method doesn't seem to work even if cookies is not empty. ## Expected Result From [the doc](https://requests.readthedocs.io/en/latest/api/#requests.cookies.RequestsCookieJar.popitem): >remove and return some (key, value) pair as a 2-tuple; but...

Hi, client certificates can be specified with the "cert" parameter. If I pass an encrypted client certificate, the underlying OpenSSL call will query for the corresponding passphrase, but that is...

Feature Request
Planned

A pull request to take a hit at fixing issue #4322 Worked with my team and we made it so that HTTPAdapter has a default SSLContext initialized when the adapter...

When I was studying Contributor’s Guide, I found that links to kenreitz.org are broken. - "The Future of Python HTTP" was archived by Internet Archive, so I linked there. -...

Due to urllib bug, requests fails to open any HTTPS websites on Windows if there's system-wide HTTP proxy configured. This is because urllib incorrectly prepends the protocol to the proxy...

My app is making a POST request enforcing some specific header fields. Among them, I was able to explicitly enforce a ":method" header field. But since 2.28.0, this now raises...