summaryrefslogtreecommitdiff
path: root/settings.py
blob: 5e92981003e74a5d9faf7b70d47b03986733b3b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()