mirror of https://github.com/home-assistant/core
20 lines
399 B
Python
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"
|