XML (de-) serializer for simple python structures.
Project description
Overview
xmlpolymerase is a simple powerful serializer and deserializer for python-structures into XML. Possible structures are string, int, float, bool, list and dict.
The primary function of a polymerase is the polymerization of new DNA or RNA against an existing DNA or RNA template in the processes of replication and transcription. (Cite: Wikipeadia http://en.wikipedia.org/wiki/Polymerase)
Usage
This is a pure python module. The API is pretty simple, for more read the docstrings, an exampkle follows:
>>> from odict import OrderedDict >>> teststructure = OrderedDict() >>> teststructure['one'] = 'Eins' >>> teststructure['two'] = 'Zwei' >>> teststructure['three'] = 'Drei' >>> teststructure['four'] = [True, 2, '3-2', 42.23] >>> domnode = serialize(structure, nodename='object') <object> <one> Eins </one> <two> Zwei </two> <three> Drei </three> <four type="list"> <entry type="bool"> True </entry> <entry type="int"> 2 </entry> <entry> 3-2 </entry> <entry type="float"> 42.23 </entry> </four> </object> <BLANKLINE>
>>> structure = deserialze(domnode) OrderedDict([('one', 'Eins'), ('two', 'Zwei'), ('three', 'Drei'), ('four', [True, 2, '3-2', 23.42])])
Thanks
to Nicola Larosa and Michael Foord for the OrderedDict implementation, which is used and copied (unmodified) into this package in odict.py here. The code was published under a BSD-License. For details please read the contents of the file.
License
All code except odict.py is under the GNU General Public License GPL 2.0 or later.
Feedback, Bugreports, …
If you like to give the author feedback about this product just write a mail to <dev@bluedynamics.com>.
If you have access to the plone.org collective you might want to commit bug-fixes direct to trunk or do enhancements on a branch. Anyway, the author would be happy to get a short mail about those changes.
– Jens Klein <jens@bluedynamics.com>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file xmlpolymerase-1.0-beta1.tar.gz
.
File metadata
- Download URL: xmlpolymerase-1.0-beta1.tar.gz
- Upload date:
- Size: 13.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 681d6f27b52fdc6cd346c9ed49ff4fb5a6ec0a02f71ecad0260316affc406bea |
|
MD5 | e9c160d2c0dd30686a7e2b9704754b6a |
|
BLAKE2b-256 | db5d62068ca2fa4d5d1a8071d49698bf7835839f2fad3a9e188b3fcd60db679d |