<h1 align="center">
<img src="https://github.com/jawah/urllib3.future/raw/main/docs/_static/logo.png" width="450px" alt="urllib3.future logo"/>
</h1>
<p align="center">
<a href="https://pypi.org/project/urllib3-future"><img alt="PyPI Version" src="https://img.shields.io/pypi/v/urllib3-future.svg?maxAge=86400" /></a>
<a href="https://pypi.org/project/urllib3-future"><img alt="Python Versions" src="https://img.shields.io/pypi/pyversions/urllib3-future.svg?maxAge=86400" /></a>
<br><small>urllib3.future is as BoringSSL is to OpenSSL but to urllib3 (except support is available!)</small>
<br><small>✨🍰 Enjoy HTTP like its 2024 🍰✨</small>
<br><small>💰 Promotional offer, get everything and more for <del>40k</del> <b>0</b>$!</small>
<br><small>Wondering why and how this fork exist? Why urllib3 does not merge this, even partially? <a href="https://medium.com/@ahmed.tahri/revived-the-promise-made-six-years-ago-for-requests-3-37b440e6a064">Take a peek at this article!</a></small>
</p>
⚡ urllib3.future is a powerful, *user-friendly* HTTP client for Python.<br>
⚡ urllib3.future goes beyond supported features while remaining compatible.<br>
⚡ urllib3.future brings many critical features that are missing from both the Python standard libraries **and urllib3**:
- Async.
- Task safety.
- Thread safety.
- Happy Eyeballs.
- Connection pooling.
- Unopinionated about OpenSSL.
- Client-side SSL/TLS verification.
- Highly customizable DNS resolution.
- File uploads with multipart encoding.
- DNS over UDP, TLS, QUIC, or HTTPS. DNSSEC protected.
- Helpers for retrying requests and dealing with HTTP redirects.
- Automatic Keep-Alive for HTTP/1.1, HTTP/2, and HTTP/3.
- Support for gzip, deflate, brotli, and zstd encoding.
- Support for Python/PyPy 3.7+, no compromise.
- Automatic Connection Upgrade / Downgrade.
- Early (Informational) Responses / Hints.
- HTTP/1.1, HTTP/2 and HTTP/3 support.
- WebSocket over HTTP/2+ (RFC8441).
- Proxy support for HTTP and SOCKS.
- Post-Quantum Security with QUIC.
- Detailed connection inspection.
- HTTP/2 with prior knowledge.
- Multiplexed connection.
- Mirrored Sync & Async.
- Trailer Headers.
- Amazingly Fast.
- WebSocket.
urllib3.future is powerful and easy to use:
```python
>>> import urllib3
>>> pm = urllib3.PoolManager()
>>> resp = pm.request("GET", "https://httpbin.org/robots.txt")
>>> resp.status
200
>>> resp.data
b"User-agent: *\nDisallow: /deny\n"
>>> resp.version
20
```
or using asyncio!
```python
import asyncio
import urllib3
async def main() -> None:
async with urllib3.AsyncPoolManager() as pm:
resp = await pm.request("GET", "https://httpbin.org/robots.txt")
print(resp.status) # 200
body = await resp.data
print(body) # # b"User-agent: *\nDisallow: /deny\n"
print(resp.version) # 20
asyncio.run(main())
```
## Installing
urllib3.future can be installed with [pip](https://pip.pypa.io):
```bash
$ python -m pip install urllib3.future
```
You either do
```python
import urllib3
```
Or...
```python
import urllib3_future
```
Or... upgrade any of your containers with...
```dockerfile
FROM python:3.12
# ... your installation ...
RUN pip install .
# then! (after every other pip call)
RUN pip install urllib3-future
```
Doing `import urllib3_future` is the safest option if you start a project from scratch for you as there is a significant number of projects that
require `urllib3`.
## Notes / Frequently Asked Questions
- **It's a fork**
⚠️ Installing urllib3.future shadows the actual urllib3 package (_depending on installation order_).
The semver will always be like _MAJOR.MINOR.9PP_ like 2.0.941, the patch node is always greater or equal to 900.
Support for bugs or improvements is served in this repository. We regularly sync this fork
with the main branch of urllib3/urllib3 against bugfixes and security patches if applicable.
- **Why replacing urllib3 when it is maintained?**
Progress does not necessarily mean to be a revisionist, first we need to embrace
what was graciously made by our predecessors. So much knowledge has been poured into this that
we must just extend it.
We attempted to participate in urllib3 development only to find that we were in disagreement on how
to proceed. It happens all the time, even on the biggest projects out there (e.g. OpenSSL vs BoringSSL or NSS or LibreSSL...)
- **OK, but I got there because I saw that urllib3 was replaced in my environment!**
Since Forks are allowed (fortunately for us); It how package manager do things.
We know how sensible this matter is, this is why we are obligated to ensure the highest
level of compatibility and a fast support in case anything happen. We are probably going to be
less forgiven in case of bugs than the original urllib3. For good~ish reasons, we know.
The matter is taken with utmost seriousness and everyone can inspect this package at will.
We regularly test this fork against the most used packages (that depend on urllib3, especially those who plunged deep into urllib3 internals).
Finally, rare is someone "fully aware" of their transitive dependencies. And "urllib3" is forced
into your environments regardless of your preferences.
- **Wasn't there any other solution than having an in-place fork?**
We assessed many solutions but none were completely satisfying.
We agree that this solution isn't perfect and actually put a lot of pressure on us (urllib3-future).
Here are some of the reasons (not exhaustive) we choose to work this way:
> A) Some major companies may not be able to touch the production code but can "change/swap" dependencies.
> B) urllib3-future main purpose is to fuel Niquests, which is itself a drop-in replacement of Requests.
And there's more than 100 packages commonly used that plug into Requests, but the code (of the packages) invoke urllib3
So... We cannot fork those 100+ projects to patch urllib3 usage, it is impossible at the moment, given our means.
Requests trapped us, and there should be a way to escape the nonsense "migrate" to another http client that reinvent
basic things and interactions.
> C) We don't have to reinvent the wheel.
> D) Some of our partners started noticing that HTTP/1 started to be disabled by some webservices in favor of HTTP/2+
So, this fork can unblock them at (almost) zero cost.
- **OK... then what do I gain from this?**
1. It is faster than its counterpart, we measured gain up to 2X faster in a multithreaded environment using a http2 endpoint.
2. It works well with gevent / does not conflict. We do not use the standard queue class from stdlib as it does not fit http2+ constraints.
3. Leveraging recent protocols like http2 and http3 transparently. Code and behaviors does not change one bit.
4. You do not depend on the standard library to emit http/1 requests, and that is actually a good news. http.client
has numerous known flaws but cannot be fixed as we speak. (e.g. urllib3 is based on http.client)
5. There a ton of other improvement you may leverage, but for that you will need to migrate to Niquests or update your code
to enable specific capabilities, like but not limited to: "DNS over QUIC, HTTP" / "Happy Eyeballs" / "Native Asyncio" / "Advanced Multiplexing".
6. Non-blocking IO with concurrent streams/requests. And yes, transparently.
7. It relaxes some constraints established by upstream in their version 2, thus making it easier to upgrade from version 1.
- **Is this funded?**
Yes! We have some funds coming in regularly to ensure its sustainability.
- **How can I restore urllib3 to the "legacy" version?**
You can easily do so:
```
# remove both
python -m pip uninstall -y urllib3 urllib3-future
# reinstate legacy urllib3
python -m pip install urllib3
```
OK! How to let them both?
```
# remove both
python -m pip uninstall -y urllib3 urllib3-future
# install urllib3-future
python -m pip install urllib3-future
# reinstate legacy urllib3
python -m pip install urllib3
```
The order is (actually) important.
Super! But how can I do that when installing something that requires somewhere urllib3-future?
Let's say you want to install Niquests and keep BOTH urllib3 and urllib3-future, do:
```
URLLIB3_NO_OVERRIDE=true pip install niquests --no-binary urllib3-future
```
This applies to every package you wish to install and brings indirectly urllib3-future.
- **Can you guarantee us that everything will go smooth?**
Guarantee is a strong word with a lot of (legal) implication. We cannot offer a "guarantee".
But, we answer and solve issues in a timely manner as you may have seen in our tracker.
We take a lot of precaution with this fork, and we welcome any contribution at the sole condition
that you don't break the compatibility between the projects. Namely, urllib3 and urllib3-future.
Every software is subject to bugs no matter what we do.
This being said, rest assured, we kept all the tests from urllib3 to ensure that what was
guaranteed by upstream is also carefully watched down there. See the CI/pipeline for yourself.
In addition to that, we enforced key integration tests to watch how urllib3-future act with some critical projects.
Top-priorities issues are those impacting users with the "shadowing" part. Meaning, if a user is suffering
an error or something that ends up causing an undesirable outcome from a third-party library that leverage urllib3.
- **Can I contribute to this?**
Yes! But keep in mind that it is going to be hard to contribute as we have huge constraints.
Some of them: Python 3.7+, OpenSSL <1.1.1,>1, LibreSSL, Downstream Perfect Compat, API Compatibility with urllib3, and so on.
If you like a good challenge, then this project will definitely suit you.
Make sure everything passes before submitting a PR, unless you need guidance on a specific topic.
After applying your patch, run (Unix, Linux):
```
./ci/run_legacy_openssl.sh
./ci/run_legacy_libressl.sh
./ci/run_dockerized.sh
nox -s test-3.11
```
replace the `3.11` part in `test-3.11` by your interpreter version.
If the tests all passes, then it is a firm good start.
Complete them with:
```
nox -s downstream_requests
nox -s downstream_niquests
nox -s downstream_boto3
nox -s downstream_sphinx
```
Finally make sure to fix any lint errors:
```
nox -s lint
```
- **OS Package Managers, beware!**
Fellow OS package maintainers, you cannot _just_ build and ship this package to your package registry.
As it override `urllib3` and due to its current criticality, you'll have to set:
`URLLIB3_NO_OVERRIDE=true python -m build`. Set `URLLIB3_NO_OVERRIDE` variable with "**true**" in it.
It will prevent the override.
## Compatibility with downstream
You should _always_ install the downstream project prior to this fork. It is compatible with any program that use urllib3 directly or indirectly.
e.g. I want `requests` to be use this package.
```
python -m pip install requests
python -m pip install urllib3.future
```
Nowadays, we suggest using the package [**Niquests**](https://github.com/jawah/niquests) as a drop-in replacement for **Requests**.
It leverages urllib3.future capabilities appropriately.
## Testing
To ensure that we serve HTTP/1.1, HTTP/2 and HTTP/3 correctly we use containers
that simulate a real-world server that is not made with Python.
Although it is not made mandatory to run the test suite, it is strongly recommended.
You should have docker installed and the compose plugin available. The rest will be handled automatically.
```
python -m pip install nox
nox -s test-3.11
```
The nox script will attempt to start a Traefik server along with a httpbin instance.
Both Traefik and httpbin are written in golang.
You may prevent the containers from starting by passing the following environment variable:
```
TRAEFIK_HTTPBIN_ENABLE=false nox -s test-3.11
```
## Documentation
urllib3.future has usage and reference documentation at [urllib3future.readthedocs.io](https://urllib3future.readthedocs.io).
## Contributing
urllib3.future happily accepts contributions.
## Security Disclosures
To report a security vulnerability, please use the GitHub advisory disclosure form.
## Sponsorship
If your company benefits from this library, please consider sponsoring its
development.
Raw data
{
"_id": null,
"home_page": null,
"name": "urllib3-future",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "\"Ahmed R. TAHRI\" <tahri.ahmed@proton.me>",
"keywords": "async, concurrent, dns, dns-over-https, dns-over-quic, dns-over-tls, doh, doq, dot, dou, filepost, http, httplib, https, multiplexed, pooling, ssl, tasksafe, threadsafe, urllib",
"author": null,
"author_email": "Andrey Petrov <andrey.petrov@shazow.net>",
"download_url": "https://files.pythonhosted.org/packages/be/be/50f1dba2b6267a9350be94288497519fc353bed8b6933aa8c1aa495baec4/urllib3_future-2.11.911.tar.gz",
"platform": null,
"description": "<h1 align=\"center\">\n<img src=\"https://github.com/jawah/urllib3.future/raw/main/docs/_static/logo.png\" width=\"450px\" alt=\"urllib3.future logo\"/>\n</h1>\n\n<p align=\"center\">\n <a href=\"https://pypi.org/project/urllib3-future\"><img alt=\"PyPI Version\" src=\"https://img.shields.io/pypi/v/urllib3-future.svg?maxAge=86400\" /></a>\n <a href=\"https://pypi.org/project/urllib3-future\"><img alt=\"Python Versions\" src=\"https://img.shields.io/pypi/pyversions/urllib3-future.svg?maxAge=86400\" /></a>\n <br><small>urllib3.future is as BoringSSL is to OpenSSL but to urllib3 (except support is available!)</small>\n <br><small>\u2728\ud83c\udf70 Enjoy HTTP like its 2024 \ud83c\udf70\u2728</small>\n <br><small>\ud83d\udcb0 Promotional offer, get everything and more for <del>40k</del> <b>0</b>$!</small>\n <br><small>Wondering why and how this fork exist? Why urllib3 does not merge this, even partially? <a href=\"https://medium.com/@ahmed.tahri/revived-the-promise-made-six-years-ago-for-requests-3-37b440e6a064\">Take a peek at this article!</a></small>\n</p>\n\n\u26a1 urllib3.future is a powerful, *user-friendly* HTTP client for Python.<br>\n\u26a1 urllib3.future goes beyond supported features while remaining compatible.<br>\n\u26a1 urllib3.future brings many critical features that are missing from both the Python standard libraries **and urllib3**:\n\n- Async.\n- Task safety.\n- Thread safety.\n- Happy Eyeballs.\n- Connection pooling.\n- Unopinionated about OpenSSL.\n- Client-side SSL/TLS verification.\n- Highly customizable DNS resolution.\n- File uploads with multipart encoding.\n- DNS over UDP, TLS, QUIC, or HTTPS. DNSSEC protected.\n- Helpers for retrying requests and dealing with HTTP redirects.\n- Automatic Keep-Alive for HTTP/1.1, HTTP/2, and HTTP/3.\n- Support for gzip, deflate, brotli, and zstd encoding.\n- Support for Python/PyPy 3.7+, no compromise.\n- Automatic Connection Upgrade / Downgrade.\n- Early (Informational) Responses / Hints.\n- HTTP/1.1, HTTP/2 and HTTP/3 support.\n- WebSocket over HTTP/2+ (RFC8441).\n- Proxy support for HTTP and SOCKS.\n- Post-Quantum Security with QUIC.\n- Detailed connection inspection.\n- HTTP/2 with prior knowledge.\n- Multiplexed connection.\n- Mirrored Sync & Async.\n- Trailer Headers.\n- Amazingly Fast.\n- WebSocket.\n\nurllib3.future is powerful and easy to use:\n\n```python\n>>> import urllib3\n>>> pm = urllib3.PoolManager()\n>>> resp = pm.request(\"GET\", \"https://httpbin.org/robots.txt\")\n>>> resp.status\n200\n>>> resp.data\nb\"User-agent: *\\nDisallow: /deny\\n\"\n>>> resp.version\n20\n```\n\nor using asyncio!\n\n```python\nimport asyncio\nimport urllib3\n\nasync def main() -> None:\n async with urllib3.AsyncPoolManager() as pm:\n resp = await pm.request(\"GET\", \"https://httpbin.org/robots.txt\")\n print(resp.status) # 200\n body = await resp.data\n print(body) # # b\"User-agent: *\\nDisallow: /deny\\n\"\n print(resp.version) # 20\n\nasyncio.run(main())\n```\n\n## Installing\n\nurllib3.future can be installed with [pip](https://pip.pypa.io):\n\n```bash\n$ python -m pip install urllib3.future\n```\n\nYou either do \n\n```python\nimport urllib3\n```\n\nOr...\n\n```python\nimport urllib3_future\n```\n\nOr... upgrade any of your containers with...\n\n```dockerfile\nFROM python:3.12\n\n# ... your installation ...\nRUN pip install .\n# then! (after every other pip call)\nRUN pip install urllib3-future\n```\n\nDoing `import urllib3_future` is the safest option if you start a project from scratch for you as there is a significant number of projects that\nrequire `urllib3`.\n\n## Notes / Frequently Asked Questions\n\n- **It's a fork**\n\n\u26a0\ufe0f Installing urllib3.future shadows the actual urllib3 package (_depending on installation order_). \nThe semver will always be like _MAJOR.MINOR.9PP_ like 2.0.941, the patch node is always greater or equal to 900.\n\nSupport for bugs or improvements is served in this repository. We regularly sync this fork\nwith the main branch of urllib3/urllib3 against bugfixes and security patches if applicable.\n\n- **Why replacing urllib3 when it is maintained?**\n\nProgress does not necessarily mean to be a revisionist, first we need to embrace\nwhat was graciously made by our predecessors. So much knowledge has been poured into this that\nwe must just extend it.\n\nWe attempted to participate in urllib3 development only to find that we were in disagreement on how\nto proceed. It happens all the time, even on the biggest projects out there (e.g. OpenSSL vs BoringSSL or NSS or LibreSSL...)\n\n- **OK, but I got there because I saw that urllib3 was replaced in my environment!**\n\nSince Forks are allowed (fortunately for us); It how package manager do things.\n\nWe know how sensible this matter is, this is why we are obligated to ensure the highest\nlevel of compatibility and a fast support in case anything happen. We are probably going to be\nless forgiven in case of bugs than the original urllib3. For good~ish reasons, we know.\n\nThe matter is taken with utmost seriousness and everyone can inspect this package at will.\n\nWe regularly test this fork against the most used packages (that depend on urllib3, especially those who plunged deep into urllib3 internals).\n\nFinally, rare is someone \"fully aware\" of their transitive dependencies. And \"urllib3\" is forced\ninto your environments regardless of your preferences.\n\n- **Wasn't there any other solution than having an in-place fork?**\n\nWe assessed many solutions but none were completely satisfying.\nWe agree that this solution isn't perfect and actually put a lot of pressure on us (urllib3-future).\n\nHere are some of the reasons (not exhaustive) we choose to work this way:\n\n> A) Some major companies may not be able to touch the production code but can \"change/swap\" dependencies.\n\n> B) urllib3-future main purpose is to fuel Niquests, which is itself a drop-in replacement of Requests.\n And there's more than 100 packages commonly used that plug into Requests, but the code (of the packages) invoke urllib3\n So... We cannot fork those 100+ projects to patch urllib3 usage, it is impossible at the moment, given our means.\n Requests trapped us, and there should be a way to escape the nonsense \"migrate\" to another http client that reinvent\n basic things and interactions.\n\n> C) We don't have to reinvent the wheel.\n\n> D) Some of our partners started noticing that HTTP/1 started to be disabled by some webservices in favor of HTTP/2+\n So, this fork can unblock them at (almost) zero cost.\n\n- **OK... then what do I gain from this?**\n\n1. It is faster than its counterpart, we measured gain up to 2X faster in a multithreaded environment using a http2 endpoint.\n2. It works well with gevent / does not conflict. We do not use the standard queue class from stdlib as it does not fit http2+ constraints.\n3. Leveraging recent protocols like http2 and http3 transparently. Code and behaviors does not change one bit.\n4. You do not depend on the standard library to emit http/1 requests, and that is actually a good news. http.client \n has numerous known flaws but cannot be fixed as we speak. (e.g. urllib3 is based on http.client)\n5. There a ton of other improvement you may leverage, but for that you will need to migrate to Niquests or update your code\n to enable specific capabilities, like but not limited to: \"DNS over QUIC, HTTP\" / \"Happy Eyeballs\" / \"Native Asyncio\" / \"Advanced Multiplexing\".\n6. Non-blocking IO with concurrent streams/requests. And yes, transparently.\n7. It relaxes some constraints established by upstream in their version 2, thus making it easier to upgrade from version 1.\n\n- **Is this funded?**\n\nYes! We have some funds coming in regularly to ensure its sustainability.\n\n- **How can I restore urllib3 to the \"legacy\" version?**\n\nYou can easily do so:\n\n```\n# remove both\npython -m pip uninstall -y urllib3 urllib3-future\n# reinstate legacy urllib3\npython -m pip install urllib3\n```\n\nOK! How to let them both?\n\n```\n# remove both\npython -m pip uninstall -y urllib3 urllib3-future\n# install urllib3-future\npython -m pip install urllib3-future\n# reinstate legacy urllib3\npython -m pip install urllib3\n```\n\nThe order is (actually) important.\n\nSuper! But how can I do that when installing something that requires somewhere urllib3-future?\n\nLet's say you want to install Niquests and keep BOTH urllib3 and urllib3-future, do:\n\n```\nURLLIB3_NO_OVERRIDE=true pip install niquests --no-binary urllib3-future\n```\n\nThis applies to every package you wish to install and brings indirectly urllib3-future.\n\n- **Can you guarantee us that everything will go smooth?**\n\nGuarantee is a strong word with a lot of (legal) implication. We cannot offer a \"guarantee\".\nBut, we answer and solve issues in a timely manner as you may have seen in our tracker.\n\nWe take a lot of precaution with this fork, and we welcome any contribution at the sole condition\nthat you don't break the compatibility between the projects. Namely, urllib3 and urllib3-future.\n\nEvery software is subject to bugs no matter what we do.\n\nThis being said, rest assured, we kept all the tests from urllib3 to ensure that what was\nguaranteed by upstream is also carefully watched down there. See the CI/pipeline for yourself.\n\nIn addition to that, we enforced key integration tests to watch how urllib3-future act with some critical projects.\n\nTop-priorities issues are those impacting users with the \"shadowing\" part. Meaning, if a user is suffering\nan error or something that ends up causing an undesirable outcome from a third-party library that leverage urllib3.\n\n- **Can I contribute to this?**\n\nYes! But keep in mind that it is going to be hard to contribute as we have huge constraints.\nSome of them: Python 3.7+, OpenSSL <1.1.1,>1, LibreSSL, Downstream Perfect Compat, API Compatibility with urllib3, and so on.\n\nIf you like a good challenge, then this project will definitely suit you.\n\nMake sure everything passes before submitting a PR, unless you need guidance on a specific topic.\n\nAfter applying your patch, run (Unix, Linux):\n\n```\n./ci/run_legacy_openssl.sh\n./ci/run_legacy_libressl.sh\n./ci/run_dockerized.sh\nnox -s test-3.11\n```\n\nreplace the `3.11` part in `test-3.11` by your interpreter version.\n\nIf the tests all passes, then it is a firm good start.\n\nComplete them with:\n\n```\nnox -s downstream_requests\nnox -s downstream_niquests\nnox -s downstream_boto3\nnox -s downstream_sphinx\n```\n\nFinally make sure to fix any lint errors:\n\n```\nnox -s lint\n```\n\n- **OS Package Managers, beware!**\n\nFellow OS package maintainers, you cannot _just_ build and ship this package to your package registry.\nAs it override `urllib3` and due to its current criticality, you'll have to set:\n\n`URLLIB3_NO_OVERRIDE=true python -m build`. Set `URLLIB3_NO_OVERRIDE` variable with \"**true**\" in it.\n\nIt will prevent the override.\n\n## Compatibility with downstream\n\nYou should _always_ install the downstream project prior to this fork. It is compatible with any program that use urllib3 directly or indirectly.\n\ne.g. I want `requests` to be use this package.\n\n```\npython -m pip install requests\npython -m pip install urllib3.future\n```\n\nNowadays, we suggest using the package [**Niquests**](https://github.com/jawah/niquests) as a drop-in replacement for **Requests**. \nIt leverages urllib3.future capabilities appropriately.\n\n## Testing\n\nTo ensure that we serve HTTP/1.1, HTTP/2 and HTTP/3 correctly we use containers\nthat simulate a real-world server that is not made with Python.\n\nAlthough it is not made mandatory to run the test suite, it is strongly recommended.\n\nYou should have docker installed and the compose plugin available. The rest will be handled automatically.\n\n```\npython -m pip install nox\nnox -s test-3.11\n```\n\nThe nox script will attempt to start a Traefik server along with a httpbin instance.\nBoth Traefik and httpbin are written in golang.\n\nYou may prevent the containers from starting by passing the following environment variable:\n\n```\nTRAEFIK_HTTPBIN_ENABLE=false nox -s test-3.11\n```\n\n## Documentation\n\nurllib3.future has usage and reference documentation at [urllib3future.readthedocs.io](https://urllib3future.readthedocs.io).\n\n## Contributing\n\nurllib3.future happily accepts contributions.\n\n## Security Disclosures\n\nTo report a security vulnerability, please use the GitHub advisory disclosure form.\n\n## Sponsorship\n\nIf your company benefits from this library, please consider sponsoring its\ndevelopment.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "urllib3.future is a powerful HTTP 1.1, 2, and 3 client with both sync and async interfaces",
"version": "2.11.911",
"project_urls": {
"Changelog": "https://github.com/jawah/urllib3.future/blob/main/CHANGES.rst",
"Code": "https://github.com/jawah/urllib3.future",
"Documentation": "https://urllib3future.readthedocs.io",
"Issue tracker": "https://github.com/jawah/urllib3.future/issues"
},
"split_keywords": [
"async",
" concurrent",
" dns",
" dns-over-https",
" dns-over-quic",
" dns-over-tls",
" doh",
" doq",
" dot",
" dou",
" filepost",
" http",
" httplib",
" https",
" multiplexed",
" pooling",
" ssl",
" tasksafe",
" threadsafe",
" urllib"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "7566ce85d0ee8b5dd32fec556d5ed562a5872f807ed00cd46e71961a2bca934d",
"md5": "7d427a2b29b82b4184b08a3794f85f66",
"sha256": "2d6093f6e7655b6d9f4bc7a7816144efe440ee5b9d3a092e025d0c2c6b6b2f93"
},
"downloads": -1,
"filename": "urllib3_future-2.11.911-py3-none-any.whl",
"has_sig": false,
"md5_digest": "7d427a2b29b82b4184b08a3794f85f66",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 625557,
"upload_time": "2024-11-14T07:12:53",
"upload_time_iso_8601": "2024-11-14T07:12:53.545752Z",
"url": "https://files.pythonhosted.org/packages/75/66/ce85d0ee8b5dd32fec556d5ed562a5872f807ed00cd46e71961a2bca934d/urllib3_future-2.11.911-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bebe50f1dba2b6267a9350be94288497519fc353bed8b6933aa8c1aa495baec4",
"md5": "d8674f6e2e98f0f7756b944f0c7b9d3a",
"sha256": "80ffbcc7dcd033828b9997392010fe286a85c5393a599b410c3297ab98b1b290"
},
"downloads": -1,
"filename": "urllib3_future-2.11.911.tar.gz",
"has_sig": false,
"md5_digest": "d8674f6e2e98f0f7756b944f0c7b9d3a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 1036579,
"upload_time": "2024-11-14T07:12:55",
"upload_time_iso_8601": "2024-11-14T07:12:55.463031Z",
"url": "https://files.pythonhosted.org/packages/be/be/50f1dba2b6267a9350be94288497519fc353bed8b6933aa8c1aa495baec4/urllib3_future-2.11.911.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-14 07:12:55",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jawah",
"github_project": "urllib3.future",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "urllib3-future"
}