Question : Flask Download a File
Answered by : clasher
from flask import Flask
from flask import send_file
app = Flask(__name__)
@app.route('/download')
def downloadFile (): #For windows you need to use drive name [ex: F:/Example.pdf] path = "/Examples.pdf" return send_file(path, as_attachment=True)
if __name__ == '__main__': app.run(port=5000,debug=True)
Source : https://stackoverflow.com/questions/24577349/flask-download-a-file | Last Update : Wed, 19 May 21
Question : download files from url in flask
Answered by : goutam-de
url = 'https://www.facebook.com/favicon.ico'
r = requests.get(url, allow_redirects=True)
Source : https://www.tutorialspoint.com/downloading-files-from-web-using-python | Last Update : Wed, 13 Jul 22