summaryrefslogtreecommitdiff
path: root/waterspout_radar/web.py
diff options
context:
space:
mode:
Diffstat (limited to 'waterspout_radar/web.py')
-rw-r--r--waterspout_radar/web.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/waterspout_radar/web.py b/waterspout_radar/web.py
index 37905c3..f43d2c0 100644
--- a/waterspout_radar/web.py
+++ b/waterspout_radar/web.py
@@ -1,11 +1,12 @@
import flask
-from . import _storage
+from . import _config, _storage
app = flask.Flask(__name__)
+config = _config.load(_config.effective_pathname())
@app.route("/")
def predictions():
- predictions = sorted(_storage.Storage(".waterspout/predictions.json"), key=lambda x: (x.time, x.swi))
+ predictions = sorted(_storage.Storage(config.db), key=lambda x: (x.time, x.swi))
return flask.render_template("predictions.html", predictions=predictions)