Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Define IQVIA constants."""
2 
3 import logging
4 
5 LOGGER = logging.getLogger(__package__)
6 
7 DOMAIN = "iqvia"
8 
9 CONF_ZIP_CODE = "zip_code"
10 
11 TYPE_ALLERGY_FORECAST = "allergy_average_forecasted"
12 TYPE_ALLERGY_INDEX = "allergy_index"
13 TYPE_ALLERGY_OUTLOOK = "allergy_outlook"
14 TYPE_ALLERGY_TODAY = "allergy_index_today"
15 TYPE_ALLERGY_TOMORROW = "allergy_index_tomorrow"
16 TYPE_ASTHMA_FORECAST = "asthma_average_forecasted"
17 TYPE_ASTHMA_INDEX = "asthma_index"
18 TYPE_ASTHMA_TODAY = "asthma_index_today"
19 TYPE_ASTHMA_TOMORROW = "asthma_index_tomorrow"
20 TYPE_DISEASE_FORECAST = "disease_average_forecasted"
21 TYPE_DISEASE_INDEX = "disease_index"
22 TYPE_DISEASE_TODAY = "disease_index_today"