summaryrefslogtreecommitdiff
path: root/butler.py
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-01-04 00:34:59 +0100
committeremkael <emkael@tlen.pl>2017-01-04 20:56:21 +0100
commita992859c23b9fe33d2623f5ec53c58c48699ed05 (patch)
treeca1ea96c2e9081e4cf0960ee5e7a40faef57c0f9 /butler.py
parent66cd9985aec868e393842d302beb3f01bcd2ba31 (diff)
Moving config read to entry script
Diffstat (limited to 'butler.py')
-rw-r--r--butler.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/butler.py b/butler.py
index 03f79d1..35a84d6 100644
--- a/butler.py
+++ b/butler.py
@@ -1,6 +1,14 @@
+import json
+import __main__
+
+from os import path
+
from ausbutler.interface import Interface
-i = Interface()
+config = json.load(
+ open(path.join(path.dirname(__main__.__file__), 'config', 'butler.json')))
+
+i = Interface(config)
i.init_db()
i.populate_db()
i.opp_scores()