Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Define AirVisual constants."""
2 
3 import logging
4 
5 DOMAIN = "airvisual"
6 LOGGER = logging.getLogger(__package__)
7 
8 INTEGRATION_TYPE_GEOGRAPHY_COORDS = "Geographical Location by Latitude/Longitude"
9 INTEGRATION_TYPE_GEOGRAPHY_NAME = "Geographical Location by Name"
10 INTEGRATION_TYPE_NODE_PRO = "AirVisual Node/Pro"
11 
12 CONF_CITY = "city"
13 CONF_GEOGRAPHIES = "geographies"
14 CONF_INTEGRATION_TYPE = "integration_type"