vote up 5 vote down star
2

Is there an XSLT library that is pure Python?

Installing libxml2+libxslt or any similar C libraries is a problem on some of the platforms I need to support.

I really only need basic XSLT support, and speed is not a major issue.

flag

67% accept rate

5 Answers

vote up 3 vote down check

Unfortunately there are no pure-python XSLT processors at the moment. If you need something that is more platform independent, you may want to use a Java-based XSLT processor like Saxon. 4Suite is working on a pure-python XPath parser, but it doesn't look like a pure XSLT processor will be out for some time. Perhaps it would be best to use some of Python's functional capabilities to try and approximate the existing stylesheet or look into the feasibility of using Java instead.

link|flag
vote up 0 vote down

Have you looked at 4suite?

link|flag
Parts of 4suite are in C, not sure if that matters. – Torsten Marek Sep 26 '08 at 10:10
Yes, that does matter. I am looking for a pure Python implementation. I don't want to/can't compile (let alone install!) any C on some platforms. – Andy Balaam Sep 26 '08 at 10:13
vote up 0 vote down

If you only need basic support, and your XML isn't too crazy, consider removing the XSLT element from the equation and just using a DOM/SAX parser.

Here's some info from the PythonInfo Wiki:

[DOM] sucks up an entire XML file, holds it in memory, and lets you work with it. Sax, on the other hand, emits events as it goes step by step through the file.

What do you think?

link|flag
Nice idea, but in this case I have existing XSLTs that I want to use on platforms where I can't compile any code or install libraries. – Andy Balaam Nov 13 '08 at 13:19
vote up -1 vote down

Have a look at minidom

link|flag
Unfortunately, minidom does not provide any XSLT capabilities. – Greg Hewgill Sep 26 '08 at 20:41
vote up -4 vote down

Or, ask a StackOverflow question about how to install those libraries.

link|flag
I don't have control of the boxes where I need to run this, so I can't install them. – Andy Balaam Nov 21 '08 at 14:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.