Config flow for scrape integration (#70476)

This commit is contained in:
G Johansson 2022-06-03 21:24:04 +02:00 committed by GitHub
parent 5ee2f4f438
commit 8d0dd1fe8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 853 additions and 142 deletions

View 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"