Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Downloader component."""
2 
3 import logging
4 
5 _LOGGER = logging.getLogger(__package__)
6 
7 DOMAIN = "downloader"
8 DEFAULT_NAME = "Downloader"
9 CONF_DOWNLOAD_DIR = "download_dir"
10 ATTR_FILENAME = "filename"
11 ATTR_SUBDIR = "subdir"
12 ATTR_URL = "url"
13 ATTR_OVERWRITE = "overwrite"
14 
15 CONF_DOWNLOAD_DIR = "download_dir"
16 
17 DOWNLOAD_FAILED_EVENT = "download_failed"
18 DOWNLOAD_COMPLETED_EVENT = "download_completed"
19 
20 SERVICE_DOWNLOAD_FILE = "download_file"