Skip to main content

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

Project description

Welcome to SaxonC-EE

This is the official Saxonica Python wheel package for Saxon, an XML document processor. SaxonC provides APIs to run XSLT 3.0 transformations, XQuery 3.1 queries, XPath 3.1, and XML Schema validation.

The SaxonC release comes in separate wheels for the three product editions:

  • saxonche (SaxonC-HE: open-source Home Edition)
  • saxoncpe (SaxonC-PE: Professional Edition)
  • saxoncee (SaxonC-EE: Enterprise Edition)

SaxonC-PE and SaxonC-EE are commercial products that require a valid license key. Licenses can be purchased from the Saxonica online store. Alternatively a 30-day evaluation license is available free of charge. By downloading the software, you are agreeing to our terms and conditions.

For full documentation for the latest SaxonC release, see the SaxonC 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 saxoncee

Getting started

Either import the whole API:

from saxoncee import *

Or specific modules:

from saxoncee import PySaxonProcessor

The SaxonC API includes classes for constructing XDM data models and for a variety of processors. For full details see the SaxonC Python API documentation.

The following short example shows how to get the Saxon version from the PySaxonProcessor:

from saxoncee import PySaxonProcessor

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

It will print something like this:

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

proc = PySaxonProcessor(license=False)
 
xsltproc = proc.new_xslt30_processor()
document = proc.parse_xml(xml_text="<doc><item>text1</item><item>text2</item><item>text3</item></doc>")
executable = xsltproc.compile_stylesheet(stylesheet_file="test.xsl")
output = executable.transform_to_string(xdm_node=document)
print(output)

For more Python examples, and further details about installing and configuring the product, see the SaxonC 13 documentation.

Using pylint on a project which uses saxoncee

Because the saxoncee is a C extension, you will need to either configure Pylint to load the module to avoid pylint errors like:

E0611: No name 'PySaxonProcessor' in module 'saxoncee' (no-name-in-module)
$ pylint --extension-pkg-allow-list=saxonche  my_module.py

Support

All users are welcome to use the public support site for reporting issues and seeking help (registration required). In addition, many questions are asked and answered on StackOverflow: please use the saxon tag.

Acknowledgement

We learned a lot about how to create Python wheels for Saxon from the Saxonpy wheel package, which is a third-party project on github.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

