In my Python app, I have an XML document that I'd like to transform using my XSL file. I'm currently using xml.etree to generate the XML document, but I haven't found anything within Python 2.5 that will allow me to natively transform my XML document.
I've already found one library (libxslt) which can execute the transformation, but I figured Python would have a native library that achieves the desired result.
Any thoughts?