ANN: Pyana 0.9.0 Released
Brian Quinlan
brian@sweetapp.com
Sun, 20 Jun 2004 19:10:45 +0200
ANN: Pyana 0.9.0 Released
You can find it here:
http://sourceforge.net/project/showfiles.php?group_id=28142
Changes:
- Updated for Xalan 1.8/Xerces 2.5
- Added basic support for tracing (see examples)
- Removed transform to DOM support (will devise a better system in a future
release)
What is Pyana?
Pyana is a Python interface to the Xalan-C XSLT processor. It provides a
simple and safe API for doing XSLT transformations from Python but with the
performance of a C processor. For example:
import Pyana
print Pyana.transform2String(
source=Pyana.URI('http://pyana.sourceforge.net/examples/helloworld.xml'),
style=Pyana.URI('http://pyana.sourceforge.net/examples/helloworld.xsl'))
Some more complex examples are provided here:
http://pyana.sourceforge.net/examples/
Cheers,
Brian