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.
|
2
|
|
|
|
|
|
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. |
||
|
|
|
|
Have you looked at 4suite? |
||||
|
|
|
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:
What do you think? |
||
|
|
|
Have a look at minidom |
||
|
|
|
Or, ask a StackOverflow question about how to install those libraries. |
||
|