我想打开一个已经添加页码的现有 Word 文档,然后添加一些文本和标题。
这是我如何尝试实现目标的基本示例
#!/usr/bin/env python
from docx import Document
document = Document('report-template.docx')
document.add_heading('Headline No. 1', level=1)
document.add_paragraph('Test No. 1')
document.add_heading('Heading No. 2', level=2)
document.add_paragraph('Test No. 2')
document.save('example.docx')
当我使用完整的新文档执行上述操作时,一切正常 - 当使用已经存在的文件执行此操作时,它会失败并出现以下错误
Traceback (most recent call last):
File "create-report-test.py", line 6, in <module>
document.add_heading('Headline No. 1', level=1)
File "/usr/lib/python2.7/site-packages/docx/document.py", line 43, in add_heading
return self.add_paragraph(text, style)
File "/usr/lib/python2.7/site-packages/docx/document.py", line 63, in add_paragraph
return self._body.add_paragraph(text, style)
File "/usr/lib/python2.7/site-packages/docx/blkcntnr.py", line 38, in add_paragraph
paragraph.style = style
File "/usr/lib/python2.7/site-packages/docx/text/paragraph.py", line 111, in style
style_or_name, WD_STYLE_TYPE.PARAGRAPH
File "/usr/lib/python2.7/site-packages/docx/parts/document.py", line 75, in get_style_id
return self.styles.get_style_id(style_or_name, style_type)
File "/usr/lib/python2.7/site-packages/docx/styles/styles.py", line 113, in get_style_id
return self._get_style_id_from_name(style_or_name, style_type)
File "/usr/lib/python2.7/site-packages/docx/styles/styles.py", line 143, in _get_style_id_from_name
return self._get_style_id_from_style(self[style_name], style_type)
File "/usr/lib/python2.7/site-packages/docx/styles/styles.py", line 57, in __getitem__
raise KeyError("no style with name '%s'" % key)
KeyError: u"no style with name 'Heading 1'"
我在http://python-docx.readthedocs.org/en/latest/user/documents.html下阅读了文档,但似乎我遗漏了一些东西 - 有人知道吗?
提前致谢