要从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>