我需要使用Python瓶框在服务器端生成一个word文档。
我使用Python-docx模块生成但不确定我该怎么做...
这就是我生成的方式
import StringIO
output = StringIO.StringIO()
workbook = xlsxwriter.Workbook(output, {'in_memory':True})
output.seek(0)
response.headers['Content-Type'] = 'application/vnd.openxmlformats- officedocument.spreadsheetml.sheet; charset=UTF-8'
response.headers['Content-Disposition'] = 'attachment; filename='+filename
return output.read()
但不确定如何集成Python-docx来生成word文档..