repo.or.cz
/
Anarchan.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
I have the tripcode module done. Gotta start somewhere.
[Anarchan.git]
/
run.py
blob
b0958462f494723f0f11f64d4daf37ad21892da5
1
from
bottle
import
route
,
run
2
3
@route
(
'/hello/:name'
)
4
def
index
(
name
=
'World'
):
5
return
'<b>Hello
%s
!</b>'
%
name
6
7
run
(
host
=
'localhost'
,
port
=
8080
)