From 0042ca08e115dbd7434408af8aa69566a5bf822a Mon Sep 17 00:00:00 2001 From: Leigh Morresi <275001+dgtlmoon@users.noreply.github.com> Date: Mon, 1 Feb 2021 10:24:29 +0100 Subject: [PATCH] Add more start-up examples --- backend/store.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/backend/store.py b/backend/store.py index 2702602f0be..3f1a172d873 100644 --- a/backend/store.py +++ b/backend/store.py @@ -72,11 +72,12 @@ def __init__(self): # First time ran, doesnt exist. except (FileNotFoundError, json.decoder.JSONDecodeError): print("Creating JSON store") - - self.add_watch(url='https://changedetection.io', tag='general') self.add_watch(url='http://www.quotationspage.com/random.php', tag='test') + self.add_watch(url='https://news.ycombinator.com/', tag='Tech news') + self.add_watch(url='https://www.gov.uk/coronavirus', tag='Covid') + self.add_watch(url='https://changedetection.io', tag='Tech news') - + # self.entryVariable.get() def update_watch(self, uuid, val, var):