Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the emoncms integration."""
2 
3 import logging
4 
5 CONF_EXCLUDE_FEEDID = "exclude_feed_id"
6 CONF_ONLY_INCLUDE_FEEDID = "include_only_feed_id"
7 CONF_MESSAGE = "message"
8 CONF_SUCCESS = "success"
9 DOMAIN = "emoncms"
10 EMONCMS_UUID_DOC_URL = (
11  "https://docs.openenergymonitor.org/emoncms/update.html"
12  "#upgrading-to-a-version-producing-a-unique-identifier"
13 )
14 FEED_ID = "id"
15 FEED_NAME = "name"
16 FEED_TAG = "tag"
17 
18 
19 LOGGER = logging.getLogger(__package__)