XML to JSON
September 26, 2022
import json
import xmltodict
# http://www.pillalamarri.in/python/xml-to-json-convertor/
with open('input.xml') as xml_file:
parsed_data = xmltodict.parse(xml_file.read())
xml_file.close()
json_conversion = json.dumps(parsed_data)
with open('output.json', 'w') as json_file:
json_file.write(json_conversion)
# http://www.pillalamarri.in/python/xml-to-json-convertor/
json_file.close()
Posted in Python