Installation
Current distribution state
AIR is not currently published to PyPI. As of this documentation pass, the verified installable artifacts are a locally built wheel and source distribution:
air_router-0.1.0-py3-none-any.whlair_router-0.1.0.tar.gz
The distribution name on the package index (if published later) is air-router. The Python import name is air, not air-router and not air_router. These names differ; do not import air_router.
The wheel has been verified to install cleanly into a separate, empty virtual environment and import correctly:
python
from air import AIR
air = AIR()Requirements
Python 3.10 or later. AIR has one runtime dependency: httpx (>=0.24), used by all four built in providers to make HTTPS requests.
Installing the wheel locally
If you have the built wheel file:
bash
pip install air_router-0.1.0-py3-none-any.whlVerifying the install
bash
python -c "from air import AIR; air = AIR(); print(air)"This should print an AIR instance with no errors and does not require any API key, network access, or provider configuration.