Python client for qBittorrent v4.1+ Web API
Project description
qBittorrent Web API Client
Python client implementation for qBittorrent Web API. Supports qBittorrent v4.1.0+ (i.e. Web API v2.0+).
Currently supports up to qBittorrent v4.3.8 (Web API v2.8.2) released on Aug 28, 2021.
Find the full documentation for this client on RTD.
Features
- The entire qBittorrent Web API is implemented.
- qBittorrent version checking for an endpoint's existence/features is automatically handled.
- All Python versions are supported.
- If the authentication cookie expires, a new one is automatically requested in line with any API call.
Installation
Install via pip from PyPI
pip install qbittorrent-api
Getting Started
import qbittorrentapi
# instantiate a Client using the appropriate WebUI configuration
qbt_client = qbittorrentapi.Client(host='localhost', port=8080, username='admin', password='adminadmin')
# the Client will automatically acquire/maintain a logged in state in line with any request.
# therefore, this is not necessary; however, you may want to test the provided login credentials.
try:
qbt_client.auth_log_in()
except qbittorrentapi.LoginFailed as e:
print(e)
# display qBittorrent info
print(f'qBittorrent: {qbt_client.app.version}')
print(f'qBittorrent Web API: {qbt_client.app.web_api_version}')
for k,v in qbt_client.app.build_info.items(): print(f'{k}: {v}')
# retrieve and show all torrents
for torrent in qbt_client.torrents_info():
print(f'{torrent.hash[-6:]}: {torrent.name} ({torrent.state})')
# pause all torrents
qbt_client.torrents.pause.all()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
qbittorrent-api-2021.8.23.tar.gz
(44.3 kB
view hashes)
Built Distribution
Close
Hashes for qbittorrent-api-2021.8.23.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 596ad4ee47e0a9f2be8af17fba62caf2ee666b41f256b26155aca0487e10df11 |
|
MD5 | 54908cc422c020cf66f3d0f897bf4e09 |
|
BLAKE2b-256 | 2d83749f14179e98900d0fb3518c9d22116335abff903309c1e07f5d84890199 |
Close
Hashes for qbittorrent_api-2021.8.23-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 470f9deb539853f952707372ad840306c88b65c4ae761a7566500018e863fc94 |
|
MD5 | 980f9138366af887d3ff4c2dc59286c4 |
|
BLAKE2b-256 | aadd7dc44889dcd93fc79a15c00fc725b5c00aa223526752620b7288a92daca6 |