Files
web/venv/index.py
timothypidashev 5bf2ef6b1c upload test
2021-07-15 17:36:10 +00:00

16 lines
237 B
Python

from flask import Flask
app = Flask(__name__)
@app.route("/")
def home():
return "Home Page Route"
@app.route("/api")
def api():
with open("data.json", mode="r") as my_file:
text = my_file.read()
return text