pip install Bottle
python
from bottle import route, run
@route('/')
def hello():
if __name__ == '__main__':
run(host='localhost', port=8080, debug=True)
Bottle v0.12.19 server starting up (using WSGIRefServer())...
Listening on http://localhost:8080/
Hit Ctrl-C to quit.