Source code for pulseeco.data_types

from typing import Optional, TypedDict


[docs]class Sensor(TypedDict): sensorId: str position: str comments: str type: str description: str status: str
[docs]class DataValue(TypedDict): sensorId: str stamp: str year: Optional[int] type: str position: str value: str
[docs]class OverallValues(TypedDict): no2: str o3: str pm25: str pm10: str temperature: str humidity: str pressure: str noise_dba: str
[docs]class Overall(TypedDict): cityName: str values: OverallValues