ในการสร้าง 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>