requests
requests copied to clipboard
A simple, yet elegant, HTTP library.
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 6.0.0 to 6.1.0. Release notes Sourced from actions/setup-python's releases. v6.1.0 What's Changed Enhancements: Add support for pip-install input by @gowridurgad in actions/setup-python#1201 Add graalpy early-access and windows...
This pull request updates the "Supported Versions" section in README.md. The documentation currently states: "Requests officially supports Python 3.9+." However, Requests is tested and used on newer Python versions (3.10,...
Self sign certificate validation is getting failed when using requests 2.23.5 with urllib3 2.5.0. It works with urllib3 1.26.20 version. Any version above 1.26.20 fails to validate certificates. ## Expected...
## Summary In Python 3, when `__eq__` is defined, Python automatically provides `__ne__` by negating `__eq__`. Explicitly defining `__ne__` is redundant and unnecessary code. ## Changes - Removed redundant `__ne__`...
Fixes #6784 ## Summary - Normalizes double slashes in digest auth URI to match the request path normalization done in `HTTPAdapter.request_url()`. ## Changes - Added path normalization in `build_digest_header()` in...
Fixes #2155 ## Summary - Documents that streaming responses (`stream=True` with `Response.raw`) don't automatically decompress gzipped content, and provides the workaround. ## Changes - Added note to `docs/user/advanced.rst` in "Body...
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0. Release notes Sourced from actions/checkout's releases. v6.0.0 What's Changed Update README to include Node.js 24 support details and requirements by @salmanmkc in actions/checkout#2248 Persist...
Fixes #6557 **Summary** Previously, passing an empty list as a query parameter value (e.g., `params={'key': []}`) caused the key to be silently dropped from the URL. This behavior was inconsistent...
Would you be open to adding `simplejson` as an optional extra? This would allow users to install it via `poetry add requests[simplejson]`. Having it as an official extra would make...
## Expected Result Python 3.14.0a5 (main, Feb 12 2025, 14:50:24) [MSC v.1942 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import requests >>>...