Skip to content

Commit 35d6b54

Browse files
authored
Merge pull request #6 from saisyam/create-flask-app-1
created a simple flask application
2 parents 9339772 + 370930a commit 35d6b54

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

app.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from flask import Flask
2+
3+
app = Flask(__name__)
4+
5+
@app.route('/')
6+
def index():
7+
return "Flask App Done!"
8+
9+
if __name__ == '__main__':
10+
app.run(host='0.0.0.0', port=8000)

0 commit comments

Comments
 (0)