upload test

This commit is contained in:
timothypidashev
2021-07-15 17:36:10 +00:00
parent 5e9a357235
commit 5bf2ef6b1c
485 changed files with 60822 additions and 0 deletions

15
venv/index.py Normal file
View File

@@ -0,0 +1,15 @@
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