¿Hay alguna forma de ignorar el espacio de nombres XML en los nombres de elementos en elementtree.ElementTree
?Python: Ignorar xmlns en elementtree.ElementTree
intento imprimir todos technicalContact
tags:
for item in root.getiterator(tag='{http://www.example.com}technicalContact'):
print item.tag, item.text
y me sale algo como:
{http://www.example.com}technicalContact [email protected]
Pero lo que realmente quiero es:
technicalContact [email protected]
¿Hay alguna manera para mostrar solo el sufijo (sans xmlns), o mejor, iterar sobre los elementos sin indicar explícitamente xmlns?
Véase mi respuesta http://stackoverflow.com/a/25920989/2593383 bajo para una mayor solución general – nonagon