from bottle import Bottle, run, static_file app = Bottle() @app.route('/') def hello(): """Return a friendly HTTP greeting.""" return 'Hello World!' @app.route('/v1/') def show_pic(filename): return static_file(filename, root='images/v1/') run(app, host='localhost', port=8080, debug=True)