Python瓶框架生成word文档

时间:2014-07-29 20:29:35

标签: python bottle

我需要使用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文档..

0 个答案:

没有答案