Skip to main content

Seamlessly depend on requests or niquests depending on what the user has installed

Project description

Anyquests

PyPI - Version PyPI - Python Version PyPI - License

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:

  1. Include anyquests and requests as dependencies in your pyproject.toml.

  2. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

anyquests-1.0.1.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

anyquests-1.0.1-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

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

Hashes for anyquests-1.0.1.tar.gz
Algorithm Hash digest
SHA256 953fccf1b97a5f9b6eb9b2ba18ec057b3b0aa975b1c58c18aaa01afc41660987
MD5 7714ed117e59882c1e241cd7d1438211
BLAKE2b-256 2ecf6879b70a541562998b91189ee200b58e9eb07766564e7d7a2aecd9b2b7a0

See more details on using hashes here.

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

Hashes for anyquests-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ebf7995e2e2c0826467ebd46b5bcc3e9232621e927e03ba216acfbfe00cd3e6a
MD5 125edb825d5757a15b1bf178c6fb1609
BLAKE2b-256 ac1303459c73085e39929bcefd055570eda746083307f58e5a229120c42eeda3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page