Skip to main content

Official Saxonica python package for the SaxonC-EE 12.9.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 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 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 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 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 12 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-12.9.0-cp314-cp314-win_amd64.whl (41.0 MB view details)

Uploaded CPython 3.14Windows x86-64

saxoncee-12.9.0-cp314-cp314-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

saxoncee-12.9.0-cp314-cp314-manylinux_2_24_aarch64.whl (42.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

saxoncee-12.9.0-cp314-cp314-macosx_11_0_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

saxoncee-12.9.0-cp314-cp314-macosx_11_0_arm64.whl (39.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

saxoncee-12.9.0-cp313-cp313-win_amd64.whl (40.3 MB view details)

Uploaded CPython 3.13Windows x86-64

saxoncee-12.9.0-cp313-cp313-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

saxoncee-12.9.0-cp313-cp313-manylinux_2_24_aarch64.whl (42.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

saxoncee-12.9.0-cp313-cp313-macosx_11_0_arm64.whl (39.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

saxoncee-12.9.0-cp313-cp313-macosx_10_11_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.13macOS 10.11+ x86-64

saxoncee-12.9.0-cp312-cp312-win_amd64.whl (40.3 MB view details)

Uploaded CPython 3.12Windows x86-64

saxoncee-12.9.0-cp312-cp312-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

saxoncee-12.9.0-cp312-cp312-manylinux_2_24_aarch64.whl (42.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

saxoncee-12.9.0-cp312-cp312-macosx_11_0_arm64.whl (39.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

saxoncee-12.9.0-cp312-cp312-macosx_10_11_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.12macOS 10.11+ x86-64

saxoncee-12.9.0-cp311-cp311-win_amd64.whl (40.3 MB view details)

Uploaded CPython 3.11Windows x86-64

saxoncee-12.9.0-cp311-cp311-manylinux_2_24_x86_64.whl (43.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

saxoncee-12.9.0-cp311-cp311-manylinux_2_24_aarch64.whl (42.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

saxoncee-12.9.0-cp311-cp311-macosx_11_0_arm64.whl (39.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

saxoncee-12.9.0-cp311-cp311-macosx_10_11_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.11macOS 10.11+ x86-64

saxoncee-12.9.0-cp310-cp310-win_amd64.whl (40.3 MB view details)

Uploaded CPython 3.10Windows x86-64

saxoncee-12.9.0-cp310-cp310-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

saxoncee-12.9.0-cp310-cp310-manylinux_2_24_aarch64.whl (42.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

saxoncee-12.9.0-cp310-cp310-macosx_11_0_arm64.whl (39.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

saxoncee-12.9.0-cp310-cp310-macosx_10_11_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.10macOS 10.11+ x86-64

saxoncee-12.9.0-cp39-cp39-win_amd64.whl (40.3 MB view details)

Uploaded CPython 3.9Windows x86-64

saxoncee-12.9.0-cp39-cp39-manylinux_2_24_x86_64.whl (43.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

saxoncee-12.9.0-cp39-cp39-manylinux_2_24_aarch64.whl (42.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

saxoncee-12.9.0-cp39-cp39-macosx_11_0_arm64.whl (39.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

saxoncee-12.9.0-cp39-cp39-macosx_10_11_x86_64.whl (41.1 MB view details)

Uploaded CPython 3.9macOS 10.11+ x86-64

File details

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

File metadata

  • Download URL: saxoncee-12.9.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 41.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 saxoncee-12.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9282313e301694858af2b90b448d94472416d08397898d94c4ce53c9eb5df0ad
MD5 7520919ae84b6e91684c44d97c27d708
BLAKE2b-256 13de5bb34aba468e6685f828a376844522a75ab9eda8b15c59c9540d0db33e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 872dea9961fecd319c4d7ec5ea037f4d147eb1389ada4822b253228962a8f17b
MD5 5fc7628237b56c639851f31bb295f261
BLAKE2b-256 699763265d315a0aeeef9d7b677edaf2d4db8eb09ccd039596e4b94f84328fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 63b6f9187111fa495c7c45871fe2bb8234c039e9c0e73dac07d292577e66c6be
MD5 f58957d1c96484eb2b6a164f8a9c9403
BLAKE2b-256 975965e977e15dbed5e89612640be22f30fecc14c5803ee4a141c82b8fdd512c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9c418de26847acc40e0633e067f3f6059effba0953c26adae0db4e4b71d67c0c
MD5 c5ef2adc498ec9355d7655e46536abf7
BLAKE2b-256 07996c6e840857ce93b8b5e54365ec0e172ff4b4f7d16d61f8627422cf6ef05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf8babff59f912cd37e14cc52d21205228821ef27869cf80b160e6b481e0cc59
MD5 c10b5ce3e138ffd5bad98f7155acb9f0
BLAKE2b-256 8c87003bbedff3b5577fdc2f719dc92ec779d0ea3162b561235e8dcc168f6eef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 40.3 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 saxoncee-12.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 df2341e6098fea38793d678852beaf5f65c36013a5145035f154193ee6a085e3
MD5 76e21fc768dbd7c81650615bd80f6687
BLAKE2b-256 c78066a7ec612f06a067c7f03243164716184176247e06849f669c1c39c53685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 eaddb2df1343753659366c8a38881a77c4434b1a0e9c52f34f0754e8a0427e05
MD5 5019c013a4ac8f6dc26e79dc51e96576
BLAKE2b-256 729d3fb012542be094117a0ff152bdcb31314503ef5afd1f2184dda05a347658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 e1e2394a1d6889aa2724f47b9eff3f1682e27447bd3440da966c47911925f97e
MD5 b19c8e3f58746b195051c15d7196982e
BLAKE2b-256 207aed121885fa846642669ac4fa39e3407cc74a4f6cf55f02f547c4c3964350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96b4bb29076c88d98b180b9e5cff93cc4476b6b5a98b71f69a102d8b36a4239d
MD5 f09ee46cc4862b3b2da5038dcbab97dd
BLAKE2b-256 2999fee1fa4a9ae18b96e987729fca2c309ad936d7fae04038b4e74e1c435fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp313-cp313-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 0c6ac30b207489a90d37f291c2de4e4a507cd8c307b9640464042b24cc8238bb
MD5 607534e371bc93716cd23452cbfe2ec8
BLAKE2b-256 c872cf4c81126c26921d009f69b67b343697f0a993c7ac0fe2b01d780d2a1582

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 40.3 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 saxoncee-12.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 28fb22c9aa92dbada1071ff61b00cfe04b93490b112b5e0fc52415d1f352fe9a
MD5 8f71ec378b6260fb0ddef491123e5990
BLAKE2b-256 ed71f71f42bd95cf0341a3262549b8f57c98650b900123a3d46164479722a2e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 e7ba813713e6ee401c50828216261764b477597879150dc8c3d57932d25592ed
MD5 5ddfcdbbc211d6a22672cc9341e46be5
BLAKE2b-256 37007a0443f5f8ecb44e51c7a8f08f8f246909183d6614dc5cf62ade38873018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 50b11f9f8b4169c2b09d08bd43b5bac6eaea81ea7f2920d1119d6381113ddd35
MD5 12d66184ff1b43bcbf0203c5370a1785
BLAKE2b-256 71db9cbe0c4a6df35754ddb74fc7850fc252f64c5f40a1d171abbc500937a22c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a520834673ec070120f40bbab07bd6448b308d1be03c04c03661319ef8328a4
MD5 63fb0bf9d76751daa5c185acdb6cbbca
BLAKE2b-256 c3ab884a7211ec5a596508cb50abd920c8311c98198ca3203c418513cd942f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp312-cp312-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 08aeb8edadba6e258977e7d1a48984896110f0e311208dc370d7db595986a2dc
MD5 41866cc8fdea373b2024df5c1bad601a
BLAKE2b-256 607f7a45c6ac32e5a096cb722798822bebc75bdd0d3de681f0cb421cf03c404d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 40.3 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 saxoncee-12.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c3de03d861ddd5d97e83b6ab5000f287ea710ed3d72b128497d71a0fcfc4bc4e
MD5 1f8be6d2efb0f6bcb16a00d5d5daf954
BLAKE2b-256 40ed5851d44cf085b10ae2c7220883c23ce22019cd33c74c0a404b5c8bc22fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 396a9dd203ed6beb0a1704cbb8d934a9ca1cd2b8f8e246ba6f4a8a4bbeeb38a8
MD5 3dfda89767dfb247ae9a3d9b14c4df31
BLAKE2b-256 54c25921d68543758a15e39cfd780c25c9d5c2f2d4bcc9cc66fe85771b2f3668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 a6881af6bae703871bff260eb433d6c426682e2d63d058f02bcf36b5c38fdb7e
MD5 5ea1e00fe913fd0f9093eed2615f25ce
BLAKE2b-256 109d327b0b78a201878161a21191a032c5fb00276fe9298b65fe7f3942240b5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74644514984a903f2cef6aecd19204fe2f7f3ec8a27ad6435221d8f0912dc677
MD5 c3b83dbe19d352c9368cce98974112cb
BLAKE2b-256 5da83d77c8dfeed6972eb40fd2d7cffe3068b46a34142a1d64418346fd671aaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp311-cp311-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 3fd796ff1d0f4609a4cc36a0cd976e576c3f175af4c6bd630b2831cb3927f151
MD5 44e3014adb4b027bd73cda9697c71cab
BLAKE2b-256 79499b658fcd31e6cfb49930540624be75026566d1feae718b3d3534cb93b84f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 40.3 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 saxoncee-12.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 506bd04adb323bc89ef62f9eff0e95b1ce76ca7d2a8e2494a36ad1115199c561
MD5 776c5c2c762e9c08e9e8ccfce3e95d9b
BLAKE2b-256 52353d456da5c6ab4b0fb741f96e0ff7e8fb288260ba08cb3e547fc80ac951af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 ad805a195e16374aeb280eec38b1df31053117d44b0a9d6c03ffe476d5763022
MD5 0516eb352a3cdf354b21617bb8f474be
BLAKE2b-256 9fad5e11661b0a675540bc4f478f3884a9c41abd003aa267d4acc5d413a66d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 717bc9ea3aee0083aff250299ccc0e6c03f0632b0c02364c931bc830ef3d8c42
MD5 a8ebf4476342073a41351cd432cfe443
BLAKE2b-256 3f7034eed8c0eaed61e95e72e5be683c748ca32af0ca7c0b19dec9dae984b2dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82668d51cac7a7e75646db9422fd13fedeef767699e5416968e733e1a296eefc
MD5 57e4003bda7fa411cb301c5e198714ea
BLAKE2b-256 deffea0289e334e7397339428151425acbdba410fdca4a8d1a1b9c283eab8b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp310-cp310-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 73cc57f7259d3467f635498a5de7401998577d1526375a6762026a48a5549c66
MD5 579b7578d4dff9f79ddd72f28468108d
BLAKE2b-256 cade776d1d76c1cc6281a8f1a42baa2ce82a4f5b90112971ad21bdc6f9d73254

See more details on using hashes here.

File details

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

File metadata

  • Download URL: saxoncee-12.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 40.3 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 saxoncee-12.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 90549268fbd22020381737bd70653dfcb4e9418fc10514a62eaeb02b760dd70e
MD5 1e0f9aaeb7dcf1a839b5c9af4475d583
BLAKE2b-256 4f15063b5d6bb0b9c6581b0c0e519c80e05a55ba6def9fc0fe9795ca0d2768e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 a5065c7fdda9fdb746fd2763ad85d473394e46737a3250adc99040663de4bedc
MD5 c861b7ca03814fa2221f511924c374f9
BLAKE2b-256 1a45e27ff20df0cd6c3986f9b4562636df637f2ff45c692765522c90a376f920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 aaaba42ec30145185af2f3ab384a274d43b52e3200f2f7fcc66e874380a16cab
MD5 58dd4608a674859d76f8a8847a197aa1
BLAKE2b-256 069a3fe082f75ecaf8564a0889aaab79cd05d0bcc2f27246f049e6ef000e42ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b585a73b212be4671a3e9be65d1345e4ae5cbba598ea9e03388ec4b2a445f19
MD5 85477bedd2dbeac2ee0d40af234b9383
BLAKE2b-256 2066271ef93817d9ae5a013d6a15d81c84bcb6973d71bfd4e229a89322cd46b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxoncee-12.9.0-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 529bb20fa43d437ed2ea7e4f236d3c849ce053aefcc7ddf8c6c8e3227438b692
MD5 aabeafe0ca8c4f54b13f9a96864eaf07
BLAKE2b-256 266c16fcc1166c85f4574fab9bbf7bad17acbdaf51814be3685bb145ced840b7

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