Skip to content

Instantly share code, notes, and snippets.

@TheWaWaR
Forked from rduplain/app.py
Last active December 19, 2015 04:39
Show Gist options
  • Save TheWaWaR/5898862 to your computer and use it in GitHub Desktop.
Save TheWaWaR/5898862 to your computer and use it in GitHub Desktop.
Add *upload* folder as static file folder.
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