如何附加包含多个.zip
文件的.csv
。恩。 text_1.csv, text_2.csv
请记住,这些csv文件是根据数据存储区中的数据构建的。
message = mail.EmailMessage()
message.attachments = .... #??
message.send()
答案 0 :(得分:1)
import zipfile, StringIO
o=StringIO.StringIO()
file = zipfile.ZipFile(file=o,compression=zipfile.ZIP_DEFLATED,mode="w")
.. . ## add your csv files here
file.close()
o.seek(0)
self.response.headers['Content-Type'] ='application/zip'
self.response.headers['Content-Disposition'] = 'attachment; filename="your_csvs.zip"'
self.response.out.write(o.getvalue())
了解更多信息,请访问:http://www.tareandshare.com/2008/09/28/Zip-Google-App-Engine-GAE/