如何使用 Python 生成 XML?


要从 Python 字典生成 XML,需要安装 dicttoxml 包。可以使用以下命令进行安装 −

$ pip install dicttoxml

安装后,可以使用 dicttoxml 方法创建 xml。 

示例

a = {
   'foo': 45,
   'bar': {
      'baz': "Hello"
   }
}
xml = dicttoxml.dicttoxml(a)
print(xml)

输出

将输出 −

b'<?xml version="1.0" encoding="UTF-8" ?><root><foo type="int">45</foo><bar type="dict"><baz type="str">Hello</baz></bar></root>'

还可以使用 toprettyxml 方法美化此输出。 

示例

from xml.dom.minidom import parseString
a = {
   'foo': 45,
   'bar': {
      'baz': "Hello"
   }
}
xml = dicttoxml.dicttoxml(a)
dom = parseString(xml)
print(dom.toprettyxml())

输出

将输出 −

<?xml version = "1.0" ?>
<root>
   <foo type = "int">45</foo>
   <bar type = "dict">
      <baz type = "str">Hello</baz>
   </bar>
</root>

更新于: 2020-03-05

1K 次观看

开启您的职业生涯

通过完成此课程获得认证

开始学习
广告