I am looking to convert a Python object into XML data. I\'ve tried lxml, but eventually had to write custom code for saving my object as xml which isn\'t perfect.
I\
Mike,
you can either implement object rendering into XML :
class Person: ... def toXml( self): print '' print '\t... ... print ''
or you can transform Gnosis or pyxser output using XSLT.