Flask生成下载文件

    浏览器访问的时候,如果想让用户下载一个文件,在http response里设置 Content-Disposition = attachment 然后设置filename即可。


下面的代码说明在python flask框架中如何生成一个下载文件。

第一种情况:

后台程序直接生成文件内容

content = "long text"
response = make_response(content)
response.headers["Content-Disposition"] = "attachment; filename=myfilename.txt"
return response


第二种情况:

读取一个服务器上的文件,供用户下载

response = make_response(send_file("myfiles.zip"))
response.headers["Content-Disposition"] = "attachment; filename=myfiles.zip;"
return response




你可能感兴趣的:(下载文件,flask,content)