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: Dynamic routes (2b)
master
T. Meissner
6 years ago
parent
024f9b2844
commit
d44cd7029c
1 changed files
with
6 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
hello.py
+ 6
- 0
hello.py
View File
@ -1,6 +1,12 @@
from
flask
import
Flask
from
flask
import
Flask
app
=
Flask
(
__name__
)
app
=
Flask
(
__name__
)
@app.route
(
'
/
'
)
@app.route
(
'
/
'
)
def
index
(
)
:
def
index
(
)
:
return
'
<h1>Hello World!</h1>
'
return
'
<h1>Hello World!</h1>
'
@app.route
(
'
/user/<name>
'
)
def
user
(
name
)
:
return
'
<h1>Hello, {}!</h1>
'
.
format
(
name
)
Write
Preview
Loading…
Cancel
Save