Skip to main content

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

Project description

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.9.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.

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.

saxoncpe-12.9.0-cp314-cp314-win_amd64.whl (38.5 MB view details)

Uploaded CPython 3.14Windows x86-64

saxoncpe-12.9.0-cp314-cp314-manylinux_2_24_x86_64.whl (40.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

saxoncpe-12.9.0-cp314-cp314-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

saxoncpe-12.9.0-cp314-cp314-macosx_11_0_x86_64.whl (38.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

saxoncpe-12.9.0-cp314-cp314-macosx_11_0_arm64.whl (37.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

saxoncpe-12.9.0-cp313-cp313-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.13Windows x86-64

saxoncpe-12.9.0-cp313-cp313-manylinux_2_24_x86_64.whl (40.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

saxoncpe-12.9.0-cp313-cp313-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

saxoncpe-12.9.0-cp313-cp313-macosx_11_0_arm64.whl (37.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

saxoncpe-12.9.0-cp313-cp313-macosx_10_11_x86_64.whl (38.6 MB view details)

Uploaded CPython 3.13macOS 10.11+ x86-64

saxoncpe-12.9.0-cp312-cp312-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.12Windows x86-64

saxoncpe-12.9.0-cp312-cp312-manylinux_2_24_x86_64.whl (41.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

saxoncpe-12.9.0-cp312-cp312-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

saxoncpe-12.9.0-cp312-cp312-macosx_11_0_arm64.whl (37.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

saxoncpe-12.9.0-cp312-cp312-macosx_10_11_x86_64.whl (38.6 MB view details)

Uploaded CPython 3.12macOS 10.11+ x86-64

saxoncpe-12.9.0-cp311-cp311-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.11Windows x86-64

saxoncpe-12.9.0-cp311-cp311-manylinux_2_24_x86_64.whl (41.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

saxoncpe-12.9.0-cp311-cp311-manylinux_2_24_aarch64.whl (40.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

saxoncpe-12.9.0-cp311-cp311-macosx_11_0_arm64.whl (37.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

saxoncpe-12.9.0-cp311-cp311-macosx_10_11_x86_64.whl (38.6 MB view details)

Uploaded CPython 3.11macOS 10.11+ x86-64

saxoncpe-12.9.0-cp310-cp310-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.10Windows x86-64

saxoncpe-12.9.0-cp310-cp310-manylinux_2_24_x86_64.whl (40.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

saxoncpe-12.9.0-cp310-cp310-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

saxoncpe-12.9.0-cp310-cp310-macosx_11_0_arm64.whl (37.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

saxoncpe-12.9.0-cp310-cp310-macosx_10_11_x86_64.whl (38.6 MB view details)

Uploaded CPython 3.10macOS 10.11+ x86-64

saxoncpe-12.9.0-cp39-cp39-win_amd64.whl (37.8 MB view details)

Uploaded CPython 3.9Windows x86-64

saxoncpe-12.9.0-cp39-cp39-manylinux_2_24_x86_64.whl (40.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

saxoncpe-12.9.0-cp39-cp39-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

saxoncpe-12.9.0-cp39-cp39-macosx_11_0_arm64.whl (37.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

saxoncpe-12.9.0-cp39-cp39-macosx_10_11_x86_64.whl (38.6 MB view details)

Uploaded CPython 3.9macOS 10.11+ x86-64

File details

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

File metadata

  • Download URL: saxoncpe-12.9.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 saxoncpe-12.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 55512051e021c8925836372e00a4470fa41a8d30fdc1fef9fa6e2a3bde82bca0
MD5 844251e21308258cef8fc45aa8936f4f
BLAKE2b-256 326c5e7aeda58fb41e322777ad3cad2995c0f06865a21afa0549700901fb6f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 cf643a97783cd72a6b274a971706da875557b7a49b8db8c170886a4fafaf87c6
MD5 52d9b523a82d2ab0a6706764992334cc
BLAKE2b-256 4c74a8f3814bdeb9a2cf9c4fb7cfb2bfbe0152440866cdf0d16652a571add249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 b1e7e2a746f309544a81f8faf89c2140db95b47c7ce4ab5985c76686610a797e
MD5 a6ffc6049373217ed8e9ac27635bb5ff
BLAKE2b-256 23e47383a44851ccdb092cac914897ac9be5f5d4e2ba8823a9862ac847a3fe4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 905d0b2e8abcff57816a06e1ec1dfec3db0614988efdfc3a0b3d62ecb79ff8ed
MD5 6903b7424aad2fe27a3a3acce0d0356c
BLAKE2b-256 9f6b6f1e1aa51c47b9753f3e156c697e67d0501e0f064028fc425e0059d41110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9e49c6910a4d747a5c4cdf3d10623050d4e02fc0aca3836e9bfb28c56b8c8b0
MD5 dad720188e98fbfa759a6c5f002eac78
BLAKE2b-256 ca56408c7012504bdb4c45f86ba028f1ab382678129ca344026d2ab66e16149e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.9.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.2.0 CPython/3.12.2

File hashes

Hashes for saxoncpe-12.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cfba183cdc12b7a9dd2dace8e74523da823e8e74728b0d6899f3914dc4a85d82
MD5 8a287c6838c52a29bd5a1b0db019322a
BLAKE2b-256 45679809ee3f7d424f4ac6304f7dfe61a117ec0bb463234b044cf8d7d76d5b8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 ff013d69c23317db3bdd5aea26c0cf24be36096e00847685d307d889a54530d8
MD5 9a007b9967cbd5ac28b609a7f1edca05
BLAKE2b-256 1c1244d1299976d1153237177668ceaaed710724554d653d8d2792fab6509b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 57549d929b8a9cf37832c458ea8bfc37e67133488aa4420fd479e4f0b031293d
MD5 e8b8ea086ce56ce4328073a107bc5dfc
BLAKE2b-256 676a49a5e7cbf1f94a2fa38b4c6050e5d8c144d2bde5819cda26e08af51b39e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 078c424dddc58b087a3088f4a8bc830762e071ae0529aac7a7616c23bfc4cdcd
MD5 f007b8fcacba278342cd5dbde70c86ac
BLAKE2b-256 ab60f9fcd391daa28cbd68104e5231b0690904ded09ba7e8dcb7839f0621942a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp313-cp313-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 2ce504984ef0a31713695754defdbd77d070c69b75c0684f6df3a051821f6b02
MD5 4764d771b2172bcaa378a62c495e70dd
BLAKE2b-256 a75ed25ceefb50929e1815f2e2418503c0def59553717a81811ecac4c14d2355

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.9.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.2.0 CPython/3.12.2

File hashes

Hashes for saxoncpe-12.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fa6884ec0823154d8d635aabd3163c621e70fd6edd4aff574bbcf4d380391eaf
MD5 52701bd3bb83ae4eaba88f17cea9dc76
BLAKE2b-256 57aafd7af7a46a49cd4f13a4bdb16a045beb2f5fb748b2b7133cdb9552b70677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 292747d608e9fbe134ea39398c106e241f739aaf966eb8af7f195862eb701404
MD5 0eeba69350565c97abeb88782c77f497
BLAKE2b-256 4ee9f708e51337775f7627ddbb1d91037820e372a3c1345f6d4b0bdeb94ce3a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 997360572594199a1942d347dab93756db7ac9ef345345f722b8255f13c2efe8
MD5 05fff85da427051e87f2c10ba57b1e84
BLAKE2b-256 b84a6f08ab00ae8e7fd1c7b07f1f00babc61f0f45881a9a024aa44b380f30d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da2c3e1969efcdc1ba413917ff86ab6b01189d35ee7ae26289e802956314efd1
MD5 33101ef8cd09d047b62b6ff72a96c3c6
BLAKE2b-256 4e09a9bfff1fae8c749e2fa6139e2d2b831db1eaa3ee0b738d57a6a4b4de5f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp312-cp312-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 d918f4e7683b70c3ace039e3815bc29a65791d1d5fc9f0a3798a4cb06f179db4
MD5 c0c7c86aac7b760e7f6e820c1fcaacef
BLAKE2b-256 8d8c8af0a6b9edb227bcab94055ce12121c8f25d36b53689a3145143ab801f29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.9.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.2.0 CPython/3.12.2

File hashes

Hashes for saxoncpe-12.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 23f792135898ea8adc251602845d38ead7bbfebe7a1249ccced0454858c9a726
MD5 22576dc8c7dd2e1f90a5995c1f3469d1
BLAKE2b-256 8343b2105e0845dc3033b5cf825d5c11c18f7f36a19ac6beaae36e578433b85e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 487b3fb008236ebcb2cccf20a9007a7d11bbb6edac986ff530354c1e8e7ad308
MD5 63fb995c3dc855d116e84f1c35639238
BLAKE2b-256 1f93f97f6517908e84ec4d8a9bc9b8c46ea27d5b8ba182539b42a89495c2c863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 e985d9cd0f21cbe403cfbce45c05a23bbc1d66d6c2bfcee364d8e7e52be2cb42
MD5 22b822471798b753977514401d554b14
BLAKE2b-256 0cc4dda81c64f2a439d9216fd85ff5b6c953b6af98df4835f55be8c99396b5b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae0f600fbc72ec0fea9ace54383a2155672a1ab1d3144f62c7d9266525a7e9fd
MD5 94bdf6a97d1395cb2b899277bf1ab836
BLAKE2b-256 11b9ddd48096c236d24f239bcb61c2a7b04f15683c5f88876868a74ab506e325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp311-cp311-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 e5eb7f712e3a5aaf14573d66b65fd72f635658aea4234e2cc3b53398ccf90c41
MD5 8a48a6a4d9d5eb4acd5a5cf65cd12ee1
BLAKE2b-256 3eea98fcf073e1c32316ac2620dccfc9ca6f6417f35143844a4b1d7919b9e681

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.9.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.2.0 CPython/3.12.2

File hashes

Hashes for saxoncpe-12.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc3c70266d479b15783d8363396c8fb26090cb52b5fcddb4c9165a1c5988a5e4
MD5 8d9f54faa3619c8bf9e3324c2b9589e1
BLAKE2b-256 e58f17693800be3ed2caedfc6e2d0818febf400ec4df6fd48e146f13fb4233e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 aec3cce68b0a2e175e3a1135cf404ddad5d7a0142d6d16bb0791799982eca79d
MD5 466813b9418113c1663f4799555f1bfc
BLAKE2b-256 ae2a87edb99bdddc4e908503f2a408d856b6e009d9c18031ed3b78772f49df5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 7912d0047a814537ef33287144f044f566201f15664851fcde1931b75ce88b79
MD5 e0aebf0d3454b104cba381431ac8792d
BLAKE2b-256 aa50ea44c2eb06db994a33890fa1b91cb0a59d2febee49f46f5c035837947d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c1584dac6da2c50eb37414d94f5af53078ba14712decff6dad8050997c1be69
MD5 b430c37fa343de9b659c1cad48e224a0
BLAKE2b-256 c23fb1779ab00dd97e3954f25adfd746c136fe1c6575c2be64a582e767d35187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp310-cp310-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 bbb31dfa4ce969d53c7750f4c460d1876ba3dcc9e71a3ea9d6bf715e898670c3
MD5 2d749274e4579b4870db3f0bc3f429df
BLAKE2b-256 b8c1a2a3fb71b1b374c9491d48cda68c636a2dac044c48b104c107346f6e323c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-12.9.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.2.0 CPython/3.12.2

File hashes

Hashes for saxoncpe-12.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0cdb91763c75bbcea250d6d557d6c563ae7d2feaff7ccf0e5a222037043b019f
MD5 41bc22d1f622aeece5c64041c2f4989c
BLAKE2b-256 10735e876a80c5cbbd771a896e1803f1dc29c5f153f68f8797c89701af018091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 d38991a68c4ea9106a9c9a4c465888d5d9f29eb161860a11a92c8533de2ef03b
MD5 7b2ac0644e545a56a905bc1259d3e360
BLAKE2b-256 0b6c6a8bd16e8057f599f10b1cb92729d6e0dfc8277222ff9b14380a650d2de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 8bb7ab6a0ebcfc9e6c9fdedd1587f02af02c2ce7496bebe83e07e62e6a484053
MD5 77ca80b458f9c844ba3226180a74d7b6
BLAKE2b-256 9c13a004f475072bccc0cfdf3ad655da7baca39a93a5eeb365740201112ec4bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c716306767df0fb2c965e7d12f275e5c5a7630c2c90c0c1b74a7616493a7be3
MD5 ab5639c71239ba289305cb45eef56f3d
BLAKE2b-256 194e47cb1db3ad8fcafcbf28d41a00ec193e43c39d8204e1fcfaf174cddf2e5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.9.0-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 57f9a0ccb8f092ef90819752f89bc42c147d4dfbbb90a44292614a426ac358be
MD5 12270c2a67bc89a58c696d1a3cf19fed
BLAKE2b-256 094268e4b8d2e76c66c524cad61185e9f6ac6b14f7aa8d30cf81a2859d0e995f

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