All Courses

Python Data Persistence - XML Parsers

Neha Kumawat

2 years ago

Python Data Persistence - XML Parsers | Insideaiml
Table of Content
  • Standard Python library's xml package
  • Example of an XML document
  • Document Object Model
          XML stands for Extensible Markup Language. It is similar to HTML in its appearance but, XML is used for data presentation, while HTML is used to define what data is being used. XML is exclusively designed to send and receive data back and forth between clients and servers.
It is a well-known data interchange format, used by a large number of applications such as web services, office tools, and Service-Oriented Architectures (SOA). The XML format is both machine-readable and human-readable.
Standard Python library's xml package consists of following modules for XML processing −
Modules for XML Processing | Insideaiml
          Data in the XML document is arranged in a tree-like hierarchical format, starting with root and elements. Each element is a single node in the tree and has an attribute enclosed in <> and tags. One or more sub-elements may be assigned to each element.
Following is a typical example of an XML document −
  
      Ratna
      Physics
      85
   
   
      Kiran
      Maths
      100
   
   
      Mohit
      Biology
      92
   
While using the ElementTree module, the first step is to set up the root element of the tree. Each  Element has a tag and attrib which is a direct object. For the root element, attrib is an empty dictionary.
import xml.etree.ElementTree as xmlobj
root=xmlobj.Element('studentList')
Now, we can add one or more elements under the root element. Each element object may have SubElements. Each subelement has an attribute and text property.
student=xmlobj.Element('student')
   nm=xmlobj.SubElement(student, 'name')
   nm.text='name'
   subject=xmlobj.SubElement(student, 'subject')
   nm.text='Ratna'
   subject.text='Physics'
   marks=xmlobj.SubElement(student, 'marks')
   marks.text='85'
This new element is appended to the root using append() method.
root.append(student)
Append as many elements as desired using the above method. Finally, the root element object is written to a file.
tree = xmlobj.ElementTree(root)
   file = open('studentlist.xml','wb')
   tree.write(file)
   file.close()
Now, we see how to parse the XML file. For that, construct document tree giving its name as file parameter in ElementTree constructor.
tree = xmlobj.ElementTree(file='studentlist.xml')
The tree object has getroot() method to obtain root element and getchildren() returns a list of elements below it.
root = tree.getroot()
children = root.getchildren()
A dictionary object corresponding to each sub-element is constructed by iterating over the sub-element collection of each child node.
for child in children:
   student={}
   pairs = child.getchildren()
   for pair in pairs:
      product[pair.tag]=pair.text
Each dictionary is then appended to a list returning original list of dictionary objects.
SAX is a standard interface for event-driven XML parsing. Parsing XML with SAX requires ContentHandler by subclassing XML.sax.ContentHandler. You register callbacks for events of interest and then, let the parser proceed through the document.
SAX is useful when your documents are large or you have memory limitations as it parses the file as it reads it from disk as a result entire file is never stored in the memory.

Document Object Model

            (DOM) API is a World Wide Web Consortium recommendation. In this case, the entire file is read into the memory and stored in a hierarchical (tree-based) form to represent all the features of an XML document.
SAX, not as fast as DOM, with large files. On the other hand, DOM can kill resources, if used on many small files. SAX is read-only, while DOM allows changes to the XML file.
More in data science using python.
Like the Blog, then Share it with your friends and colleagues to make this AI community stronger. 
To learn more about nuances of Artificial Intelligence, Python Programming, Deep Learning, Data Science and Machine Learning, visit our insideAIML blog page.
Keep Learning. Keep Growing.

Submit Review