xmlreader

xmlreader Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 351
  • Released: Mar 2, 2007

xmlreader Description

This script reads an xml file into a python dictionary of dictionaries (repeated elements are read in as lists). It works with repeating elements without having to specify the multiple attribute.


xmlreader Bookmark

Hyperlink code:
Hyperlink for Forum code:

xmlreader Script Download Notice

Top 4 Download periodically updates information of xmlreader script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. xmlreader torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

XML as Dictionary

This script uses two simple classes to provide the mechanism for XML conversion. ...
Python

Simple XML serlializer de serializer

... module. The XML is converted to an equivalent Python dictionary first, which is marshaled to serialize it. De-serialization first unmarshals the dictionary from the file, and constructs the original XML. ...
Python

Breaking large XML documents into chunks

... that handle this problem. It uses the Sax reader from PyXML.The In parameters are the XML as a string, the tag name that you want to build the DOM around, and an optional postition to start at within the XML. It returns a DOM tree and the character position that ...
Python

xml parser and generator

Sometimes one needs a quick and dirty solution for parsing and generating xml. This script uses only the python parser itself for the parsing of xml. xml code is translated to valid python code and then evaluated. The generated objects can then be manipluated within python itself and treated as regular python ...
Python

XML Lexing

Sometimes you want to work more with the form of an XML document than with the structural information it contains. For instance if you wanted to change a bunch of entity references or element names. Also, sometimes you have slightly incorrect XML that a traditional parser will choke on. In that ...
Python