-
-
Save TheWaWaR/5898862 to your computer and use it in GitHub Desktop.
Add *upload* folder as static file folder.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from flask import Flask, send_from_directory | |
app = Flask(__name__) | |
@app.route('/upload/<path:filename>') | |
def send_uploads(filename): | |
print filename | |
return send_from_directory(os.path.join(app.root_path, 'upload'), filename) | |
if __name__ == '__main__': | |
app.run(host='0.0.0.0', debug=True) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment