summaryrefslogtreecommitdiff
path: root/butler.py
diff options
context:
space:
mode:
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()