September 07, 2004

XSLT in Python

I've always been a bit annoyed by the lack of a standard XSLT processor in Python. Here's one approach:

Do an XSL transformation in Jython:

Since Python standard library doesn't have (to my knowledge, at least) an XSL transformer, and if you happen to have Jython installed, here's how you can do an XSL transformation with Java SDK's libraries

(via Daily Python-URL)