Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Radarr."""
2 
3 import logging
4 from typing import Final
5 
6 DOMAIN: Final = "radarr"
7 
8 # Defaults
9 DEFAULT_MAX_RECORDS = 20
10 DEFAULT_NAME = "Radarr"
11 DEFAULT_URL = "http://127.0.0.1:7878"
12 
13 HEALTH_ISSUES = (
14  "DownloadClientCheck",
15  "DownloadClientStatusCheck",
16  "IndexerRssCheck",
17  "IndexerSearchCheck",
18 )
19 
20 LOGGER = logging.getLogger(__package__)