Python String à XML
import xml.etree.ElementTree as ET
root = ET.fromstring(country_data_as_string)
Kaeffa
import xml.etree.ElementTree as ET
root = ET.fromstring(country_data_as_string)
import xml.etree.ElementTree as ET
tree = ET.parse('filename.xml') #this gets the file into a tree structure
tree_root = tree.getroot() #this gives us the root element of the file
import xml.etree.ElementTree as ET
root = ET.parse('thefile.xml').getroot()
import xml.dom.minidom
from xml.dom import getChildNodesByName
xdom = xml.dom.minidom.parse("GenericAddressing.xml")
xdoc = xdom.documentElement
from xml.etree.ElementTree import XML, fromstring
myxml = fromstring(text)
root = ET.fromstring(xmlData)