79732020

Date: 2025-08-11 12:01:15
Score: 1
Natty:
Report link

you need to read the file and send it to the parser

with open("abc.xml", 'r') as f
    text_xml = f.read()
    o = xmltodict.parse(text_xml)
    json.dumps(o)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Axeltherabbit