qbit-maid/README.md

41 lines
1018 B
Markdown
Raw Normal View History

2022-07-14 19:03:06 -05:00
# qbit-maid
2022-07-14 20:33:53 -05:00
Warning: This application removes torrents that aren't downloading and that aren't from iptorrents. Age in the config.json only controls the age for torrents from iptorrents.
2022-07-14 19:03:06 -05:00
The objective is to filter torrents based on the following criteria:
- tracker domain name
- age
- ratio
- state
Client to the qbit api and the processing of the torrents.
2022-07-14 19:03:06 -05:00
qbit-clean.py
Functions to build out a list of torrents.
2022-07-14 19:03:06 -05:00
qlist.py
Logging and push notification communication.
2022-07-14 19:03:06 -05:00
qlogging.py
Logic to process torrents.
2022-07-14 20:33:53 -05:00
qprocess.py
You will need a config.json in the root directory.
It should look something like this:
{
"host": "192.168.1.1",
"port": 8080,
"username": "admin",
"password": "admin",
"loglevel": "INFO",
"logpath": "./qc.log",
"age": 2419200,
"use_pushover": true,
"po_key": "",
"po_token": ""
2022-07-14 20:33:53 -05:00
}
loglevel - is what log messages are written to the log file. It only accepts INFO or DEBUG.
2022-07-14 20:33:53 -05:00
age - is a number in seconds for how long we keep torrents from IPTORRENTS.