mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 00:20:30 +01:00
19 lines
324 B
Python
19 lines
324 B
Python
"""Constants for NZBGet."""
|
|
|
|
DOMAIN = "nzbget"
|
|
|
|
# Attributes
|
|
ATTR_SPEED = "speed"
|
|
|
|
# Defaults
|
|
DEFAULT_NAME = "NZBGet"
|
|
DEFAULT_PORT = 6789
|
|
DEFAULT_SPEED_LIMIT = 1000 # 1 Megabyte/Sec
|
|
DEFAULT_SSL = False
|
|
DEFAULT_VERIFY_SSL = False
|
|
|
|
# Services
|
|
SERVICE_PAUSE = "pause"
|
|
SERVICE_RESUME = "resume"
|
|
SERVICE_SET_SPEED = "set_speed"
|