Skip to content

SJVAir Toolkit

Command-line tool and Python client for SJVAir — a network of air quality monitors across California's San Joaquin Valley.

Install

pip install sjvair

Quickstart

from sjvair import SJVAirClient

with SJVAirClient() as client:
    for monitor in client.monitors.list():
        print(f"{monitor['id']}: {monitor['name']}")
sjvair monitors list --county Fresno --output fresno.csv

Where to next