OpenOffice ODS スプレッドシートのコンテンツを解析しようとしています。ods 形式は基本的に、多数のドキュメントを含む単なる zip ファイルです。スプレッドシートの内容は「content.xml」に保存されます。
import zipfile
from lxml import etree
zf = zipfile.ZipFile('spreadsheet.ods')
root = etree.parse(zf.open('content.xml'))
スプレッドシートの内容はセルにあります。
table = root.find('.//{urn:oasis:names:tc:opendocument:xmlns:table:1.0}table')
行を直接取得することもできます。
rows = root.findall('.//{urn:oasis:names:tc:opendocument:xmlns:table:1.0}table-row')
個々の要素は、名前空間について知っています。
>>> table.nsmap['table']
'urn:oasis:names:tc:opendocument:xmlns:table:1.0'
find/findall で名前空間を直接使用するにはどうすればよいですか?
明らかな解決策は機能しません。
テーブルから行を取得しようとしています:
>>> root.findall('.//table:table')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "lxml.etree.pyx", line 1792, in lxml.etree._ElementTree.findall (src/lxml/lxml.etree.c:41770)
File "lxml.etree.pyx", line 1297, in lxml.etree._Element.findall (src/lxml/lxml.etree.c:37027)
File "/usr/lib/python2.6/dist-packages/lxml/_elementpath.py", line 225, in findall
return list(iterfind(elem, path))
File "/usr/lib/python2.6/dist-packages/lxml/_elementpath.py", line 200, in iterfind
selector = _build_path_iterator(path)
File "/usr/lib/python2.6/dist-packages/lxml/_elementpath.py", line 184, in _build_path_iterator
selector.append(ops[token[0]](_next, token))
KeyError: ':'