add: init flask

This commit is contained in:
starnakin 2023-06-03 16:50:05 +02:00
parent b7e7827b4a
commit 9702045390
2 changed files with 19 additions and 0 deletions

12
main.py Normal file
View File

@ -0,0 +1,12 @@
import flask
app = flask.Flask(__name__)
@app.route("/")
def home():
return "<p>Hello, World!</p>"
if (__name__ == "__main__"):
app.run()

7
requirements.txt Normal file
View File

@ -0,0 +1,7 @@
blinker==1.6.2
click==8.1.3
Flask==2.3.2
itsdangerous==2.1.2
Jinja2==3.1.2
MarkupSafe==2.1.3
Werkzeug==2.3.4