I have XML along the following lines:
<?xml version="xxx"?>
<doc:document xmlns:doc="some value 1...">
<rdf:RDF xmlns:rdf="some value 2...">
<rdf:Description rdf:about="some value...">
<dct:format xmlns:dct="http://someurl/">some value 3</dct:format>
<dct:title xmlns:dct="http://someurl/">some text of interest to me</dct:title>
</rdf:Description>
</rdf:RDF>
</doc:document>
How do I get the "some text of interest to me" using Python/ETree?
Thanks in advance for any help!