XML Parsing: Element Tree (etree) vs. minidom [duplicate]
DOM and Sax interfaces for XML parsing are the classic ways to work with XML. Python had to provide those interfaces because they are well-known and standard. The ElementTree package was intended to provide a more Pythonic interface. It is all about making things easier for the programmer. Depending on your build, each of those … Read more