saxonche


Namesaxonche JSON
Version 12.4.2 PyPI version JSON
download
home_pagehttps://www.saxonica.com/saxon-c/index.xml
SummaryOfficial Saxonica python package for the SaxonC-HE 12.4.2 processor: for XSLT 3.0, XQuery 3.1, XPath 3.1 and XML Schema processing.
upload_time2024-01-25 18:12:59
maintainer
docs_urlNone
authorONeil Delpratt
requires_python>=3.8
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Welcome to SaxonC-HE

This is the official [Saxonica](https://www.saxonica.com/) Python wheel package for
Saxon, an XML document processor. [SaxonC](https://www.saxonica.com/saxon-c/index.xml) 
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](https://www.saxonica.com/shop/shop.xml). 
Alternatively a 30-day [evaluation license](https://www.saxonica.com/download/download.xml) 
is available free of charge. By downloading the software, you are agreeing to our 
[terms and conditions](https://www.saxonica.com/license/terms.xml).

For full documentation for the latest SaxonC release, see the
[SaxonC 12 documentation](https://www.saxonica.com/saxon-c/documentation12/index.html).

## 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

```bash
pip install saxonche
```

## Getting started

Either import the whole API:

```python 
from saxonche import *
```

Or specific modules:

```python 
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](https://www.saxonica.com/saxon-c/documentation/index.html#!api/saxon_c_python_api).

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

```python
from saxonche import PySaxonProcessor

with PySaxonProcessor(license=False) as proc:
	print(proc.version)
```

It will print something like this:

```bash
SaxonC-HE 12.4.2 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 where the main SaxonC library has been 
installed, and the directory identified by the environment variable `SAXONC_HOME`.

### 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:

```python 
from saxonche import *

with PySaxonProcessor(license=False) as proc:
 
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](https://www.saxonica.com/saxon-c/documentation12/index.html).



## Support

All users are welcome to use the public [support site](http://saxonica.plan.io) for 
reporting issues and seeking help (registration required). In addition, many 
questions are asked and answered on [StackOverflow](https://stackoverflow.com): 
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](https://github.com/tennom/saxonpy).

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.saxonica.com/saxon-c/index.xml",
    "name": "saxonche",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "ONeil Delpratt",
    "author_email": "oneil@saxonica.com",
    "download_url": "",
    "platform": null,
    "description": "# Welcome to SaxonC-HE\n\nThis is the official [Saxonica](https://www.saxonica.com/) Python wheel package for\nSaxon, an XML document processor. [SaxonC](https://www.saxonica.com/saxon-c/index.xml) \nprovides APIs to run XSLT 3.0 transformations, XQuery 3.1 queries, XPath 3.1, and \nXML Schema validation.\n\nThe SaxonC release comes in separate wheels for the three product editions:\n* **saxonche** (SaxonC-HE: open-source Home Edition)\n* **saxoncpe** (SaxonC-PE: Professional Edition) \n* **saxoncee** (SaxonC-EE: Enterprise Edition)\n\nSaxonC-PE and SaxonC-EE are commercial products that require a valid\nlicense key. Licenses can be purchased from the \n[Saxonica online store](https://www.saxonica.com/shop/shop.xml). \nAlternatively a 30-day [evaluation license](https://www.saxonica.com/download/download.xml) \nis available free of charge. By downloading the software, you are agreeing to our \n[terms and conditions](https://www.saxonica.com/license/terms.xml).\n\nFor full documentation for the latest SaxonC release, see the\n[SaxonC 12 documentation](https://www.saxonica.com/saxon-c/documentation12/index.html).\n\n## Why choose SaxonC?\n\nThe main reason for using SaxonC in preference to other XML\ntools available for Python is that it supports all the latest W3C\nstandards: XSLT 3.0, XPath 3.1, XQuery 3.1, and XSD 1.1. It even\nincludes experimental support for the draft 4.0 specifications\ncurrently under development.\n\n## About SaxonC\n\nSaxonC is a version of Saxon developed by compiling the Java source code to native \nexecutables that run on the C/C++ platform, with extensions for PHP and Python. All \nfeatures of Saxon have been ported, other than those (such as collations) that are \nnecessarily platform dependent. In particular, SaxonC provides processing in XSLT, \nXQuery and XPath, and Schema validation. It therefore makes these processing capabilities \navailable to a plethora of other languages that are strongly coupled to C/C++ such as PHP, \nPerl, Python, and Ruby.\n\n\n## About Saxonica\n\nSaxon is developed by Saxonica, a company created in 2004 by Michael Kay, who was \nthe editor of the XSLT 2.0 and 3.0 specifications in W3C. The original Saxon product \non the Java platform has been continually developed for over 20 years, and has \nacquired a reputation for standards conformance, performance, and reliability.\n\n\n## Installation\n\n```bash\npip install saxonche\n```\n\n## Getting started\n\nEither import the whole API:\n\n```python \nfrom saxonche import *\n```\n\nOr specific modules:\n\n```python \nfrom saxonche import PySaxonProcessor\n```\n\nThe SaxonC API includes classes for constructing XDM data models\nand for a variety of processors. For full details see the [SaxonC Python API \ndocumentation](https://www.saxonica.com/saxon-c/documentation/index.html#!api/saxon_c_python_api).\n\nThe following short example shows how to get the Saxon version from\nthe `PySaxonProcessor`:\n\n```python\nfrom saxonche import PySaxonProcessor\n\nwith PySaxonProcessor(license=False) as proc:\n\tprint(proc.version)\n```\n\nIt will print something like this:\n\n```bash\nSaxonC-HE 12.4.2 from Saxonica\n```\n\n**Note**: `license=False` requests the open-source version of Saxon, whereas \n`license=True` requests the commercial product - which requires a license file.\nSaxonC looks for the license key in the directory where the main SaxonC library has been \ninstalled, and the directory identified by the environment variable `SAXONC_HOME`.\n\n### Example: Running a transformation\n\nThe following basic example shows how an XSLT stylesheet can be run against a source \nXML document in Python using SaxonC:\n\n```python \nfrom saxonche import *\n\nwith PySaxonProcessor(license=False) as proc:\n \nxsltproc = proc.new_xslt30_processor()\ndocument = proc.parse_xml(xml_text=\"<doc><item>text1</item><item>text2</item><item>text3</item></doc>\")\nexecutable = xsltproc.compile_stylesheet(stylesheet_file=\"test.xsl\")\noutput = executable.transform_to_string(xdm_node=document)\nprint(output)\n```\n\nFor more Python examples, and further details about installing and configuring the product, \nsee the [SaxonC 12 documentation](https://www.saxonica.com/saxon-c/documentation12/index.html).\n\n\n\n## Support\n\nAll users are welcome to use the public [support site](http://saxonica.plan.io) for \nreporting issues and seeking help (registration required). In addition, many \nquestions are asked and answered on [StackOverflow](https://stackoverflow.com): \nplease use the **saxon** tag.\n\n## Acknowledgement\n\nWe learned a lot about how to create Python wheels for Saxon from the\nSaxonpy wheel package, which is a third-party project\n[on github](https://github.com/tennom/saxonpy).\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Official Saxonica python package for the SaxonC-HE 12.4.2 processor: for XSLT 3.0, XQuery 3.1, XPath 3.1 and XML Schema processing.",
    "version": "12.4.2",
    "project_urls": {
        "Homepage": "https://www.saxonica.com/saxon-c/index.xml"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6eec256382b8822a44f3ea8b2191e8da79423a8ff7530b925998c806d374097c",
                "md5": "0f9eb73bb103c3c24bf3f35f66d6b555",
                "sha256": "7a4f89fe2628fa0bdac0490ef9d5cd1fc5e1069488965c28df2447b6a938634e"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f9eb73bb103c3c24bf3f35f66d6b555",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 17333285,
            "upload_time": "2024-01-25T18:12:59",
            "upload_time_iso_8601": "2024-01-25T18:12:59.234901Z",
            "url": "https://files.pythonhosted.org/packages/6e/ec/256382b8822a44f3ea8b2191e8da79423a8ff7530b925998c806d374097c/saxonche-12.4.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5712b6659c77e0882017fa27984fdc4b21e361bf7973a2d66c7000886f81e7de",
                "md5": "edd7542156b9dca99feb944c011c2bf2",
                "sha256": "fa785811cc8d39622ba722763d598d81729876735121abbf9b15c7523356c417"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "edd7542156b9dca99feb944c011c2bf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 17380109,
            "upload_time": "2024-01-25T18:13:06",
            "upload_time_iso_8601": "2024-01-25T18:13:06.930243Z",
            "url": "https://files.pythonhosted.org/packages/57/12/b6659c77e0882017fa27984fdc4b21e361bf7973a2d66c7000886f81e7de/saxonche-12.4.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8c2a6a1356d6388934a719da0382c319ff233488d9cf3120672555ccfbfa5d7",
                "md5": "d0f7140b3a3138caec63ac7de2bd8f5e",
                "sha256": "d57239fb6dfeaeb0ad072b4804ab7526ad2bbec699f14e6573021a4f2e8cb4fb"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d0f7140b3a3138caec63ac7de2bd8f5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 20011208,
            "upload_time": "2024-01-25T18:13:16",
            "upload_time_iso_8601": "2024-01-25T18:13:16.626653Z",
            "url": "https://files.pythonhosted.org/packages/b8/c2/a6a1356d6388934a719da0382c319ff233488d9cf3120672555ccfbfa5d7/saxonche-12.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a56a1f07408dc83c8cff49b2df164fa8c339d3d755af1944ee1a098a5f4337b2",
                "md5": "b66fa80c65b1910e4958e6ed9080840d",
                "sha256": "4c6194fa404122acfd8e47024069b8ee634822c5cf998dabe10a7bd283d24d07"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b66fa80c65b1910e4958e6ed9080840d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 19971330,
            "upload_time": "2024-01-25T18:13:25",
            "upload_time_iso_8601": "2024-01-25T18:13:25.004258Z",
            "url": "https://files.pythonhosted.org/packages/a5/6a/1f07408dc83c8cff49b2df164fa8c339d3d755af1944ee1a098a5f4337b2/saxonche-12.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a7fa37b80fbe5efb3d1caaced832a0155722854b214b4daeeee33c073f2c937",
                "md5": "e35cc0148e62c8ddca094393dfa115a9",
                "sha256": "f8741f3720e641b302a46da7eade27f9b7533ca1449632f6e7a96ec53ccd17e4"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e35cc0148e62c8ddca094393dfa115a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 17075169,
            "upload_time": "2024-01-25T18:13:32",
            "upload_time_iso_8601": "2024-01-25T18:13:32.514145Z",
            "url": "https://files.pythonhosted.org/packages/3a/7f/a37b80fbe5efb3d1caaced832a0155722854b214b4daeeee33c073f2c937/saxonche-12.4.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1b424b4009f9379c47d30977c424e791a532703d510f21e08e4df225733734b",
                "md5": "5de00586232a259032699facc34ba007",
                "sha256": "c145acb3727bbb639211c477d487732b45341711c5d486561749ad93741e2c67"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5de00586232a259032699facc34ba007",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 17332464,
            "upload_time": "2024-01-25T18:13:39",
            "upload_time_iso_8601": "2024-01-25T18:13:39.950622Z",
            "url": "https://files.pythonhosted.org/packages/b1/b4/24b4009f9379c47d30977c424e791a532703d510f21e08e4df225733734b/saxonche-12.4.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02eeda4f910a07d83541a41f2ba69e98af4bce8d560f281415e9ed1cb72b65d7",
                "md5": "748ef89e623e29159cab74c5e6d701b7",
                "sha256": "2e1428f01026326d0d72b860e16cc76e277d6a6ca64a6a05561982d95009f175"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "748ef89e623e29159cab74c5e6d701b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 17379318,
            "upload_time": "2024-01-25T18:13:48",
            "upload_time_iso_8601": "2024-01-25T18:13:48.284815Z",
            "url": "https://files.pythonhosted.org/packages/02/ee/da4f910a07d83541a41f2ba69e98af4bce8d560f281415e9ed1cb72b65d7/saxonche-12.4.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e85445fb7c89179ebe56f7ea0102b061775d363bed7d99df8b8039a2996b5ba1",
                "md5": "1b15f77e059efc28a2d285d1f38920f8",
                "sha256": "20529c4c8f46a6c78a6ad886b7ef5d7564bb55a656c2d1e43548bd8983ac6af7"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b15f77e059efc28a2d285d1f38920f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 20128807,
            "upload_time": "2024-01-25T18:13:58",
            "upload_time_iso_8601": "2024-01-25T18:13:58.972826Z",
            "url": "https://files.pythonhosted.org/packages/e8/54/45fb7c89179ebe56f7ea0102b061775d363bed7d99df8b8039a2996b5ba1/saxonche-12.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "feb8a2a668362b362e1472b9d7731d0b88f2f2c5068a8c3d0c247ce79ea8b0b6",
                "md5": "e884a5a2b3e94b85cf2fb380ebabd677",
                "sha256": "6f9edec161e1a79a88678a8a00d62ca4abb6fa952ea65509d3afc3b43c4a0116"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e884a5a2b3e94b85cf2fb380ebabd677",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 20097086,
            "upload_time": "2024-01-25T18:14:08",
            "upload_time_iso_8601": "2024-01-25T18:14:08.732543Z",
            "url": "https://files.pythonhosted.org/packages/fe/b8/a2a668362b362e1472b9d7731d0b88f2f2c5068a8c3d0c247ce79ea8b0b6/saxonche-12.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b10264e3091871a7f5bf7dc0c741ec0bd3c0f121359f71ea18632438a909beff",
                "md5": "8e5354a34378b5f542431e97a618a7bd",
                "sha256": "8d928f5d69b24d9da891b882028211e9da95ed43392a8c8687aedf64093becc9"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8e5354a34378b5f542431e97a618a7bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 17075287,
            "upload_time": "2024-01-25T18:14:15",
            "upload_time_iso_8601": "2024-01-25T18:14:15.080673Z",
            "url": "https://files.pythonhosted.org/packages/b1/02/64e3091871a7f5bf7dc0c741ec0bd3c0f121359f71ea18632438a909beff/saxonche-12.4.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65de1df344ce2e33249fea02bfec61369fd4ed511066b3e06f13a8de543f59ad",
                "md5": "b6b50f860845084d9feb653636559872",
                "sha256": "a92eb99cc3370e30625db8fa24e570d6d4accd45460616ac0c805a97a35868e2"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b6b50f860845084d9feb653636559872",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 17330975,
            "upload_time": "2024-01-25T18:14:22",
            "upload_time_iso_8601": "2024-01-25T18:14:22.028532Z",
            "url": "https://files.pythonhosted.org/packages/65/de/1df344ce2e33249fea02bfec61369fd4ed511066b3e06f13a8de543f59ad/saxonche-12.4.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad039bcc5856ea97974c1a669855d904352204887d6156f44781cec067e01887",
                "md5": "fab6a997fb1708fc2001e8d856a62816",
                "sha256": "e8501503b79795e4be4209e7bb6af8907c7e9288a3d67b225b1e2140f86881a3"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fab6a997fb1708fc2001e8d856a62816",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 17381411,
            "upload_time": "2024-01-25T18:14:29",
            "upload_time_iso_8601": "2024-01-25T18:14:29.600095Z",
            "url": "https://files.pythonhosted.org/packages/ad/03/9bcc5856ea97974c1a669855d904352204887d6156f44781cec067e01887/saxonche-12.4.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e1f9a8ad6f53bfb06db48a00def38ae0dfc5348ad715e40b1215efd876f1ca0",
                "md5": "e6a1066f3da25cdeb4dd3dc45fc034d4",
                "sha256": "6f7056c513783671eeb1389c091c7047c236668170cb7b98a0d19f53d18470a2"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e6a1066f3da25cdeb4dd3dc45fc034d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 20006648,
            "upload_time": "2024-01-25T18:14:39",
            "upload_time_iso_8601": "2024-01-25T18:14:39.104717Z",
            "url": "https://files.pythonhosted.org/packages/0e/1f/9a8ad6f53bfb06db48a00def38ae0dfc5348ad715e40b1215efd876f1ca0/saxonche-12.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a3acc306d7a714dc21560edc444fcc2d5916c8772434abdc393c0506af0a0f8",
                "md5": "6bd91039f2cd256c8279d11b7d5074a4",
                "sha256": "47cdc2314db85a77905117f1ac261f4a090c5a0454c0c2a8c29fcc49134c89dd"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bd91039f2cd256c8279d11b7d5074a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 19985317,
            "upload_time": "2024-01-25T18:14:48",
            "upload_time_iso_8601": "2024-01-25T18:14:48.739415Z",
            "url": "https://files.pythonhosted.org/packages/2a/3a/cc306d7a714dc21560edc444fcc2d5916c8772434abdc393c0506af0a0f8/saxonche-12.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5800ba53b4ac47e875f09a58cbca28ce14d722ae8350a60ff77261222974f5b9",
                "md5": "6d23b948dafa323d8e37edf185c947c3",
                "sha256": "b3aad9cf51c7f89366479c9fe01b71df33f663e18f7c0ae4b31dc36b2e3e392b"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d23b948dafa323d8e37edf185c947c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 17072848,
            "upload_time": "2024-01-25T18:14:56",
            "upload_time_iso_8601": "2024-01-25T18:14:56.474112Z",
            "url": "https://files.pythonhosted.org/packages/58/00/ba53b4ac47e875f09a58cbca28ce14d722ae8350a60ff77261222974f5b9/saxonche-12.4.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0102b20f04dff90bdd1770c9da86676a167dc4c899da9d4de354f2d9b137b5d2",
                "md5": "96f6f26778e6e38427164f243431a368",
                "sha256": "c7a714ef4e770a0be39800392ffd41ea1ff267988bed27aaf0dbff2c73c2a72e"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96f6f26778e6e38427164f243431a368",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 17339604,
            "upload_time": "2024-01-25T18:15:04",
            "upload_time_iso_8601": "2024-01-25T18:15:04.627077Z",
            "url": "https://files.pythonhosted.org/packages/01/02/b20f04dff90bdd1770c9da86676a167dc4c899da9d4de354f2d9b137b5d2/saxonche-12.4.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcdc167b36304578ee4c37c8c8668379fc460a24af81186bf6d0570df8b7c051",
                "md5": "c1039b6fa2c5ae9af2f075cc212acb6a",
                "sha256": "d9a0bc2ce92f3772e10a13ad54b2db2f95857c12ef3a5975c2f306477494b6a9"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c1039b6fa2c5ae9af2f075cc212acb6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 17383919,
            "upload_time": "2024-01-25T18:15:13",
            "upload_time_iso_8601": "2024-01-25T18:15:13.463874Z",
            "url": "https://files.pythonhosted.org/packages/dc/dc/167b36304578ee4c37c8c8668379fc460a24af81186bf6d0570df8b7c051/saxonche-12.4.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a40e8ea03c00092e4689959997e0b0f5d7d5cc157c5b6617c49e43dc4c38484",
                "md5": "92ce1e811db5a907b593e581125f4faf",
                "sha256": "9eff667f60fcae35d10f29dc9c7d6854c03ff32dfe64eaa846b8088820cfa0bf"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92ce1e811db5a907b593e581125f4faf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 20036511,
            "upload_time": "2024-01-25T18:15:23",
            "upload_time_iso_8601": "2024-01-25T18:15:23.159788Z",
            "url": "https://files.pythonhosted.org/packages/1a/40/e8ea03c00092e4689959997e0b0f5d7d5cc157c5b6617c49e43dc4c38484/saxonche-12.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9edb4fd0ff1dcf0abfbc4f76660dec9982a9a8e584e6385d0cd435606e847757",
                "md5": "0e39d29c1763645373eb6c6872f2b24a",
                "sha256": "4724e96130f42eefbef31e976b57dc7a23d3d9532616e95f72f8f76ffa6146ab"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e39d29c1763645373eb6c6872f2b24a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 19983880,
            "upload_time": "2024-01-25T18:15:31",
            "upload_time_iso_8601": "2024-01-25T18:15:31.799091Z",
            "url": "https://files.pythonhosted.org/packages/9e/db/4fd0ff1dcf0abfbc4f76660dec9982a9a8e584e6385d0cd435606e847757/saxonche-12.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2201a92c8b78a81d481fda9824d0893ef4d93ed3b4d0ae66b6a0d8c86eaa8da",
                "md5": "ab75b6fb5b6a2b7aae4a1be163c0f071",
                "sha256": "7ac5f7066045b7df8cf6dd5de6faafe9ee062353dbf9bd5645e4077e66a98811"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ab75b6fb5b6a2b7aae4a1be163c0f071",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 17102494,
            "upload_time": "2024-01-25T18:15:38",
            "upload_time_iso_8601": "2024-01-25T18:15:38.984879Z",
            "url": "https://files.pythonhosted.org/packages/d2/20/1a92c8b78a81d481fda9824d0893ef4d93ed3b4d0ae66b6a0d8c86eaa8da/saxonche-12.4.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0278a55d78a70c596a4a7e0fd50e6c52df2f20126c715c5dd27bd7665912a9d",
                "md5": "ca2b5ee8e8266d9a1103d3a2173dd1cf",
                "sha256": "d27a4d04e08dd05ddb919dff29b6d53c4fa25fcefd7aa8658e0b55246c0bf41e"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca2b5ee8e8266d9a1103d3a2173dd1cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 17334204,
            "upload_time": "2024-01-25T18:15:46",
            "upload_time_iso_8601": "2024-01-25T18:15:46.754440Z",
            "url": "https://files.pythonhosted.org/packages/d0/27/8a55d78a70c596a4a7e0fd50e6c52df2f20126c715c5dd27bd7665912a9d/saxonche-12.4.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "995429278f6951f010bd608119967cc879490d42ad1ac23ea09a247b2327e0dc",
                "md5": "4f86350fc22adf43aa8ad93e1c0652be",
                "sha256": "af14d0c785cd696e84b2928168819124fa666a0c404b96eec376fe658bdd9bef"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4f86350fc22adf43aa8ad93e1c0652be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 17380633,
            "upload_time": "2024-01-25T18:15:54",
            "upload_time_iso_8601": "2024-01-25T18:15:54.741466Z",
            "url": "https://files.pythonhosted.org/packages/99/54/29278f6951f010bd608119967cc879490d42ad1ac23ea09a247b2327e0dc/saxonche-12.4.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b631724badd6cad292bb3c39132fec3c2b4e74cfe21bc36744ab127f7cc39391",
                "md5": "98a50f39dd9ee909aa217c2950067131",
                "sha256": "fd9b51e5330daf40e2435dce1dbdb15ce5c0d3ff888e4ef171f466b97343050d"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "98a50f39dd9ee909aa217c2950067131",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 20014926,
            "upload_time": "2024-01-25T18:16:05",
            "upload_time_iso_8601": "2024-01-25T18:16:05.315555Z",
            "url": "https://files.pythonhosted.org/packages/b6/31/724badd6cad292bb3c39132fec3c2b4e74cfe21bc36744ab127f7cc39391/saxonche-12.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9da2cdf174411b6db39950179d64fbf8fe408401997f89635dd0dbf14badfa20",
                "md5": "b1fa1d16d9c86e43b8e17ed9d0c3ef24",
                "sha256": "05e6828d5432a293453dfdc54315cca9c0f344557b2dd3756a55ab999e319f65"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1fa1d16d9c86e43b8e17ed9d0c3ef24",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 19963519,
            "upload_time": "2024-01-25T18:16:13",
            "upload_time_iso_8601": "2024-01-25T18:16:13.656761Z",
            "url": "https://files.pythonhosted.org/packages/9d/a2/cdf174411b6db39950179d64fbf8fe408401997f89635dd0dbf14badfa20/saxonche-12.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c3a2372a621d9635b77057c4493241e557fce27ea7dad8474f41d80e045f11f",
                "md5": "f5b7da549e73005043afd8d43d0f208f",
                "sha256": "604391c4400b344850e59265c399e626e252aae25ebfa415fadcf1e4245d9f74"
            },
            "downloads": -1,
            "filename": "saxonche-12.4.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5b7da549e73005043afd8d43d0f208f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 17075202,
            "upload_time": "2024-01-25T18:16:20",
            "upload_time_iso_8601": "2024-01-25T18:16:20.660998Z",
            "url": "https://files.pythonhosted.org/packages/6c/3a/2372a621d9635b77057c4493241e557fce27ea7dad8474f41d80e045f11f/saxonche-12.4.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-25 18:12:59",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "saxonche"
}
        
Elapsed time: 0.18471s