これは、.docx ファイルを含む zip ファイルをダウンロードするための私のコードです。
def reportsdlserien(request):
selected_sem = request.POST.get("semester","SS 2016")
docx_title="Report_in_%s.docx" % selected_sem.replace(' ','_')
document = Document()
f = io.BytesIO()
zip_title="Archive_in_%s.zip" % selected_sem.replace(' ','_')
zip_arch = ZipFile( f, 'a' )
document.add_heading("Report in "+selected_sem, 0)
document.add_paragraph(date.today().strftime('%d %B %Y'))
document.save(docx_title)
zip_arch.write(docx_title)
zip_arch.close()
response = HttpResponse(
f.getvalue(),
content_type='application/zip'
)
response['Content-Disposition'] = 'attachment; filename=' + zip_title
return response
唯一の問題は、必要のない .docx ファイルも作成されることです。docx ファイルにも BytesIO を使用したかったのですが、アーカイブに追加できず、コマンドzip_arch.write(BytesIOdocxfile)
が機能しません。これを行う別のコマンドはありますか?ありがとうございました!