python from bottle import route, run @route('/') def hello(): return "Hello, World!" run(host='localhost', port=8080)