This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
import qbittorrentapi | |
import json | |
import requests | |
import time | |
import sys | |
# 运行过程中遇到部分种子更新失败是正常现象, 请多次运行至所有种子均已更新完成 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
# 0. 免责:仅在本人的qBittorrent v4.1.8上测试通过,本人不承担任何责任 | |
# 1. 安装依赖: pip3 install requests python-qbittorrent | |
# 2. 修改代码开头的apikey和qbittorrent_config | |
# 3. 运行: python3 u2.py | |
# 4. 等待运行完成 | |
import time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding:utf-8 -*- | |
# !/usr/bin/env python3 | |
''' | |
Author: ayasakinagi | |
Email: [email protected] | |
环境: Python3 | |
依赖: deluge_client | |
使用: 修改host, port, username, password, limitSize, dataPath变量 |