Parse XML namespace with Element Tree findall

后端 未结 1 1409

How can I use a query element tree findall(\'Email\') given the following xml?



        
相关标签:
1条回答
  • 2020-12-11 11:40

    You should read the docs more closely, in particular the section on Parsing XML with Namespaces, which includes an example that is almost exactly what you want.

    But even without the docs, the answer is actually contained in your example output. When you printed the root element of your document...

    >>> tree = etree.parse(open('data.xml'))
    >>> root = tree.getroot()
    >>> root
    <Element {http://www.docusign.net/API/3.0}DocuSignEnvelopeInformation at 0x7f972cd079e0>
    

    ...you can see that it printed the root element name (DocuSignEnvelopeInformation) with a namespace prefix ({http://www.docusign.net/API/3.0}). You can use this same prefix as part of your argument to findall:

    >>> root.findall('{http://www.docusign.net/API/3.0}Email')
    

    But this by itself won't work, since this would only find Email elements that are immediate children of the root element. You need to provide an ElementPath expression to cause findall to perform a search of the entire document. This works:

    >>> root.findall('.//{http://www.docusign.net/API/3.0}Email')
    [<Element {http://www.docusign.net/API/3.0}Email at 0x7f972949a6c8>]
    

    You can also perform a similar search using XPath and namespace prefixes, like this:

    >>> root.xpath('//docusign:Email',
    ... namespaces={'docusign': 'http://www.docusign.net/API/3.0'})
    [<Element {http://www.docusign.net/API/3.0}Email at 0x7f972949a6c8>]
    

    This lets you use XML-like namespace: prefixes instead of the LXML namespace syntax.

    0 讨论(0)
提交回复
热议问题