2020-02-29 03:14:17 +00:00
|
|
|
"""Define AirVisual constants."""
|
2020-04-22 23:41:14 +00:00
|
|
|
import logging
|
2020-02-29 03:14:17 +00:00
|
|
|
|
|
|
|
DOMAIN = "airvisual"
|
2020-04-22 23:41:14 +00:00
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
|
2021-02-01 21:38:03 +00:00
|
|
|
INTEGRATION_TYPE_GEOGRAPHY_COORDS = "Geographical Location by Latitude/Longitude"
|
|
|
|
INTEGRATION_TYPE_GEOGRAPHY_NAME = "Geographical Location by Name"
|
2020-04-22 23:41:14 +00:00
|
|
|
INTEGRATION_TYPE_NODE_PRO = "AirVisual Node/Pro"
|
2020-02-29 03:14:17 +00:00
|
|
|
|
|
|
|
CONF_CITY = "city"
|
|
|
|
CONF_COUNTRY = "country"
|
2020-04-15 01:46:41 +00:00
|
|
|
CONF_GEOGRAPHIES = "geographies"
|
2020-04-24 17:11:17 +00:00
|
|
|
CONF_INTEGRATION_TYPE = "integration_type"
|
2020-02-29 03:14:17 +00:00
|
|
|
|
2020-05-01 17:29:58 +00:00
|
|
|
DATA_COORDINATOR = "coordinator"
|