mirror of
https://github.com/home-assistant/core.git
synced 2025-04-30 04:07:51 +00:00
14 lines
266 B
Python
14 lines
266 B
Python
"""Constants for Scrape integration."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "scrape"
|
|
DEFAULT_NAME = "Web scrape"
|
|
DEFAULT_VERIFY_SSL = True
|
|
|
|
PLATFORMS = [Platform.SENSOR]
|
|
|
|
CONF_SELECT = "select"
|
|
CONF_INDEX = "index"
|