init flask

This commit is contained in:
IgorL123
2023-08-21 15:55:54 +03:00
parent c362f2737d
commit ad034254ca
3 changed files with 22 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'
if __name__ == '__main__':
app.run()