Je veux utiliser une expression xpath pour obtenir la valeur d'un attribut.
Je m'attendais à ce que les éléments suivants fonctionnent
from lxml import etree
for customer in etree.parse('file.xml').getroot().findall('BOB'):
print customer.find('./@NAME')
mais cela donne une erreur:
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: '@'
Ai-je tort de m'attendre à ce que cela fonctionne?
find
et findall
implémentez uniquement un sous-ensemble de XPath. Leur présence est destinée à assurer la compatibilité avec d'autres implémentations ElementTree (comme ElementTree
et cElementTree
).
La méthode xpath
, en revanche, fournit un accès complet à XPath 1.0:
print customer.xpath('./@NAME')[0]
Cependant, vous pouvez utiliser à la place get
:
print customer.get('NAME')
ou attrib
:
print customer.attrib['NAME']