Difference between revisions of "XML"

From PKC
Jump to navigation Jump to search
Line 1: Line 1:
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.  
There are a few good XML processing tutorials online.  
=For Python=
==For Python==
*[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]


It is recently being replaced by [[YAML]] and [[JSON]] for better data representational efficiency.
==Video Tutorials==
 
*[https://www.youtube.com/watch?v=AeRN4zI7Dhk Processing Large XML Wikipedia Dumps that won't fit in RAM in Python without Spark by Heaton]
 
*[https://www.youtube.com/watch?v=-UAH39D3JKU Python Parsing large xml files]
[[Category:Tree]]
[[Category:Tree]]

Revision as of 02: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

Video Tutorials