Bottle/Hello

コマンドライン
pip install bottle
	
Python
from bottle import route, run, template
 
@route('/hello/')
def index(name):
    return template('Hello {{name}}!', name = name)
 
run(host='localhost', port=8080)

http://localhost:8080/hello/you