from bottle import route, run, template @route('/') def index(): return template('index.html', name="World") if __name__ == '__main__': run(host='localhost', port=38083, debug=True, reloader=True)