Honestly, just use `ElementTree` unless you have a specific reason not to. It’s the easiest way to read xml python for most cases.
For attributes, `element.attrib` gives you a dict of them. Looping is as simple as `for elem in root.iter('tagname')`.
For attributes, `element.attrib` gives you a dict of them. Looping is as simple as `for elem in root.iter('tagname')`.
