Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2008-11-15 13:59:53
Size: 2068
Editor: localhost
Comment: converted to 1.6 markup
Revision 4 as of 2012-03-07 11:38:45
Size: 1879
Editor: 78
Comment: Cool URIs don’t change
Deletions are marked like this. Additions are marked like this.
Line 22: Line 22:
 * [[http://www.ibm.com/developerworks/library/x-tipulldom.html|Tip: Using pull-based DOMs]] - a description of the concept plus an example using the module
 * [[http://www.idealliance.org/papers/dx_xml03/papers/06-02-03/06-02-03.html#pulldom|Python Paradigms for XML: pulldom]] - an example amongst a wider treatment of Python XML processing (as of 2003)
 * [[https://www.ibm.com/developerworks/xml/library/x-tipulldom/index.html|Tip: Using pull-based DOMs]] - a description of the concept plus an example using the module

The pulldom Module

The xml.dom.pulldom module (API) provides a "pull parser" which can also be asked to produce DOM-accessible fragments of the document where necessary. The basic concept involves pulling "events" from a stream of incoming XML and processing them, although in contrast to SAX which also employs an event-driven processing model together with callbacks, the user of a pull parser is responsible for explicitly pulling events from the stream, looping over those events until either processing is finished or an error condition occurs.

The example below corresponds to the "Find Elements" example in the MiniDom introduction.

   1 from xml.dom.pulldom import START_ELEMENT, parse
   2 
   3 doc = parse("foo.xml")
   4 for event, node in doc:
   5     if event == START_ELEMENT and node.localName == "bar":
   6         doc.expandNode(node)
   7         print node.toxml()

Since the document is treated as a "flat" stream of events, the document "tree" is implicitly traversed and the desired elements are found regardless of their depth in the tree. In other words, one need not consider hierarchical issues such as recursive searching of the document nodes, although if the context of elements were important, one would either need to maintain some context-related state (ie. remembering where one is in the document at any given point) or to make use of the expandNode method and switch to DOM-related processing.

Resources

PullDom (last edited 2012-03-07 11:38:45 by 78)

Unable to edit the page? See the FrontPage for instructions.