This website requires JavaScript.
Explore
Help
Sign in
maya-chen
/
flask
Watch
1
Star
0
Fork
You've already forked flask
0
forked from
orbit-oss/flask
Code
Pull requests
Activity
08d3185e87
flask
/
tests
/
test_apps
/
helloworld
/
hello.py
9 lines
104 B
Python
Raw
Normal View
History
Unescape
Escape
Import app from wsgi.py or app.py if FLASK_APP is not defined Fixes #2376
2017-06-15 11:27:50 -07:00
from
flask
import
Flask
Reformat with black https://github.com/python/black
2019-05-06 15:39:41 -04:00
Import app from wsgi.py or app.py if FLASK_APP is not defined Fixes #2376
2017-06-15 11:27:50 -07:00
app
=
Flask
(
__name__
)
Reformat with black https://github.com/python/black
2019-05-06 15:39:41 -04:00
Import app from wsgi.py or app.py if FLASK_APP is not defined Fixes #2376
2017-06-15 11:27:50 -07:00
@app.route
(
"
/
"
)
def
hello
(
)
:
return
"
Hello World!
"
Copy permalink