使用 Python-docx 更新 table 的单元格内容

Using Python-docx to update cell content of a table

我正在使用 python 2.7 Python-docx 尝试修改 Microsoft docx 文档中 table 中单元格的内容。我以 xml 的形式打开文档,这样我就可以查看内容的位置并尝试获取值,以便我可以引用它们。以下是我找到的内容。

<w:tbl>
<w:tblPr>
   <w:tblStyle w:val="TableGrid"/>
   <w:tblW w:w="0" w:type="auto"/>
   <w:tblLook w:val="04A0" w:firstRow="1" w:lastRow="0" w:firstColumn="1" w:lastColumn="0" w:noHBand="0" w:noVBand="1"/>
</w:tblPr>
<w:tblGrid>
   <w:gridCol w:w="1345"/>
   <w:gridCol w:w="3148"/>
   <w:gridCol w:w="3148"/>
   <w:gridCol w:w="3149"/>
</w:tblGrid>
<w:tr w:rsidR="002C543C" w14:paraId="4C33FE0D" w14:textId="77777777" w:rsidTr="009E290C">
  <w:trPr>
    <w:cantSplit/>
    <w:trHeight w:hRule="exact" w:val="1080"/>
  </w:trPr>
  <w:tc>
    <w:tcPr>
      <w:tcW w:w="1345" w:type="dxa"/>
    </w:tcPr>
    <w:p w14:paraId="4497FDDB" w14:textId="77777777" w:rsidR="002C543C" w:rsidRDefault="002C543C">
       <w:pPr>
           <w:rPr>
             <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
             <w:sz w:val="24"/>
             <w:szCs w:val="24"/>
           </w:rPr>
      </w:pPr>
    </w:p>
  </w:tc>
  <w:tc>
     <w:tcPr>
        <w:tcW w:w="3148" w:type="dxa"/>
     </w:tcPr>
     <w:p w14:paraId="15F285F0" w14:textId="77777777" w:rsidR="002C543C" w:rsidRDefault="002C543C" w:rsidP="009E290C">
        <w:pPr>
        <w:jc w:val="center"/>
        <w:rPr>
        <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
       <w:sz w:val="24"/>
     <w:szCs w:val="24"/>
     </w:rPr>
   </w:pPr>
   </w:p>
   <w:p w14:paraId="140917B0" w14:textId="77777777" w:rsidR="009E290C" w:rsidRPr="001261E4" w:rsidRDefault="009E290C" w:rsidP="009E290C">
    <w:pPr>
    <w:jc w:val="center"/>
      <w:rPr>
       <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
      <w:b/>
      <w:sz w:val="24"/>
      <w:szCs w:val="24"/>
     </w:rPr>
     </w:pPr>
     <w:r w:rsidRPr="001261E4">
  <w:rPr>
  <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
  <w:b/>
  <w:sz w:val="24"/>
  <w:szCs w:val="24"/>
  </w:rPr>
  <w:t>this is cell (1, 2)</w:t>
  </w:r>
  </w:p>

所以使用上面的 xml 作为下面的参考是我尝试实现更新单元格 (0,0) 的方法。

from docx import Document
from docx.shared import Inches
from docx.oxml.table import CT_Tbl
from docx.oxml.text.paragraph import CT_P
from docx.table import Table
from docx.text.paragraph import Paragraph


   f = open('filename.docx')
   doc = Document(f)
   table_to_update = Table('04A0', doc) # value from above <w:tblLook w:val="04A0"
   cell = table_to_update.cell(0, 0) # this produces the error 
   #cell.text = 'can we add something'

此代码产生以下错误

AttributeError: 'str' object has no attribute 'col_count'

所以我假设它来自我发送的 04A0 值。所以首先我试图找到如何引用我想要修改的 table。从那里我想找到 table 中的单元格并修改它。我一直在寻找这方面的例子,但一直找不到。

Table 的构造函数接受 <w:tbl> XML 子树而不是 table 的字符串 ID(这就是它失败的原因)。此外,您认为 id 是 actually:

Specifies what aspects of the table styles should be included. This is a bitmask of options: 0x0020=Apply header row formatting; 0x0040=Apply last row formatting; 0x0080=Apply header column formatting; 0x0100=Apply last column formatting.


您可以使用以下代码获取文档中 table 的列表:

doc = Document('filename.docx')
print(doc.tables)

然后你必须明白,你需要修改 table 中的哪些(按列表中的位置或 table 的 headers 或任何适用的)。为简单起见,我将使用第一个 table。当您拥有 Table object 时,您可以通过以下方式修改单元格值:

table = doc.tables[0]
table.cell(0, 0).text = 'new value'

然后您可以保存更新的文档:

doc.save('filename_updated.docx')