Skip to main content

Official Saxonica python package for the SaxonC-HE 12.10.0 processor: for XSLT 3.0, XQuery 3.1, XPath 3.1 and XML Schema processing.

Project description

Welcome to SaxonC-HE

This is the official Saxonica Python wheel package for Saxon, an XML document processor. SaxonC provides APIs to run XSLT 3.0 transformations, XQuery 3.1 queries, XPath 3.1, and XML Schema validation.

The SaxonC release comes in separate wheels for the three product editions:

  • saxonche (SaxonC-HE: open-source Home Edition)
  • saxoncpe (SaxonC-PE: Professional Edition)
  • saxoncee (SaxonC-EE: Enterprise Edition)

SaxonC-PE and SaxonC-EE are commercial products that require a valid license key. Licenses can be purchased from the Saxonica online store. Alternatively a 30-day evaluation license is available free of charge. By downloading the software, you are agreeing to our terms and conditions.

For full documentation for the latest SaxonC release, see the SaxonC 12 documentation.

Why choose SaxonC?

The main reason for using SaxonC in preference to other XML tools available for Python is that it supports all the latest W3C standards: XSLT 3.0, XPath 3.1, XQuery 3.1, and XSD 1.1. It even includes experimental support for the draft 4.0 specifications currently under development.

About SaxonC

SaxonC is a version of Saxon developed by compiling the Java source code to native executables that run on the C/C++ platform, with extensions for PHP and Python. All features of Saxon have been ported, other than those (such as collations) that are necessarily platform dependent. In particular, SaxonC provides processing in XSLT, XQuery and XPath, and Schema validation. It therefore makes these processing capabilities available to a plethora of other languages that are strongly coupled to C/C++ such as PHP, Perl, Python, and Ruby.

About Saxonica

Saxon is developed by Saxonica, a company created in 2004 by Michael Kay, who was the editor of the XSLT 2.0 and 3.0 specifications in W3C. The original Saxon product on the Java platform has been continually developed for over 20 years, and has acquired a reputation for standards conformance, performance, and reliability.

Installation

pip install saxonche

Getting started

Either import the whole API:

from saxonche import *

Or specific modules:

from saxonche import PySaxonProcessor

The SaxonC API includes classes for constructing XDM data models and for a variety of processors. For full details see the SaxonC Python API documentation.

The following short example shows how to get the Saxon version from the PySaxonProcessor:

from saxonche import PySaxonProcessor

proc = PySaxonProcessor(license=False)
print(proc.version)

It will print something like this:

SaxonC-HE 12.10.0 from Saxonica

Note: license=False requests the open-source version of Saxon, whereas license=True requests the commercial product - which requires a license file. SaxonC looks for the license key in the directory identified by the environment variable SAXONC_HOME. To explicitly set the location of the license key, create a licensed PySaxonProcessor and set the licenseFileLocation property on it before doing anything else:

from saxoncee import PySaxonProcessor

proc = PySaxonProcessor(license=True)
proc.set_configuration_property("http://saxon.sf.net/feature/licenseFileLocation",
                                    "/path/to/saxon-license.lic")
...

Example: Running a transformation

The following basic example shows how an XSLT stylesheet can be run against a source XML document in Python using SaxonC:

from saxonche import *

proc = PySaxonProcessor(license=False)
 
xsltproc = proc.new_xslt30_processor()
document = proc.parse_xml(xml_text="<doc><item>text1</item><item>text2</item><item>text3</item></doc>")
executable = xsltproc.compile_stylesheet(stylesheet_file="test.xsl")
output = executable.transform_to_string(xdm_node=document)
print(output)

For more Python examples, and further details about installing and configuring the product, see the SaxonC 12 documentation.

Using pylint on a project which uses saxonche

Because the saxonche is a C extension, you will need to either configure Pylint to load the module to avoid pylint errors like:

E0611: No name 'PySaxonProcessor' in module 'saxonche' (no-name-in-module)
$ pylint --extension-pkg-allow-list=saxonche  my_module.py

