Skip to content

iwanb/saxonius

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python 3 bindings for Saxon using pyJNIus

It loosely mirrors the Saxon API objects but with Python style, starting with the Processor class.

Example:

from saxonius import Processor

p = Processor()
doc = p.document_build('''
<document>
  <node>Hello</node>
  <node>world</node>
</document>
''')
r = p.xquery_compile('/document/node/text()').evaluate(context_item=doc)
print(str(r[0]))

About

Python 3 bindings for Saxon using pyJNIus

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages