qBittorrent API

This commit is contained in:
2025-11-30 02:35:14 +01:00
parent ec9a2d4d36
commit 2098eee76e
4 changed files with 541 additions and 2 deletions
+19 -1
View File
@@ -19,6 +19,16 @@ from .knaben import (
TorrentResult
)
from .qbittorrent import (
QBittorrentClient,
qbittorrent_client,
QBittorrentError,
QBittorrentConfigurationError,
QBittorrentAPIError,
QBittorrentAuthError,
TorrentInfo
)
__all__ = [
# TMDB
'TMDBClient',
@@ -35,5 +45,13 @@ __all__ = [
'KnabenConfigurationError',
'KnabenAPIError',
'KnabenNotFoundError',
'TorrentResult'
'TorrentResult',
# qBittorrent
'QBittorrentClient',
'qbittorrent_client',
'QBittorrentError',
'QBittorrentConfigurationError',
'QBittorrentAPIError',
'QBittorrentAuthError',
'TorrentInfo'
]