我正在尝试强制在 python 中的浏览器上下载 CSV 文件。 CSV文件正在生成但未从浏览器下载。
我如何实现目标?
答案 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)