gpt4 book ai didi

python - 我将如何压缩多个 StringIO 文件?

转载 作者:太空宇宙 更新时间:2023-11-04 06:22:03 25 4
gpt4 key购买 nike

我有一个 Pyramid 网络应用程序,它使用内部网络服务通过 reportlab 将一些数据转换为 PDF 文件。这很好用,但一次只生成一个 PDF 文件。客户现在希望能够打印(它可以压缩,而不是通过打印机实际打印)多个 PDF 文件。

我目前在底部有这段代码:

    result = {"sales_order_data": {"sales_order_list": order_pdf_data}}
encoded_result = urllib.urlencode(result)
received_data = requests.post('http://convert_to_pdf/sales_order', data=encoded_result)
pdf_file = received_data.content
content_disposition = received_data.headers['Content-Disposition']

res = Response(content_type='application/pdf', content_disposition=content_disposition)
res.body = pdf_file
return res

pdf_file 是 PDF 文件的二进制形式。我想多次运行我的 pdf 转换代码,每次都将 pdf 二进制数据存储在一个列表中,然后使用 StringIO 和 ZipFile 将一堆文件压缩在一起。

我不太确定这是否可能:

list_of_pdf_files = []
for order in list_of_orders:
<processing of data here>
result = {"sales_order_data": {"sales_order_list": order_pdf_data}}
encoded_result = urllib.urlencode(result)
received_data = requests.post('http://convert_to_pdf/sales_order', data=encoded_result)
pdf_file = received_data.content
list_of_pdf_files.append(pdf_file)

zipped_file = <What do I do here to zip the list of pdf files?>
content_disposition = 'attachment; filename="pdf.zip"'
res = Response(content_type='application/zip', content_disposition=content_disposition)
res.body = zipped_file
return res

在获得二进制 pdf 文件列表后我该做什么,以便我可以在内存中生成一个压缩文件并通过 content-disposition 返回该文件作为响应?

最佳答案

使用ZipFile.writestr()一次将一个 PDF 文件写入存档。

关于python - 我将如何压缩多个 StringIO 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11505070/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com