我正在使用Python的Fast API框架开发一个API端点,它将提供给公众使用。它已经完成并在工作,但它的工作方式是我将创建它,然后保存到服务器的本地目录,然后读取该文件并返回一个csv文件作为对用户的响应。
我的问题是,如何直接将csv文件返回给用户,而不将其保存在服务器的目录中。
def export_client_invoice(client_id):
invoice_doc = client_docs_db.view("client_invoice/by_client_id", key=int(client_id), include_docs=True)
data = ["value %d" % i for i in range(1,4)]
with open("./file.csv", 'w', newline='') as myfile:
wr = csv.writer(myfile, quoting=csv.QUOTE_ALL)
wr.writerow(data)
file_like = open("./file.csv", mode="rb")
response = StreamingResponse(file_like, media_type="text/csv")
response.headers["Content-Disposition"] = "attachment; filename=export.csv"
return response
2条答案
按热度按时间ss2ws0br1#
我不能用fastapi测试它,所以你可能需要稍微采用一下,使它在你的环境中工作。
8zzbczxx2#
@jackhammer013,您可以使用此代码返回带有FastAPI的csv文件