1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/scrape/const.py
2022-06-03 09:24:04 -10:00

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"