Skip to content

Commit e971849

Browse files
committed
add section5
1 parent 67522c0 commit e971849

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

section5/hello.py

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

0 commit comments

Comments
 (0)