Skip to main content

pyairnow: a thin Python wrapper for the AirNow API

CI PyPi Version License Code Coverage

pyairnow is a simple, tested, thin client library for interacting with the AirNow United States EPA Air Quality Index API.

Python Versions

pyairnow is currently supported and tested on:

  • Python 3.10
  • Python 3.11
  • Python 3.12
  • Python 3.13

Installation

pip install pyairnow

API Key

You can get an AirNow API key from the AirNow API site. Ensure you read and understand the expectations and limitations of API usage, which can be found at the AirNow FAQ.

Usage

import asyncio
import datetime

from pyairnow import WebServiceAPI


async def main() -> None:
  client = WebServiceAPI('your-api-key')

  # Get current observational data based on a zip code
  data = await client.observations.zipCode('90001')

  # Get current observational data based on a latitude and longitude
  data = await client.observations.latLong(34.053718, -118.244842)

  # Get forecast data based on a zip code
  data = await client.forecast.zipCode(
    '90001',
    # to get a forecast for a certain day, provide a date in yyyy-mm-dd,
    # if not specified the current day will be used
    date='2020-09-01',
  )

  # Get forecast data based on a latitude and longitude
  data = await client.forecast.latLong(
    # Lat/Long may be strings or floats
    '34.053718', '-118.244842',
    # forecast dates may also be datetime.date or datetime.datetime objects
    date=datetime.date(2020, 9, 1),
  )


asyncio.run(main())

By default, the library creates a new connection to AirNow with each coroutine. If you are calling a large number of coroutines (or merely want to squeeze out every second of runtime savings possible), an aiohttp ClientSession can be used for connection pooling:

import asyncio
import datetime

from aiohttp import ClientSession

from pyairnow import WebServiceAPI


async def main() -> None:
    async with ClientSession() as session:
        client = WebServiceAPI('your-api-key', session=session)

        # ...


asyncio.run(main())

The library provides two convenience functions to convert between AQI and pollutant concentrations. See this EPA document for more details.

from pyairnow.conv import aqi_to_concentration, concentration_to_aqi

# Supported Pollutants
# --------------------
# Ozone ('O3'): ppm
# pm2.5 ('PM2.5'): ug/m^3
# pm10 ('PM10'): ug/m^3
# Carbon Monoxide ('CO'): ppm
# Sulfur Dioxide ('SO2'): ppm
# Nitrogen Dioxide ('NO2'): ppm

# Returns AQI = 144 for pm2.5 of 53.0 ug/m^3
aqi_to_concentration(144, 'PM2.5')

# Returns Cp = 53.0 ug/m^3
concentration_to_aqi(53.0, 'PM2.5')

Legacy API Format

AirNow announced in June 2026 that the forecast and current observation APIs would be retired and replaced with new APIs with slightly changed output format. PyAirNow 1.4.0 uses the new API endpoints by default, and can provide data in the legacy format for clients which expect it. To use the legacy format, pass legacy_format=True to the API constructor:

import asyncio
import datetime

from pyairnow import WebServiceAPI


async def main() -> None:
  client_legacy = WebServiceAPI('your-api-key', legacy_format=True)
  client_current = WebServiceAPI('your-api-key')

  # Get current observational data based on a zip code
  data_legacy = await client_legacy.observations.zipCode('90001')

  # data_legacy = [{
  #   'DateObserved': ...,
  #   'HourObserved': ...,
  #   ...,
  #   'AQI': ...,
  #   ...,
  # }]

  data_current = await client_current.observations.zipCode('90001')

  # data_current = [{
  #   'dateObserved': ...,
  #   'hourObserved': ...,
  #   ...,
  #   'nowcastAQI': ...,
  #   ...,
  # }]

Contributing

  1. Check for open features/bugs or start a discussion on one.
  2. Fork the repository.
  3. Install Poetry and set up the development workspace: poetry install
  4. Code your new feature or bug fix.
  5. Write tests that cover your new functionality.
  6. Run tests and ensure 100% code coverage: make test
  7. Run the linter to ensure 100% code style correctness: make lint
  8. Run the type checker to ensure type correctness: make type-check
  9. Update README.md with any new documentation.
  10. Add yourself to AUTHORS.md.
  11. Submit a pull request!

Download files

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

Source Distribution

pyairnow-1.4.0.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

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

pyairnow-1.4.0-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file pyairnow-1.4.0.tar.gz.

File metadata

  • Download URL: pyairnow-1.4.0.tar.gz
  • Upload date:
  • Size: 7.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.13 Darwin/25.5.0

File hashes

Hashes for pyairnow-1.4.0.tar.gz
Algorithm Hash digest
SHA256 12c7612c705f715b6340f968cc86b05ae09c5095fde02658d355abf81f2a17a1
MD5 55b3bc9c43c20b560e7689e9427cd342
BLAKE2b-256 b033c8d5b2eb7791a01dc8eff56ee0333db8679d839226b2f2756737f7ace282

See more details on using hashes here.

File details

Details for the file pyairnow-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: pyairnow-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 10.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.13.13 Darwin/25.5.0

File hashes

Hashes for pyairnow-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d73197c66212114581c4472e155dde35086459082410dd8e6eeb45be190be4d1
MD5 e034fb7f25b0d637a0930855a2099963
BLAKE2b-256 4bad04badfb1c25eb93c8d55c204478a5cd4d88a9625b8b84d8b26588cf2b3cf

See more details on using hashes here.

Release history Release notifications | RSS feed

1.4.1

2 files

This release

1.4.0 This release

2 files

1.3.1

2 files

1.3.0

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.1

2 files

1.0.0

2 files

Supported by

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