Which Python library is required to parse this data structure?
XML uses tagged, nested elements and attributes. Python’s xml.etree.ElementTree module is designed to parse XML documents.
xml.etree.ElementTree
Community Discussion