mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 04:05:01 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
20 lines
409 B
Python
20 lines
409 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_ADVANCED = "advanced"
|
|
CONF_AUTH = "auth"
|
|
CONF_ENCODING = "encoding"
|
|
CONF_SELECT = "select"
|
|
CONF_INDEX = "index"
|