Ignored tags #18
61
README.md
61
README.md
@ -1,6 +1,6 @@
|
|||||||
# qbit-maid
|
# qbit-maid
|
||||||
|
|
||||||
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.
|
## Warning: This application removes torrents that are over the minimum age and that are not part of the ignored categories, domains or tags. Please use the delete_torrents feature set to false when first testing its functionality.
|
||||||
|
|
||||||
The objective is to remove torrents based on the following criteria:
|
The objective is to remove torrents based on the following criteria:
|
||||||
- tracker domain name
|
- tracker domain name
|
||||||
@ -24,9 +24,32 @@ graph TD;
|
|||||||
| qlist.py | Builds out torrent lists |
|
| qlist.py | Builds out torrent lists |
|
||||||
| qlogging.py | Logging and push notification communication |
|
| qlogging.py | Logging and push notification communication |
|
||||||
| qprocess.py | Submits qualifying torrents for deletion |
|
| qprocess.py | Submits qualifying torrents for deletion |
|
||||||
|
| test_qbitmaid.py | Unit tests |
|
||||||
|
| ignored_categories.json | whitelist for categorys to ignore |
|
||||||
|
| ignored_tags.json | whitelist for torrent tags to ignore |
|
||||||
|
| ignored_trackers.json | whitelist of fqdn names to ignore |
|
||||||
|
|
||||||
You will need a config.json in the root directory.
|
You will need a config.json in the root directory.
|
||||||
|
|
||||||
|
| Key | Value |
|
||||||
|
| --- | --- |
|
||||||
|
| host | string, ip or hostname of qbittorrent server |
|
||||||
|
| port | number, port of admin gui(used for api aswell) |
|
||||||
|
| username | admin account for qbittorrent |
|
||||||
|
| password | password for admin account |
|
||||||
|
| loglevel | is what log messages are written to the log file. INFO or DEBUG are valid entries(case sensitive) |
|
||||||
|
| protected_tag | used to mark torrents to handle with care |
|
||||||
|
| non_protected_tag | we don't care about these torrents |
|
||||||
|
| logpath | will write a log in root directory if left as is other wise specify other path using forward slashes |
|
||||||
|
| age | number, seconds for how long we keep torrents from IPTORRENTS |
|
||||||
|
| minimum_age | age in seconds torrents should reached before they are removed |
|
||||||
|
| use_pushover | true or false to enable or disable pushover notification summary |
|
||||||
|
| use_log | true or false to enable or disable writing to alog file |
|
||||||
|
| po_key | pushover key |
|
||||||
|
| po_token | pushover api token |
|
||||||
|
| delete_torrents | true or false to enable or disable deletion. Useful for dry-runs |
|
||||||
|
| enable_dragnet | true or false to enable dragnet functionality. Useful for debugging |
|
||||||
|
|
||||||
It should look something like this:
|
It should look something like this:
|
||||||
Config.json
|
Config.json
|
||||||
```
|
```
|
||||||
@ -51,7 +74,7 @@ Config.json
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
You will need a category-whitelist.json in the root directory. This will ignore any of the categories found in the values of the entries.
|
You will need a ignored_categories.json in the root directory. This will ignore any of the categories found in the values of the entries.
|
||||||
```
|
```
|
||||||
{
|
{
|
||||||
"example": "general",
|
"example": "general",
|
||||||
@ -59,22 +82,20 @@ You will need a category-whitelist.json in the root directory. This will ignore
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
You will need a ignored_domains.json in the root directory. This will ignore any torrents from these trackers.
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"iptorrents-empirehost": "ssl.empirehost.me",
|
||||||
|
"iptorrents-stackoverflow": "localhost.stackoverflow.tech",
|
||||||
|
"iptorrents-bgp": "routing.bgp.technology"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
| Key | Value |
|
You will need a ignored_tags.json in the root directory. This will ignore any torrents with these tags.
|
||||||
| --- | --- |
|
```
|
||||||
| host | string, ip or hostname of qbittorrent server |
|
{
|
||||||
| port | number, port of admin gui(used for api aswell) |
|
"first":"first",
|
||||||
| username | admin account for qbittorrent |
|
"second":"second",
|
||||||
| password | password for admin account |
|
"third":"third"
|
||||||
| loglevel | is what log messages are written to the log file. INFO or DEBUG are valid entries(case sensitive) |
|
}
|
||||||
| protected_tag | used to mark torrents to handle with care |
|
```
|
||||||
| non_protected_tag | we don't care about these torrents |
|
|
||||||
| logpath | will write a log in root directory if left as is other wise specify other path using forward slashes |
|
|
||||||
| age | number, seconds for how long we keep torrents from IPTORRENTS |
|
|
||||||
| minimum_age | age in seconds torrents should reached before they are removed |
|
|
||||||
| use_pushover | true or false to enable or disable pushover notification summary |
|
|
||||||
| use_log | true or false to enable or disable writing to alog file |
|
|
||||||
| po_key | pushover key |
|
|
||||||
| po_token | pushover api token |
|
|
||||||
| delete_torrents | true or false to enable or disable deletion. Useful for dry-runs |
|
|
||||||
| enable_dragnet | true or false to enable dragnet functionality. Useful for debugging |
|
|
@ -18,7 +18,7 @@ class Qbt:
|
|||||||
self.st = datetime.datetime.now()
|
self.st = datetime.datetime.now()
|
||||||
c = open('./config.json')
|
c = open('./config.json')
|
||||||
self.config = load(c)
|
self.config = load(c)
|
||||||
w = open('./category-whitelist.json')
|
w = open('./ignored_categories.json')
|
||||||
self.cat_whitelist = load(w)
|
self.cat_whitelist = load(w)
|
||||||
tg = open('./ignored_tags.json')
|
tg = open('./ignored_tags.json')
|
||||||
self.ignored_tags = load(tg)
|
self.ignored_tags = load(tg)
|
||||||
@ -52,7 +52,7 @@ class Qbt:
|
|||||||
tornotify(self)
|
tornotify(self)
|
||||||
self.t = time
|
self.t = time
|
||||||
# Pulling domain names to treat carefully
|
# Pulling domain names to treat carefully
|
||||||
f = open('./tracker-whitelist.json')
|
f = open('./ignored_domains.json')
|
||||||
self.tracker_whitelist = load(f)
|
self.tracker_whitelist = load(f)
|
||||||
self.tracker_list = []
|
self.tracker_list = []
|
||||||
self.up_tor_counter = 0
|
self.up_tor_counter = 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user