I have the tripcode module done. Gotta start somewhere.
[Anarchan.git] / run.py
blobb0958462f494723f0f11f64d4daf37ad21892da5
1 from bottle import route, run
3 @route('/hello/:name')
4 def index(name='World'):
5 return '<b>Hello %s!</b>' % name
7 run(host='localhost', port=8080)