24 lines
744 B
Python
24 lines
744 B
Python
"""Constants for the Transmission Bittorent Client component."""
|
|
DOMAIN = "transmission"
|
|
|
|
SENSOR_TYPES = {
|
|
"active_torrents": ["Active Torrents", None],
|
|
"current_status": ["Status", None],
|
|
"download_speed": ["Down Speed", "MB/s"],
|
|
"paused_torrents": ["Paused Torrents", None],
|
|
"total_torrents": ["Total Torrents", None],
|
|
"upload_speed": ["Up Speed", "MB/s"],
|
|
"completed_torrents": ["Completed Torrents", None],
|
|
"started_torrents": ["Started Torrents", None],
|
|
}
|
|
SWITCH_TYPES = {"on_off": "Switch", "turtle_mode": "Turtle Mode"}
|
|
|
|
DEFAULT_NAME = "Transmission"
|
|
DEFAULT_PORT = 9091
|
|
DEFAULT_SCAN_INTERVAL = 120
|
|
|
|
ATTR_TORRENT = "torrent"
|
|
SERVICE_ADD_TORRENT = "add_torrent"
|
|
|
|
DATA_UPDATED = "transmission_data_updated"
|