1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-01 04:37:52 +00:00

20 lines
399 B
Python

"""Constants for Scrape integration."""
from __future__ import annotations
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_ENCODING = "encoding"
CONF_SELECT = "select"
CONF_INDEX = "index"