Hi
I'm trying to find a xml-interpret function (like the simplexml_load_string) in Python, but with no success :/
Let's say I have xml in a string
my_xml_string = """
<root>
<content>
<one>A value</one>
<two>Here goes for ...</two>
</content>
</root>"""
To read an value in php I would normaly do something like this
// read into object
$xml = simplexml_load_string(my_xml_string);
// print some values
echo $xml->root->content->one
echo $xml->root->content->two
are there any equivalent object in python/django?
Thanks