Files
core/homeassistant/components/scrape/const.py
T

20 lines
413 B
Python

"""Constants for Scrape integration."""
from datetime import timedelta
from homeassistant.const import Platform
DOMAIN = "scrape"
DEFAULT_ENCODING = "UTF-8"
DEFAULT_NAME = "Web scrape"
DEFAULT_VERIFY_SSL = True
DEFAULT_SCAN_INTERVAL = timedelta(minutes=10)
PLATFORMS = [Platform.SENSOR]
CONF_ADDITIONAL = "additional"
CONF_AUTH = "auth"
CONF_ENCODING = "encoding"
CONF_SELECT = "select"
CONF_INDEX = "index"