From cf652200cd93c534eda552b4edb7bfe1f95ad674 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Mon, 15 Aug 2022 13:11:29 +0100 Subject: [PATCH] Read config --- web_view.py | 1 + 1 file changed, 1 insertion(+) diff --git a/web_view.py b/web_view.py index 3d2dc8b..b3e1ec2 100755 --- a/web_view.py +++ b/web_view.py @@ -11,6 +11,7 @@ from requests_oauthlib import OAuth1Session from werkzeug.wrappers import Response app = flask.Flask(__name__) +app.config.from_object("config.default") app.debug = True api_url = "https://en.wikipedia.org/w/api.php"