Skip to main content

Welcome to SaxonC-PE

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 saxoncpe

Getting started

Either import the whole API:

from saxoncpe import *

Or specific modules:

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

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

It will print something like this:

SaxonC-PE 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 saxoncpe 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 saxoncpe

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

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.

saxoncpe-12.10.0-cp314-cp314t-win_amd64.whl (41.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

saxoncpe-12.10.0-cp314-cp314t-manylinux_2_24_x86_64.whl (43.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64

saxoncpe-12.10.0-cp314-cp314t-manylinux_2_24_aarch64.whl (42.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64

saxoncpe-12.10.0-cp314-cp314t-macosx_11_0_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

saxoncpe-12.10.0-cp314-cp314t-macosx_11_0_arm64.whl (39.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

saxoncpe-12.10.0-cp314-cp314-win_amd64.whl (41.1 MB view details)

Uploaded CPython 3.14Windows x86-64

saxoncpe-12.10.0-cp314-cp314-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

saxoncpe-12.10.0-cp314-cp314-manylinux_2_24_aarch64.whl (42.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

saxoncpe-12.10.0-cp314-cp314-macosx_11_0_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

saxoncpe-12.10.0-cp314-cp314-macosx_11_0_arm64.whl (39.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

saxoncpe-12.10.0-cp313-cp313-win_amd64.whl (40.4 MB view details)

Uploaded CPython 3.13Windows x86-64

saxoncpe-12.10.0-cp313-cp313-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

saxoncpe-12.10.0-cp313-cp313-manylinux_2_24_aarch64.whl (42.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

saxoncpe-12.10.0-cp313-cp313-macosx_11_0_arm64.whl (39.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

saxoncpe-12.10.0-cp313-cp313-macosx_10_11_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.13macOS 10.11+ x86-64

saxoncpe-12.10.0-cp312-cp312-win_amd64.whl (40.4 MB view details)

Uploaded CPython 3.12Windows x86-64

saxoncpe-12.10.0-cp312-cp312-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

saxoncpe-12.10.0-cp312-cp312-manylinux_2_24_aarch64.whl (42.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

saxoncpe-12.10.0-cp312-cp312-macosx_11_0_arm64.whl (39.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

saxoncpe-12.10.0-cp312-cp312-macosx_10_11_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.12macOS 10.11+ x86-64

saxoncpe-12.10.0-cp311-cp311-win_amd64.whl (40.4 MB view details)

Uploaded CPython 3.11Windows x86-64

saxoncpe-12.10.0-cp311-cp311-manylinux_2_24_x86_64.whl (43.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

saxoncpe-12.10.0-cp311-cp311-manylinux_2_24_aarch64.whl (42.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

saxoncpe-12.10.0-cp311-cp311-macosx_11_0_arm64.whl (39.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

saxoncpe-12.10.0-cp311-cp311-macosx_10_11_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.11macOS 10.11+ x86-64

saxoncpe-12.10.0-cp310-cp310-win_amd64.whl (40.4 MB view details)

Uploaded CPython 3.10Windows x86-64

saxoncpe-12.10.0-cp310-cp310-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

saxoncpe-12.10.0-cp310-cp310-manylinux_2_24_aarch64.whl (42.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

saxoncpe-12.10.0-cp310-cp310-macosx_11_0_arm64.whl (39.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

saxoncpe-12.10.0-cp310-cp310-macosx_10_11_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.10macOS 10.11+ x86-64

saxoncpe-12.10.0-cp39-cp39-win_amd64.whl (40.4 MB view details)

Uploaded CPython 3.9Windows x86-64

saxoncpe-12.10.0-cp39-cp39-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

saxoncpe-12.10.0-cp39-cp39-manylinux_2_24_aarch64.whl (42.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

saxoncpe-12.10.0-cp39-cp39-macosx_11_0_arm64.whl (39.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

saxoncpe-12.10.0-cp39-cp39-macosx_10_11_x86_64.whl (41.2 MB view details)

Uploaded CPython 3.9macOS 10.11+ x86-64

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 74147b6f7661854fa6805a2b68632c10204186b8abd5d02e2a849a8b050bef2f
MD5 e7293638e0b73937d13bf5a78cd259f1
BLAKE2b-256 60d9a6a124920056c376f59a6c2fb40d3e5b92cc624fed90eaf391362828aa7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp314-cp314t-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 1d967e85175d4026c7d84d49bc2826c4c2bc0da9d2a6b6f060a5a70b4f178997
MD5 ce84dec7cfacab9de130728f607a2606
BLAKE2b-256 3844fd513e26f96442a2a9e872d0913f0704e6945fa0aa9a2e554da019d9a704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp314-cp314t-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 895c7c203b3221f69afdf7fa5e2dd4262562c9d7f15cd9e36babff408b5a5264
MD5 4f8bb33e4ce1a4a952db03d3034df39d
BLAKE2b-256 bce27b833b85e29d1263ef7cb077e39d143c763b467fa4eea1dd4e8834ef859e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b718e6f7ebed9018304d17a2f90acac34f9fb6b36b666e7b5349f5eb1f4f2255
MD5 3f48e72d2625483113effc32a5fe7770
BLAKE2b-256 534d5acb3ff8da219406a50c1ccc887979c71cb0544d6cb729fec5168436c455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 025a56216a497110e0614b5b4bb54b367ad312aef8b87c836b3e9877d38482f5
MD5 888ff3a5cb4f0505b42e53648f326d4a
BLAKE2b-256 9e90c45b3a9698b6a0e91b49fe4741baf1cfbc9e8e5a40cfa3a135790561717f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.10.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 41.1 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 saxoncpe-12.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 db62449e09c98ba4a9b07e08e38fafc736baabdf0865e5e5a5a34f59aceaeee2
MD5 5056764afd3c1e5138d9aad814f74d30
BLAKE2b-256 6db20d4a73230229ccff6f5d23f7f867076d0765b3dda3ee1f678cf5c30cd3b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 b4fa01f6e75e012d92165a60fa904d8544cce2e4d1f8f3c327c474717f1df78b
MD5 67afd95b378e876c27a461b35e436812
BLAKE2b-256 9546cf69a582583a896379e4c04f3d95de63315d6262fc24ac01479dbfe0a0e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 9701994badc96654584a88b96f7014b819ceaeeacdc52f319ea923caa909e894
MD5 cea49934227d8b1021d29e9a91d3444d
BLAKE2b-256 acbd0bc6535c9bec3f46f9e232c55369bd731aa670d5ebb83963853190d1cc72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3c716c7f4cdb37fffdcb4ee0bead9e773b3207e307169207ac59f2fb5a54bdc3
MD5 13e31fd0d7f617a4400f3066d8c965b5
BLAKE2b-256 dfa84ccf80af86d9dcccbc9c1bcb9cefaa027fbeca17d33b652406f2e48aebeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ce60c6e576adb97fb8acff1237bf6bf32fa819f81bd7d4073bb56ae2028232d
MD5 0a5f1c2f0587c36c20a019babc79f4c6
BLAKE2b-256 2334db2238515d2d2e23f8584abb1cde6e5fabdd3b7b2a362cfa40de88c191ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 40.4 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 saxoncpe-12.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 19d66b99288655436a89ffb2c3eb79b95dcfd01ff4f58d13ae13471e424c9a8b
MD5 ea6a5585bb6657c6407e8dd2d7b498c3
BLAKE2b-256 f5280f4674cb32b5f929fb8aec64f7aba3ae35ff6341ef6faa595a8bdba10d77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 ab1b583cd781af20179080a4a8cbcf05bba331deb7f1a6ecad03c5f197dea52d
MD5 e2780412ed2b065ce8f4943881862246
BLAKE2b-256 0762a9311857584b44fa44fa1d30503e0d4085e7de91c705fe5c5032fa4f4d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 b67485cec601a00a15242a5905ae1d74eda6b39601a4a66e617e8d757684ae28
MD5 e740bdb8782a1ebbb330050335d7d1a6
BLAKE2b-256 ea95ad7d4b71ada071ad8cf865ec50a4be5fbfcd1dbcde2e9396be907f904360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eb2844b31aa3476405842b37ebe756adbd0193e1c380ac1135011257997a775
MD5 c0faed09b53c0ffd5ec63a833b33c685
BLAKE2b-256 a42a2913dc85eb5729f568d1fe50cf8f609a5f394e37f5768e077d6d43acdfdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp313-cp313-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 7184980484e0e754c92477dfe9c818f415a73c6fa335eba5e3904d9d01e47766
MD5 2efaf0b6fc62121576a39ab2dabeab46
BLAKE2b-256 fd7a35feda7f53dde03909555c56d5287140698f8f94a36a0ccbd5fdb546cdfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 40.4 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 saxoncpe-12.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c5f05dc7eee4e468cc3b6d1c5878719cb5206d7a2869f795ce0731bb40ccbcc
MD5 0a6e091658c663e345e5397213696c1c
BLAKE2b-256 f732d49dba3bdb0c6ded78bb67a9a2f9bd1e75f9ac46636b4ef5b5243162afcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 2a80e8edbd6ade62a8ec90a5eaec629e962f99065ae0bbd822d45c708a608679
MD5 40460cd3fb4e1833908e5e573a1fa987
BLAKE2b-256 b49f9367a8214cf16d2fafc5340e10f777472983fb0cb5087dec1e1d42763085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 be35e5aa2dfdd8ac22f0a1a480edd7d598c61042048479d47158328d98519ed9
MD5 56106501f220692721b8d500d1e4c201
BLAKE2b-256 5a60b7e02f8d2eef6d8a53aa56791031e4aacf769305f4af40bb231f29200913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27a9a1a3041388a319d52b9b22de836f702972d058896625aa4de8a6c461eb8e
MD5 cb0ab86cc744067f66e9161e8b51ab4f
BLAKE2b-256 494da6682ff43fac4d85b8ae2780e8c744a1bb58a389d9c68491584c53983b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp312-cp312-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 63de7a6b8ae61e2a888faade0b00d948d5257029f9b9f9ceb76fce5463fda11b
MD5 cfd74dc88bad664170922464c4c2c14c
BLAKE2b-256 70e801eae6945b4e5003a2d185cd7738edd4527bd9ba9d01a18b7dbb40cbc749

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 40.4 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 saxoncpe-12.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d5a6db6c73e1e69b48b26f7f588c4612a661eac6e5a82b6ccda811813b73500
MD5 1b100809e19703ba21ea8b4458553261
BLAKE2b-256 5a0d4086af17dd1a466294347c6a2ce76f43cee1f7f468604dd770099f9e6890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 b15a30120fee86e7c6801007f26bcfc911903144217c409a3ed98ae64ca7e996
MD5 cf6010951e20f4bdef9f71b9bc5e58d6
BLAKE2b-256 4c3ea7a46a5a9dc0615c4fc8a5a50e15531daee6a8162e1511d20bf679113266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 ad38e9518f526b65025cea0172004932f7c40b836e9f03fe49dfb5447df8db4f
MD5 537dbba3372f9cd33e069bcd583c8b31
BLAKE2b-256 6dbfecebee9d5737f5cad22a585814304bde720bcd5838320adf3154b5c41fe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 722908d13dfe7bbbcadb9bd5c9df5e6c12f9f0db120a4aa31c975d8343326cf6
MD5 02cdde9a3718a05124bbefd4139e3e24
BLAKE2b-256 8456e6df61aec301421c657d0b16c4ee4c17e3e8b6233e41b28041a4ac40cf94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp311-cp311-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 774cbde8f5f47fabbf9070ef9f8ffee200148e46351b99df6fe76c6de6407d74
MD5 831ff8aba4560511636ff6c7e07c9329
BLAKE2b-256 238e7befcd63c243f057f52359b1e9aa340dbdb55c66e5ea7c8f2fbfa42e2b5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 40.4 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 saxoncpe-12.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da6b5ca2afacdcba8da9f859ea107aa862bdf4b6730f1fc1d9885354ab85ae2c
MD5 63d18094e33f4017018f8f0ff6585657
BLAKE2b-256 db02cc665e83748ac538f47969a8e268a82f41cf945dca760ca3e01c109b8bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 14d3c16147b313cd5ffd0e6f3de129df4f7fa0e91c87ae7ab14c700086dd9087
MD5 c6fc04483d4118347b9963e8af2427c4
BLAKE2b-256 af170ae85ca919081044bc3b7c280a19a4e340249cb02f8a986e46c762ac94b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 3ed8af2c19e76acd10f3e5ee4c2f3a48fc82b0b53f0c602a71cf2ea716372a42
MD5 5562ae674fe31b15c8159066dcfc0ee6
BLAKE2b-256 568c8f05afb40f47e7a3dab18485561f45eaea1d5fce99b15acd5fa66fa0434b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 008de00d7aed1a6ab1eb07a9aa8ae26102ef2f7a8ee0ae688a525aaaaadbb047
MD5 32d4804056cfc332915cddb2d1d3b2fb
BLAKE2b-256 5b70379b19a2d3e73a56039294ff1097d4202d3af992f34c17f4dd235748a7ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp310-cp310-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 ce317b6bd38f1e83c3372d124de5205b3e3ef6aa2cb1263433c1891a8c27881f
MD5 a18e33586d52cff939587ccd8b210961
BLAKE2b-256 baf06805f40a9d3e01ef6f41f1cd002483c55979c7bfac967443d347ed9116be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 40.4 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 saxoncpe-12.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 57e050506539f5c568a7d7f7d7e2523ca6be41f2c6ec7badf9e943b782c8a7da
MD5 f46fa9c0d7f70f35394e33daadc2b753
BLAKE2b-256 81c0ce4649f10204559fbcb8ac7ac7685c152ef5f6d84657e93d7a1a3f277de2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 5ff95eb516da3242a669c48cb599a3af38231fc622a13d19be4b310f6f01055d
MD5 f0cd55074852c7932cc37a96fcc99986
BLAKE2b-256 f1f5ee6f5f8c253bf8868aa4cdd444ffa0c00402630d63ba6969e803dda48361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 3dbfc7c2144674a874db81ddeb7d8b952e1713afab822e5b37725463b08c7c61
MD5 27b911827c298a2ecf9cd9a386b97ed7
BLAKE2b-256 5d3193c3dd28ea7143673f4c27b95a3c79eaa9779bcadf7f6dd4989287f83ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01439937117a67dd0a8144e687ca1dcd4e9320c58fec0c027bd960bd02e3bb85
MD5 4310e95490521dbcbbd5d0a60841b1aa
BLAKE2b-256 9c5174d93dca62c36f5a1df6db0c8457aae290792070d947f21ae5605bfe3775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.10.0-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 37c0e114956d7b923f18b3e26a70bdb6f4d60d9849fe91dc52470e33668fb50a
MD5 786220e36f7ccd7652e1f02730fd6c40
BLAKE2b-256 555dc9209a880d46e5adb0cc4a429d1df5e1a6805c9792aa6cb25b60ad7a7b28

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 Sentry Error logging StatusPage Status page