Python XML Parsing
# ElementTree vs SAX and DOM
SAX (simple API for XML) It functions as a stream parser, with an event-driven API.
DOM (Document Object Model) It reads the XML into memory and converts it to objects that can be accessed with Python.
ElementTree
ElementTree is much easier to use, because it represents...
more...