Changed the config files and updated the readme

This commit is contained in:
2022-09-03 14:04:03 -05:00
parent 0977b12fe1
commit 8c8aff9b09
5 changed files with 43 additions and 22 deletions

View File

@@ -18,7 +18,7 @@ class Qbt:
self.st = datetime.datetime.now()
c = open('./config.json')
self.config = load(c)
w = open('./category-whitelist.json')
w = open('./ignored_categories.json')
self.cat_whitelist = load(w)
tg = open('./ignored_tags.json')
self.ignored_tags = load(tg)
@@ -52,7 +52,7 @@ class Qbt:
tornotify(self)
self.t = time
# Pulling domain names to treat carefully
f = open('./tracker-whitelist.json')
f = open('./ignored_domains.json')
self.tracker_whitelist = load(f)
self.tracker_list = []
self.up_tor_counter = 0