如何在python中创建后强制下载csv文件

时间:2017-02-07 07:32:21

标签: python-2.7 csv browser local force-download

我正在尝试强制在 python 中的浏览器上下载 CSV 文件。 CSV文件正在生成但未从浏览器下载

我如何实现目标?

1 个答案:

答案 0 :(得分:0)

以下是使用Bottle Framework

在浏览器中下载文件的解决方案
import csv
from bottle import HTTPResponse,response
# Create the HttpResponse object with the appropriate CSV header.

headers = {}
headers[str("content-type")] = 'text/csv'
headers['Content-Disposition'] = 'attachment;filename="somefilename.csv"'
f = open(FILE_PATH + 'somefilename.csv', 'wb')
writer = csv.writer(f)
writer.writerow(['First row', 'Foo', 'Bar', 'Baz'])
writer.writerow(['Second row', 'A', 'B', 'C', '"Testing"', "Here's a quote"])
f.close()

file = open(FILE_PATH + 'somefilename.csv', "r")
return HTTPResponse(body=file.read(), status=200, headers=headers)