如何使用 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>
广告