ANN: Pyana 0.9.1 Released

Brian Quinlan brian at sweetapp.com
Wed Jun 30 16:01:37 EDT 2004


ANN: Pyana 0.9.1 Released

You can find it here:
http://sourceforge.net/project/showfiles.php?group_id=28142

Changes:

- Fixes a bug in Pyana 0.9.0 where repeated warning messages could
   cause a crash

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
source_url = 'http://pyana.sourceforge.net/examples/helloworld.xml'
style_url =  'http://pyana.sourceforge.net/examples/helloworld.xsl'
print Pyana.transform2String(
           source=Pyana.URI(source),
           style=Pyana.URI(style))

Some more complex examples are provided here:
http://pyana.sourceforge.net/examples/

Cheers,
Brian




More information about the Python-list mailing list