xml.etree.ElementTree Module

From GM-RKB
Revision as of 01:50, 27 February 2024 by Gmelli (talk | contribs) (Text replacement - "<P> [[" to "<P>  [[")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

An xml.etree.ElementTree Module is a Python library within xml.etree.



References

2018

2017

  • (Heaton, 2017) ⇒ Jeff Heaton. (2017). “Reading Wikipedia XML Dumps with Python." Blog post
    • QUOTE: … The code below shows you the beginning of this file. As you can see the file is made up of page tags that contain revision tags. … To read this file it is important that the XML is streamed and not read directly into memory as a DOM parser might do. The xml.etree.ElementTree class can be used to do this. The following imports are needed for this example. For the complete source code see the following GitHub link. ...