Untangle导入模组

import untangle

使用 Untangle 解析 XML

# 传入 xml 数据
doc = untangle.parse("""<?xml version="1.0"?>
<root>
    <child name="child1"/>
    <testdata>This is testdata</testdata>
</root>""")

print(doc.root.testdata.cdata) # 输出 This is testdata
print(doc.root.child["name"]) # 输出 child1