blob: c619a2470ef6e1d07ae343cacdb66cc5fbfcf44f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from bottle import route, run
@route('/')
def index(name='home'):
return '<p><b>Homepage</b></p><p>Insert widget here</p>'
@route('/s/:id')
def sig(id='home'):
return '<p><b>Signature</b></p><p>%s</p>' % id
run(host='localhost', port=8000)
|