python-bottle/tests/simple-server/hello.py
2023-07-10 16:08:18 +02:00

9 lines
192 B
Python
Executable File

#!/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)