"""qBittorrent API client.""" from .client import QBittorrentClient from .dto import TorrentInfo from .exceptions import ( QBittorrentError, QBittorrentConfigurationError, QBittorrentAPIError, QBittorrentAuthError, ) # Global qBittorrent client instance (singleton) qbittorrent_client = QBittorrentClient() __all__ = [ "QBittorrentClient", "TorrentInfo", "QBittorrentError", "QBittorrentConfigurationError", "QBittorrentAPIError", "QBittorrentAuthError", "qbittorrent_client", ]