Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the tankerkoenig integration."""
2 
3 DOMAIN = "tankerkoenig"
4 NAME = "tankerkoenig"
5 
6 CONF_FUEL_TYPES = "fuel_types"
7 CONF_STATIONS = "stations"
8 
9 DEFAULT_RADIUS = 2
10 DEFAULT_SCAN_INTERVAL = 30
11 
12 FUEL_TYPES = {"e5": "Super", "e10": "Super E10", "diesel": "Diesel"}
13 
14 ATTR_BRAND = "brand"
15 ATTR_CITY = "city"
16 ATTR_FUEL_TYPE = "fuel_type"
17 ATTR_HOUSE_NUMBER = "house_number"
18 ATTR_POSTCODE = "postcode"
19 ATTR_STATION_NAME = "station_name"
20 ATTR_STREET = "street"
21 ATTRIBUTION = "Data provided by https://www.tankerkoenig.de"