public marks

PUBLIC MARKS from benoit with tags python & xml

07 May 2006 15:00

untidy blog » Blog Archive » Writing XML with namespaces from minidom

(via)
Comment faire en sorte que minidom affiche les espaces de noms XML.

06 May 2006 08:00

ASPN : Python Cookbook : Simple XML serlializer/de-serializer using Python dictionaries and marshalling

by 1 other
This recipe presents a way of serializing & de-serializing XML using the marshal 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.