9 lines
192 B
Python
Executable File
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)
|