如何用 Python 生成本带有命名空间的 XML 文档?


目前,您不能直接向 XML 文档中添加命名空间,因为它尚未在内置 Python xml 包中得到支持。因此,您需要将命名空间作为正常属性添加到标签。例如,

import xml.dom.minidom
doc = xml.dom.minidom.Document()
element = doc.createElementNS('http://hello.world/ns', 'ex:el')
element.setAttribute("xmlns:ex", "http://hello.world/ns")
doc.appendChild(element)
print(doc.toprettyxml())

这会为您提供一个文档,

<?xml version="1.0" ?>
<ex:el xmlns:ex="http://example.net/ns"/>

更新于: 01-Oct-2019

2K+ 浏览量

开启您的 职业生涯

完成课程后获得认证

开始学习
广告