61

属性の値を取得するために 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: '@'

これがうまくいくと期待するのは間違っていますか?

4

2 に答える 2

81

findXPathのfindall サブセットのみを実装します。ElementTreeそれらの存在は、他の ElementTree 実装 (や など)との互換性を提供することを目的としていますcElementTree

対照的に、このxpathメソッドは XPath 1.0 へのフル アクセスを提供します。

print customer.xpath('./@NAME')[0]

ただし、代わりに次を使用できますget

print customer.get('NAME')

またはattrib:

print customer.attrib['NAME']
于 2011-05-25T15:19:57.020 に答える