# -*- coding: utf-8 -*- from bottle import route, run @route('/') def index(): return '

Hello World/h1>' run(host='localhost', port=8000)