python-qBittorrent icon indicating copy to clipboard operation
python-qBittorrent copied to clipboard

Python wrapper for qBittorrent Web API (for versions above v3.1.x)

Results 26 python-qBittorrent issues
Sort by recently updated
recently updated
newest added

I want to change the torrent's tags, but I can't find the method. thank you very much,

Hi, I can't install it directly from qBittorent doesn't start, how can I install it manually? Thanks

This is the same workaround as 4157765 to avoid spaces being converted to plus signs but for set_torrent_location()

Added function to set ratio limits

The authentication cookie expires after a while, and after that API calls fail. python-qBittorrent should handle the reauthentication. To reproduce the problem: 1. make any API calls, and notice that...

python-qbittorrent 0.31 python 3.7.1 `Traceback (most recent call last): File "G:/1python/qbittorrent.py", line 1, in from qbittorrent import Client File "G:\1python\qbittorrent.py", line 1, in from qbittorrent import Client ImportError: cannot import...

Hi I modified the client to add a new method for renaming torrents. ` def set_name(self, infohash, name): headers = {'content-type': 'application/x-www-form-urlencoded'} return self._post('api/v2/torrents/rename', data={'hash': infohash.lower(),'name': name}, headers=headers)` However, I...

Hi! I am trying to use this module, but it doesn't work with qBittorrent 3.3.13 on Archlinux x64. All API calls fails unless I specify referrer like this: ```python self.session...

bug

Hey there, I wrote a little code that would automatically download a bunch of torrents. I'm using python-qbittorrent. I was wondering is there a way I can get the download...

I tried to use `qb.recheck(torrent['hash'])` to make qBittorrent 4.1.3 do a recheck, but it didn't start checking. To make sure I had the correct hash for the torrent, I tried...