* Create new config parameter for default character encoding if no character encoding is declared * Changes suggested by gjohansson-ST * Added config flow for scape * Removed "character" * Change to create_async_httpx_client * Remove CONF_ENCODING from Scrape SENSOR_SCHEMA * Debug scrape test
24 lines
503 B
Python
24 lines
503 B
Python
"""The rest component constants."""
|
|
|
|
DOMAIN = "rest"
|
|
|
|
DEFAULT_METHOD = "GET"
|
|
DEFAULT_VERIFY_SSL = True
|
|
DEFAULT_FORCE_UPDATE = False
|
|
DEFAULT_ENCODING = "UTF-8"
|
|
CONF_ENCODING = "encoding"
|
|
|
|
DEFAULT_BINARY_SENSOR_NAME = "REST Binary Sensor"
|
|
DEFAULT_SENSOR_NAME = "REST Sensor"
|
|
CONF_JSON_ATTRS = "json_attributes"
|
|
CONF_JSON_ATTRS_PATH = "json_attributes_path"
|
|
|
|
REST_IDX = "rest_idx"
|
|
PLATFORM_IDX = "platform_idx"
|
|
|
|
COORDINATOR = "coordinator"
|
|
REST = "rest"
|
|
|
|
REST_DATA = "rest_data"
|
|
|
|
METHODS = ["POST", "GET"]
|