Comment accéder aux multiples xmlns
à l'élément Root d'un arbre XML ? Par exemple :
import xml.etree.cElementTree as ET
data = """<root
xmlns:one="http://www.first.uri/here/"
xmlns:two="http://www.second.uri/here/">
...all other child elements here...
</root>"""
tree = ET.fromstring(data)
# I don't know what to do here afterwards
Je veux obtenir un dictionnaire similaire à celui-ci, ou au moins un format permettant d'obtenir plus facilement l'URI et la balise correspondante.
{'one':"http://www.first.uri/here/", 'two':"http://www.second.uri/here/"}