У меня проблема с odfpy и Python 3. Я пытаюсь скопировать существующую таблицу в текстовый файл Opendocument. Я не могу получить информацию о стиле из исходной таблицы. Вот мой код:
# 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')
Помощь приветствуется!