Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create SensorModel and use throughout library #14

Merged
merged 3 commits into from
Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 6 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 🚰 aiopurpleair: A Python3, asyncio-based library to interact with the PurpleAir API
# 🟣 aiopurpleair: A Python3, asyncio-based library to interact with the PurpleAir API

[![CI](https://github.com/bachya/aiopurpleair/workflows/CI/badge.svg)](https://github.com/bachya/aiopurpleair/actions)
[![PyPi](https://img.shields.io/pypi/v/aiopurpleair.svg)](https://pypi.python.org/pypi/aiopurpleair)
Expand Down Expand Up @@ -80,20 +80,10 @@ async def main() -> None:
# >>> response.data_time_stamp == datetime(2022, 11, 3, 19, 25, 31) # UTC
# >>> response.firmware_default_version == "7.02"
# >>> response.max_age == 604800
# >>> response.channel_flags is None
# >>> response.channel_states is None
# >>> response.location_type is LocationType.OUTSIDE
# >>> response.location_types is None
# >>> response.fields == ["sensor_index", "name"]
# >>> response.data == {
# >>> 131075: {
# >>> "sensor_index": 131075,
# >>> "name": "Mariners Bluff",
# >>> },
# >>> 131079: {
# >>> "sensor_index": 131079,
# >>> "name": "BRSKBV-outside",
# >>> },
# >>> 131075: SensorModel(sensor_index=131075, name=Mariners Bluff),
# >>> 131079: SensorModel(sensor_index=131079, name=BRSKBV-outside),
# >>> }


Expand All @@ -120,22 +110,19 @@ from aiopurpleair import API
async def main() -> None:
"""Run."""
api = API("<API_KEY>")
response = await api.sensors.async_get_sensor("<SENSOR INDEX>")
response = await api.sensors.async_get_sensor(131075)
# >>> response.api_version == "V1.0.11-0.0.41"
# >>> response.time_stamp == datetime(2022, 11, 5, 16, 37, 3)
# >>> response.data_time_stamp == datetime(2022, 11, 5, 16, 36, 21)
# >>> response.sensor == {
# >>> "sensor_index": 131075,
# >>> "last_modified": 1635632829,
# >>> ...
# >>> }
# >>> response.sensor == SensorModel(sensor_index=131075, ...),


asyncio.run(main())
```

`API.sensors.async_get_sensor` takes several parameters:

- `sensor_index` (required): The sensor index of the sensor to retrieve.
- `fields` (optional): The sensor data fields to include.
- `read_key` (optional): A read key for a private sensor.

Expand Down
27 changes: 27 additions & 0 deletions aiopurpleair/const.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,35 @@
"""Define package constants."""
import logging
from enum import Enum

LOGGER = logging.getLogger(__package__)


class ChannelFlag(Enum):
"""Define a channel flag."""

NORMAL = 0
A_DOWNGRADED = 1
B_DOWNGRADED = 2
A_B_DOWNGRADED = 3


class ChannelState(Enum):
"""Define a channel state."""

NO_PM = 0
PM_A = 1
PM_B = 2
PM_A_PM_B = 3


class LocationType(Enum):
"""Define a location type."""

OUTSIDE = 0
INSIDE = 1


SENSOR_FIELDS = {
"0.3_um_count",
"0.3_um_count_a",
Expand Down
22 changes: 20 additions & 2 deletions aiopurpleair/helpers/validators/sensors.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
"""Define Pydantic validors for sensors."""
from aiopurpleair.const import SENSOR_FIELDS
"""Define reusable Pydantic validors for sensors."""
from aiopurpleair.const import SENSOR_FIELDS, ChannelFlag


def validate_channel_flag(value: int) -> ChannelFlag:
"""Validate the channel flag.

Args:
value: The integer-based interpretation of a channel flag.

Returns:
A ChannelFlag value.

Raises:
ValueError: Raised upon an unknown location type.
"""
try:
return ChannelFlag(value)
except ValueError as err:
raise ValueError(f"{value} is an unknown channel flag") from err


def validate_fields_request(value: list[str]) -> str:
Expand Down
Loading