19 lines
423 B
Python
19 lines
423 B
Python
"""Constants for the tankerkoenig integration."""
|
|
|
|
DOMAIN = "tankerkoenig"
|
|
NAME = "tankerkoenig"
|
|
|
|
CONF_STATIONS = "stations"
|
|
|
|
DEFAULT_RADIUS = 2
|
|
DEFAULT_SCAN_INTERVAL = 30
|
|
|
|
ATTR_BRAND = "brand"
|
|
ATTR_CITY = "city"
|
|
ATTR_FUEL_TYPE = "fuel_type"
|
|
ATTR_HOUSE_NUMBER = "house_number"
|
|
ATTR_POSTCODE = "postcode"
|
|
ATTR_STATION_NAME = "station_name"
|
|
ATTR_STREET = "street"
|
|
ATTRIBUTION = "Data provided by https://www.tankerkoenig.de"
|