I'm working with a pretty complex XML like this:
<?xml version="1.0" encoding="UTF-8"?>
<!-- ***** Configuration Data exported at 20160623T110335 ***** -->
<impex:ExportData xmlns:impex="urn:swift:saa:xsd:impex">
<!-- *** Exported Data for Operator *** -->
<OperatorData xmlns="urn:swift:saa:xsd:impex:operator">
<ns2:OperatorDefinition xmlns="urn:swift:saa:xsd:operatorprofile" xmlns:ns2="urn:swift:saa:xsd:impex:operator" xmlns:ns3="urn:swift:saa:xsd:unit" xmlns:ns4="urn:swift:saa:xsd:licenseddestination" xmlns:ns5="urn:swift:saa:xsd:operator" xmlns:ns6="urn:swift:saa:xsd:authenticationservergroup">
<ns2:Operator>
<ns5:Identifier>
<ns5:Name>jdoe</ns5:Name>
</ns5:Identifier>
<ns5:Description>John Doe</ns5:Description>
<ns5:OperatorType>HUMAN</ns5:OperatorType>
<ns5:AuthenticationType>LDAP</ns5:AuthenticationType>
<ns5:AuthenticationServerGroup>
<ns6:Type>LDAP</ns6:Type>
<ns6:Name>LDAP_GROUP1</ns6:Name>
</ns5:AuthenticationServerGroup>
<ns5:LdapUserId>jdoe</ns5:LdapUserId>
<ns5:Profile>
<Name>DEV Users</Name>
</ns5:Profile>
<ns5:Unit>
<ns3:Name>None</ns3:Name>
</ns5:Unit>
</ns2:Operator>
</ns2:OperatorDefinition>
</OperatorData>
</impex:ExportData>
In this XML there are numerous <ns2:OperatorDefinition>
elements like the one I included. I'm having a hard time understanding how to pull out something like <ns5:Description>
using lxml. All the examples for namespaces I'm finding are not this complex.
I'm trying to simply find the tags doing something like this -
from lxml import etree
doc = etree.parse('c:/robin/Operators_out.xml')
r = doc.xpath('/x:OperatorData/ns2:OperatorDefinition', namespaces={'x': 'urn:swift:saa:xsd:impex:operator'})
print len(r)
print r[0].text
print r[0].tag
I get Undefined namespace prefix
.