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.4.1 (Web API v2.8.1) released on March 24, 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.4.20.tar.gz
(43.9 kB
view hashes)
Built Distribution
Close
Hashes for qbittorrent-api-2021.4.20.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4290d91fe400ccb768fb42139b93b0bca28fd4b87fc2dbd5c7a8c2d103b0662 |
|
MD5 | 0bc31c5869eb05bbf162726c13c4532a |
|
BLAKE2b-256 | ed507d1fae952693bc358f28f19a7ac3fe55233907351f4b4e932d93fdc5be6c |
Close
Hashes for qbittorrent_api-2021.4.20-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdf47004d761369e448bd398a9d4a9c4bfd51d3961efd69952090e6e1c958165 |
|
MD5 | dbf02485d1d6e0a24731f06d39a35a21 |
|
BLAKE2b-256 | 65a3b1f2bc4982379797a3b3dca42ff79b9314afc262ed729b15364a24076d86 |