Support

All users are welcome to use the public support site for reporting issues and seeking help (registration required). In addition, many questions are asked and answered on StackOverflow: please use the saxon tag.

Acknowledgement

We learned a lot about how to create Python wheels for Saxon from the Saxonpy wheel package, which is a third-party project on github.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

saxonche-12.10.0-cp314-cp314t-win_amd64.whl (38.5 MB view details)

Uploaded CPython 3.14tWindows x86-64

saxonche-12.10.0-cp314-cp314t-manylinux_2_24_x86_64.whl (41.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64

saxonche-12.10.0-cp314-cp314t-manylinux_2_24_aarch64.whl (40.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64

saxonche-12.10.0-cp314-cp314t-macosx_11_0_x86_64.whl (38.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

saxonche-12.10.0-cp314-cp314t-macosx_11_0_arm64.whl (37.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

saxonche-12.10.0-cp314-cp314-win_amd64.whl (38.5 MB view details)

Uploaded CPython 3.14Windows x86-64

saxonche-12.10.0-cp314-cp314-manylinux_2_24_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

saxonche-12.10.0-cp314-cp314-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

saxonche-12.10.0-cp314-cp314-macosx_11_0_x86_64.whl (38.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

saxonche-12.10.0-cp314-cp314-macosx_11_0_arm64.whl (37.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

saxonche-12.10.0-cp313-cp313-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.13Windows x86-64

saxonche-12.10.0-cp313-cp313-manylinux_2_24_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

saxonche-12.10.0-cp313-cp313-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

saxonche-12.10.0-cp313-cp313-macosx_11_0_arm64.whl (37.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

saxonche-12.10.0-cp313-cp313-macosx_10_11_x86_64.whl (38.4 MB view details)

Uploaded CPython 3.13macOS 10.11+ x86-64

saxonche-12.10.0-cp312-cp312-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.12Windows x86-64

saxonche-12.10.0-cp312-cp312-manylinux_2_24_x86_64.whl (40.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

saxonche-12.10.0-cp312-cp312-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

saxonche-12.10.0-cp312-cp312-macosx_11_0_arm64.whl (37.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

saxonche-12.10.0-cp312-cp312-macosx_10_11_x86_64.whl (38.4 MB view details)

Uploaded CPython 3.12macOS 10.11+ x86-64

saxonche-12.10.0-cp311-cp311-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.11Windows x86-64

saxonche-12.10.0-cp311-cp311-manylinux_2_24_x86_64.whl (40.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

saxonche-12.10.0-cp311-cp311-manylinux_2_24_aarch64.whl (40.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

saxonche-12.10.0-cp311-cp311-macosx_11_0_arm64.whl (37.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

saxonche-12.10.0-cp311-cp311-macosx_10_11_x86_64.whl (38.4 MB view details)

Uploaded CPython 3.11macOS 10.11+ x86-64

saxonche-12.10.0-cp310-cp310-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.10Windows x86-64

saxonche-12.10.0-cp310-cp310-manylinux_2_24_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

saxonche-12.10.0-cp310-cp310-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

saxonche-12.10.0-cp310-cp310-macosx_11_0_arm64.whl (37.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

saxonche-12.10.0-cp310-cp310-macosx_10_11_x86_64.whl (38.3 MB view details)

Uploaded CPython 3.10macOS 10.11+ x86-64

saxonche-12.10.0-cp39-cp39-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.9Windows x86-64

saxonche-12.10.0-cp39-cp39-manylinux_2_24_x86_64.whl (40.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

saxonche-12.10.0-cp39-cp39-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

saxonche-12.10.0-cp39-cp39-macosx_11_0_arm64.whl (37.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

saxonche-12.10.0-cp39-cp39-macosx_10_11_x86_64.whl (38.3 MB view details)

Uploaded CPython 3.9macOS 10.11+ x86-64

File details

Details for the file saxonche-12.10.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ec32b7199f5658341bc06ddd0c27bdaf7d0b3103b2cce0002b515a016c556e49
MD5 ddbdae777bf7a2a8a8f58a3f3480d3b2
BLAKE2b-256 925895647db7e142d43e7ed7906267eee61ad243a8abe80877a3c895beaf0f29

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp314-cp314t-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp314-cp314t-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 62384c6380c15673160af61d67c548f481d53072db70129dbbbcce31d9568de9
MD5 4a9141de7002d11502944e741ce1bb30
BLAKE2b-256 9bb56c7b61e0b1e0bd6b3dc945d8b32a03b0215dc93475972e974b0a4295cbf8

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp314-cp314t-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp314-cp314t-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 e8e8466f5e5b447d655d331f8cdc8cebfa05eb2a77ad611178e98845434af829
MD5 afe8dd2acf3f70c58d728446fb91fc03
BLAKE2b-256 7cd1f79d54f0e77e8c503c43a44ba61f5027f362ea9c5f1ba74cc1f80963adc6

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cb641c30a9bf55f30c2f1fd2d86eae182646f9621c76aedcec4c3d157f136415
MD5 9acd7c7452fad3595cbb1b5585c522bc
BLAKE2b-256 2ba0d99a1ed91942af207441a5d7cec8fd6e2a80da7537731a3d441daaf7dd53

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 799d5fe809e7805693e7cabbf5075cb7eaf935e2f662eb0829595d9cabf4dc9c
MD5 5f71bf6fe2c082ee8d88566d4aecf604
BLAKE2b-256 5f2893ac01b39b8dd834cd0b1c4c53d388a7206c2114e73a2cddf57aa9e9760d

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: saxonche-12.10.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 38.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for saxonche-12.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a6e3030cacccd3209e9728c5db2808cb75b170c736fb98d8aa6ac3372da2022d
MD5 80564285e7c86659f85f548db807ef6c
BLAKE2b-256 443e6dbeb7c7e801a85021a6f404b9ebed4cc7a8aaec2d280883958c64b4dd7a

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp314-cp314-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 104fb9f2275ea15474beb9b318ab51088292f3d6e4aabaa1ddae005ce6ef8554
MD5 f3f670c597bde8d0bea0c50039b61d26
BLAKE2b-256 2e1ca055f534990bef42e65086f6311277ac4a36ab0626a11858fbd1160b00f3

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp314-cp314-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 ddff72ef7dc1de753e1367a8714c3ead13436ac8be735f725c97db3529da5607
MD5 d852fc0603698509383c16106c5f0e12
BLAKE2b-256 a7842e312c0917821895c4b3c2e80da2d0cd45a49ecc67f89ead18ca5fd55056

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 af713687c094ddefd3942b7d09e8b67da7bf218671de7c0e646e52696d8a57f0
MD5 bd047a3e9c7bf7f2f4938b823885ca77
BLAKE2b-256 96ec38524b9129d3b35808cafd80f2152ab85f6131071ba78cbda683c6ae1d9a

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a84d8e3ca3f7a4e4be0e66f46d3c01d6105687c2813dc461fd529160ac0c5141
MD5 8489128d41aadfc33052f65a608da313
BLAKE2b-256 5b44e4c0f7c1b12c3beb91ba7c630a16f6230f403ecb9a650b365432672851b9

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: saxonche-12.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 37.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for saxonche-12.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 18649f2549afc403492053306e25283a7d1338fadc0d9876a282a6cf94a59a76
MD5 7106e449dcc08675f7ac8cdeab0fcb0e
BLAKE2b-256 2d38ee83800b55e0168f67cf2924b6cb5130521dc5134cf4cd2ac0a5dcaa1bbf

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp313-cp313-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 6d47075c1617955282bac5dccfebf9bb07fc03516ced2f113dbad96a773d77b2
MD5 715856d871bd14b3a0d9d4756fa3a0ee
BLAKE2b-256 9e0cade74cf24ef19efc9666cd351eadb0c14d8194eee8c45ba51143a2bdb8a9

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp313-cp313-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 82568caa4d509a1edc10f54f23919f52dcb06ecc2af055b1a61a9c339755f632
MD5 7c629ed419d5409db5ffa5d53b81201e
BLAKE2b-256 abde8144cc78c2ae0fa63cd4b0b7daa8f6002e64df4d5a7ffc218b6ac721339c

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9268605d83ddced5362ad89d3c95c29f258280c4d1a1f6a0a375bfa812615971
MD5 dbdda5fd4867cd70aa8a0a65b2f14217
BLAKE2b-256 18212334339ca0af5899e091181792b39ca2c9610edaec954350015673891cd1

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp313-cp313-macosx_10_11_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp313-cp313-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 fd6c414193ef92e7210b31c9c460f8544f8d85c638618febca2c05c40aff02b3
MD5 12e3c880921a910d45994e0e7276306e
BLAKE2b-256 655764db93581d93830aff55d75c78869adefe6acfd6a92ddeda5a2de445d87d

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: saxonche-12.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 37.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for saxonche-12.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 af03859f2c907c05f2c8dd46a706c4abd53f93ff932e95ccd40949f46cf02958
MD5 c1ceaf3351d53bf901005992a5b891f1
BLAKE2b-256 2cf28bc6750316967339c08f4a38af386bb4ae7b28f39080243b966b5ff9c79b

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp312-cp312-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 fbd25a5408bf56778369bfe18a3650a61d85f5375f6fba6a72f7442d3c1cba6c
MD5 887a670ff937dc15134373210b886632
BLAKE2b-256 b1389b6041436c054132d491b0d3f637799dfa8451dc69a831cb5498f0b6c552

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp312-cp312-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 c833a6ebe8b31898c284026b3d6c4af778b6c4fc44d85a7f31200da83df18216
MD5 1620453e7fedc2c5eebef78ecebdb363
BLAKE2b-256 c330a7c09fe48e0907e98f870f82a009bf6d6169d8bd1c1be7d1dfaa8aaf6a78

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 165608647c7d9a00c4cfcb66c61f9a07c98edc6fbcc45f6908eb7b27ed917538
MD5 8dd08764a073438007d6ff861f5a2988
BLAKE2b-256 f3b6b601544be021b0d3963ecadacd904309c42b1900f5055204cf1a5636f58c

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp312-cp312-macosx_10_11_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp312-cp312-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 8dc5099149386dd61d507005ec949d4b712c6f83bda40fd71454d6d14f7733a9
MD5 68977484a1da16c349f115e889ef6785
BLAKE2b-256 40c5c58b60403499e9dd511b9655e2bd9c54dc20d9ea21c07da19defe4deedc9

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: saxonche-12.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 37.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for saxonche-12.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 76ed037703a5bfdd81c5e94fba9b414349c351db6c108aa0761a41be545d111a
MD5 eb2eb161ba00631044942ab8d49954de
BLAKE2b-256 971f01b6db8707bcb4eed727187852ffdb06a06d80d6af8ce23ae339e783e9da

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp311-cp311-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 0ced37b4f3a9ecf6ba167b2902839a40113dcbce6b0806b7aadbaa31c9a05596
MD5 8ee124ff774b7f2d137758cc28ddec30
BLAKE2b-256 614412e4f3c6aa1d17c7d35d8411dda52c6ff5c1c684d138159b31e27e2ade68

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp311-cp311-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 bc7abe23e4fbcccb48016a5e1a5adb728b50bd5a8979123276428640ef78c711
MD5 fd106ba4351eec59448910b790565550
BLAKE2b-256 d327de2a2fc3e1ea6ec396ae0d61ead68184e949406f6886a140814e2d908941

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee5bf407b10b15b946cd536ecb396751efaf6e8158934d1cb683dcde31b3950f
MD5 6fbbd2fe8ed2a97008e18708045583d6
BLAKE2b-256 71aa6769779ec9b3b0c976a7576ab2ba67536eaec24babc0f40f5e50050609c4

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp311-cp311-macosx_10_11_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp311-cp311-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 2c81566f8150c8fdba91b606c3ee6d681b8c25c2894af31187524f3836ad5bec
MD5 057d17bc27cb27a3a5823e0125c1bc47
BLAKE2b-256 5e283c4e0187a52f39c7f7f6d62d336e34bc4706841e5d0e419412f2de99a684

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: saxonche-12.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 37.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for saxonche-12.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b467226c7b4a96863c845c9cec8b9b348b3924e3f852c0f28f76dc6aa71eb12c
MD5 1514729ea0fa2e8228f8e8fb7be3a58f
BLAKE2b-256 ee97e0a44ebdc77994e9842b553dbcbd3f9f0148c858bada0494423e38d05a0b

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp310-cp310-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 79c7c4bd6c7cf4fd886a27771f8ea8f794a565c776b108921d18ef5c4acccbcb
MD5 1727ce9939c203750e8c066fc22b029d
BLAKE2b-256 77a73fa9c4ceb1e48c5bde8b6c4f7ef382028c6606d8e5f8177d103ed7f13de7

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp310-cp310-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 d452838c8a9cd6e793635cb21605b3cebbde2b0b82b412329f98bbda891462fe
MD5 266a6f74e9cc4cc96d344dc4605b580b
BLAKE2b-256 306aaafb43af0d30716e8906706b42b5085a4bba9cfa939a209f4043a18720eb

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3917d5e78e96a5567a9228643609720ce8c080752f158a1697bc346b03de3fd1
MD5 8b02ff2ffc32edaa9a92906ca1744a1a
BLAKE2b-256 f942d049d0df62b95d21edc4cf31a08965ab488dc131f4a6a09e71878c871529

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp310-cp310-macosx_10_11_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp310-cp310-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 c2bfdf2593476587dbf56d2014fa1703772a759a531f72cc2f822f438d531a48
MD5 8153f6865608ff55442ad200f78767b6
BLAKE2b-256 cfcc32b690e558d3c068f37f11c7d8f813e76f16a78f6e4d94e0f7e77f6e0a1f

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: saxonche-12.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 37.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for saxonche-12.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8a342c9d40ecdeaac78affbe1ba546947e0b1573be179f54cadb788692115b5b
MD5 eafd46819383c23330c5ed60d28578b3
BLAKE2b-256 188134bdbeaa4b569b31764a4b9ee931685e42ebfa82a3bdc23ed61b87ca8fdc

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp39-cp39-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 366f545a60f67cdb81d78e99c6994b460b91c378925aa67509ea48eb427ea9ef
MD5 3e66ce57f06abffdb16540e71a3dd703
BLAKE2b-256 e1b4e5c0f9fb659247f3e0827e0a777cc4d45c681abd58c137d69a3d6a381302

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp39-cp39-manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 53f42e72f60404d4bc0c361b3d84db8a0908a289ae72224392c8c51f24e06815
MD5 97810e3156ff3f7fa4db08279d405521
BLAKE2b-256 01ed1b433dc28f880383f069dabd0685e15a7f927a3ec8da60096ed1330d66c9

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ede5fbb6152a54c001ff1f2e03be764d68ae8fa93cd90aa003f96ef015bdb1d
MD5 b5e999787c5aa6a6faddd7b1bd92d037
BLAKE2b-256 ed39f535aacb0cdf648539c80301bb9ab8b71f11d41827df3158e311b214a08e

See more details on using hashes here.

File details

Details for the file saxonche-12.10.0-cp39-cp39-macosx_10_11_x86_64.whl.

File metadata

File hashes

Hashes for saxonche-12.10.0-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 afdd95f6d22e6d07f4389ce25ea298845eec7604c2443b20372b163871c759e6
MD5 0d08b9805cf5a841f1e8c2c43533b332
BLAKE2b-256 3ce3e432f18a29a381db4d3442ab49dbb4936fca2b78ff43b081c2a42462e932

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page