This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
flasky
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Activity
Browse Source
Chapter 2: A complete application (2a)
master
T. Meissner
6 years ago
parent
abf38e34e1
commit
024f9b2844
1 changed files
with
6 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
hello.py
+ 6
- 0
hello.py
View File
@ -0,0 +1,6 @@
from
flask
import
Flask
app
=
Flask
(
__name__
)
@app.route
(
'
/
'
)
def
index
(
)
:
return
'
<h1>Hello World!</h1>
'
Write
Preview
Loading…
Cancel
Save