Introduction
Marshals simple Python data types into a custom XML format. The Marshaller and Unmarshaller classes can be subclassed in order to implement marshalling into a different XML DTD. Original Authors are XML-SIG (xml-sig@python.org).
Fully compatible with PyXML implementation, enable namespace support for XML Input/Output.
Implemented with lxml
Installation
python setup.py install
Testing
python setup.py test
Usage
For simple serialisation and unserialisation:
>>> from xml_marshaller import xml_marshaller
>>> xml_marshaller.dumps(['item1', {'key1': 1, 'key2': u'unicode string'}])
'<marshal><list id="i2"><string>item1</string><dictionary id="i3"><string>key1</string><int>1</int><string>key2</string><unicode>unicode string</unicode></dictionary></list></marshal>'
>>> xml_marshaller.loads(xml_marshaller.dumps(['item1', {'key1': 1, 'key2': u'unicode string'}]))
['item1', {'key2': u'unicode string', 'key1': 1}]
Can works with file like objects:
>>> from xml_marshaller import xml_marshaller
>>> from StringIO import StringIO
>>> file_like_object = StringIO()
>>> xml_marshaller.dump('Hello World !', file_like_object)
>>> file_like_object.seek(0)
>>> file_like_object.read()
'<marshal><string>Hello World !</string></marshal>'
>>> file_like_object.seek(0)
>>> xml_marshaller.load(file_like_object)
'Hello World !'
xml_marshaller can also output xml with qualified names:
>>> from xml_marshaller import xml_marshaller
>>> xml_marshaller.dumps_ns('Hello World !')
'<marshal:marshal xmlns:marshal="http://www.erp5.org/namespaces/marshaller"><marshal:string>Hello World !</marshal:string></marshal:marshal>'
You can also use your own URI:
>>> from xml_marshaller.xml_marshaller import Marshaller
>>> marshaller = Marshaller(namespace_uri='http://my-custom-namespace-uri/namespace')
>>> marshaller.dumps('Hello World !')
'<marshal:marshal xmlns:marshal="http://my-custom-namespace-uri/namespace"><marshal:string>Hello World !</marshal:string></marshal:marshal>'
History
0.9.8dev (unreleased)
0.9.7 (2010-10-30)
- Enhance egg folder structure
[nicolas Delaby]
- Improve tests
[nicolas Delaby]
- add XSD Schema
[nicolas Delaby]
0.9.6 (2010-10-12)
- [fix] Support boolean transformation
[Nicolas Delaby]
0.9.5 (2010-09-01)
- [fix] Formatting of documentation
[Lukasz Nowak]
0.9.4 (2010-09-01)
- [fix] Instances are now correctly unmarshalled.
[Cedric de Saint Martin]
Release files for xml-marshaller 0.9.7
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| xml_marshaller-0.9.7.tar.gz | 11.3 kB | Details |
Release files / xml_marshaller-0.9.7.tar.gz
| Download URL | xml_marshaller-0.9.7.tar.gz |
|---|---|
| Size | 11.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c34fadb91e445d781d9483ffb07a60218ebe2d75568faee30a472489f310b90c
|
|
BLAKE2b-256 checksum How to use checksums |
fd682334848608f731ffbb49e836a0e37e8af961dde9865142b9afa332de714e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |