qbittorrent-api


Nameqbittorrent-api JSON
Version 2024.3.60 PyPI version JSON
download
home_pageNone
SummaryPython client for qBittorrent v4.1+ Web API.
upload_time2024-03-25 17:26:37
maintainerRussell Martin
docs_urlNone
authorRussell Martin
requires_python>=3.8
licenseNone
keywords python qbittorrent api client torrent torrents webui web
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

qBittorrent Web API Client
==========================

Python client implementation for qBittorrent Web API

[![GitHub Workflow Status (branch)](https://img.shields.io/github/checks-status/rmartin16/qbittorrent-api/main?style=flat-square)](https://github.com/rmartin16/qbittorrent-api/actions?query=branch%3Amain) [![Codecov branch](https://img.shields.io/codecov/c/gh/rmartin16/qbittorrent-api/main?style=flat-square)](https://app.codecov.io/gh/rmartin16/qbittorrent-api) [![PyPI](https://img.shields.io/pypi/v/qbittorrent-api?style=flat-square)](https://pypi.org/project/qbittorrent-api/) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qbittorrent-api?style=flat-square)](https://pypi.org/project/qbittorrent-api/)

</div>

Currently supports qBittorrent [v4.6.4](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.4) (Web API v2.9.3) released on March 23, 2024.

User Guide and API Reference available on [Read the Docs](https://qbittorrent-api.readthedocs.io/).

Features
------------
* The entire qBittorrent [Web API](https://github.com/qbittorrent/qBittorrent/wiki/WebUI-API-(qBittorrent-4.1)) is implemented.
* qBittorrent version checking for an endpoint's existence/features is automatically handled.
* If the authentication cookie expires, a new one is automatically requested in line with any API call.

Installation
------------
Install via pip from [PyPI](https://pypi.org/project/qbittorrent-api/)
```bash
python -m pip install qbittorrent-api
```

Getting Started
---------------
```python
import qbittorrentapi

# instantiate a Client using the appropriate WebUI configuration
conn_info = dict(
    host="localhost",
    port=8080,
    username="admin",
    password="adminadmin",
)
qbt_client = qbittorrentapi.Client(**conn_info)

# the Client will automatically acquire/maintain a logged-in state
# in line with any request. therefore, this is not strictly necessary;
# however, you may want to test the provided login credentials.
try:
    qbt_client.auth_log_in()
except qbittorrentapi.LoginFailed as e:
    print(e)

# if the Client will not be long-lived or many Clients may be created
# in a relatively short amount of time, be sure to log out:
qbt_client.auth_log_out()

# or use a context manager:
with qbittorrentapi.Client(**conn_info) as qbt_client:
    if qbt_client.torrents_add(urls="...") != "Ok.":
        raise Exception("Failed to add torrent.")

# 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()
```

Change Log
==========
### v2024.3.60 (25 mar 2024)
- Advertise support for qBittorrent v4.6.4

### v2024.2.59 (25 feb 2024)
- Allow added RSS feeds without a name/path to default to the name in the feed (#423)
- Advertise support for Python 3.13 (#349)

### v2024.1.58 (16 jan 2024)
- Advertise support for qBittorrent v4.6.3

### v2023.11.57 (27 nov 2023)
- Advertise support for qBittorrent v4.6.2

### v2023.11.56 (20 nov 2023)
- Advertise support for qBittorrent v4.6.1
- Add support for ``torrents/count`` (#366)

### v2023.11.55 (6 nov 2023)
- Remove Python 2 platform tag from published wheel (#369)

### v2023.10.54 (22 oct 2023)
- Advertise support for qBittorrent v4.6.0
- Dropped support for legacy Python versions; Python 3.8+ is supported (#333)
- Refactored typing from stub files in to source (#345)
- Dropped support for API method arguments ``hash`` and ``hashes``; use ``torrent_hash`` and ``torrent_hashes``, respectively (#345)
  - For example, replace ``client.torrents_info(hashes="...")`` with ``client.torrents_info(torrent_hashes="...")``

### v2023.9.53 (7 sept 2023)
- Advertise support for Python 3.12
- Advertise support for qBittorrent v4.5.5
- Add ``inactive_seeding_time_limit`` for ``torrents/setShareLimits`` (#271)
- Implement ``app/networkInterfaceList`` and ``app/networkInterfaceAddressList`` (#272)

### v2023.7.52 (13 jul 2023)
- Ensure the wheel is uploaded with the release to PyPI

### v2023.7.51 (13 jul 2023)
- Convert ``APINames`` and ``TorrentStatus`` to ``StrEnum`` and ``TrackerStatus`` to ``IntEnum`` (#267)

### v2023.6.50 (19 jun 2023)
- Advertise support for qBittorrent v4.5.4

### v2023.6.49 (9 jun 2023)
- The ``Client`` is no longer binded to ``List``s (#230)
- This does not affect normal operation but allows for slicing, adding, and copying ``List``s

### v2023.5.48 (29 may 2023)
- Advertise support for qBittorrent v4.5.3

### v2023.4.47 (19 apr 2023)
- ``Client`` can now be used as a context manager

### v2023.4.46 (14 apr 2023)
- Fix building docs after implementing ``src-layout``

### v2023.4.45 (11 apr 2023)
- Add the ``TrackerStatus`` Enum to identify tracker statuses from ``torrents/trackers``

### v2023.3.44 (09 mar 2023)
- Add support for torrent status filters ``seeding``, ``moving``, ``errored``, and ``checking``

### v2023.2.43 (27 feb 2023)
- Advertise support for qBittorrent v4.5.2

### v2023.2.42 (13 feb 2023)
- Advertise support for qBittorrent v4.5.1

### v2023.2.41 (8 feb 2023)
- Remove dependence on qBittorrent authentication cookie being named ``SID``
- Minor typing fixes

### v2022.11.40 (27 nov 2022)
- Support qBittorrent v4.5.0 release
- Add support for ``torrents/export``
- Implement new ``transfer/setSpeedLimitsMode`` in place of existing ``transfer/toggleSpeedLimitsMode``
- Add support for ``stopCondition`` in ``torrents/add``
- Update typing to be complete, accurate, and shipped with the package

### v2022.10.39 (26 oct 2022)
- Advertise support for Python 3.11

### v2022.8.38 (31 aug 2022)
- Advertise support for qBittorrent v4.4.5

### v2022.8.37 (24 aug 2022)
- Advertise support for qBittorrent v4.4.4

### v2022.8.36 (15 aug 2022)
- Comply with enforced HTTP method requirements from qBittorrent

### v2022.8.35 (13 aug 2022)
- Remove ``PYTHON_`` prefix for configuration environment variables

### v2022.8.34 (11 aug 2022)
- Add ``setuptools`` as an explicit dependency for ``pkg_resources.parse_version()``

### v2022.7.33 (27 jul 2022)
- Reorder class hierarchy to allow independent MixIn use
- Clean up typing annotations
- Optimize Dictionary and List initializations
- Rename Alias decorator to alias for better conformity

### v2022.5.32 (30 may 2022)
- Implement pre-commit checks
- Advertise support for qBittorrent v4.4.3.1

### v2022.5.31 (24 may 2022)
- Advertise support for qBittorrent v4.4.3
- Revamp GitHub CI
- Reorg ``Request`` for some more clarity (hopefully)

### v2022.4.30 (3 apr 2022)
- Stop advertising support for Python 3.6 (EOL 12/2021)
- Publish to PyPI using API token and cleanup GitHub Action scripts

### v2022.3.29 (25 mar 2022)
- Advertise support for qBittorrent v4.4.2

### v2022.2.28 (17 feb 2022)
- Advertise support for qBittorrent v4.4.1
- qBittorrent reverted the category dictionary key ``savePath`` back to ``save_path``

### v2022.1.27 (9 jan 2022)
- Support for qBittorrent v4.4.0
- ``torrents/info`` results can now be filtered by a torrent tag
- Added new torrent state "Forced Metadata Downloading"
- Support per-torrent/per-category "download folder"

### v2021.12.26 (11 dec 2021)
- Stop sending ``Origin`` and ``Referer`` headers (Fixes #63)

### v2021.12.25 (10 dec 2021)
- Close files that are opened and sent to Requests when adding torrents from files
- Enable warnings for tests and explicitly close Requests Sessions to prevent (mostly spurious) ResourceWarnings

### v2021.12.24 (3 dec 2021)
- Add Type Hints for all public and private functions, methods, and variables
- Support HTTP timeouts as well as arbitrary Requests configurations

### v2021.8.23 (28 aug 2021)
- Advertise support for qBittorrent v4.3.8
- Drop support for Python 3.5

### v2021.5.22 (12 may 2021)
- Support for qBittorrent v4.3.5
- ``torrents/files`` includes ``index`` for each file; ``index`` officially replaces ``id`` but ``id`` will still be populated

### v2021.5.21 (1 may 2021)
- Allow users to force a specific communications scheme with ``FORCE_SCHEME_FROM_HOST`` (fixes #54)

### v2021.4.20 (11 apr 2021)
- Add support for ratio limit and seeding time limit when adding torrents

### v2021.4.19 (8 apr 2021)
- Update license in setup to match gpl->mit license change on GitHub

### v2021.3.18 (13 mar 2021)
- Replace ``TorrentStates.FORCE_DOWNLOAD='forceDL'`` with ``TorrentStates.FORCED_DOWNLOAD='forcedDL'``

### v2021.2.17 (7 feb 2021)
- Generally refactor ``requests.py`` so it's better and easier to read
- Persist a Requests Session between API calls instead of always creating a new one...small perf benefit
- Move auth endpoints back to a dedicated module
- Since ``attrdict`` is apparently going to break in Python 3.10 and it is no longer maintained, I've vendored a modified version (fixes #45)
- Created ``handle_hashes`` decorator to hide the cruft of continuing to support hash and hashes arguments

### v2021.1.16 (26 jan 2021)
- Support qBittorrent v4.3.3 and Web API v2.7 (...again)
- New ``torrents/renameFile`` and ``torrents/renameFolder`` endpoints
- Retrieve app api version when needed instead of caching
- Stop verifying and removing individual parameters when they aren't supported

### v2020.12.15 (27 dec 2020)
- Support qBittorrent v4.3.2 and Web API v2.7
- ``torrents/add`` supports adding torrents with tags via ``tags`` parameter
- ``app/preferences`` supports toggling internationalized domain name (IDN) support via ``idn_support_enabled``
- BREAKING CHANGE: for ``torrents/add``, ``is_root_folder`` (or ``root_folder``) is superseded by ``content_layout``
- For ``torrents/delete``, ``delete_files`` now defaults to ``False`` instead of required being explicitly passed

### v2020.12.14 (6 dec 2020)
- Add support for non-standard API endpoint paths (Fixes #37)
- Allows users to leverage this client when qBittorrent is configured behind a reverse proxy
  - For instance, if the Web API is being exposed at "http://localhost/qbt/", then users can instantiate via ``Client(host='localhost/qbt')`` and all API endpoint paths will be prefixed with "/qbt"
- Additionally, the scheme (i.e. http or https) from the user will now be respected as the first choice for which scheme is used to communicate with qBittorrent
  - However, users still don't need to even specify a scheme; it'll be automatically determined on the first connection to qBittorrent
- Neither of these should be breaking changes, but if you're instantiating with an incorrect scheme or an irrelevant path, you may need to prevent doing that now

### v2020.11.13 (29 nov 2020)
- Support qBittorrent v4.3.1 and Web API v2.6.1
- Path of torrent content now available via ``content_path`` from ``torrents/info``

### v2020.11.12 (16 nov 2020)
- Fix support for raw bytes for ``torrent_files`` in ``torrents_add()`` for Python 3 (Fixes #34)

### v2020.10.11 (29 oct 2020)
- Support qBittorrent v4.3.0.1 and Web API v2.6
- Due to qBittorrent changes, ``search/categories`` no longer returns anything and ``rss/renameRule`` works again

### v2020.10.10 (7 oct 2020)
- Advertise support for Python 3.9

### v2020.9.9 (12 sept 2020)
- Only request ``enum34`` for Python 2

### v2020.8.8 (14 aug 2020)
- Support adding torrents from raw torrent files as bytes or file handles (Fixes #23)
- Introduce ``TorrentStates`` enum for qBittorrent list of torrent states

### v2020.7.7 (26 jul 2020)
- Update tests and misc small fixes

### v2020.7.6 (25 jul 2020)
- Re-release of v2020.7.5

### v2020.7.5 (25 jul 2020)
- Add RTD documentation

### v2020.6.4 (9 jun 2020)
- Bug fix release. Reorganized code and classes to be more logical
- Started returning None from many methods that were returning Requests Responses
- Content-Length header is now explicitly sent as "0" for any POSTs without a body
- Endpoint input parameters ``hash`` and ``hashes`` are renamed to ``torrent_hash`` and ``torrent_hashes``. ``hash`` and ``hashes`` remain supported
- ``search_uninstall_plugin`` now works. search_enable_plugin now supports multiple plugins
- ``Torrent.download_limit`` now only return the value instead of a dictionary. ``Torrent.upload_limit`` now works
- Drop advertising Python 2.6 and 3.4 support; add PyPy3 support
- Implement test suite and CI that can test all supported qBittorrent versions on all pythons

### v2020.5.3 (11 may 2020)
- Include currently supported qBittorrent version in README (Fixes #11)

### v2020.4.2 (25 apr 2020)
- Add support for ``rss/markAsRead`` and ``rss/matchingArticles``. Added in v2.5.1 (Fixes #10)

### v2020.4.1 (25 apr 2020)
- Add ``stalled()``, ``stalled_uploading()``, and ``stalled_downloading()`` to ``torrents.info`` interaction; added in Web API v2.4.1
- Implement torrent file renaming. Added in Web API v2.4.0 (Fixes #3)
- Since versioning was botched last release, implement calendar versioning
- List of files returned from ``torrents_files()`` now contains file ID in ``id``

### v6.0.0 (22 apr 2020)
- Performance gains for responses with payloads...especially for large payloads
- Fixes #6. Adds support for ``SIMPLE_RESPONSES`` for the entire client and individual methods

### v0.5.2 (19 apr 2020)
- Fixes #8. Remove whitespace from in setPreferences requests for older qBittorrent versions

### v0.5.1 (2 jan 2020)
- Add Python3.8 version for PyPI
- Move project from beta to stable for PyPI

### v0.5.0 (2 jan 2020)
- Make Web API URL derivation more robust...thereby allowing the client to actually work on Python3.8 (#5)
- Allow port to be discretely specified during Client instantiation (#4)
- Enhance request retry logic and expose retry configuration

### v0.4.2 (5 dec 2019)
- Improve organization and clarity of README
- Better document exceptions
- Clarify torrent file handling exceptions better with proper exceptions
- Clean up the request wrapper exception handling
- Fix HTTP 404 handling to find and return problematic torrent hashes

### v0.4.1 (4 dec 2019)
- Round out support for tags with qBittorrent v4.2.0 release
- Remove upper-bound version requirements for ``requests`` and ``urllib3``

### v0.4 (4 dec 2019)
- Support for qBittorrent v4.2.0 release
- Add support for ``app/buildInfo``
- Add support for ``transfer/banPeers`` and ``torrents/addPeers``
- Add support for ``torrents/addTags``, ``torrents/removeTags``, ``torrents/tags``, ``torrents/createTags``, and ``torrents/deleteTags``

### v0.3.3 (29 sept 2019)
- Fix useAutoTMM to autoTMM for ``client.torrents_add()`` so auto torrent management works
- Add support to refresh RSS items introduced in qBittorrent v4.1.8

### v0.3.2 (28 jun 2019)
- Restore python 2 compatibility
- Allow exceptions to be imported directly from package instead of only exceptions module

### v0.3 (1 jun 2019)
- Finalized interaction layer interfaces

### v0.2 (13 may 2019)
- Introduced the "interaction layer" for transparent interaction with the qBittorrent API

### v0.1 (7 may 2019)
- Complete implementation of qBittorrent WebUI API 2.2
- Each API endpoint is available via the ``Client`` class
- Automatic re-login is supported in the event of login expiration

MIT License

Copyright (c) Russell Martin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "qbittorrent-api",
    "maintainer": "Russell Martin",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "python, qbittorrent, api, client, torrent, torrents, webui, web",
    "author": "Russell Martin",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/46/73/ca171f318a0450c416d0083d55b3aeed71e2fb4452ad1ebbaf2c01957dd3/qbittorrent-api-2024.3.60.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\nqBittorrent Web API Client\n==========================\n\nPython client implementation for qBittorrent Web API\n\n[![GitHub Workflow Status (branch)](https://img.shields.io/github/checks-status/rmartin16/qbittorrent-api/main?style=flat-square)](https://github.com/rmartin16/qbittorrent-api/actions?query=branch%3Amain) [![Codecov branch](https://img.shields.io/codecov/c/gh/rmartin16/qbittorrent-api/main?style=flat-square)](https://app.codecov.io/gh/rmartin16/qbittorrent-api) [![PyPI](https://img.shields.io/pypi/v/qbittorrent-api?style=flat-square)](https://pypi.org/project/qbittorrent-api/) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qbittorrent-api?style=flat-square)](https://pypi.org/project/qbittorrent-api/)\n\n</div>\n\nCurrently supports qBittorrent [v4.6.4](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.4) (Web API v2.9.3) released on March 23, 2024.\n\nUser Guide and API Reference available on [Read the Docs](https://qbittorrent-api.readthedocs.io/).\n\nFeatures\n------------\n* The entire qBittorrent [Web API](https://github.com/qbittorrent/qBittorrent/wiki/WebUI-API-(qBittorrent-4.1)) is implemented.\n* qBittorrent version checking for an endpoint's existence/features is automatically handled.\n* If the authentication cookie expires, a new one is automatically requested in line with any API call.\n\nInstallation\n------------\nInstall via pip from [PyPI](https://pypi.org/project/qbittorrent-api/)\n```bash\npython -m pip install qbittorrent-api\n```\n\nGetting Started\n---------------\n```python\nimport qbittorrentapi\n\n# instantiate a Client using the appropriate WebUI configuration\nconn_info = dict(\n    host=\"localhost\",\n    port=8080,\n    username=\"admin\",\n    password=\"adminadmin\",\n)\nqbt_client = qbittorrentapi.Client(**conn_info)\n\n# the Client will automatically acquire/maintain a logged-in state\n# in line with any request. therefore, this is not strictly necessary;\n# however, you may want to test the provided login credentials.\ntry:\n    qbt_client.auth_log_in()\nexcept qbittorrentapi.LoginFailed as e:\n    print(e)\n\n# if the Client will not be long-lived or many Clients may be created\n# in a relatively short amount of time, be sure to log out:\nqbt_client.auth_log_out()\n\n# or use a context manager:\nwith qbittorrentapi.Client(**conn_info) as qbt_client:\n    if qbt_client.torrents_add(urls=\"...\") != \"Ok.\":\n        raise Exception(\"Failed to add torrent.\")\n\n# display qBittorrent info\nprint(f\"qBittorrent: {qbt_client.app.version}\")\nprint(f\"qBittorrent Web API: {qbt_client.app.web_api_version}\")\nfor k, v in qbt_client.app.build_info.items():\n    print(f\"{k}: {v}\")\n\n# retrieve and show all torrents\nfor torrent in qbt_client.torrents_info():\n    print(f\"{torrent.hash[-6:]}: {torrent.name} ({torrent.state})\")\n\n# pause all torrents\nqbt_client.torrents.pause.all()\n```\n\nChange Log\n==========\n### v2024.3.60 (25 mar 2024)\n- Advertise support for qBittorrent v4.6.4\n\n### v2024.2.59 (25 feb 2024)\n- Allow added RSS feeds without a name/path to default to the name in the feed (#423)\n- Advertise support for Python 3.13 (#349)\n\n### v2024.1.58 (16 jan 2024)\n- Advertise support for qBittorrent v4.6.3\n\n### v2023.11.57 (27 nov 2023)\n- Advertise support for qBittorrent v4.6.2\n\n### v2023.11.56 (20 nov 2023)\n- Advertise support for qBittorrent v4.6.1\n- Add support for ``torrents/count`` (#366)\n\n### v2023.11.55 (6 nov 2023)\n- Remove Python 2 platform tag from published wheel (#369)\n\n### v2023.10.54 (22 oct 2023)\n- Advertise support for qBittorrent v4.6.0\n- Dropped support for legacy Python versions; Python 3.8+ is supported (#333)\n- Refactored typing from stub files in to source (#345)\n- Dropped support for API method arguments ``hash`` and ``hashes``; use ``torrent_hash`` and ``torrent_hashes``, respectively (#345)\n  - For example, replace ``client.torrents_info(hashes=\"...\")`` with ``client.torrents_info(torrent_hashes=\"...\")``\n\n### v2023.9.53 (7 sept 2023)\n- Advertise support for Python 3.12\n- Advertise support for qBittorrent v4.5.5\n- Add ``inactive_seeding_time_limit`` for ``torrents/setShareLimits`` (#271)\n- Implement ``app/networkInterfaceList`` and ``app/networkInterfaceAddressList`` (#272)\n\n### v2023.7.52 (13 jul 2023)\n- Ensure the wheel is uploaded with the release to PyPI\n\n### v2023.7.51 (13 jul 2023)\n- Convert ``APINames`` and ``TorrentStatus`` to ``StrEnum`` and ``TrackerStatus`` to ``IntEnum`` (#267)\n\n### v2023.6.50 (19 jun 2023)\n- Advertise support for qBittorrent v4.5.4\n\n### v2023.6.49 (9 jun 2023)\n- The ``Client`` is no longer binded to ``List``s (#230)\n- This does not affect normal operation but allows for slicing, adding, and copying ``List``s\n\n### v2023.5.48 (29 may 2023)\n- Advertise support for qBittorrent v4.5.3\n\n### v2023.4.47 (19 apr 2023)\n- ``Client`` can now be used as a context manager\n\n### v2023.4.46 (14 apr 2023)\n- Fix building docs after implementing ``src-layout``\n\n### v2023.4.45 (11 apr 2023)\n- Add the ``TrackerStatus`` Enum to identify tracker statuses from ``torrents/trackers``\n\n### v2023.3.44 (09 mar 2023)\n- Add support for torrent status filters ``seeding``, ``moving``, ``errored``, and ``checking``\n\n### v2023.2.43 (27 feb 2023)\n- Advertise support for qBittorrent v4.5.2\n\n### v2023.2.42 (13 feb 2023)\n- Advertise support for qBittorrent v4.5.1\n\n### v2023.2.41 (8 feb 2023)\n- Remove dependence on qBittorrent authentication cookie being named ``SID``\n- Minor typing fixes\n\n### v2022.11.40 (27 nov 2022)\n- Support qBittorrent v4.5.0 release\n- Add support for ``torrents/export``\n- Implement new ``transfer/setSpeedLimitsMode`` in place of existing ``transfer/toggleSpeedLimitsMode``\n- Add support for ``stopCondition`` in ``torrents/add``\n- Update typing to be complete, accurate, and shipped with the package\n\n### v2022.10.39 (26 oct 2022)\n- Advertise support for Python 3.11\n\n### v2022.8.38 (31 aug 2022)\n- Advertise support for qBittorrent v4.4.5\n\n### v2022.8.37 (24 aug 2022)\n- Advertise support for qBittorrent v4.4.4\n\n### v2022.8.36 (15 aug 2022)\n- Comply with enforced HTTP method requirements from qBittorrent\n\n### v2022.8.35 (13 aug 2022)\n- Remove ``PYTHON_`` prefix for configuration environment variables\n\n### v2022.8.34 (11 aug 2022)\n- Add ``setuptools`` as an explicit dependency for ``pkg_resources.parse_version()``\n\n### v2022.7.33 (27 jul 2022)\n- Reorder class hierarchy to allow independent MixIn use\n- Clean up typing annotations\n- Optimize Dictionary and List initializations\n- Rename Alias decorator to alias for better conformity\n\n### v2022.5.32 (30 may 2022)\n- Implement pre-commit checks\n- Advertise support for qBittorrent v4.4.3.1\n\n### v2022.5.31 (24 may 2022)\n- Advertise support for qBittorrent v4.4.3\n- Revamp GitHub CI\n- Reorg ``Request`` for some more clarity (hopefully)\n\n### v2022.4.30 (3 apr 2022)\n- Stop advertising support for Python 3.6 (EOL 12/2021)\n- Publish to PyPI using API token and cleanup GitHub Action scripts\n\n### v2022.3.29 (25 mar 2022)\n- Advertise support for qBittorrent v4.4.2\n\n### v2022.2.28 (17 feb 2022)\n- Advertise support for qBittorrent v4.4.1\n- qBittorrent reverted the category dictionary key ``savePath`` back to ``save_path``\n\n### v2022.1.27 (9 jan 2022)\n- Support for qBittorrent v4.4.0\n- ``torrents/info`` results can now be filtered by a torrent tag\n- Added new torrent state \"Forced Metadata Downloading\"\n- Support per-torrent/per-category \"download folder\"\n\n### v2021.12.26 (11 dec 2021)\n- Stop sending ``Origin`` and ``Referer`` headers (Fixes #63)\n\n### v2021.12.25 (10 dec 2021)\n- Close files that are opened and sent to Requests when adding torrents from files\n- Enable warnings for tests and explicitly close Requests Sessions to prevent (mostly spurious) ResourceWarnings\n\n### v2021.12.24 (3 dec 2021)\n- Add Type Hints for all public and private functions, methods, and variables\n- Support HTTP timeouts as well as arbitrary Requests configurations\n\n### v2021.8.23 (28 aug 2021)\n- Advertise support for qBittorrent v4.3.8\n- Drop support for Python 3.5\n\n### v2021.5.22 (12 may 2021)\n- Support for qBittorrent v4.3.5\n- ``torrents/files`` includes ``index`` for each file; ``index`` officially replaces ``id`` but ``id`` will still be populated\n\n### v2021.5.21 (1 may 2021)\n- Allow users to force a specific communications scheme with ``FORCE_SCHEME_FROM_HOST`` (fixes #54)\n\n### v2021.4.20 (11 apr 2021)\n- Add support for ratio limit and seeding time limit when adding torrents\n\n### v2021.4.19 (8 apr 2021)\n- Update license in setup to match gpl->mit license change on GitHub\n\n### v2021.3.18 (13 mar 2021)\n- Replace ``TorrentStates.FORCE_DOWNLOAD='forceDL'`` with ``TorrentStates.FORCED_DOWNLOAD='forcedDL'``\n\n### v2021.2.17 (7 feb 2021)\n- Generally refactor ``requests.py`` so it's better and easier to read\n- Persist a Requests Session between API calls instead of always creating a new one...small perf benefit\n- Move auth endpoints back to a dedicated module\n- Since ``attrdict`` is apparently going to break in Python 3.10 and it is no longer maintained, I've vendored a modified version (fixes #45)\n- Created ``handle_hashes`` decorator to hide the cruft of continuing to support hash and hashes arguments\n\n### v2021.1.16 (26 jan 2021)\n- Support qBittorrent v4.3.3 and Web API v2.7 (...again)\n- New ``torrents/renameFile`` and ``torrents/renameFolder`` endpoints\n- Retrieve app api version when needed instead of caching\n- Stop verifying and removing individual parameters when they aren't supported\n\n### v2020.12.15 (27 dec 2020)\n- Support qBittorrent v4.3.2 and Web API v2.7\n- ``torrents/add`` supports adding torrents with tags via ``tags`` parameter\n- ``app/preferences`` supports toggling internationalized domain name (IDN) support via ``idn_support_enabled``\n- BREAKING CHANGE: for ``torrents/add``, ``is_root_folder`` (or ``root_folder``) is superseded by ``content_layout``\n- For ``torrents/delete``, ``delete_files`` now defaults to ``False`` instead of required being explicitly passed\n\n### v2020.12.14 (6 dec 2020)\n- Add support for non-standard API endpoint paths (Fixes #37)\n- Allows users to leverage this client when qBittorrent is configured behind a reverse proxy\n  - For instance, if the Web API is being exposed at \"http://localhost/qbt/\", then users can instantiate via ``Client(host='localhost/qbt')`` and all API endpoint paths will be prefixed with \"/qbt\"\n- Additionally, the scheme (i.e. http or https) from the user will now be respected as the first choice for which scheme is used to communicate with qBittorrent\n  - However, users still don't need to even specify a scheme; it'll be automatically determined on the first connection to qBittorrent\n- Neither of these should be breaking changes, but if you're instantiating with an incorrect scheme or an irrelevant path, you may need to prevent doing that now\n\n### v2020.11.13 (29 nov 2020)\n- Support qBittorrent v4.3.1 and Web API v2.6.1\n- Path of torrent content now available via ``content_path`` from ``torrents/info``\n\n### v2020.11.12 (16 nov 2020)\n- Fix support for raw bytes for ``torrent_files`` in ``torrents_add()`` for Python 3 (Fixes #34)\n\n### v2020.10.11 (29 oct 2020)\n- Support qBittorrent v4.3.0.1 and Web API v2.6\n- Due to qBittorrent changes, ``search/categories`` no longer returns anything and ``rss/renameRule`` works again\n\n### v2020.10.10 (7 oct 2020)\n- Advertise support for Python 3.9\n\n### v2020.9.9 (12 sept 2020)\n- Only request ``enum34`` for Python 2\n\n### v2020.8.8 (14 aug 2020)\n- Support adding torrents from raw torrent files as bytes or file handles (Fixes #23)\n- Introduce ``TorrentStates`` enum for qBittorrent list of torrent states\n\n### v2020.7.7 (26 jul 2020)\n- Update tests and misc small fixes\n\n### v2020.7.6 (25 jul 2020)\n- Re-release of v2020.7.5\n\n### v2020.7.5 (25 jul 2020)\n- Add RTD documentation\n\n### v2020.6.4 (9 jun 2020)\n- Bug fix release. Reorganized code and classes to be more logical\n- Started returning None from many methods that were returning Requests Responses\n- Content-Length header is now explicitly sent as \"0\" for any POSTs without a body\n- Endpoint input parameters ``hash`` and ``hashes`` are renamed to ``torrent_hash`` and ``torrent_hashes``. ``hash`` and ``hashes`` remain supported\n- ``search_uninstall_plugin`` now works. search_enable_plugin now supports multiple plugins\n- ``Torrent.download_limit`` now only return the value instead of a dictionary. ``Torrent.upload_limit`` now works\n- Drop advertising Python 2.6 and 3.4 support; add PyPy3 support\n- Implement test suite and CI that can test all supported qBittorrent versions on all pythons\n\n### v2020.5.3 (11 may 2020)\n- Include currently supported qBittorrent version in README (Fixes #11)\n\n### v2020.4.2 (25 apr 2020)\n- Add support for ``rss/markAsRead`` and ``rss/matchingArticles``. Added in v2.5.1 (Fixes #10)\n\n### v2020.4.1 (25 apr 2020)\n- Add ``stalled()``, ``stalled_uploading()``, and ``stalled_downloading()`` to ``torrents.info`` interaction; added in Web API v2.4.1\n- Implement torrent file renaming. Added in Web API v2.4.0 (Fixes #3)\n- Since versioning was botched last release, implement calendar versioning\n- List of files returned from ``torrents_files()`` now contains file ID in ``id``\n\n### v6.0.0 (22 apr 2020)\n- Performance gains for responses with payloads...especially for large payloads\n- Fixes #6. Adds support for ``SIMPLE_RESPONSES`` for the entire client and individual methods\n\n### v0.5.2 (19 apr 2020)\n- Fixes #8. Remove whitespace from in setPreferences requests for older qBittorrent versions\n\n### v0.5.1 (2 jan 2020)\n- Add Python3.8 version for PyPI\n- Move project from beta to stable for PyPI\n\n### v0.5.0 (2 jan 2020)\n- Make Web API URL derivation more robust...thereby allowing the client to actually work on Python3.8 (#5)\n- Allow port to be discretely specified during Client instantiation (#4)\n- Enhance request retry logic and expose retry configuration\n\n### v0.4.2 (5 dec 2019)\n- Improve organization and clarity of README\n- Better document exceptions\n- Clarify torrent file handling exceptions better with proper exceptions\n- Clean up the request wrapper exception handling\n- Fix HTTP 404 handling to find and return problematic torrent hashes\n\n### v0.4.1 (4 dec 2019)\n- Round out support for tags with qBittorrent v4.2.0 release\n- Remove upper-bound version requirements for ``requests`` and ``urllib3``\n\n### v0.4 (4 dec 2019)\n- Support for qBittorrent v4.2.0 release\n- Add support for ``app/buildInfo``\n- Add support for ``transfer/banPeers`` and ``torrents/addPeers``\n- Add support for ``torrents/addTags``, ``torrents/removeTags``, ``torrents/tags``, ``torrents/createTags``, and ``torrents/deleteTags``\n\n### v0.3.3 (29 sept 2019)\n- Fix useAutoTMM to autoTMM for ``client.torrents_add()`` so auto torrent management works\n- Add support to refresh RSS items introduced in qBittorrent v4.1.8\n\n### v0.3.2 (28 jun 2019)\n- Restore python 2 compatibility\n- Allow exceptions to be imported directly from package instead of only exceptions module\n\n### v0.3 (1 jun 2019)\n- Finalized interaction layer interfaces\n\n### v0.2 (13 may 2019)\n- Introduced the \"interaction layer\" for transparent interaction with the qBittorrent API\n\n### v0.1 (7 may 2019)\n- Complete implementation of qBittorrent WebUI API 2.2\n- Each API endpoint is available via the ``Client`` class\n- Automatic re-login is supported in the event of login expiration\n\nMIT License\n\nCopyright (c) Russell Martin\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python client for qBittorrent v4.1+ Web API.",
    "version": "2024.3.60",
    "project_urls": {
        "API Reference": "https://qbittorrent-api.readthedocs.io/en/latest/api.html",
        "Documentation": "https://qbittorrent-api.readthedocs.io/",
        "Homepage": "https://github.com/rmartin16/qbittorrent-api",
        "Source": "https://github.com/rmartin16/qbittorrent-api"
    },
    "split_keywords": [
        "python",
        " qbittorrent",
        " api",
        " client",
        " torrent",
        " torrents",
        " webui",
        " web"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d7aeae4806c91f3cefc34fce9272065a84c119bed9ff54ef1945facf20c664e",
                "md5": "1d0b3f6ef8fbd579f4adbcec90c3f686",
                "sha256": "a5082dfd93ba6e1c8b6428673a9dc6844e60dc0e800b378ce0144d44a7078cdd"
            },
            "downloads": -1,
            "filename": "qbittorrent_api-2024.3.60-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1d0b3f6ef8fbd579f4adbcec90c3f686",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 62463,
            "upload_time": "2024-03-25T17:26:35",
            "upload_time_iso_8601": "2024-03-25T17:26:35.318911Z",
            "url": "https://files.pythonhosted.org/packages/4d/7a/eae4806c91f3cefc34fce9272065a84c119bed9ff54ef1945facf20c664e/qbittorrent_api-2024.3.60-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4673ca171f318a0450c416d0083d55b3aeed71e2fb4452ad1ebbaf2c01957dd3",
                "md5": "19140a2ef4d267ee5d496a272c5a3b0e",
                "sha256": "8274f5f412b23eacdc44ad5a2ac0bdecdc64b51e1aa8f7772ce955a3dff58096"
            },
            "downloads": -1,
            "filename": "qbittorrent-api-2024.3.60.tar.gz",
            "has_sig": false,
            "md5_digest": "19140a2ef4d267ee5d496a272c5a3b0e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 1315409,
            "upload_time": "2024-03-25T17:26:37",
            "upload_time_iso_8601": "2024-03-25T17:26:37.866397Z",
            "url": "https://files.pythonhosted.org/packages/46/73/ca171f318a0450c416d0083d55b3aeed71e2fb4452ad1ebbaf2c01957dd3/qbittorrent-api-2024.3.60.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-25 17:26:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rmartin16",
    "github_project": "qbittorrent-api",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "qbittorrent-api"
}
        
Elapsed time: 0.21705s