Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for qBittorrent."""
2 
3 from typing import Final
4 
5 DOMAIN: Final = "qbittorrent"
6 
7 DEFAULT_NAME = "qBittorrent"
8 DEFAULT_URL = "http://127.0.0.1:8080"
9 
10 STATE_ATTR_TORRENTS = "torrents"
11 STATE_ATTR_ALL_TORRENTS = "all_torrents"
12 
13 STATE_UP_DOWN = "up_down"
14 STATE_SEEDING = "seeding"
15 STATE_DOWNLOADING = "downloading"
16 
17 SERVICE_GET_TORRENTS = "get_torrents"
18 SERVICE_GET_ALL_TORRENTS = "get_all_torrents"
19 TORRENT_FILTER = "torrent_filter"