requests
requests copied to clipboard
A simple, yet elegant, HTTP library.
In the following code the response contains ssl error `SSL: CERTIFICATE_VERIFY_FAILED` although the default verify_mode `ssl.CERT_NONE` is set in the context by calling context=create_ssl_context() as hown below. I expected that...
Issue #5775 notes that IPv6 Zone Identifiers are not parsed correctly when the Zone ID is itself a valid percent-encoded character from the `UNRESERVED_SET`. That issue was incorrectly closed as...
My humble contribution to keep requests so typos free as it is proudly is now.
This pull request adds a new section titled "Setting Up a Local Development Environment" to the README.md file. This section provides clear instructions for contributors on how to set up...
As I have not seen any details about it (beyond the cloning of the repo) in the README I put together a short blog posts on [Development environment for the...
This is mentioned in the Advanced Usage page, but not in the API reference. It is mentioned in the API reference for `Session`, so it seems reasonable that it should...
This makes some documentation changes that clarify the `files` argument of `requests.post()` et. al. ## Be more precise when we say "multiple files" The `files` argument can either be a...
I have a case where a url I was using requests to fetch (image so using `stream=True` to download to local file) started returning 403 errors with some html...and some...
This section applies not only to POST request, but all REST methods with data. Furthermore, a POST request with json body ist not complicated, but standard.
I am making a post request where the response object has a 'Set-Cookie' with cookie data when inspecting response.headers, but where response.cookies has an empty cookie jar. My request contains...