Seamlessly depend on requests or niquests depending on what the user has installed
Project description
Anyquests
Anyquests is a transparent wrapper around either requests or niquests which doesn't install either automatically.
Motivation
Niquests is a fork of requests made to address important flaws and support modern web features. However, to do this niquests depends on urllib3.future, which takes a dramatic approach to backwards compatibility by shadowing the original urllib3 if it is present. While this can be disabled during installation, a package including urllib3.future as a dependency (even transitive) cannot control this behavior. The potential of silently breaking users' installations can discourage them from depending on niquests. This package is meant to address this issue.
Rather than depending on one or the other, package authors can depend on anyquests and let the end user decide which library to install. Anyquests will pick whichever is available, prioritizing niquests.
I am an end user, which one to choose?
If you don't have any personal preference yet, choose niquests. niquests is
a fork of requests which supports newer features such as HTTP/3 over QUIC.
Be aware, however, that by default installing niquests will shadow urllib3
with a different, improved implementation.
If this is a concern for you, see https://niquests.readthedocs.io/en/latest/community/faq.html#cohabitation
for instructions on how to disable that. See also https://niquests.readthedocs.io/en/latest/community/faq.html#what-is-urllib3-future
for an explanation of why niquests does that.
Usage
Add anyquests to the dependencies in your pyproject.toml, for example by running:
uv add anyquests
Then just import the library with:
import anyquests
# or
import anyquests as requests
The imported library will be the same as the result of either import niquests
or import requests. If none are availabe, an ImportError will be raised
with a helpful message instructing the user to install one or the other.
If you want to guarantee that your package will run out of the box even if the
user doesn't have either requests or niquests installed, you can also
add an explicit dependency on requests. anyquests will still opportunistically
switch to niquests when available.
Note that this package does not impose any restrictions on the versions of
either requests or niquests.
Typing
By default a type checker cannot know the members of anyquests or their types.
This can be addressed with separate type stubs, but this would create tight coupling
to specific versions of requests and niquests. Instead, since niquests
promises to maintain full backwards compatibility with requests, the
recommended solution is to:
-
Include
anyquestsandrequestsas dependencies in yourpyproject.toml. -
Include the following among your imports:
from typing import TYPE_CHECKING import anyquests if TYPE_CHECKING: import requests as anyquests
Alternatively, if you prefer using the name
requests, include:from typing import TYPE_CHECKING import anyquests as requests if TYPE_CHECKING: import requests
Implementation
This package consists of just 25 lines of code,
including empty lines and a multiline error message. It attempts
to import niquests, then in case of failure, attempts to import
requests, then in case of another failure raises an ImportError
with an explanation and instructions. If an import succeeds, the
anyquests module is fully substituted for the imported module,
which maintains maximum compatibility and ensures no overhead.
If you believe you found an issue, or have an idea on how to improve this package, feel free to open an issue.
License
To match the licenses of the original requests and niquests, this package is licensed under the Apache License, Version 2.0.
© 2026 abel1502
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file anyquests-1.0.1.tar.gz.
File metadata
- Download URL: anyquests-1.0.1.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
953fccf1b97a5f9b6eb9b2ba18ec057b3b0aa975b1c58c18aaa01afc41660987
|
|
| MD5 |
7714ed117e59882c1e241cd7d1438211
|
|
| BLAKE2b-256 |
2ecf6879b70a541562998b91189ee200b58e9eb07766564e7d7a2aecd9b2b7a0
|
File details
Details for the file anyquests-1.0.1-py3-none-any.whl.
File metadata
- Download URL: anyquests-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebf7995e2e2c0826467ebd46b5bcc3e9232621e927e03ba216acfbfe00cd3e6a
|
|
| MD5 |
125edb825d5757a15b1bf178c6fb1609
|
|
| BLAKE2b-256 |
ac1303459c73085e39929bcefd055570eda746083307f58e5a229120c42eeda3
|