What is the fastest way to parse large XML docs in Python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T20:01:59Zhttp://stackoverflow.com/feeds/question/324214http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/324214/what-is-the-fastest-way-to-parse-large-xml-docs-in-python3What is the fastest way to parse large XML docs in Python?James Dean2008-11-27T16:47:54Z2008-11-29T00:17:43Z
<p>I am currently the following code based on Chapter 12.5 of the Python Cookbook:</p>
<pre><code>from xml.parsers import expat
class Element(object):
def __init__(self, name, attributes):
self.name = name
self.attributes = attributes
self.cdata = ''
self.children = []
def addChild(self, element):
self.children.append(element)
def getAttribute(self,key):
return self.attributes.get(key)
def getData(self):
return self.cdata
def getElements(self, name=''):
if name:
return [c for c in self.children if c.name == name]
else:
return list(self.children)
class Xml2Obj(object):
def __init__(self):
self.root = None
self.nodeStack = []
def StartElement(self, name, attributes):
element = Element(name.encode(), attributes)
if self.nodeStack:
parent = self.nodeStack[-1]
parent.addChild(element)
else:
self.root = element
self.nodeStack.append(element)
def EndElement(self, name):
self.nodeStack.pop()
def CharacterData(self,data):
if data.strip():
data = data.encode()
element = self.nodeStack[-1]
element.cdata += data
def Parse(self, filename):
Parser = expat.ParserCreate()
Parser.StartElementHandler = self.StartElement
Parser.EndElementHandler = self.EndElement
Parser.CharacterDataHandler = self.CharacterData
ParserStatus = Parser.Parse(open(filename).read(),1)
return self.root
</code></pre>
<p>I am working with XML docs about 1 GB in size. Does anyone know a faster way to parse these?</p>
http://stackoverflow.com/questions/324214/what-is-the-fastest-way-to-parse-large-xml-docs-in-python/324236#324236-1Answer by Aaron Digulla for What is the fastest way to parse large XML docs in Python?Aaron Digulla2008-11-27T16:56:38Z2008-11-28T08:16:56Z<p>Registering callbacks slows down the parsing tremendously. [EDIT]This is because the (fast) C code has to invoke the python interpreter which is just not as fast as C. Basically, you're using the C code to read the file (fast) and then build the DOM in Python (slow).[/EDIT]</p>
<p>Try to use xml.etree.ElementTree which is implemented 100% in C and which can parse XML without any callbacks to python code.</p>
<p>After the document has been parsed, you can filter it to get what you want.</p>
<p>If that's still too slow and you don't need a DOM another option is to read the file into a string and use simple string operations to process it.</p>
http://stackoverflow.com/questions/324214/what-is-the-fastest-way-to-parse-large-xml-docs-in-python/324355#3243557Answer by Manuel Ceron for What is the fastest way to parse large XML docs in Python?Manuel Ceron2008-11-27T17:53:36Z2008-11-27T17:53:36Z<p>I recommend you to use <a href="http://codespeak.net/lxml/" rel="nofollow">lxml</a>, it's a python binding for the libxml2 library which is really fast. </p>
<p>In my experience, libxml2 and expat have very similar performance. But I prefer libxml2 (and lxml for python) because it seems to be more actively developed and tested. Also libxml2 has more features.</p>
<p>lxml is mostly API compatible with <a href="http://docs.python.org/lib/module-xml.etree.ElementTree.html" rel="nofollow">xml.etree.ElementTree</a>. And there is good documentation in its web site.</p>
http://stackoverflow.com/questions/324214/what-is-the-fastest-way-to-parse-large-xml-docs-in-python/324483#3244836Answer by bhadra for What is the fastest way to parse large XML docs in Python?bhadra2008-11-27T19:00:41Z2008-11-27T19:00:41Z<p>Have you tried The cElementTree Module?</p>
<p>cElementTree is included with Python 2.5 and later, as xml.etree.cElementTree. Refer the <a href="http://effbot.org/zone/celementtree.htm" rel="nofollow">benchmarks</a>.</p>
<p><img src="http://img293.imageshack.us/img293/3732/20081128002409vy0.th.png" alt="alt text" /></p>
http://stackoverflow.com/questions/324214/what-is-the-fastest-way-to-parse-large-xml-docs-in-python/324680#3246803Answer by Matt Campbell for What is the fastest way to parse large XML docs in Python?Matt Campbell2008-11-27T21:30:57Z2008-11-27T21:30:57Z<p>If your application is performance-sensitive and likely to encounter large files (like you said, > 1GB) then I'd <strong>strongly</strong> advise against using the code you're showing in your question for the simple reason that <em>it loads the entire document into RAM</em>. I would encourage you to rethink your design (if at all possible) to avoid holding the whole document tree in RAM at once. Not knowing what your application's requirements are, I can't properly suggest any specific approach, other than the generic piece of advice to try to use an "event-based" design.</p>
http://stackoverflow.com/questions/324214/what-is-the-fastest-way-to-parse-large-xml-docs-in-python/326541#3265413Answer by Steen for What is the fastest way to parse large XML docs in Python?Steen2008-11-28T20:03:02Z2008-11-28T20:03:02Z<p>I looks to me as if you do not need any DOM capabilities from your program. I would second the use of the (c)ElementTree library. If you use the iterparse function of the cElementTree module, you can work your way through the xml and deal with the events as they occur. </p>
<p>Note however, Fredriks advice on using cElementTree <a href="http://effbot.org/zone/element-iterparse.htm" rel="nofollow">iterparse function</a>:</p>
<blockquote>
<p>Blockquoteto parse large files, you can get rid of elements as soon as you’ve processed them:</p>
</blockquote>
<pre>
for event, elem in iterparse(source):
if elem.tag == "record":
... process record elements ...
elem.clear()
</pre>
<blockquote>
<p>The above pattern has one drawback; it does not clear the root element, so you will end up with a single element with lots of empty child elements. If your files are huge, rather than just large, this might be a problem. To work around this, you need to get your hands on the root element. The easiest way to do this is to enable start events, and save a reference to the first element in a variable:</p>
</blockquote>
<pre>
# get an iterable
context = iterparse(source, events=("start", "end"))
# turn it into an iterator
context = iter(context)
# get the root element
event, root = context.next()
for event, elem in context:
if event == "end" and elem.tag == "record":
... process record elements ...
root.clear()
</pre>
<p>The <a href="http://codespeak.net/lxml/FAQ.html#why-can-t-i-just-delete-parents-or-clear-the-root-node-in-iterparse" rel="nofollow">lxml.iterparse()</a> does not allow this.</p>
http://stackoverflow.com/questions/324214/what-is-the-fastest-way-to-parse-large-xml-docs-in-python/326949#3269490Answer by Matthew Schinckel for What is the fastest way to parse large XML docs in Python?Matthew Schinckel2008-11-29T00:17:43Z2008-11-29T00:17:43Z<p>Apparently <a href="http://www.reportlab.org/pyrxp.html" rel="nofollow">PyRXP</a> is really fast.</p>
<p>They claim it is the fastest parser - but cElementTree isn't in their stats list.</p>