core/homeassistant/components/pi_hole/const.py

23 lines
472 B
Python

"""Constants for the pi_hole integration."""
from datetime import timedelta
DOMAIN = "pi_hole"
CONF_STATISTICS_ONLY = "statistics_only"
DEFAULT_LOCATION = "admin"
DEFAULT_METHOD = "GET"
DEFAULT_NAME = "Pi-Hole"
DEFAULT_SSL = False
DEFAULT_VERIFY_SSL = True
DEFAULT_STATISTICS_ONLY = True
SERVICE_DISABLE = "disable"
SERVICE_DISABLE_ATTR_DURATION = "duration"
MIN_TIME_BETWEEN_UPDATES = timedelta(minutes=5)
DATA_KEY_API = "api"
DATA_KEY_COORDINATOR = "coordinator"