Difference between revisions of "XML"

From PKC
Jump to navigation Jump to search
 
Line 5: Line 5:
==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.kite.com/python/answers/how-to-write-unicode-text-to-a-text-file-in-python How to write Unicode Text in Python]
*[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]
*[https://www.programcreek.com/python/example/77333/xml.etree.ElementTree.iterparse ElementTree.iterparse Examples]

Latest revision as of 23:38, 26 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