Skip to main content

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

Project description

Welcome to SaxonC-EE

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 saxoncee

Getting started

Either import the whole API:

from saxoncee import *

Or specific modules:

from saxoncee 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 saxoncee import PySaxonProcessor

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

It will print something like this:

SaxonC-EE 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 saxoncee 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 saxoncee

Because the saxoncee 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 'saxoncee' (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.

saxoncee-12.10.0-cp314-cp314t-win_amd64.whl (43.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

saxoncee-12.10.0-cp314-cp314t-manylinux_2_24_x86_64.whl (46.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64

saxoncee-12.10.0-cp314-cp314t-manylinux_2_24_aarch64.whl (45.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64

saxoncee-12.10.0-cp314-cp314t-macosx_11_0_x86_64.whl (43.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

saxoncee-12.10.0-cp314-cp314t-macosx_11_0_arm64.whl (42.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

saxoncee-12.10.0-cp314-cp314-win_amd64.whl (43.6 MB view details)

Uploaded CPython 3.14Windows x86-64

saxoncee-12.10.0-cp314-cp314-manylinux_2_24_x86_64.whl (46.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

saxoncee-12.10.0-cp314-cp314-manylinux_2_24_aarch64.whl (44.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

saxoncee-12.10.0-cp314-cp314-macosx_11_0_x86_64.whl (43.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

saxoncee-12.10.0-cp314-cp314-macosx_11_0_arm64.whl (42.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

saxoncee-12.10.0-cp313-cp313-win_amd64.whl (42.8 MB view details)

Uploaded CPython 3.13Windows x86-64

saxoncee-12.10.0-cp313-cp313-manylinux_2_24_x86_64.whl (46.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

saxoncee-12.10.0-cp313-cp313-manylinux_2_24_aarch64.whl (44.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

saxoncee-12.10.0-cp313-cp313-macosx_11_0_arm64.whl (42.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

saxoncee-12.10.0-cp313-cp313-macosx_10_11_x86_64.whl (43.7 MB view details)

Uploaded CPython 3.13macOS 10.11+ x86-64

saxoncee-12.10.0-cp312-cp312-win_amd64.whl (42.8 MB view details)

Uploaded CPython 3.12Windows x86-64

saxoncee-12.10.0-cp312-cp312-manylinux_2_24_x86_64.whl (46.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

saxoncee-12.10.0-cp312-cp312-manylinux_2_24_aarch64.whl (44.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

saxoncee-12.10.0-cp312-cp312-macosx_11_0_arm64.whl (42.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

saxoncee-12.10.0-cp312-cp312-macosx_10_11_x86_64.whl (43.7 MB view details)

Uploaded CPython 3.12macOS 10.11+ x86-64

saxoncee-12.10.0-cp311-cp311-win_amd64.whl (42.8 MB view details)

Uploaded CPython 3.11Windows x86-64

saxoncee-12.10.0-cp311-cp311-manylinux_2_24_x86_64.whl (46.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

saxoncee-12.10.0-cp311-cp311-manylinux_2_24_aarch64.whl (45.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

saxoncee-12.10.0-cp311-cp311-macosx_11_0_arm64.whl (42.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

saxoncee-12.10.0-cp311-cp311-macosx_10_11_x86_64.whl (43.7 MB view details)

Uploaded CPython 3.11macOS 10.11+ x86-64

saxoncee-12.10.0-cp310-cp310-win_amd64.whl (42.8 MB view details)

Uploaded CPython 3.10Windows x86-64

saxoncee-12.10.0-cp310-cp310-manylinux_2_24_x86_64.whl (46.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

saxoncee-12.10.0-cp310-cp310-manylinux_2_24_aarch64.whl (44.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

saxoncee-12.10.0-cp310-cp310-macosx_11_0_arm64.whl (42.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

saxoncee-12.10.0-cp310-cp310-macosx_10_11_x86_64.whl (43.7 MB view details)

Uploaded CPython 3.10macOS 10.11+ x86-64

saxoncee-12.10.0-cp39-cp39-win_amd64.whl (42.8 MB view details)

Uploaded CPython 3.9Windows x86-64

saxoncee-12.10.0-cp39-cp39-manylinux_2_24_x86_64.whl (46.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

saxoncee-12.10.0-cp39-cp39-manylinux_2_24_aarch64.whl (44.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

saxoncee-12.10.0-cp39-cp39-macosx_11_0_arm64.whl (42.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

saxoncee-12.10.0-cp39-cp39-macosx_10_11_x86_64.whl (43.7 MB view details)

Uploaded CPython 3.9macOS 10.11+ x86-64

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b57740abc88053ef2fa096a7a6d675bebfb7a320dc154b528d303c68d30d6df9
MD5 0d19db529c3f525321ae5deb255a4091
BLAKE2b-256 23fa794390bb101ce5272b9f5d23168c33806a496251340c214a9692fce19a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp314-cp314t-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 649267f4db9f9d1afe5065c8dccfd1c49dd1263cf79e0a98cdb7884d54a401c7
MD5 229fb1ce8edadd408ea3689d327eb791
BLAKE2b-256 df6ddbb0d44597af75022b8b632a46d9ac797dfeb6ff4da23add0604ce77c93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp314-cp314t-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 09f25a40e406ac8fcc7f31d2b0a707c92d740a8cc535aed88a85c29df40292d1
MD5 66f46c3396a064972f793a35e6c98c18
BLAKE2b-256 0bd66d21ae0a4f435af44f71c10faec008660090009be046763c2fa09be5cafb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 657c624d94a1179c52ab7f5176d08af433b7b269f1a26ef5bfa8419ba6223242
MD5 fd4bd39721c8ed6d0cd26a6ed6da7393
BLAKE2b-256 ca766e46ea5673f41dd12eb0c37762a5096a5bd660f2041a807b5cf90451a66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30ab7fbea40a289c370d6c470ae7a2039b1a9010a44a180d6f9bcf6bb24d932f
MD5 c0bf759d979a443ab71688e1217a659a
BLAKE2b-256 481ea5c9ad1513019d4352bab884b1ace702586c13f9bb6cb14f797c17fbb7b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.10.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 43.6 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 saxoncee-12.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9db6f5c9dcb77970f4a82fc71c1ca7bdf3fb0ab94707992d476f2ce3d8b65b83
MD5 d7e4b625c7d83d02fbcfb79fb8e1666f
BLAKE2b-256 0c8b1472be503f91ee32ee1f68752785010cf34ea32b91151c3024100a839e02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 3d64260f2790ae9aaf916d941da2f9027009b536b843ab32079c90a97e6618ff
MD5 0f01d99e595ff92d05e9b4a7b9317900
BLAKE2b-256 3fa8adf324adedb23ac02a6a9001f3252dba153255c2b76d4527aefb95841c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 a1f7d968b7151d155b683f82f5547aac73c6c6455374a494f9b03142729b13cc
MD5 e76e46e36003adf403da43776973adb3
BLAKE2b-256 cb8a4990a6396c457c22060dc865333c98f840c860d5e3b4ba1dc558d3f4594e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ea7b030d3505564a58c9ee38a100d7bf15e9dc83166acc1cfa3b179cb345bda5
MD5 50774fd33e4eca270aee77fb60a03b3f
BLAKE2b-256 f676e64dfeb7b17d87e154a55deea836dc5ce846e96bdb740c6f337d0402f4af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f1ea8d2d8a860612caa6fbc94ee09e7461a677f874665aec0baff18072cb96a
MD5 3adad6cffb15b421988de2698b5867e0
BLAKE2b-256 013752ad3dcaa29fb11d5271b55d3f02158176657b554944e18fdf55198309d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 42.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 saxoncee-12.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c586577ad606dfb66c3ccfca7a61a7abec54abce906c55978ca546876d62032a
MD5 3bcbacc8b03daad4f131dabccad9754c
BLAKE2b-256 a7953433beafcbbcad459785a3098f51c81cc9c85d40b39c8fa2ffea59cc569c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 3783d4bb1a13256f7d1d89f5695b3a6d4abca60670c821ba928c1e7c12340a57
MD5 9177c72ba8b32b8e9075024f50c7c098
BLAKE2b-256 ecf2792a7fbe2258b996ab72632dde80b672d14675c281a18b8236dc1f8fd609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 456663c31a0aa4b2e9df8ac7bcbb88593d3df822da3baec4360c210538614d97
MD5 9229b71b5c6580fd11f35d5fd2b8905c
BLAKE2b-256 8a282b08908d1c27bb906f7d5869576cbe1e60c9a56ef29a080ea158673bd927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8ff902f2fe2eba8f8593cccf5e65c0bd644efcfb09698efe0eaf93c8a2440ed
MD5 0e494ba942cf13ece13f4834fed14e40
BLAKE2b-256 e11459120d26d7fad94802abf2e8323321e46d3129f601a27cb480686939555c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp313-cp313-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 51f9cd4adcfc5d2dfcd93775a07f64994a91bc497dab6193b1eb7355a23eb8ad
MD5 46680a57d08bbf817d692f89a6a010ea
BLAKE2b-256 84fae1126b08210b6a99bbfacbdaac8ab2cf4e333b24ee7a33e45abf83c226fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 42.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 saxoncee-12.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca2e3c005ee7c4b70ac6260bd97f0d5d5b15d59b5680a6db7321abad0d7ee929
MD5 6ca528afcb16cdf9b523a407771657f5
BLAKE2b-256 3759f3c65344d8346544d88889a5c249ae471b033df7e57e68de7158c9de449a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 2d169ac51dcb38a843c1eb88c6ccd9136e442408c8d36853bf8325ffa358d6e6
MD5 5db1071497178d04e5e9cb3c299c3c8d
BLAKE2b-256 9df8e2176f4cc7d297aaf62884cadd80b8c6d5364d5755ed9857b90c795ffa44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 a6932bfbaa73aadee88cf8d2a9b087baf06d5361f828e70a0edf7c5c72a3cea3
MD5 d6ac6940616092afaf153f128d9c29cc
BLAKE2b-256 4c7d24526235515235edcf1f19f6d6748fdb6314d364f533c42e5ab2b70086bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46bb579bff8cf79ce5244ab153a8753fc63543b7ed4f1fc828cd991b5fe48062
MD5 0cd7b4f0d4adbe2cb17c432dac16d7ab
BLAKE2b-256 2f4c103ed048556c8854236ba14d42f1821ca5ac039b33b14f79835c5cb220e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp312-cp312-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 af194464c927ac93223dd5b4a2d738dc692558b0a16da1d080778cd883214301
MD5 cb168b34a9505679b5faafef9a53453d
BLAKE2b-256 911e134c16c9148829ed656c6ab73221ae655908de6a30f51ce28cc9e56574e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 42.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 saxoncee-12.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b69e3e6c36d4857184ee8ccdeed99dd82a78b7f097b0fcbb260a7666aa7cc080
MD5 567467c91abca9d23fa32d59af430904
BLAKE2b-256 3c88f64bce6014adbe57ebcff708c03848ec2d2171caaddc71edf4f067a1f3b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 303769c60788a0ba603727a8f66f700827520cc049b3774516a5df5ba1390535
MD5 887ef0dcdc01084b83f66aadb20da8a4
BLAKE2b-256 f5ba5e919cd62d158fc22d7f02b2900f4b1b0b5c36d766dbba82fc9740050b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 63bc1b9aa18f4d8709f643259c3df67aa78ad63421c84c7d2f5209b3e69f5711
MD5 39a461856bf01c61e7be7cf469369873
BLAKE2b-256 8d36c76df0d42f5e7e2a83d1eb5586e6df798b9378af478b34c07457705648d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3ec47e54638e6b42f8c8bc8f620fad42935eb4f7378d44f5ed612c9681ad0a9
MD5 fcf4a2a5354d7d56142190989434139b
BLAKE2b-256 a72b6f357ecf33fb52b17d0a9e557dbdb4d2872847751c63d936fe7a2b26d66c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp311-cp311-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 22c8ee39a4945f98c6b9c821a63e2ca27fc3b783ad5a907a6701a1c95c7f2b6b
MD5 bdec46b80f811d9bcb97874061c82891
BLAKE2b-256 5b0a6f4217091228d1eb9ef791732dfb4decee6d3aa0ed8e40245490b8ceb918

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 42.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 saxoncee-12.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7e2fedd66ca39e71c930f5399f737404af0de0e22df8539161a76dbf7a9912f6
MD5 1fa5541a9e6ef791ad1bd291e79aed20
BLAKE2b-256 84bc8ed8a15c7b1c9fc62210c3231c2fe6f3421bd0634b615e42cf20c55655fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 8b46c7f735eb68c26dd0daa0639efaeff53b4f88d31dd2e6c1e2f474d55f56f0
MD5 c6fa1809007fbb37644c391d14f3f9d8
BLAKE2b-256 64dbb6225b2418d7f7988b0ab189cb3eacd756f2c29a5ec7c281ffa8c322ad50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 35d7841a9e1a7aabeebb7023124b53648ca36f10cdeac0cd995a396a04fcf0e3
MD5 e646bf738b1c6fefe6422041fe7d4e85
BLAKE2b-256 5ed5e4886f18f2f59158d4a09a43e8049d22ebe34926b63bffbc19249b7b6a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1f784266a3993b74f100537bbe2c56548361a022165de15624fab6b7f515d50
MD5 e8fcf5154453c52e692b4950deb72a18
BLAKE2b-256 885dad1a928fe7feabefd544fdf352e8b67ba8e854283462dca50edfdc8c497e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp310-cp310-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 2da89d0a0852d4f4c2da2ba57ade330de4d4f8c8982a28a8c8687617eef64669
MD5 b895e22ba5e32009b95f95a10fc70282
BLAKE2b-256 3c4e0f3692a9272cf2994e26a50b01e3871a8669cab6e257265168deb569f46d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 42.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 saxoncee-12.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4e600fc7344e48af8263c521d801b2066b05b39e5f0d239ce6ca46f38be6d568
MD5 7215e4a9a7372d79d33a4382fa21249e
BLAKE2b-256 60a6074a2aa2e7914d5997b1707f5a02fbfd63c3abc8a62bce2acc6ff6a52494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 8ed3402d990c7312fad53a7919dcc0f627b29859a1f43245cf89377652e758f9
MD5 0c60b79f5e34693009eb9ddf11c4b6b7
BLAKE2b-256 d850f4d0149f6bfc3a7c448993edd385de493b254614ee17c3be68077f1d3a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 4b052ecf5380ac3dd0c208df12c1dbbda431c5256e42a578e17bdb7db5505a98
MD5 5e54a1a2266e6e9ecf12ea0f875b8a17
BLAKE2b-256 30613415c1f66dcbaed21b6d6104b11b954ea42399fb8eab594849501b62a8f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0407feebfc94d8b0e85bf5b6f3e03d27a18d48087f524c9d72c5f529ce9da291
MD5 5b3bcb503dde66e89183fe0027eba0d0
BLAKE2b-256 9807d921d54aff673b57cdc3cac5bbd49b19a75ecb92d016768d0a23b2bc30c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.10.0-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 82b269bfd74308ca08ab6e0852025637daf6a14915bc2b7c014df5d7f8fe4a57
MD5 0cd1fc35202cbd66f536f1362e6589f9
BLAKE2b-256 79b4e036d5b47a94c63b234ded30dfe596ed3a625f428cd71e34df05ab5c1e0e

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