This website requires JavaScript.
Explore
Help
Sign In
root
/
flask
mirror of
https://github.com/pallets/flask.git
Watch
1
Star
0
Fork
You've already forked flask
0
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
85793d6c22
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-16 02:27:50 +08:00
from
flask
import
Flask
Reformat with black https://github.com/python/black
2019-05-07 03:39:41 +08:00
Import app from wsgi.py or app.py if FLASK_APP is not defined Fixes #2376
2017-06-16 02:27:50 +08:00
app
=
Flask
(
__name__
)
Reformat with black https://github.com/python/black
2019-05-07 03:39:41 +08:00
Import app from wsgi.py or app.py if FLASK_APP is not defined Fixes #2376
2017-06-16 02:27:50 +08:00
@app.route
(
"
/
"
)
def
hello
(
)
:
return
"
Hello World!
"