from bottle import run, static_file, route @route('/<filepath:path>') def index(filepath): return static_file(filepath, root='./') if __name__ == '__main__': run(host="localhost", port="9669")