requests icon indicating copy to clipboard operation
requests copied to clipboard

A simple, yet elegant, HTTP library.

Results 287 requests issues
Sort by recently updated
recently updated
newest added
trafficstars

`requests.put(url, data=some_generator, timeout=5.0)` does not timeout if the server accepts the connection but does not send a response. ## Expected Result `requests.put(url, data=some_generator, timeout=5.0)` would time out after 5 seconds...

Uploading a file whose name contains double quotes (") in the file, requests replaces the character with %22. This is not reversible because the % char is not escaped (it's...

This was originally discussed here: https://github.com/psf/requests/issues/465 For some reason the ticket was however closed without a file-like object approach being added here: https://requests.readthedocs.io/en/latest/user/quickstart/ (Other than the somewhat odd `.raw` that...

As far as I can tell, this is the only internal construction of `ConnectionError` that doesn't include `request` or `response`. Part of improving typing for exceptions in requests: https://github.com/python/typeshed/pull/8989

I suggest to change the license string in the package information to an [SPDX parsable license expression](https://spdx.org/licenses/). This makes it easier for downstream users to get the license information directly...

Pardon me... I'm not proficient in python... This library appears to be the de-facto reference for http clients in other programming languages as well.. it seems like many http get...

While subclassing `HTTPAdapter` as well as `Session` the class variable `__attrs__` needs to be appended with any custom instance variables. Otherwise, the instance breaks during pickling, which can happen in...

We have some scraper code that sometimes gets back PDFs and other times gets back HTML. Today we learned that if you access r.text in a large-ish PDF (40MB), chardet...

The http rfc (specifically [section 4.2)](https://www.rfc-editor.org/rfc/rfc2616#section-4.2) allows multiple headers with the same name to be present, granted that they can be collapsed into a single header with comma separated values....

NASA Earthdata uses basic authentication and cookies to respond to GET requests. When I use a `Session()` in combination with a `~/.netrc` file, the session object holds the cookies and...