from bottle import route, run

@route('/hello')
def hello():
    return "Hello World!"

run(host='10.0.1.250', port=8080, debug=True)

