Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Sabnzbd component."""
2 
3 DOMAIN = "sabnzbd"
4 DATA_SABNZBD = "sabnzbd"
5 
6 ATTR_SPEED = "speed"
7 ATTR_API_KEY = "api_key"
8 
9 DEFAULT_HOST = "localhost"
10 DEFAULT_PORT = 8080
11 DEFAULT_SPEED_LIMIT = "100"
12 DEFAULT_SSL = False
13 
14 SERVICE_PAUSE = "pause"
15 SERVICE_RESUME = "resume"
16 SERVICE_SET_SPEED = "set_speed"