saxoncee-13.0.0-cp314-cp314t-win_amd64.whl (47.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

saxoncee-13.0.0-cp314-cp314t-manylinux_2_24_x86_64.whl (49.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64

saxoncee-13.0.0-cp314-cp314t-manylinux_2_24_aarch64.whl (48.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64

saxoncee-13.0.0-cp314-cp314t-macosx_11_0_x86_64.whl (48.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

saxoncee-13.0.0-cp314-cp314t-macosx_11_0_arm64.whl (46.7 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

saxoncee-13.0.0-cp314-cp314-win_amd64.whl (47.8 MB view details)

Uploaded CPython 3.14Windows x86-64

saxoncee-13.0.0-cp314-cp314-manylinux_2_24_x86_64.whl (48.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

saxoncee-13.0.0-cp314-cp314-manylinux_2_24_aarch64.whl (48.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

saxoncee-13.0.0-cp314-cp314-macosx_11_0_x86_64.whl (48.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

saxoncee-13.0.0-cp314-cp314-macosx_11_0_arm64.whl (46.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

saxoncee-13.0.0-cp313-cp313-win_amd64.whl (46.8 MB view details)

Uploaded CPython 3.13Windows x86-64

saxoncee-13.0.0-cp313-cp313-manylinux_2_24_x86_64.whl (48.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

saxoncee-13.0.0-cp313-cp313-manylinux_2_24_aarch64.whl (48.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

saxoncee-13.0.0-cp313-cp313-macosx_11_0_arm64.whl (46.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

saxoncee-13.0.0-cp313-cp313-macosx_10_11_x86_64.whl (48.1 MB view details)

Uploaded CPython 3.13macOS 10.11+ x86-64

saxoncee-13.0.0-cp312-cp312-win_amd64.whl (46.8 MB view details)

Uploaded CPython 3.12Windows x86-64

saxoncee-13.0.0-cp312-cp312-manylinux_2_24_x86_64.whl (49.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

saxoncee-13.0.0-cp312-cp312-manylinux_2_24_aarch64.whl (48.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

saxoncee-13.0.0-cp312-cp312-macosx_11_0_arm64.whl (46.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

saxoncee-13.0.0-cp312-cp312-macosx_10_11_x86_64.whl (48.1 MB view details)

Uploaded CPython 3.12macOS 10.11+ x86-64

saxoncee-13.0.0-cp311-cp311-win_amd64.whl (46.8 MB view details)

Uploaded CPython 3.11Windows x86-64

saxoncee-13.0.0-cp311-cp311-manylinux_2_24_x86_64.whl (49.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

saxoncee-13.0.0-cp311-cp311-manylinux_2_24_aarch64.whl (48.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

saxoncee-13.0.0-cp311-cp311-macosx_11_0_arm64.whl (46.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

saxoncee-13.0.0-cp311-cp311-macosx_10_11_x86_64.whl (48.1 MB view details)

Uploaded CPython 3.11macOS 10.11+ x86-64

saxoncee-13.0.0-cp310-cp310-win_amd64.whl (46.8 MB view details)

Uploaded CPython 3.10Windows x86-64

saxoncee-13.0.0-cp310-cp310-manylinux_2_24_x86_64.whl (48.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

saxoncee-13.0.0-cp310-cp310-manylinux_2_24_aarch64.whl (48.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

saxoncee-13.0.0-cp310-cp310-macosx_11_0_arm64.whl (46.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

saxoncee-13.0.0-cp310-cp310-macosx_10_11_x86_64.whl (48.1 MB view details)

Uploaded CPython 3.10macOS 10.11+ x86-64

saxoncee-13.0.0-cp39-cp39-win_amd64.whl (46.8 MB view details)

Uploaded CPython 3.9Windows x86-64

saxoncee-13.0.0-cp39-cp39-manylinux_2_24_x86_64.whl (48.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

saxoncee-13.0.0-cp39-cp39-manylinux_2_24_aarch64.whl (48.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

saxoncee-13.0.0-cp39-cp39-macosx_11_0_arm64.whl (46.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

saxoncee-13.0.0-cp39-cp39-macosx_10_11_x86_64.whl (48.1 MB view details)

Uploaded CPython 3.9macOS 10.11+ x86-64

File details

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

File metadata

  • Download URL: saxoncee-13.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 47.8 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 saxoncee-13.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7c42cae1a263c8d2384982700551fcf128183b95001ae9a1f7a1568bade8e261
MD5 38a279c0fd30d6a33c4020a901b27b68
BLAKE2b-256 7e82b0b9b748cdf281ca35fd609297504ce3fc62f9e78c1e1946f2ffd192308e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp314-cp314t-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 cd28deca8f6ff1c202d9c6790c118dab84a8c55261c40292ffc8dbed85bfcfe9
MD5 057ccddf1e2db88eca0328d2b793b93c
BLAKE2b-256 fc7d7de8f22c0fd3ba9490f644fefac76414d6fcb23040f826acadb53fe57d90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp314-cp314t-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 61e57defa466312e0ada5c1ec60b1ef24df459a30308576e813e30a10f464337
MD5 5da0eb3f850c17f22d04dc8cff664811
BLAKE2b-256 05ee52d758c678adb4335bdd16204ffeac61ac6faa7081c7dcf27e05e7e3d689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d467a28a99fdd41093c302d094734765860dc21923fc4015b72b1914d896cb3f
MD5 60850262dc3f1504964769f579faca80
BLAKE2b-256 54a496a078c272540ca02711c0fcc62ac458c4871cba9692abb37ed773a04e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 471a1d6c18ab75d1fe066b999b02d1d9c797f173693d096dbe6c21bc8d9bdc76
MD5 e415aec357b77c0399a0cff93f9d93ee
BLAKE2b-256 c82625a3cbe256d687b3ce74a18ebe6217bf0b701c125d0d4d5ce1c0fedc4a61

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncee-13.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d3a51f5dffb0bd3375fa8f97be29316a68a2c2585b4ae9790ba341f0bcf1a768
MD5 6c8cf464eb02e74eeb62c6ca09ef0839
BLAKE2b-256 1f4916e78b2227bffb0ce55d9e342ea62108cb6b7e1a856ad5d1e76d5a91eb20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 0677fb03b62f84b44fbba1c5682831448a11b873fe3ff59b065fc081e891e268
MD5 7553fde01cefb2ff68fd2eae5a41a299
BLAKE2b-256 dc98ee92ed3ef9e06683de57126784ad7e8f5c0e74a412828d9bb239c6d2d53b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 860b68c9a540bab4b8159fda8104fdb3aba38359227ea33bd3f8d41e08cd2787
MD5 e960274e8adbab998e078f624d97e4a0
BLAKE2b-256 01c34cf693c3991a837b2564eca9d93e8c679ce3828383b598e45136b0a4100f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ed68bd36330877e11dcedf6d87f3d64ea281ba5bf0e654688058cc07a4261a93
MD5 3c529b4fb12f365d0d5c2ce237de6450
BLAKE2b-256 3cf6de50b73a2181d3b5412c50da05dcb1116bcbdc2ef4fc3b6967c99b9c4305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61bac1635c8ac800e243182263bc63d6654fffd22b34934376647f34d3ab8e81
MD5 f3a479666e3b1b0349915804d763016e
BLAKE2b-256 d18f4126ce0391890b291856cff5dbfeb1c534cddbac92ac2e35a42b26de7bf6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncee-13.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 791e92328ae24016f3d3bcb93f94ca2e4d3d28ca0ec2688b3e17671a91ac4c0e
MD5 272900506206ee25243d88573d7f3f1c
BLAKE2b-256 88485faa601a747c65a5eb5070645e543c41f904c34b1a6b46cf3804923d3bc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 d6460e9af7a3681ffffe80772c153389c0dba8f7eb733ac3e85c7c530776dfd7
MD5 d26164f62567473a88c01da4a13e9a12
BLAKE2b-256 7ad0528d6ead15778091e30bf578822125804791d232f635510089769de29572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 e747fe96fdc5f50d95dc1e0a58488deb01be4d78fc3dafe241458c8f3230b90e
MD5 6b53c33d87fde75b0fbab7b753185bba
BLAKE2b-256 26f830c2f3a141507f0f77a86aba6413c624eecc4eb140973b09ad3936c80f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f07925b7ed13e853ed0a9a20164bf37aa08692666e7be46d7777bba271fefc59
MD5 444bfa789f062566d861881e4bad0ebf
BLAKE2b-256 e1eb06938b78c7e451fe88eab2b6b3fbd303e3fd397645174dafc7d816565339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp313-cp313-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 f8456c93d5aa2609d3c18c64fdc132d80f10cc82477105873b9836b563ccef05
MD5 5e430e43696941fb6a2491d6f50cce23
BLAKE2b-256 39ad8bc33f06850f41d9b91b95d501662de78d798fa5ea4479677e300bd95fd0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncee-13.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3c1f5a42694d4a632a00039b22bf271b9449af955c065ad36ab7def4b8b4f10a
MD5 0af58a9ddc87bc6e73469d2255691dac
BLAKE2b-256 7ebdd15d42ece0157890dc0b46752ee81d805832ab9a079c6e0371dfc2ebaf88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 7fb65f65ec8b0b77f229f03c157af3c7e63ff68825dcbe2b8c6a5ae8b942d215
MD5 ab759f4d7553ba26c6ae6ca642f24d4d
BLAKE2b-256 24a4fb3e7a7ce6aec707d40dea1f70e3f70fa3e54a6bf1898fc96da173198685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 0cdca2e5c8687c1a399e9ce4c7489237c3ce6b06eb96b4e30976e04db0aed50a
MD5 914d75fc4908ae95a533d275ca7dbe20
BLAKE2b-256 40ce61b6cf3992aa7771e9f1e732ca2ae9d9313ae1f89757893b04061dd1993c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb45fedb26d6f67d9fe68d8c1f19deb016c8c869cbecc977f82078fa429a6d55
MD5 b6e43f38bee892a8b46e888be75d0fb3
BLAKE2b-256 33fbdf224946f99a3142d417767dfdb8feae9c745605c621e16f261ae28616fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp312-cp312-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 ccadae5f84f895df18783d2cb0a2fde738d4f4bc22ce414a995f21f5e463595a
MD5 b586ac53e1f9599d92a730a2739eaf57
BLAKE2b-256 26d981e6788454c0abba5cefdaeff6796e5742520bca2393464852f20db8bed2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncee-13.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a8a5988e54aaf62a66804d130f0c757c1b73fcc1d7b6736faea9d43d9ad738b6
MD5 d375dc144ac461f9401dedbb5363724d
BLAKE2b-256 5c2564b5c77238355b5e6e19f3f674c9e64e305a6d3fc19dfe3318319677195f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 dfecb1d4930273f5e53a74b0827101091ae4e863b2b76aaf25da2baa54451750
MD5 0457732d43b84367203e701c99ea8804
BLAKE2b-256 498d96bc32523e2d4bb4601d63c7bc5b602c96e8f7017bc9dab2bc30d2176f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 186f1fc79647fd1ec05c4ad12a16642ac78c907f14af61e7277389170e88019b
MD5 3717c092cd79295154835dc6bf5f6b58
BLAKE2b-256 d371d604c3e6466b38c0bbdeaa50cd0a804bedcf4dde222dda2a028978957a94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee152340368d3edf7e29e80a73abd79e98f08118b44b8424cc34fbe73bdcce73
MD5 dd547ea8bf37bf4c813568b89570e3f1
BLAKE2b-256 95fa14408c1722ada4148a2fa288b56c2b130e702ce19e8cd85549f3016fdc85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp311-cp311-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 a7616b80e61c44183092463fa985183f95dc807e2e8cce91ad7d2a3daa3ecb73
MD5 2a9a5b210e8ee2656dd4051a7d2e06fb
BLAKE2b-256 7d5ec234e07fce3e8eb6bc58fa849e133a78a794c724968de5d003041e89185e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncee-13.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f64940cf5c71f923effadb7118768e845c7c888b61b5499933ae755039f4a203
MD5 777279be359ac29c69dcb7bac68ffa45
BLAKE2b-256 4be0b29964bdaf9ae2a7506a3dd433bd2181fcecd4533600d89bbd1d758ea10e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 04fc70d37ea4f7d2e1928da586e6bec5871f9b39ed04d0eb7586fc5045fe4a05
MD5 9dfab62ae029aeb228084e17ce02b9c5
BLAKE2b-256 68a83b6199a6b4cd3c680568e6b54d22d0127546eb390e4c20af673cb6b31baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 113373c2cebdfa95cde5e03e610782ff003a7b857b41eb9df89fa66bd505bb5f
MD5 d0f02d6f018b4cf1507b53aefa66d8c9
BLAKE2b-256 06853fe7c189d86a24ec169001b582f7172582916c239bda04c80e4d221d4b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbf04ddce5a87a5498b8c8a9ece1897a3289aa79cd580b4ae17e3d3fcfdaef94
MD5 4d1c4efe4d18d4964efa8976ded6798d
BLAKE2b-256 052997e6104ca943cec831d8a1c10672db555d9fd09b4a383074dda6a398f6d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp310-cp310-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 da3085533b1f77e5c9bab6791fbef9cd8783824a88d8e5bf0d0a8374265350db
MD5 491de12de193484aaa826305cd7fee9e
BLAKE2b-256 3d686c02adf1b47eaeae552b01c7fabd12aa9da3fa0ba0f91a1bb8bb4f7c629d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for saxoncee-13.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 62720994e9ef8d22d440c94dbaba38ab843783302867348479d3e67631aff816
MD5 0ff45f26dc6397e2ff3c56bf595f19a6
BLAKE2b-256 68981178fc8d15856c62add8d2c25b9b3f749e26844112eb3fb12759190e5cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 f39ae17660b5ce6583e63f808e1f470b912358163b27228c6f0e5387100401bd
MD5 c82c940d7e356360944729546a9094ff
BLAKE2b-256 1627c79c9d666d495b3241e548e54b7f1204a837671aba9f7d7afe6646519859

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 34274676b4b80c927c4afc2a040b4a47d521253996d0ebf178e9598e6733963a
MD5 7073a8cc242d501a2e08fff919c570db
BLAKE2b-256 0442496b4371bbed2df27bb3236541a0abe7033faa6651556618ab0a3494ed96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f40e3b88f59d4ae494ab646e68fdbaa8a56942c352918494f3b3898d3f7dde6
MD5 24eeeba116318198b8d5093974840b1e
BLAKE2b-256 06c1d7c229ceb23700d796a489e41239cf3729dc7b900db2f83acd6077837700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-13.0.0-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 81268602bba105e31c028e0cb0707ddeaffbc665b15bb3fc79ccb53210f7778b
MD5 8f662e9eaeeb3307288af9aa5e278c35
BLAKE2b-256 f2c94a4e8129c22b47c7aed4373df3f2a9cd5a112a53d09c3bd549cd184fad7d

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