Config flow for scrape integration (#70476)
This commit is contained in:
parent
5ee2f4f438
commit
8d0dd1fe8c
13 changed files with 853 additions and 142 deletions
13
homeassistant/components/scrape/const.py
Normal file
13
homeassistant/components/scrape/const.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
"""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"
|
Loading…
Add table
Add a link
Reference in a new issue