From 6c974e475ff6ee149f0703bdeb92af94c7014805 Mon Sep 17 00:00:00 2001 From: khuxkm fbexl Date: Sat, 10 Nov 2018 15:39:04 -0500 Subject: [PATCH] Add wrapper web thingamabob --- app.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app.py diff --git a/app.py b/app.py new file mode 100644 index 0000000..6e3ab8f --- /dev/null +++ b/app.py @@ -0,0 +1,12 @@ +from flask import * + +app = Flask(__name__) + +@app.route("/") +def home(): + return "wewlad" + +@app.route("/status.json") +def status(): + with open("status.json") as f: + return f.read()