mirror of
https://github.com/home-assistant/core.git
synced 2026-07-02 04:06:41 +01:00
20 lines
359 B
Python
20 lines
359 B
Python
"""Constants for NZBGet."""
|
|
|
|
DOMAIN = "nzbget"
|
|
|
|
# Attributes
|
|
ATTR_SPEED = "speed"
|
|
|
|
# Defaults
|
|
CONF_MORE_OPTIONS = "more_options"
|
|
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"
|