私はOpenOffice ODSスプレッドシートのコンテンツを解析しようとしています。 ods形式は、本質的には多数の文書を含むzipファイルです。スプレッドシートのコンテンツは 'content.xml'に保存されます。lxmlのfind/findallで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: ':'
あなたはスプレッドシートを処理するためにOpenOfficeのためのPython APIを使用しようとしたことがありますか? – jfs
こんにちは私はetree.QNameを使用して、名前空間で要素と属性にアクセスしています。ネームスペースの辞書の助けを借りてきちんとした方法で、findとfindallメソッドでも動作します。詳細については、http://lxml.de/tutorial.html#namespaces –