unable to convert back to xml from output of xmltodict

153 Views Asked by At

I'm importing xml file into dict and further converting that dict into Json.

data_dict = xmltodict.parse(xmlstr,dict_constructor=dict)
json_data = json.dumps(data_dict)

I've an application to make changes to the JSON file and import that json file into Ordered Dict. After that I need to convert ordered dict back to original xml file format.

I've already tried dicttoxml library (see: https://pypi.org/project/dicttoxml/), but the output format does not match the original format.

Can anyone suggest any other library or any workaround?

0

There are 0 best solutions below