Difference between revisions of "XML"
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
*[https://www.heatonresearch.com/2017/03/03/python-basic-wikipedia-parsing.html Reading Wikipedia XML Dumps with Python by Jeff Heaton] | *[https://www.heatonresearch.com/2017/03/03/python-basic-wikipedia-parsing.html Reading Wikipedia XML Dumps with Python by Jeff Heaton] | ||
*[https://www.datacamp.com/community/tutorials/python-xml-elementtree Python XML ElementTree] | *[https://www.datacamp.com/community/tutorials/python-xml-elementtree Python XML ElementTree] | ||
*[https://www.programcreek.com/python/example/77333/xml.etree.ElementTree.iterparse ElementTree.iterparse Examples] | |||
==Video Tutorials== | ==Video Tutorials== |
Revision as of 09:23, 25 January 2022
XML is a text-based serial representation of data. It is being replaced by YAML and JSON for better data representational efficiency.
Tutorials
There are a few good XML processing tutorials online.
For Python
- Reading Wikipedia XML Dumps with Python by Jeff Heaton
- Python XML ElementTree
- ElementTree.iterparse Examples