PurpleAir Library
Python client library for PurpleAir air-quality sensors API.
Build and Distribution
- Source Code: GitHub - Source code, issues, discussions, and CI/CD pipelines.
- Releases: GitHub Releases - Version tagged source code and build artifacts.
- PyPI Packages: PyPI - Python library published to PyPI.org as
ptr727-aiopurpleair.
Build Status
Releases
Release Notes
Version 1.0:
- Initial release of the library published as
ptr727-aiopurpleair, and the continuation of the abandoned upstream PR bachya/aiopurpleair#719. - New endpoints added:
- Organization (
GET /v1/organization) to get remaining API points and consumption rate. - Sensor history (
GET /v1/sensors/:sensor_index/history[/csv]) as JSON or CSV. - Groups (
/v1/groups*) for group and member management.
- Organization (
- Typed exceptions for every documented PurpleAir error code.
- Reconstructed OpenAPI spec from the upstream apiDoc data with an automated script.
- Typed timezone-aware models parse to explicit-UTC
datetimeobjects. - Updated packaging using hatchling and uv, automatic versioning using NBGV, PyPI OIDC Trusted-Publishing releases, a 100% coverage gate, and syrupy snapshot tests.
- ⚠️ API-key check moved from
api.async_check_api_key()toapi.keys.async_check_api_key(). Maintains association consistency alongsideapi.sensors,api.organizations, andapi.groups.
See Release History for complete release notes and older versions.
Table of Contents
- PurpleAir Library
Features
Full async coverage of the PurpleAir API, each method mirroring a documented endpoint:
- Keys - validate an API key and read its type (
GET /v1/keys), viaapi.keys.async_check_api_key(). - Sensors - one sensor, many sensors by field selection, or a distance-sorted nearby search, plus a map-URL helper (
GET /v1/sensors,GET /v1/sensors/{sensor_index}), viaapi.sensors. - Sensor history - historical time series for a sensor as parsed JSON or raw CSV (
GET /v1/sensors/{sensor_index}/history[/csv]), viaapi.sensors. - Organization - the account's remaining API points and consumption rate (
GET /v1/organization), viaapi.organizations. - Groups - create, list, inspect, and delete groups; add and remove member sensors; read member sensor data and member history CSV (
/v1/groups*), viaapi.groups. - Typed errors - each documented API error code maps to a specific
PurpleAirErrorsubclass, so callers catch a precise condition instead of parsingstr(err). - Timezone-aware UTC datetimes and typed Pydantic response models, shipped with a
py.typedmarker. - Modern packaging: hatchling, uv, automatic versioning, OIDC-published releases, and 100% test coverage.
Installation
Project integration:
# Add the package to your project
pip install ptr727-aiopurpleair
# Import the library (the import name stays `aiopurpleair`)
import aiopurpleair
Dependencies:
Requires Python 3.13 or later (tested on 3.13 and 3.14), and depends on aiohttp, pydantic, yarl, and certifi.
Getting Started
Get started with aiopurpleair in two easy steps:
-
Add aiopurpleair to your project:
# Add the package to your project (import name stays `aiopurpleair`) pip install ptr727-aiopurpleair
-
Write some code:
import asyncio from aiopurpleair import API async def main() -> None: """Check an API key and fetch sensors.""" api = API("<API_KEY>") keys = await api.keys.async_check_api_key() sensors = await api.sensors.async_get_sensors(["name", "pm2.5"]) organization = await api.organizations.async_get_organization() asyncio.run(main())
Usage
In-depth documentation on the API is available from PurpleAir. Unless otherwise noted, aiopurpleair follows the API as closely as possible.
Checking an API Key
import asyncio
from aiopurpleair import API
async def main() -> None:
"""Check whether an API key is valid and what properties it has."""
api = API("<API_KEY>")
response = await api.keys.async_check_api_key()
# >>> response.api_key_type == ApiKeyType.READ
# >>> response.api_version == "V1.0.11-0.0.41"
asyncio.run(main())
Getting Sensors
import asyncio
from aiopurpleair import API
async def main() -> None:
"""Fetch sensor data for the requested fields."""
api = API("<API_KEY>")
response = await api.sensors.async_get_sensors(["name", "pm2.5"])
# >>> response.data == {131075: SensorModel(...), 131079: SensorModel(...)}
asyncio.run(main())
Private sensors require their per-sensor read key: pass read_key= to async_get_sensor, or read_keys=[...] to async_get_sensors. Use async_get_nearby_sensors(fields, latitude, longitude, distance) for a distance-sorted search, and get_map_url(sensor_index) for a map link.
Getting Sensor History
Fetch a historical time series for a sensor, as parsed JSON or as raw CSV. The averaging period is in minutes (e.g. 0 for real-time, 60 for hourly, 1440 for daily):
import asyncio
from datetime import UTC, datetime, timedelta
from aiopurpleair import API
async def main() -> None:
"""Fetch a day of hourly history for a sensor."""
api = API("<API_KEY>")
end = datetime.now(UTC)
start = end - timedelta(days=1)
history = await api.sensors.async_get_sensor_history(
131075,
["humidity", "temperature", "pm2.5_atm"],
start_timestamp_utc=start,
end_timestamp_utc=end,
average=60,
)
# >>> history.data == [{"time_stamp": 1667336400, "humidity": 37, ...}, ...]
csv = await api.sensors.async_get_sensor_history_csv(
131075, ["pm2.5_atm"], start_timestamp_utc=start, end_timestamp_utc=end, average=60
)
# >>> csv.startswith("time_stamp,sensor_index,pm2.5_atm")
asyncio.run(main())
The history endpoint is a gated feature; if it is not enabled for your API key the call raises ApiDisabledError.
Getting the Organization
The organization endpoint reports the account's remaining API points and consumption rate, useful for surfacing a low-points warning before queries start failing:
import asyncio
from aiopurpleair import API
async def main() -> None:
"""Fetch the organization associated with the API key."""
api = API("<API_KEY>")
response = await api.organizations.async_get_organization()
# >>> response.remaining_points == 500000
# >>> response.consumption_rate == 1234.5
# >>> response.organization_id == "..."
# >>> response.organization_name == "..."
asyncio.run(main())
Working with Groups
Groups organize sensors for data access. Create and delete operations require a WRITE key; reads (list, detail, member data) use a READ key:
import asyncio
from aiopurpleair import API
async def main() -> None:
"""Create a group, add a member, read it back, then clean up."""
write_api = API("<WRITE_API_KEY>")
read_api = API("<READ_API_KEY>")
created = await write_api.groups.async_create_group("My Sensors")
group_id = created.group_id
await write_api.groups.async_create_member(group_id, sensor_index=131075)
groups = await read_api.groups.async_get_groups()
detail = await read_api.groups.async_get_group(group_id)
# >>> detail.members == [GroupMember(id=..., sensor_index=131075, ...)]
members = await read_api.groups.async_get_members(group_id, ["name", "pm2.5"])
# >>> members.data == {131075: SensorModel(...)}
await write_api.groups.async_delete_group(group_id)
asyncio.run(main())
Adding a private sensor also requires its registration owner_email. Per-member history is available as CSV via async_get_member_history_csv(group_id, member_id, fields, ...).
Error Handling
Each documented PurpleAir API error code maps to a specific exception subclass, so callers can catch a precise condition instead of pattern-matching on str(err). Every subclass derives from PurpleAirError:
import asyncio
from aiopurpleair import API
from aiopurpleair.errors import InvalidApiKeyError, RateLimitExceededError
async def main() -> None:
"""Handle specific PurpleAir error conditions."""
api = API("<API_KEY>")
try:
await api.sensors.async_get_sensors(["name"])
except InvalidApiKeyError:
... # the API key is missing or invalid
except RateLimitExceededError:
... # back off and retry later
asyncio.run(main())
All error codes and semantics are verified against the official PurpleAir API documentation.
Connection Pooling
By default a new connection is created per coroutine. Pass an existing aiohttp ClientSession for connection pooling:
import asyncio
from aiohttp import ClientSession
from aiopurpleair import API
async def main() -> None:
"""Reuse a session across calls."""
async with ClientSession() as session:
api = API("<API_KEY>", session=session)
...
asyncio.run(main())
Build Artifacts
Build process and artifacts:
- Package: a Python wheel + sdist (
ptr727-aiopurpleair), built with the hatchling backend on a src-layout (src/aiopurpleair/) and managed with uv. - Versioning: automatic via Nerdbank.GitVersioning from
version.json(1.0base) plus git height;mainbuilds a clean stableX.Y.Z,developaX.Y.Z.dev0prerelease. There is no manual tagging. - Publishing: releases publish to PyPI over OIDC Trusted Publishing (no stored API token). A shipped-path push to
main(stable) ordevelop(prerelease), or a manual dispatch, cuts a GitHub Release and uploads the wheel + sdist to PyPI. SeeWORKFLOW.mdfor the complete CI/CD contract.
API Reference
PurpleAir does not publish an OpenAPI/Swagger spec. This repo reconstructs one at docs/purpleair-openapi.yaml from PurpleAir's apiDoc-generated docs (which serve machine-readable api_data.js), using scripts/generate_openapi.py. The library's endpoint, field, and error-code coverage is validated against this spec.
Regenerate it after an upstream API change:
# Live-fetch https://api.purpleair.com/api_data.js, rebuild and validate the spec
uv run --with pyyaml --with openapi-spec-validator python scripts/generate_openapi.py
The generator takes the API version from the docs' changelog (the apiDoc build-metadata version lags behind), validates the result, and writes docs/purpleair-openapi.yaml. A non-empty diff means the upstream API changed. See AGENTS.md for how the code is validated against the spec.
Coverage: all 11 paths of the spec (currently API 1.2.0) are implemented - keys, sensors (list, single, and history JSON/CSV), organization, and the full Groups API (group and member management, member data, and member history). The single-sensor stats/stats_a/stats_b blocks are returned as part of the sensor payload but are not requestable fields values, so they are parsed on the response but excluded from the requestable field catalog.
Questions or Issues
- General questions:
- Use the Discussions forum for general questions.
- Bug reports:
- Ask in the Discussions forum if you are not sure if it is a bug.
- Check the existing Issues tracker for known problems.
- If the issue is unique and a bug, file it in Issues, and include all pertinent steps to reproduce the issue.
Contributing
- Branching workflow:
- Feature branch ->
developvia squash merge;develop->mainvia merge commit. Both methods are pinned in the branch rulesets. - CI runs on every branch push (there is no
pull_requesttrigger); a fork PR's pushes don't run the base-repo check, so a maintainer lands the change on an in-repo branch before merge. - Dependabot targets
mainanddevelopin parallel and auto-merges once the required check passes. - See
WORKFLOW.mdandAGENTS.mdfor the full release flow.
- Feature branch ->
- Code style:
- ruff,
mypy, andpyright; seeCODESTYLE.mdand.editorconfig. Everything runs throughuv run(withpytestat 100% coverage and syrupy snapshots).
- ruff,
- Repository setup:
- See
repo-config/README.mdfor repository configuration details.
- See
Credits
This library is an independent implementation based on the bachya/aiopurpleair PurpleAir API client by Aaron Bach (@bachya).
It was created to be maintained independently after the upstream PR bachya/aiopurpleair#719 - adding organization support - was abandoned.
The original MIT copyright is retained alongside that of the current maintainer in LICENSE and NOTICE.
License
Licensed under the MIT License and NOTICE
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 ptr727_aiopurpleair-1.0.58.tar.gz.
File metadata
- Download URL: ptr727_aiopurpleair-1.0.58.tar.gz
- Upload date:
- Size: 42.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80df23dbce4e515aa312c7dce5b774e8b45fa30ddea4176e13ecf7bc58232704
|
|
| MD5 |
90004f9dcfa9c3ba007c1d0a69170650
|
|
| BLAKE2b-256 |
debe6a123eb4613ec3366b9084d38792fc6f543cf8435d31a271cd0e23ab077b
|
Provenance
The following attestation bundles were made for ptr727_aiopurpleair-1.0.58.tar.gz:
Publisher:
publish-release.yml on ptr727/aiopurpleair
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ptr727_aiopurpleair-1.0.58.tar.gz -
Subject digest:
80df23dbce4e515aa312c7dce5b774e8b45fa30ddea4176e13ecf7bc58232704 - Sigstore transparency entry: 2510102221
- Sigstore integration time:
-
Permalink:
ptr727/aiopurpleair@f9fa481cbd1fc88c04cab76fdad34e70a38e0342 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ptr727
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-release.yml@f9fa481cbd1fc88c04cab76fdad34e70a38e0342 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ptr727_aiopurpleair-1.0.58-py3-none-any.whl.
File metadata
- Download URL: ptr727_aiopurpleair-1.0.58-py3-none-any.whl
- Upload date:
- Size: 30.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffd78279a9adf63ea92b00ff42aa91492274c88c66043103c2597befc2fbe60a
|
|
| MD5 |
bd46d051824d95afa6044e66585fa217
|
|
| BLAKE2b-256 |
22a7d861eb8583d27b4b23f05932ca016baa2723cd67afba728e96b8bda4e2f1
|
Provenance
The following attestation bundles were made for ptr727_aiopurpleair-1.0.58-py3-none-any.whl:
Publisher:
publish-release.yml on ptr727/aiopurpleair
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ptr727_aiopurpleair-1.0.58-py3-none-any.whl -
Subject digest:
ffd78279a9adf63ea92b00ff42aa91492274c88c66043103c2597befc2fbe60a - Sigstore transparency entry: 2510102296
- Sigstore integration time:
-
Permalink:
ptr727/aiopurpleair@f9fa481cbd1fc88c04cab76fdad34e70a38e0342 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ptr727
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-release.yml@f9fa481cbd1fc88c04cab76fdad34e70a38e0342 -
Trigger Event:
push
-
Statement type: