summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/settings.py b/settings.py
new file mode 100644
index 0000000..5e92981
--- /dev/null
+++ b/settings.py
@@ -0,0 +1,15 @@
+import json
+
+settingsJSON = open('settings.json')
+
+settings = json.load(settingsJSON)
+
+calendars = settings["calendars"]
+weather = settings["weather"]
+news = settings["news"]
+modules = settings["modules"]
+general = settings["general"]
+
+settingsJSON.close()
+
+