Xpath式を使用して、属性の値を取得したい。
私は次のものが働くと予想しました
from lxml import etree
for customer in etree.parse('file.xml').getroot().findall('BOB'):
print customer.find('./@NAME')
しかし、これはエラーを与えます:
Traceback (most recent call last):
File "bob.py", line 22, in <module>
print customer.find('./@ID')
File "lxml.etree.pyx", line 1409, in lxml.etree._Element.find (src/lxml/lxml.etree.c:39972)
File "/usr/local/lib/python2.7/dist-packages/lxml/_elementpath.py", line 272, in find
it = iterfind(elem, path, namespaces)
File "/usr/local/lib/python2.7/dist-packages/lxml/_elementpath.py", line 262, in iterfind
selector = _build_path_iterator(path, namespaces)
File "/usr/local/lib/python2.7/dist-packages/lxml/_elementpath.py", line 246, in _build_path_iterator
selector.append(ops[token[0]](_next, token))
KeyError: '@'
これが機能すると期待するのは間違っていますか?
find
およびfindall
サブセットのみを実装 XPath。それらの存在は、他のElementTree実装(ElementTree
やcElementTree
など)との互換性を提供することを目的としています。
対照的に、xpath
メソッドは、XPath 1.0へのフルアクセスを提供します。
print customer.xpath('./@NAME')[0]
ただし、代わりにget
を使用できます。
print customer.get('NAME')
またはattrib
:
print customer.attrib['NAME']