blob: e7d78cb53f85b2f8a38259445f0f12c81bd0a053 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""Converting Python objects to XML and back again.
xml.marshal.generic
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.
xml.marshal.wddx
Marshals Python data types into the WDDX DTD.
"""
__all__ = ['generic', 'wddx']
|