Skip to main content

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

Project description

Welcome to SaxonC-HE

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 saxonche

Getting started

Either import the whole API:

from saxonche import *

Or specific modules:

from saxonche 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 saxonche import PySaxonProcessor

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

It will print something like this:

SaxonC-HE 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 saxonche 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 saxonche

Because the saxonche 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 'saxonche' (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.

saxonche-13.0.0-cp314-cp314t-manylinux_2_24_x86_64.whl (42.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64

saxonche-13.0.0-cp314-cp314t-manylinux_2_24_aarch64.whl (42.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64

saxonche-13.0.0-cp314-cp314t-macosx_11_0_x86_64.whl (41.6 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

saxonche-13.0.0-cp314-cp314t-macosx_11_0_arm64.whl (40.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

saxonche-13.0.0-cp314-cp314-manylinux_2_24_x86_64.whl (42.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64

saxonche-13.0.0-cp314-cp314-manylinux_2_24_aarch64.whl (41.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64

saxonche-13.0.0-cp314-cp314-macosx_11_0_x86_64.whl (41.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

saxonche-13.0.0-cp314-cp314-macosx_11_0_arm64.whl (40.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

saxonche-13.0.0-cp313-cp313-manylinux_2_24_x86_64.whl (42.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64

saxonche-13.0.0-cp313-cp313-manylinux_2_24_aarch64.whl (41.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64

saxonche-13.0.0-cp313-cp313-macosx_11_0_arm64.whl (40.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

saxonche-13.0.0-cp313-cp313-macosx_10_11_x86_64.whl (41.6 MB view details)

Uploaded CPython 3.13macOS 10.11+ x86-64

saxonche-13.0.0-cp312-cp312-manylinux_2_24_x86_64.whl (42.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64

saxonche-13.0.0-cp312-cp312-manylinux_2_24_aarch64.whl (41.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64

saxonche-13.0.0-cp312-cp312-macosx_11_0_arm64.whl (40.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

saxonche-13.0.0-cp312-cp312-macosx_10_11_x86_64.whl (41.6 MB view details)

Uploaded CPython 3.12macOS 10.11+ x86-64

saxonche-13.0.0-cp311-cp311-manylinux_2_24_x86_64.whl (42.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

saxonche-13.0.0-cp311-cp311-manylinux_2_24_aarch64.whl (41.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64

saxonche-13.0.0-cp311-cp311-macosx_11_0_arm64.whl (40.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

saxonche-13.0.0-cp311-cp311-macosx_10_11_x86_64.whl (41.6 MB view details)

Uploaded CPython 3.11macOS 10.11+ x86-64

saxonche-13.0.0-cp310-cp310-manylinux_2_24_x86_64.whl (42.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

saxonche-13.0.0-cp310-cp310-manylinux_2_24_aarch64.whl (41.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64

saxonche-13.0.0-cp310-cp310-macosx_11_0_arm64.whl (40.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

saxonche-13.0.0-cp310-cp310-macosx_10_11_x86_64.whl (41.6 MB view details)

Uploaded CPython 3.10macOS 10.11+ x86-64

saxonche-13.0.0-cp39-cp39-manylinux_2_24_x86_64.whl (42.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

saxonche-13.0.0-cp39-cp39-manylinux_2_24_aarch64.whl (41.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64

saxonche-13.0.0-cp39-cp39-macosx_11_0_arm64.whl (40.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

saxonche-13.0.0-cp39-cp39-macosx_10_11_x86_64.whl (41.6 MB view details)

Uploaded CPython 3.9macOS 10.11+ x86-64

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp314-cp314t-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 904616e139498429c1cd9a791f602526bc80cae47e44a76c00c7eaae7e286045
MD5 6da8badebabaeae3b82199454f2142de
BLAKE2b-256 e9f116aa68cade7f4b7ad316624ab9e3e258577a76e33ae36ff314aa4c3d64c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp314-cp314t-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 8e2c2e120ca927ebac84430283f5b7cda28f73372a4b8c5f5a3e8dfdbea3702c
MD5 f3a068573beaa6bb69c89c614c2fbbd2
BLAKE2b-256 52b1eb3c6a38fc82aff6416d587087f58601a67d10bf13cbdc8473eb8a1427e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cf793d03d15582bfcfd9065b20476a2932b9af5612e7703eac1d257782934718
MD5 f6394a1320a6e1fe261382810e929f75
BLAKE2b-256 3779af5287eb605e92ec04d3e79af5aeceb23af2543da50817353266ad1496ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e66becf854635f65aa74e3647766be81034c94e80e7e6efe70bcb2c4eee48dc0
MD5 7d98c06e5fdbc8b2028735bbf33eb824
BLAKE2b-256 601dcdaf33dc078d77456ffe0f7a9d3a4974ef9d511e4f88361da966e3eeba97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp314-cp314-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 5642a59a3eab771e9a5dfb39638b1b20c61da5467e6d441b79250eb3beadfb66
MD5 2a9037cce91165d3e222af352f131728
BLAKE2b-256 28c6f9e6cc024e5e899bcca4c4b730457c1990b2c62197d470867a3b7aef796b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp314-cp314-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 557df07f5c7280da4cf066c1d16a0bc57281e33c3042fe9e881222f3ffd0c2b2
MD5 a56d69ace52daa06373429d97ead7a55
BLAKE2b-256 b0400ed698395b0fd216a6ef95c9fe1435648ca80a7ebf1289d422a6d97928a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ea9ffe40e8a47997b7b522bb202af2e73eca7f609f9ac07980f8ab944c5b8eaa
MD5 5fe1b55a9a7ef6d1e29f0a2cdc23018d
BLAKE2b-256 26b01d49b576adee2f7becf6e104ca65c5e6de7b1297fec88f48b3845ebb743a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22d2f3315258d3bfe53bee1a0b50e231aba9d17d8fa3f49f2b58074523d2cfe3
MD5 04a8a882090f1e6dc64033c81a0c93c8
BLAKE2b-256 e71e470e354c09a5a44efd48df555657be7a365f29079d59962f4faa36ca9eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp313-cp313-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 db7333b004b811e2e0860f3e63de8abddb78ea77da8b385e8a478adaf6c98a8f
MD5 7dc94ab2c9df6065ed27a2a2bbf12e41
BLAKE2b-256 330bb7d1999a3e885ffb19415c1dbc3008d623508825affa7ab00cf027ff817e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp313-cp313-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 04388b0625617df696e26f6c04b06479111a55e6cd86a7e00fbf5e2a38446523
MD5 020d4234ca8ce9e34a48fbe0232d7d3d
BLAKE2b-256 9ab256a2881c2cd8d78c32bbdad2c6280250d85142e4ce165af9731101cfc6a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a09e9646c63e470bc83e51293e91ac69eb7dd4876a87e5faae5aa6c56811d348
MD5 d288fb216e34da715a6a698db2ed99a7
BLAKE2b-256 6005f6fb0d5e1077e3baca6d5b211dbb4d6770a27913f78492fba4e398975559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp313-cp313-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 0dfeaedd747a159a1026c011936e45d3faa4c671ac7f48709b9279070830616b
MD5 235d5ae9b9500e23fc2f76968cb253a4
BLAKE2b-256 4739f1d8c9f22a203fd8aef91ebdc1b1eeab671781035a9acfc4edbcd7b81405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp312-cp312-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 d190a1021636c11a85a410cf62cc7f8fd78cb1a756dabaa12d5a1e03bc236a3d
MD5 8ab83b6c2e2b94f970d64e38f2bdd7e5
BLAKE2b-256 f92d98d05807c21e65e5a569052ae0a7fbcd465c6f1ac4fbfdd29bbff537ea9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp312-cp312-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 b3cc0862a67ebb863eebdcc2ed4b75e97d48114b798eca9149213758942ee122
MD5 6b11fe7b3123d5256f8fcb44d2f87ced
BLAKE2b-256 51d34d563d0de45d9b49765ddaff3866119ca76e754e35c8c62ccaa7a179ee1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5189518d3a25588147a667a8c2e605fcc879a69a7f7d7567a3940ffffa9a05e
MD5 be3dd6a27cf97034b41cb4fcd36e79fa
BLAKE2b-256 f937b6767148a0e3ad54c71ecfdae09f9e602680877de1e5c382c619a2b6e253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp312-cp312-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 256e03c865b04dacbdb5385f86c0e71759671ff7ad59ef39c56f8862b4fc5a46
MD5 42fdbf3d6f5ae88a1fe089b3f0ef66f1
BLAKE2b-256 121d6a555839ea469cb5b33907ab5cd4544cda9e7d57b210374f3a48a19be608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 92cb29bf2139dd014b30e6be5313e2770a86d8b7d9c71df9c2ad70b4d4849791
MD5 7cecb6f5391b91722ee986be4b11d4b2
BLAKE2b-256 aff10e32f42342ec6fb481d9e3072d1d24b2ef8c06d6efd81fb9ada3efe4dfcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp311-cp311-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 46d831f083f70c00a09013898ff58469430082be08f891d0ca93fe2ee2467d3d
MD5 f9a9c6cdf2b53649bdbad09928410ea7
BLAKE2b-256 a8168ad2fd72981c9b67a26b6b19680bdff2a3360e9d510ea4b0326c9a94f2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6ae3f24f80f299c9f0e24dbc6bc1f43571f8496a7f87cdbf4d66933ef838ea7
MD5 b5c5da6bb2b51e8c4c53fad5a6b4bc13
BLAKE2b-256 de10bc53ea7c13f0f3fc6e5a012bc53ccfe3eccd2703f6bbfde4eebe9e4163d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp311-cp311-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 224ffa2dcbea735ea205cf588882ad74542fa7f74ca872ed038edf495fb43ff3
MD5 4d59387e875164addb415c67afebbdc1
BLAKE2b-256 11249f1de4c276548dc44429ec797994ef7ff762e1bab5534468f6a19d75cfb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 baa0db73ddbcaa7350c016d194d4563cce59bcbaaddbe0150b42c3a49b8bfc73
MD5 c8f68750587996a0d53cd24a9f85e77b
BLAKE2b-256 ae8a3fba9f4d1f77c63fc0ef82ed8ccdf67096f40f895ade104b6fc09209b898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp310-cp310-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 d10447fdd03980744c0853a191416fb1e8ce0d63fa53e6a4a1a466c0f13b8ecf
MD5 2cdfc851e010a4547916ae155b6df2e6
BLAKE2b-256 3626683f1e3891c52d61f8a9ca28b7888ed206cea6a7971334b979c0ff989867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a95d9dafca85ddaf6b13d659eb247da6e7e52eb5642cccb2841dda04ffc2470
MD5 098ae94a1ba5cc06d03c55927736c3c0
BLAKE2b-256 3c2fdf7e618667ab105309c57023fd30777003da341a24f0805eba17c28b25d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp310-cp310-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 f1e6871afa572b50efd89a502bb2bf28eefc3987d66a08e74bbf174bd9608f97
MD5 3f31b793e2d911f175e380d5e41700c7
BLAKE2b-256 1cccbe96f9dcdf8efc90c212b250b5243b7ecfe223ae350948762ced9b12b3d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 f0a94273cb43cb8d4c5eb434222c64198e6608777b9bd771fc2578f080b3c277
MD5 3357015fbb3a70265981ce32e2f72e0e
BLAKE2b-256 d4f16798802873aad0f07df22c86086922049fa1be0b9031d4616e0e3e0d3d6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp39-cp39-manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 f29e4496a317a159efe77e3188afaba0f99a6a10557f02f40ccc26cff2e66205
MD5 c10d7641a0744b41b3f79933d0691237
BLAKE2b-256 95c0b7ad756d16af4a078ba17d8070ceef698c09130c55a709b45497fa2e492a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b0fbb69f6ef358febddb61b65b64aa0b7b868aa50a5e52dec16f37bf3e38447
MD5 3fb059d87bf86b887d8af066f96d6579
BLAKE2b-256 e511093936555915b2a0b1de18e4b1c79480cf23b3c1626eb53abd86da783a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for saxonche-13.0.0-cp39-cp39-macosx_10_11_x86_64.whl
Algorithm Hash digest
SHA256 7ce71dc2bc157d6957a247deeccd5ac28ec5767ddb410a3b90409e4058a31f51
MD5 4316be2013335da1941f43130decbd6f
BLAKE2b-256 f5d62827a83e562c49220ec9877f24ae0c191cc3fb9766526b373242ad858f95

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