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,307
  • 6
  • 23
  • 36
  • 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
  • 48,958
  • 13
  • 128
  • 248