add flask sample

Signed-off-by: kouul <maulloohans@gmail.com>
This commit is contained in:
kouul
2020-03-26 08:41:17 +04:00
parent 56b4dc0cf9
commit 83a24f681f
5 changed files with 78 additions and 0 deletions

9
flask/app/app.py Normal file
View File

@@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return "Hello World!"
if __name__ == '__main__':
app.run(host='0.0.0.0')