更改 lxml 中的元素名称空间

Ric*_*son 5 python xml lxml elementtree xml-namespaces

对于lxml,我不确定如何正确删除现有元素的名称空间并设置新的名称空间。

例如,我正在解析这个最小的 xml 文件:

<myroot xmlns="http://myxml.com/somevalue">
    <child1>blabla</child1>
    <child2>blablabla</child2>
</myroot>
Run Code Online (Sandbox Code Playgroud)

...我希望它成为:

<myroot xmlns="http://myxml.com/newvalue">
    <child1>blabla/child1>
    <child2>blablabla</child2>
</myroot>
Run Code Online (Sandbox Code Playgroud)

lxml

from lxml import etree as ET
tree = ET.parse('myfile.xml')
root= tree.getroot()
Run Code Online (Sandbox Code Playgroud)

如果我检查root

In [7]: root
Out[7]: <Element {http://myxml.com/somevalue}myroot at 0x7f6e13832588>
In [8]: root.nsmap
Out[8]: {None: 'http://myxml.com/somevalue'}
In [11]: root.tag
Out[11]: '{http://myxml.com/somevalue}myroot'
Run Code Online (Sandbox Code Playgroud)

理想情况下,我希望最终得到:

In [8]: root.nsmap
Out[8]: {None: 'http://myxml.com/newvalue'}
In [11]: root.tag
Out[11]: '{http://myxml.com/newvalue}myroot'
Run Code Online (Sandbox Code Playgroud)

至于标签,只需设置正确的字符串即可。怎么样nsmap

Dan*_*ley 5

我同意 mzjn 和 Parfait 的观点;我会使用 XSLT 来更改名称空间。

通过将新旧名称空间作为参数传入,可以使 XSLT 具有相当的可重用性。

例子...

XML 输入(input.xml)

<myroot xmlns="http://myxml.com/somevalue">
    <child1>blabla</child1>
    <child2>blablabla</child2>
</myroot>
Run Code Online (Sandbox Code Playgroud)

XSLT 1.0(测试.xsl)

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

  <xsl:param name="orig_namespace"/>
  <xsl:param name="new_namespace"/>

  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>

  <xsl:template match="*" priority="1">
    <xsl:choose>
      <xsl:when test="namespace-uri()=$orig_namespace">
        <xsl:element name="{name()}" namespace="{$new_namespace}">
          <xsl:apply-templates select="@*|node()"/>
        </xsl:element>
      </xsl:when>
      <xsl:otherwise>
        <xsl:copy>
          <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

</xsl:stylesheet>
Run Code Online (Sandbox Code Playgroud)

Python

from lxml import etree

tree = etree.parse("input.xml")
xslt = etree.parse("test.xsl")

orig_namespace = "http://myxml.com/somevalue"
new_namespace = "http://myxml.com/newvalue"

new_tree = tree.xslt(xslt, orig_namespace=f"'{orig_namespace}'",
                     new_namespace=f"'{new_namespace}'")
print(etree.tostring(new_tree, pretty_print=True).decode("utf-8"))
Run Code Online (Sandbox Code Playgroud)

输出

<myroot xmlns="http://myxml.com/newvalue">
  <child1>blabla</child1>
  <child2>blablabla</child2>
</myroot>
Run Code Online (Sandbox Code Playgroud)

另外,如果您使用以下输入(使用命名空间前缀)...

<myroot xmlns="http://myxml.com/newvalue">
  <child1>blabla</child1>
  <child2>blablabla</child2>
</myroot>
Run Code Online (Sandbox Code Playgroud)

你得到这个输出...

<ns1:myroot xmlns:ns1="http://myxml.com/somevalue">
    <ns1:child1>blabla</ns1:child1>
    <ns1:child2>blablabla</ns1:child2>
</ns1:myroot>
Run Code Online (Sandbox Code Playgroud)

有关将 XSLT 与 lxml 结合使用的更多信息,请参阅https://lxml.de/xpathxslt.html 。

  • 我可以确认该代码适用于 Python 3.7.1 和 lxml 4.4.1(我很久以前就投票了!)。 (2认同)