Metadata-Version: 2.4
Name: air-pollution
Version: 0.1.2
Summary: Air pollution data collector
Author-email: Michael Blaß <m.blass@uke.de>
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Framework :: Pydantic :: 2
Classifier: Framework :: Pytest
Classifier: Typing :: Typed
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Science/Research
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: altair>=5.5.0
Requires-Dist: hishel>=0.1.2
Requires-Dist: httpx-limiter>=0.2.0
Requires-Dist: httpx>=0.28.1
Requires-Dist: pydantic>=2.11.3
Requires-Dist: ratelimit>=2.2.1
Dynamic: license-file

# de.uke.iam.air-pollution
Collect environmental data from multiple APIs

```python
Display monthly PM10 data.

import air_pollution.luftmessnetz as lmn
import polars as pl

client = lmn.LuftmessnetzClient()

res = client.get_component_data("pm10_1m")
res = pl.DataFrame(res)

res.plot.line(x='datetime', y='value', color='station').properties(width=800, height=400)
```

## Note
Currently, only the Hamburger Luftmessnetz is implemented.
