#15 added tag whitelisting

This commit is contained in:
2022-09-02 20:22:04 -05:00
parent 0135f7c13b
commit 0977b12fe1
4 changed files with 22 additions and 2 deletions

View File

@@ -20,6 +20,8 @@ class Qbt:
self.config = load(c)
w = open('./category-whitelist.json')
self.cat_whitelist = load(w)
tg = open('./ignored_tags.json')
self.ignored_tags = load(tg)
# Create the api object
self.qbt_client = qbittorrentapi.Client(
host=self.config["host"],