odfpy:需要复制现有表

时间:2018-04-30 13:30:56

标签: python-3.x odfpy

我有odfpy和Python 3的问题。我尝试复制Opendocument Text文件中的现有表。我没有从原始表中获取样式信息。这是我的代码:

# templateTable is a table.Table that has to be copied
for childNode in templateTable.childNodes:
    if 'style-name' in str(childNode.attributes):
        # the next command fails and the python interpreter tells me
        # 'style-name' is not in list
        style = childNode.getAttribute('style-name')

欢迎提供帮助!

1 个答案:

答案 0 :(得分:0)

我终于找到了自己的解决方案。我想与你分享,以防其他人不得不像我一样处理同样的问题。您可以找到代码here