* Scrape take 2 * cleanup * new entity name * Fix name, add tests * Use FlowResultType * Add test abort * issue * hassfest * Remove not needed test * clean * Remove config entry and implement datacoordinator * fix codeowners * fix codeowners * codeowners reset * Fix coordinator * Remove test config_flow * Fix tests * hassfest * reset config flow * reset strings * reset sensor * next version * Reconfig * Adjust sensor * cleanup sensor * cleanup init * Fix tests * coverage * Guard against empty sensor * naming * Remove coverage * Review comments * Remove print * Move sensor check
14 lines
298 B
Python
14 lines
298 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
|
|
DEFAULT_SCAN_INTERVAL = 60 * 10
|
|
|
|
PLATFORMS = [Platform.SENSOR]
|
|
|
|
CONF_SELECT = "select"
|
|
CONF_INDEX = "index"
|