nettigo-air-monitor
Python wrapper for getting air quality data from Nettigo Air Monitor devices.
What it is and what it does
Nettigo Air Monitor is an async Python client for querying air quality data from Nettigo Air Monitor hardware and compatible Sensor.Community firmware devices. It wraps HTTP communication with connection pooling via aiohttp, handles authentication, and includes automatic retry logic via tenacity and data deserialization via dacite and aqipy-atmotech.
The package is designed for integration into monitoring dashboards or data collection pipelines where you need to periodically fetch sensor readings from devices on a local network. It exposes device metadata (firmware version, MAC address, location) and sensor measurements through a simple async interface, with built-in error handling for network timeouts, authentication failures, and malformed responses.
Use it for:
- Integrate air quality readings into a home automation system.
- Build a local monitoring dashboard that polls multiple Nettigo devices on a network.
- Collect historical air quality data for analysis or alerting based on thresholds.
- Sync sensor data to a cloud platform or time-series database for tracking.
- Develop a custom application that reacts to real-time air quality changes.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Fetches and parses air quality data from Nettigo Air Monitor devices and compatible Sensor.Community firmware over HTTP, handling connection, authentication, and retry logic.
Yes. The package is actively maintained, has no known vulnerabilities, low install friction, and a permissive license. Install it if you own or have access to a Nettigo Air Monitor or Sensor.Community device and need to fetch its data programmatically in an async Python application.
Install
nettigo-air-monitor on PyPI
pip
pip install nettigo-air-monitoruv
uv add nettigo-air-monitorpoetry
poetry add nettigo-air-monitorInstalling nettigo-air-monitor
Before you install
Low install friction with a pure-Python wheel and four runtime dependencies. Active maintenance as of 2026-08-13 with production-stable status.
License in practice
Apache-2.0 permissive license allows free use, modification, and distribution with minimal restrictions.
Quickstart
import asyncio
from aiohttp import ClientSession
from nettigo_air_monitor import NettigoAirMonitor, ConnectionOptions
async def main():
options = ConnectionOptions(host="nam", username="user", password="password")
async with ClientSession() as session:
nam = await NettigoAirMonitor.create(session, options)
data = await nam.async_update()
print(data)
asyncio.run(main())
Requires Python 3.12 or later; device must be reachable on the network and credentials must be correct.
Verify before relying
- Whether the package supports both Nettigo Air Monitor and Sensor.Community firmware equally, or if one is better-tested.
- What specific air quality metrics are returned by async_update().
- Performance characteristics when polling multiple devices or high-frequency updates.
Package facts
| License | Apache-2.0 (permissive) |
| Python support | supports the current Python release (>=3.12) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 4 — aiohttp, aqipy-atmotech, dacite, tenacity |
| Maintenance | actively maintained — 410 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 73,938/month — #14,906 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: nettigo_air_monitor-5.0.0-py3-none-any.whl
Tags
More Monitoring packages
Wraps any iterable to display a real-time…
copyleft · top 100 on PyPI
opentelemetry-semantic-conventionsProvides generated Python code for…
permissive · top 100 on PyPI
opentelemetry-sdkProvides the reference implementation of the…
permissive · top 100 on PyPI
opentelemetry-apiProvides the abstract API and interfaces for…
permissive · top 100 on PyPI
opentelemetry-exporter-otlp-proto-httpExports OpenTelemetry observability data to an…
permissive · top 1,000 on PyPI
opentelemetry-instrumentationProvides automatic instrumentation commands and…
permissive · top 1,000 on PyPI
giosFetches real-time air quality measurements from…
permissive · top 15,000 on PyPI
pydexcomFetches real-time glucose readings from Dexcom…
permissive · top 15,000 on PyPI
aioairqAsynchronous Python library for retrieving…
permissive · top 15,000 on PyPI
brotherQueries Brother laser and inkjet printers over…
permissive · top 15,000 on PyPI
airthings-bleLibrary to communicate with Airthings…
permissive · top 15,000 on PyPI
accuweatherAsync Python wrapper for fetching current…
permissive · top 15,000 on PyPI
nextdnsAsync Python wrapper for the NextDNS API that…
permissive · top 15,000 on PyPI
airthings-cloudA Python library for communicating with…
permissive · top 15,000 on PyPI
pyairvisualA thin async Python wrapper for the AirVisual…
permissive · top 15,000 on PyPI
imgw-pibAn async Python wrapper for the IMGW-PIB API…
permissive · top 15,000 on PyPI