3

I have an XSL stylesheet template that transforms my XML file into HTML. How can I perform such processing using Python?

...and here's the link to really simple solution:)

Community
  • 1
  • 1
daikini
  • 1,199
  • 5
  • 20
  • 34
  • 1
    Are you looking for a Python implementation of an XSLT processor, or any kind of bridge to an XSLT processor? –  Mar 14 '11 at 21:01
  • @Alejandro I'm looking for the most simple way, if there is, to processing my xml files using stylesheet and python. – daikini Mar 14 '11 at 21:09

1 Answers1

3

Use lxml, which supports XSLT 1.0.

mzjn
  • 45,711
  • 11
  • 120
  • 232