Skip to main content

Official Saxonica python package for the SaxonC-PE 12.8.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.8.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.8.0-cp314-cp314-win_amd64.whl (38.5 MB view details)

Uploaded CPython 3.14Windows x86-64

saxoncpe-12.8.0-cp314-cp314-manylinux_2_24_x86_64.whl (41.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

saxoncpe-12.8.0-cp314-cp314-macosx_11_0_x86_64.whl (38.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

saxoncpe-12.8.0-cp314-cp314-macosx_11_0_arm64.whl (37.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

saxoncpe-12.8.0-cp313-cp313-manylinux_2_24_x86_64.whl (41.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

saxoncpe-12.8.0-cp313-cp313-manylinux_2_24_aarch64.whl (40.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

saxoncpe-12.8.0-cp313-cp313-macosx_11_0_arm64.whl (37.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.11+ x86-64

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

Uploaded CPython 3.12Windows x86-64

saxoncpe-12.8.0-cp312-cp312-manylinux_2_24_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

saxoncpe-12.8.0-cp312-cp312-manylinux_2_24_aarch64.whl (40.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

saxoncpe-12.8.0-cp312-cp312-macosx_11_0_arm64.whl (37.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.11+ x86-64

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

Uploaded CPython 3.11Windows x86-64

saxoncpe-12.8.0-cp311-cp311-manylinux_2_24_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

saxoncpe-12.8.0-cp311-cp311-manylinux_2_24_aarch64.whl (40.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

saxoncpe-12.8.0-cp311-cp311-macosx_11_0_arm64.whl (37.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.11+ x86-64

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

Uploaded CPython 3.10Windows x86-64

saxoncpe-12.8.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.8.0-cp310-cp310-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

saxoncpe-12.8.0-cp310-cp310-macosx_11_0_arm64.whl (37.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.11+ x86-64

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

Uploaded CPython 3.9Windows x86-64

saxoncpe-12.8.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.8.0-cp39-cp39-manylinux_2_24_aarch64.whl (39.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

saxoncpe-12.8.0-cp39-cp39-macosx_11_0_arm64.whl (37.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

saxoncpe-12.8.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.8.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: saxoncpe-12.8.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.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7ad749b2560a6d1275f34050e40b139e9a3e3f6e31a2939c344f84fa745fef67
MD5 720ec5ecfa6c23f9e8fefb50f29e8983
BLAKE2b-256 b1d05d60cf2e3e7dc1b361a1b19949f351f6b88fe9c8db7f940cd261148eb65e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 f8a8747877a574f750b5b3b884049a5761bc0cd2d18d7881e87b2d45a0be2f8b
MD5 06ae395578f5d11aaa3765167b1b281d
BLAKE2b-256 345e10edf6c065ab0bdea8ac60b8b3f71a0bc314b7ab8a4ae39006b11bd5f7b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 6847a86013fea36054a7ea3f2144ce60a14ff0be9dc625ebf560a77df8064130
MD5 9c08a1794b2831c63827bca48435608b
BLAKE2b-256 905f6f425bf2352cc3aa851130e43ccbd8b696a23bb14fb527dd21348751517f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b7568c10491bc8f7b509c8d5e61edb01429e445820aa1f8b98338bab1483e595
MD5 d0f54736df6b220b0ec2a2e727836d86
BLAKE2b-256 ad5fe781cf8a66ebd346b8854dd5018714a962835fc62080d8dc8252d8e8b48f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 284b4040ce44f4f02b7ac53de54b2145675a0d5b283c4324c2d5af889bea27ff
MD5 399e954132a89acbb99d0da486fb0b7a
BLAKE2b-256 5b30fe56c5c2719e448d4bc8362d1d35b9693d4f889e5a39158f0d1033d1a30a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncpe-12.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2724c7055f67bfbee4bc12c5b35218eff87f6af8fee8dc490f15eb18c1ef520d
MD5 acdcdf87d1331a5a26d4cc97d00ead47
BLAKE2b-256 7a4997ef148590403ce7c7579f390f179aefc70281b461d655fbee34be0e64fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 d84507cc7f3a208ec90f6b4df951d6d0ac59e305466cc808a7b56e54fa97b430
MD5 232fc03e8c5df7086ca610b5155af867
BLAKE2b-256 6d82837f184a90b42ac5e094641c9858575ce5c9ed6e3057ca56cf90502e772e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 abd1dc81285cf66db89c9612dfd7a9d872620cf37be2da2cce93b28fb338aacb
MD5 13e7b3219e7304e2366a16ffadf2a0a7
BLAKE2b-256 1265afb88dce09265aa1007e047b81568a04b9eade4a0a8b01fe811963d601a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 292985b400c8dc474370fca0dcefab71867a76b6003e67c8074216ca215aa5cb
MD5 cadcb3a413ef87b89e31e23a7414460e
BLAKE2b-256 809c2d6baa06f6eafe2bd1a914f1fbbcfa2a4ebc34f55f7eacf1ad54b50e1a03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp313-cp313-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 5e5fd0adcf3d17f53abc677e945730de72ceb7ced46fcaa50a3f4ba2aadf3b36
MD5 10c0177b797b7448cfa2bf7ae20c62c1
BLAKE2b-256 e245e1faa33c5e182f54bc7414b5f952046106e5348707b6cebaef7a8888aafc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncpe-12.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 936e0ce8ac4156b159c663cc3929869d439bf244b9cb550ed691935bcd136685
MD5 d231b3a6bed7c79eec979820f8b39bb6
BLAKE2b-256 ff2dfccbb9a8108433cfbec79307b1fba824b255f7632a46de39a2a62a5cd4d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 2062b25d92e9380ac4dbb58fc2a72ef5b42db95eafd51cd11736324abe639149
MD5 a38c090593f54e3563ed885b61c78b10
BLAKE2b-256 005a198874c0c2682a102105b45680423505a98cf5090473625508a0bd707856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 c02b8deee452d447643a69859867e0a75c309a3af33fc90890a6669620c36977
MD5 21c0c66fba2cef7a9a2771d7c0c18d06
BLAKE2b-256 eb2973cdb7c0fbdf8c45b073f932c9533f6d34744afd93faa866d89fd54cb81e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77bcce033522b43e0f86e549dbac435b3ec7a012cddb116296887733e0117059
MD5 ffabec7a3313ada2fbc95df8da005407
BLAKE2b-256 64ee268638a2288be41279e5ae4c72ffcb96cf214267d1f7c442f2b7e7aabc76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp312-cp312-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 066ebcde7d9b427d9749864869ec30f36fdf75a5b1b8bc5b62776fed65d7074f
MD5 72caf4d1940f459439db8871e5cfe4c9
BLAKE2b-256 1044268aa1914f8835ff035dc79cb7b48a247f49bea27990708b836d9aabdee8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncpe-12.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 34327f6f805ba39c1dbe5af68527c6584d004f9126d5b102c3f2d34f9164aff7
MD5 f7f1e28cf3d4bf004eda86bf6e7bd456
BLAKE2b-256 10a6088e78016082dbebe8233542c1c5e37bb05dc5252a89966c043390f7731d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 faa612e3c20e6456f15d81459fddc67f76d246c618eea4a6c022f80d26626a09
MD5 1780fb3067351ebfd63763129819e7a4
BLAKE2b-256 85c4a2b7da281baea4e4586dc753eb1b463264c261eea48ecbeddd314deb71cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 072ae892110241bca399a01f294adf47ad5177c5cf37b5c88c1ff57f7377c719
MD5 c37b2701845b8005d273853bcfea2ddf
BLAKE2b-256 3f5041655e15c63a2ffefe71dd4ed954ea84d7c8c403b153dd6d3c60e52a5891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adadd66f699d6a3e988020533f336aaf55aadff0b1368eff003428042e3601a9
MD5 1f2054a3e39ff6a6aae4e7cb9e6ce9f9
BLAKE2b-256 a276760cbd1c7f7e7dfa9a6bf3e5943d94f836dadb9ef704e67eaabbae2d28c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp311-cp311-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 9378bc534109b1ed5bc30a1f2aba51fa8bf280b37691a601181a412f06e4f042
MD5 7696106461aef6b629a1c470f8442d54
BLAKE2b-256 fdb3ae138fc9a252250ffaeabc14337978fae26f8fb5157ec465cc185289f86a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncpe-12.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5b78acc1d1e68b8a9961e03408a8ffd136abdaa41564cf26dea7555d8d2f26c
MD5 50932e028794a5243ff551462d42c8ca
BLAKE2b-256 5a7a389290c245deba35d58977f6d83a3eebde98e5fc0ca1885ae542b4d1c8eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 26d403e1144c2fd29927153c193f3c93c01343658c9a76111010f67977ce8248
MD5 c76671a66805eff56ad06d69e9cbddd2
BLAKE2b-256 8c82d0834206c7edc5ff1e63747a49ea81e7a5e551d3c579b11f45e239edc5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 3b8165332d0ca4d68b6a3259890433d2c8f74bfebd4f9034df8c0d0ad8870259
MD5 3dd5f12571cc85e04b522ba3c9138aaf
BLAKE2b-256 a3e9391bec12e73cdacca9c6a84db44275da30615edfd74c928c5ad4c5e4d4d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0623640a8dbb1780037a0d86d39cc28e1ec52a497839f37977aee07f1a5f1724
MD5 ee0b530adf440efbbcd97a59e8c9fc6b
BLAKE2b-256 8239af1e03b4852819fc13670484c66aa16ca91f1d328c2693ce3aa633491c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp310-cp310-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 bec02ff5d4cd558dfa577e3ae1ccf1dce9a72953f7e85f18da603248b237f014
MD5 6f01a294b3721400f75ae8cca372f29a
BLAKE2b-256 07867db2b60299035f90aa455a0312c3308c7c17f89aca2327338af849996363

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncpe-12.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 935a343b40b4914c561b0add42c4e54c711364deed9aab37dc1299e418315207
MD5 2c79e0b80726ca572f80f1494a2b29e6
BLAKE2b-256 c0e04c287a6a2236da646ba9c057b2e7152ab3883f5bc624a4a862e311385bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 13b7c466e8aa09e02496f6cf527d2bba75508eb837ab23c18709ecf96806c3e6
MD5 752241c9d4b0f85139c3c9a1527782e3
BLAKE2b-256 5837925fff55150aa1e001609c0590a50598e4e8e736914d751edce09ac14340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 fb09172ffbd166e088414bfe4312bacbe2b7510f989aad105aeb614509b8c722
MD5 d21205bc6325825cb82b5195823e6c04
BLAKE2b-256 60045031079e25aaa5bec551c07f8c5fd93c5cdd7cb3308c7e126a0b0b0cccf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07944e0e649d7c786cd9e8413a8cc1227e46b0c405f569f38ca0c2a5f99f2a7f
MD5 4153ca563df20ba5a62c3d7f81378f19
BLAKE2b-256 17a65888f726e81ae677bdcb02b0e6ac35ff99d55d28a00c7f23e85eaf59ae50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncpe-12.8.0-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 a6a8402a59964c14bb0d7342c13b4ab27bc25469ba8754b5e2d977ac58e39bf6
MD5 e6383ab8d21897c9a82a92112987b790
BLAKE2b-256 099042ee2385198b57ef067a1981f0df4890057cc0b8daef2fca65c3f9acfca0

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