Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to select the first child of particular element (subelement), but this child's namespace is different from parent's namespace. Moreover, this child can be of any namespace.

xml = '''<root xmlns="default_ns">
    <subelement>
        <!-- here we can have an element of any namespace  -->
        <some_prefix:a xmlns:some_prefix="some_namespace">
            <some_prefix:b/>
        </some_prefix:a>
    </subelement>
</root>'''
root = etree.fromstring(xml)
evaluator = etree.XPathEvaluator(root, namespaces={'def':'default_ns'})
child = evaluator.evaluate('//def:subelement/child::*')[0]
a_string = etree.tostring(child)
print a_string

This gives:

<some_prefix:a xmlns:some_prefix="some_namespace" xmlns="default_ns">
    <some_prefix:b/>
</some_prefix:a>

but what I want to get is child without namespace declaration from parent xmlns="default_ns":

<some_prefix:a xmlns:some_prefix="some_namespace">
    <some_prefix:b/>
</some_prefix:a>
share|improve this question

1 Answer

but what I want to get is child without namespace declaration from parent xmlns="default_ns".

This is not possible to achieve by only evaluating an XPath expression.

In XML any element inherits all of its parent's namespace nodes, unless it redefines a particular namespace.

This means that some_prefix:a inherits the default namespace "default_ns" from its parent (subelement), which itself inherits this same default namespace node from the top element root.

XPath is a query language for XML documents. As such, it only helps select nodes, but the evaluation of an XPath expression never destroys, adds or alters nodes, including namespace nodes.

Because of this, the default namespace node that belongs to some_prefix:a cannot be destroyed as result of the evaluation of your XPath expression -- thus this namespace node is shown when some_prefix:a is serialized to text.

Solution: Use your favorite PL that hosts XPath, to delete the unwanted namespace node.

For example, if the hosting language is XSLT:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:d="default_ns">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="/">
  <xsl:apply-templates mode="delNS"
    select="/*/d:subelement/*[1]"/>
 </xsl:template>

 <xsl:template match="*" mode="delNS">
   <xsl:element name="{name()}" namespace="{namespace-uri()}">
    <xsl:copy-of select="namespace::*[name()]"/>
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates mode="delNS" select="node()"/>
   </xsl:element>
 </xsl:template>
</xsl:stylesheet>

when this transformation is applied on the provided XML document:

<root xmlns="default_ns">
    <subelement>
        <!-- here we can have an element of any namespace  -->
        <some_prefix:a xmlns:some_prefix="some_namespace">
            <some_prefix:b/>
        </some_prefix:a>
    </subelement>
</root>

the wanted, correct result is produced:

<some_prefix:a xmlns:some_prefix="some_namespace">
   <some_prefix:b/>
</some_prefix:a>
share|improve this answer
Thanks Dimitre! Actually I want to achieve the result using lxml. After your anwser I found similar problem and the first comment in this anwser suggest how to do this using deepcopy and clean_namespaces: child = deepcopy(child) etree.cleanup_namespaces(child) – Marcin Mar 1 '12 at 17:24
@Marcin Are those two different commands? Also, my interpreter says "'deepcopy' is not defined". – NoBugs Sep 2 '12 at 3:38
@NoBugs These are two seperate commands. Moreover, I found that etree.cleanup_namespaces is needless. Use only deepcopy to remove unwanted namespace. deepcopy function comes from copy module. This is the final code: child = evaluator.evaluate('//def:subelement/child::*')[0] child = deepcopy(child) a_string = etree.tostring(child) – Marcin Sep 2 '12 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.