Docx库无法识别Document方法

时间:2014-08-05 11:24:37

标签: python

我试图使用docx库,但我收到了这个错误:

AttributeError: 'module' object has no attribute 'Document'

这是我的代码:

import docx
document = docx.Document('file.docx')

发生了什么事?我已在其他计算机上使用过文档。我使用pip安装了docx库:

pip install docx

1 个答案:

答案 0 :(得分:9)

您将包docx与包python-docx混为一谈。

pip install python-docx


>>> import docx
>>> docx.Document
<class 'docx.api.Document'>

但你说得对,这是一个问题。