XML Parsing: Using MINIDOM Vs Element Tree (etree) in Python
Brief About XML- XML is Extensible Markup Language which stores information in Hierarchical structure. It is similar to HTML but allows to make your own tags in a totally customized way.
The best part of XML is Self-Descriptive so easy to store data into XML & Awesome in exchanging between different sources.
Now Let’s come to parsing-
Parsing XML means by using a program we generate an internal representation of serialized XML tags. It forms a tree structure internally in memory which is easy to maintain.