python-bottle/tests/simple-server/hello.py

9 lines
192 B
Python
Raw Permalink Normal View History

#!/usr/bin/python3
from bottle import route, run, template
@route('/hello/<name>')
def index(name):
return template('<b>Hello {{name}}</b>!', name=name)
run(host='localhost', port=1234)