summaryrefslogtreecommitdiff
path: root/butler.py
blob: 6f3a2d4704cdf4490832043be3e9d805fdff9ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import json
from os import path

import __main__
from ausbutler.interface import Interface


i = Interface(json.load(
    open(path.join(path.dirname(__main__.__file__), 'config', 'butler.json'))))
i.init_db()
i.populate_db()
i.opp_scores()
i.normalize_scores()