Skip to main content

Official Saxonica python package for the SaxonC-PE 13.0.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 13 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.

What's new in this version?

SaxonC-EE and SaxonC-PE 13 include support for many features in the XPath, XQuery, and XSLT 4.0 specifications currently in development in the QT4 Community Group.

There's a comprehensive list of changes in this Saxon release in the main Saxon 13 documentation, and for details of changes specific to SaxonC, see the SaxonC 13 documentation.

For a record of bugs fixed in each maintenance release, please consult the issues list — you can filter the list on the property "Fixed in maintenance release". This is also the place to report any problems you find.

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 13.0.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 13 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-13.0.0-cp314-cp314t-win_amd64.whl (45.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

saxoncpe-13.0.0-cp314-cp314t-manylinux_2_24_x86_64.whl (46.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64

saxoncpe-13.0.0-cp314-cp314t-manylinux_2_24_aarch64.whl (45.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64

saxoncpe-13.0.0-cp314-cp314t-macosx_11_0_x86_64.whl (45.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

saxoncpe-13.0.0-cp314-cp314t-macosx_11_0_arm64.whl (44.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

saxoncpe-13.0.0-cp314-cp314-win_amd64.whl (45.0 MB view details)

Uploaded CPython 3.14Windows x86-64

saxoncpe-13.0.0-cp314-cp314-manylinux_2_24_x86_64.whl (46.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

saxoncpe-13.0.0-cp314-cp314-manylinux_2_24_aarch64.whl (45.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

saxoncpe-13.0.0-cp314-cp314-macosx_11_0_x86_64.whl (45.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

saxoncpe-13.0.0-cp314-cp314-macosx_11_0_arm64.whl (44.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

saxoncpe-13.0.0-cp313-cp313-win_amd64.whl (44.0 MB view details)

Uploaded CPython 3.13Windows x86-64

saxoncpe-13.0.0-cp313-cp313-manylinux_2_24_x86_64.whl (46.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

saxoncpe-13.0.0-cp313-cp313-manylinux_2_24_aarch64.whl (45.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

saxoncpe-13.0.0-cp313-cp313-macosx_11_0_arm64.whl (44.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

saxoncpe-13.0.0-cp313-cp313-macosx_10_11_x86_64.whl (45.3 MB view details)

Uploaded CPython 3.13macOS 10.11+ x86-64

saxoncpe-13.0.0-cp312-cp312-win_amd64.whl (44.0 MB view details)

Uploaded CPython 3.12Windows x86-64

saxoncpe-13.0.0-cp312-cp312-manylinux_2_24_x86_64.whl (46.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

saxoncpe-13.0.0-cp312-cp312-manylinux_2_24_aarch64.whl (45.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

saxoncpe-13.0.0-cp312-cp312-macosx_11_0_arm64.whl (44.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

saxoncpe-13.0.0-cp312-cp312-macosx_10_11_x86_64.whl (45.3 MB view details)

Uploaded CPython 3.12macOS 10.11+ x86-64

saxoncpe-13.0.0-cp311-cp311-win_amd64.whl (44.0 MB view details)

Uploaded CPython 3.11Windows x86-64

saxoncpe-13.0.0-cp311-cp311-manylinux_2_24_x86_64.whl (46.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

saxoncpe-13.0.0-cp311-cp311-manylinux_2_24_aarch64.whl (45.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

saxoncpe-13.0.0-cp311-cp311-macosx_11_0_arm64.whl (44.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

saxoncpe-13.0.0-cp311-cp311-macosx_10_11_x86_64.whl (45.3 MB view details)

Uploaded CPython 3.11macOS 10.11+ x86-64

saxoncpe-13.0.0-cp310-cp310-win_amd64.whl (44.0 MB view details)

Uploaded CPython 3.10Windows x86-64

saxoncpe-13.0.0-cp310-cp310-manylinux_2_24_x86_64.whl (46.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

saxoncpe-13.0.0-cp310-cp310-manylinux_2_24_aarch64.whl (45.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

saxoncpe-13.0.0-cp310-cp310-macosx_11_0_arm64.whl (44.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

saxoncpe-13.0.0-cp310-cp310-macosx_10_11_x86_64.whl (45.2 MB view details)

Uploaded CPython 3.10macOS 10.11+ x86-64

saxoncpe-13.0.0-cp39-cp39-win_amd64.whl (44.0 MB view details)

Uploaded CPython 3.9Windows x86-64

saxoncpe-13.0.0-cp39-cp39-manylinux_2_24_x86_64.whl (46.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

saxoncpe-13.0.0-cp39-cp39-manylinux_2_24_aarch64.whl (45.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

saxoncpe-13.0.0-cp39-cp39-macosx_11_0_arm64.whl (44.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

saxoncpe-13.0.0-cp39-cp39-macosx_10_11_x86_64.whl (45.2 MB view details)

Uploaded CPython 3.9macOS 10.11+ x86-64

File details

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

File metadata

  • Download URL: saxoncpe-13.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 45.0 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for saxoncpe-13.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 36077a86447a305e3092a862edc00029a36b4d074d8d8dbfdf3d1aed49f5f992
MD5 5d214c5bde33089430bb047ea23d5514
BLAKE2b-256 a052a472cc3459764833f2ac3c731325f8ffc7a1d2dc7547779b171ddf916860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp314-cp314t-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 92e6d9c74f26135d34e7da02a0f0a8e0aed0b849751efcda44959f664ea3cc58
MD5 ae4ec8531bb051a2d21f52fef8b0db25
BLAKE2b-256 60873095822e179a8d153490131cec1215820b2355bfa34c3d17b6ec32139ee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp314-cp314t-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 0f2a2326636ae63727beb2c9c101a55906f13977e91b00da2420718f73c1e3aa
MD5 27ace2d6b097caf71bc2d68789262bfa
BLAKE2b-256 760e4d74be8b8a9980f7f9708edd09d0953291ef6adf39366f9eed164589a339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 011f61ad39ce23ae45ceb5d4da4e09502fa47a131fae1f5c599cebaa5599d686
MD5 f49aef7f6d7f186a741e2dd1ba23803e
BLAKE2b-256 7e650aa548c741656aec263a8313187af69fbc05f1e38b6517a83d2afbf50815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a754ca897d0deda293f51f132fa36cf4e6077c1e8ed3d5c5b906ed064a02b57
MD5 72ddbaafdeb7cda78350b126a9231368
BLAKE2b-256 ac6f97fdaf66b00dc5a30fdd0c9168af2e69c3cb93f3c368ab10e821cac598ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-13.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 45.0 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-13.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 205f38cfc28e513f8a315b0ee93970ccc13f85e7092688879b0c0fb9ac43260c
MD5 686461569fb4e9b3e59f2a66644707b8
BLAKE2b-256 fa276453bbad27d550f5bbbb23f38e9621bc0ae3a346d4520ee43cd3172be5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 fd5450bebb2d950f7907d7578c101f88243ccbd9e536b14e8b5b6a7a3660eae6
MD5 1b2a8199b19b7789945ea6dbd1d8e035
BLAKE2b-256 ccbb832bd1923007c538fd0cd3b5c890dfe3532aa198a68c03fc920b1e421a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 c775dd40fcadf5d77cc760ec57e73a8ded976a2958965123478060513169f735
MD5 d61b7c612f55f61245f36dc0348b458f
BLAKE2b-256 fdad0604cd3806d5d52910349beaac75bea7fd9e6873cea235649e3cb507b581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5d79a288065d5fef5164b990adeef537b68cb47446b3989b8c73b02bfd6188c4
MD5 b70b115ac85f5ac56c045c3eec0d7a12
BLAKE2b-256 36fe78161e3d2c609e4c716b120d743cf62a23ed6d17b347e5a967435fb32845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0dad73f9c8df8a8c6d1cf46d0a1db1aabf0a4846922eff7b542bd2c10f3069e
MD5 c9d14fabc2d4c31014cffbb20edc4c26
BLAKE2b-256 0bb6b8518e2818628088bde47a56fbff77fb17131f11c5fb27b9e4aa4b7600f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-13.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 44.0 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-13.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fd57fa73eaad3da41003137dcb717b533ec7942136909a6d5c1f9bfc97100106
MD5 1a80287dce56de8eda25e4cd6428249c
BLAKE2b-256 f4876b4243b64fee146bc71fe0d5c8e3a9367d8b3e24cef7d77c1ec911fdb3f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 66ba074e62a7ad5cf0cc36b75b29f897d920bf54aeac0ede688399168ae904fe
MD5 ad7cfaebae263011e4dcf5e5b1e9dd90
BLAKE2b-256 a427a4491599d329170068d6bfcc71c6bff5d2a8347573187c1d0a57e1ed2d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 1810263a81cf54d928909ffb73be96d9db61a74cd7fdf1cedfa6789e3632b64c
MD5 1fc9e5e1abee98d4f84d026a8d34c426
BLAKE2b-256 4e0d221170ae7f722de811e91091bea1617a1de03b1a7dd172ba4730b971995d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 164d02902baa938ff3c4d0535ab3380d313619a4e1a065d472ab42b98eed46e0
MD5 400a99123d21fc57045e2921ffb59c52
BLAKE2b-256 74f05881ebc9b6a49e89b12aa156f85db9016dc4c23bb60aa9b95c682e201f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp313-cp313-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 b5b42b835f159ca5857f454a30eac94e92185034409c47f035ac860369c1a2a5
MD5 2ea7c710edf2f0af8ec166d9a1fc1081
BLAKE2b-256 8b999b0fca5dbf2eed3c112ef546db0d1fde97cbefdce45053a1f2bc9415b0a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-13.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 44.0 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-13.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fde9051d3ca948b7c3338fc523a5f13a46b698efda41e97c1f7cf45cc0fad58b
MD5 1f404e0a650235d6cd47c9942399a9cb
BLAKE2b-256 42fcc10ea270dbe3b7f90b822574fe2d5423e6d9cb0869fb41b7fadcffd0e60f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 1e3cfebc4f3157e0b4ded1cb0f723731642951deb6d1c316a8180f6339f4767b
MD5 744d4bc78a81552b51406f3d4cf3b95b
BLAKE2b-256 89006ff0318545138c96b0a7d32684ba16f1995a5d087a70d5a0f857ce2c24da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 e07c314fb7163e3da27f9e21d4a89444ba9db8964155f64e2b8fc8b2035b6e2f
MD5 9294de45c7ae5fc0630a4deaeb179735
BLAKE2b-256 ce43f8736aaac9ef541f04dfd7760054c5c74fb0b88588500943b4811eb0fe72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d0a0977ce013899d83307041340a90b9962e105bc30aab93ceb8031b5989e53
MD5 103bce7794fb5f6ef1c97ce1bd7c2350
BLAKE2b-256 a64b0dc372600c568f51e59b253204bf42d0e51024be677ba4271fb373533082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp312-cp312-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 ba8dace9e77bba3d4e59d78c06c10fbd8c6116a84ccd3ffeb337d7ed162ac455
MD5 e63f85cd1098eb092afd8582d438a610
BLAKE2b-256 3a349b34acd5b071a60c0ca20f19070c020197de9da8f3e79159da1d88da8ae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-13.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 44.0 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-13.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aef85f76794cbe3d3f96c92995a2f321aad677962b6152e1b64c351755989440
MD5 f7ae683734cc49198030a7fffd3e9f6c
BLAKE2b-256 b063065c2f39d71cc27918500f9d8ecdcd473b885025db9a1bed73d11347645d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 07782fb9e10c9bf1d9a56e921daca7db554311ac0b323811d2430080190cd39c
MD5 06bb2e3e202b49aa80b9a93066611595
BLAKE2b-256 bb6c7be1e2fa47ff8223f582881b686f4508b965b379921546de762c60a9e10f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 07db8a7ab404b51b18cad2bc9228aa4e969f689e29adece1e3a1a2292fcd39ef
MD5 10211c1b3fe7ada31e340ca5afdee816
BLAKE2b-256 6fd53e8c708be983e21870f91b79daf841bcaad27b65ab0ae9d255bf9a667668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f1bb209300e211f503f06420f3511951a2f04d71fc2c21787b3d369450f9a59
MD5 aea75f42b13b407c2588cdf64b891bd3
BLAKE2b-256 2f5b33aefda8ec167fa3007a415a64c181364db178c070ecfffa7c002d170530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp311-cp311-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 5a35e47ef6db9f3ac87026adc897432f778b7f88383e99d8acd8f4899b3f44b7
MD5 34a229285f494aed01183e2567afdb15
BLAKE2b-256 b0b0dcdeb5f1f59ec26978f4a1edc6d1b0df30344ee8eb59bbb97ba50c47663e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-13.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 44.0 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-13.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 616d7d9e2da98105e85c10fd310151c671dbbe71b2964ffaab953dfb8313d4b7
MD5 3f5b9abf2ed100c5f8c0a8b3a05f5223
BLAKE2b-256 3bd14a8487bd147edf6b2ed8c7f54687abaf84995883f3be8519bc042ae4a6f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 8f446d6a455d6f1dc708af971732f629663781582d3f441d133703097838e431
MD5 e7e568edfc2edbd18c0afbc6c8fc876f
BLAKE2b-256 f8709cd09f52216d13f949ade2ecd5e3625be600bd5c12f0ac6723eb34b52eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 ad1310987f9b9307d2b788c0b72425021006035c92e9fee05497f4c4ec3c571b
MD5 e5cdf0c6d719adf8dec494b34efd84df
BLAKE2b-256 f4ffececfc5e51f4e79ab422d3f09278b8e33fd9768a563db4daa69836ee0653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8675d3f5e23aa6ce3f3f6fea3e60ae7be67121d418d94708da7cc9c460519e78
MD5 79484dbd421037d32b8eeab99c40c732
BLAKE2b-256 0eb126cf16f216233b12a56c5d2bab5d5e4e9533ad52240358f13eb9ee645f8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp310-cp310-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 6d28d027ea38674ddec0760ef781e0f66053ca0e0db8fa7164666eec26fa7c69
MD5 a80f0ba9d5bbb77f92d3c227034f27ea
BLAKE2b-256 00ef6feb3dda4b5097c0336462570f8a7efa5a049344c1f53146b085c2d93e76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncpe-13.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 44.0 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-13.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 62809da9310fc78f93884a5fd2d98e8415301545a6a480a6810b482fe6435615
MD5 02140bf7625f8e0c474834260d7d76e9
BLAKE2b-256 5d7f368c3f8fc7e2f615f9bd20b3c8f190124909c7a5a9949e6742347036c104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 851dccddd1d8d02be746a2a5bacf116b19f67663c3760fbd29799fa72d3e868f
MD5 d8c1baa748dc2ef3bb5dd2cf823fbfb7
BLAKE2b-256 e22d85dfa9eaeb9a491f45377c6f3dca414bddcb0ee6eba10c4e7409e8664bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 48fc8f1eaa91f8036bd31cbff2f1a77f6377b68389baafc4dac7e7b5bbc9ae97
MD5 4ea0737b73135c2f0b9b7cd757510909
BLAKE2b-256 2a1a025b6280d232abf9612e8a81ddda70a0da1425ab3bffc862175b390d180f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0db854151cce6a1ea7ec42968b3a9e218dbb11700cd481bc8508fee2e2517303
MD5 b9ce45902fefa7c71bb36c9648850ef6
BLAKE2b-256 9b65655fe925cd47539f760a376d0adf0e21e8b58a4f5c0833bcadec9abab3f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-13.0.0-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 0b54720747c19f60fa5707d2eb6191c41455294fd0304c8b8227fe38207ca39b
MD5 efb5c3dcd9b29e67efebbbcc7ef5af89
BLAKE2b-256 324fe6470f55d37b4c20b2531379bf2a0d96238728f2d3081b745554849a4583

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