我需要使用 python 将一个文件 XML 转换为 JSON,但是我需要将父亲的属性放在 JSON 中的子节点之后
我现在的代码是这样的。
def generate_json(self, event=None):
# opening the xml file
with open(self.fn ,"r") as xmlfileObj:
data_dict = lib.xmltodict.parse(xmlfileObj.read(),attr_prefix='_')
xmlfileObj.close()
jsonObj= json.dumps(data_dict, sort_keys=False)
restored = json.loads(jsonObj)
#storing json data to json file
with open("data.json", "w") as jsonfileObj:
jsonfileObj.write(jsonObj)
jsonfileObj.close()
我需要这个;
{
"datasetVersion": {
"metadataBlocks": {
"citation": {
"fields": [
{
"value": "Darwin's Finches",
"typeClass": "primitive",
"multiple": false,
"typeName": "title"
}
],
"displayName": "Citation Metadata"
}
}
}
}
代替:
{
"datasetVersion": {
"metadataBlocks": {
"citation": {
"displayName": "Citation Metadata",
"fields": [
{
"value": "Darwin's Finches",
"typeClass": "primitive",
"multiple": false,
"typeName": "title"
}
]
}
}
}
}
不按字母顺序更改 sort_keys=False,我只需要将节点父亲的属性更改为最终。
在某些网站上制作我需要的内容: https ://www.convertjson.com/xml-to-json.htm
还有一个不怎么样:
http://www.utilities-online.info/xmltojson/#.X_crINhKiUk
有人可以帮助我吗?