Difference between revisions of "XML"
Jump to navigation
Jump to search
(2 intermediate revisions by the same user not shown) | |||
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] | |||
==Video Tutorials== | ==Video Tutorials== | ||
*[https://www.youtube.com/watch?v=j0xr0-IAqyk XML & ElementTree || Python Tutorial || Learn Python Programming] | |||
*[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=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] | *[https://www.youtube.com/watch?v=-UAH39D3JKU Python Parsing large xml files] | ||
[[Category:Tree]] | [[Category:Tree]] |
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
- Reading Wikipedia XML Dumps with Python by Jeff Heaton
- Python XML ElementTree
- ElementTree.iterparse Examples