How to translate XML to HTML using XSL stylesheets in Python?

I have an XSL stylesheet template that converts my XML file to HTML. How can I do this processing using Python?

... and here is a link to a really simple solution :)

+3
source share
1 answer

Use lxml , which supports XSLT 1.0 .

+3
source

All Articles