Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a2982a commit 14518aeCopy full SHA for 14518ae
simple-python-app/app.py
@@ -0,0 +1,10 @@
1
+from flask import Flask
2
+
3
+app = Flask(__name__)
4
5
+@app.route('/')
6
+def hello_world():
7
+ return 'Hello, World!'
8
9
+if __name__ == '__main__':
10
+ app.run(debug=True, host='0.0.0.0', port=8000)
simple-python-app/requirements.txt
@@ -0,0 +1,2 @@
+Flask==2.1.0
+Werkzeug==2.2.2
0 commit comments