I'd like to get some rows (z:row rows) from XML using:
<rs:data>
<z:row Attribute1="1" Attribute2="1" />
<z:row Attribute1="2" Attribute2="2" />
<z:row Attribute1="3" Attribute2="3" />
<z:row Attribute1="4" Attribute2="4" />
<z:row Attribute1="5" Attribute2="5" />
<z:row Attribute1="6" Attribute2="6" />
</rs:data>
I'm having trouble using (Python):
ElementTree.parse('myxmlfile.xml').getroot().findall('//z:row')
I think that two points are invalid in that case.
Anyone knows how can I do that?