For speed and simplicity, I vote `lxml.objectify`.
Python parse XML into Python objects? Yes please.
Just do `obj = objectify.parse("file.xml")` and access tags like attributes (`obj.root.tag`).
Super clean for config files or simple XML. Not great for complex schemas though.
Python parse XML into Python objects? Yes please.
Just do `obj = objectify.parse("file.xml")` and access tags like attributes (`obj.root.tag`).
Super clean for config files or simple XML. Not great for complex schemas though.
