exemelopy aims to be an easy-to-use tool for building an XML document from native Python data-types without any intervention; akin to the json and simplejson modules, but for XML.
This package depends on lxml to create valid XML output.
from exemelopy import XMLEncoder xml = XMLEncoder({'a': 1, 'b': True, 'spam': 'eggs'}).to_string() print xml
Which will return the following output:
<?xml version='1.0' encoding='UTF-8'?> <document> <a>1</a> <b nodetype="boolean">true</b> <spam>eggs</spam> </document>