Skip to content

Instantly share code, notes, and snippets.

@miaoski
Created March 11, 2015 08:31
  • Select an option

Select an option

Easy File Server
from flask import Flask, request, send_from_directory
# set the project root directory as the static folder, you can set others.
app = Flask(__name__)
@app.route('/<path:path>')
def send_js(path):
return send_from_directory('/Users/philippe/iso/', path)
if __name__ == "__main__":
app.run(host = '0.0.0.0', port = 8888, debug = True, threaded=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment