0
是否有任何方法將XML轉換爲python模型,而不是手動編寫解析?將XML轉換爲python對象的最快方法
是否有任何方法將XML轉換爲python模型,而不是手動編寫解析?將XML轉換爲python對象的最快方法
嘗試xmltodict:
>>> print(json.dumps(xmltodict.parse("""
... <mydocument has="an attribute">
... <and>
... <many>elements</many>
... <many>more elements</many>
... </and>
... <plus a="complex">
... element as well
... </plus>
... </mydocument>
... """), indent=4))
{
"mydocument": {
"@has": "an attribute",
"and": {
"many": [
"elements",
"more elements"
]
},
"plus": {
"@a": "complex",
"#text": "element as well"
}
}
}
你嘗試過什麼到目前爲止? – tavnab
Python模型? –
我嘗試xml.etree.ElementTree和lxml,但我的文件是大約7000行的元素很多所以我試圖找到自動模型生成。 – 3zcs