pyorc


Namepyorc JSON
Version 0.9.0 PyPI version JSON
download
home_pagehttps://github.com/noirello/pyorc
SummaryPython module for reading and writing Apache ORC file format.
upload_time2023-11-04 18:52:15
maintainer
docs_urlNone
authornoirello
requires_python>=3.6
licenseApache License, Version 2.0
keywords python3 orc apache-orc
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            PyORC
=====

.. image:: https://dev.azure.com/noirello/pyorc/_apis/build/status/noirello.pyorc?branchName=master
    :target: https://dev.azure.com/noirello/pyorc/_build?definitionId=1
    :alt: Azure Pipelines Status

.. image:: https://codecov.io/gh/noirello/pyorc/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/noirello/pyorc
    :alt: Codecov code coverage

.. image:: https://readthedocs.org/projects/pyorc/badge/?version=latest
    :target: https://pyorc.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

Python module for reading and writing `Apache ORC`_ file format. It uses the Apache ORC's Core C++ API
under the hood, and provides a similar interface as the `csv module`_ in the Python standard library.

Supports only Python 3.8 or newer and ORC 1.7.

Features
--------

- Reading ORC files.
- Writing ORC files.
- While using Python's stream/file-like object IO interface.

That sums up quite well the purpose of this project.

Example
-------

Minimal example for reading an ORC file:

.. code:: python

        import pyorc

        with open("./data.orc", "rb") as data:
            reader = pyorc.Reader(data)
            for row in reader:
                print(row)

And another for writing one:

.. code:: python

        import pyorc

        with open("./new_data.orc", "wb") as data:
            with pyorc.Writer(data, "struct<col0:int,col1:string>") as writer:
                writer.write((1, "ORC from Python"))

Contribution
============

Any contributions are welcome. If you would like to help in development fork
or report issue here on Github. You can also help in improving the
documentation.

.. _Apache ORC: https://orc.apache.org/
.. _csv module: https://docs.python.org/3/library/csv.html

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/noirello/pyorc",
    "name": "pyorc",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "python3,orc,apache-orc",
    "author": "noirello",
    "author_email": "noirello@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d8/17/2d4547c17b3b6a977fd48a2566b783ce049449045262b26dc8e9be4c4ccc/pyorc-0.9.0.tar.gz",
    "platform": null,
    "description": "PyORC\n=====\n\n.. image:: https://dev.azure.com/noirello/pyorc/_apis/build/status/noirello.pyorc?branchName=master\n    :target: https://dev.azure.com/noirello/pyorc/_build?definitionId=1\n    :alt: Azure Pipelines Status\n\n.. image:: https://codecov.io/gh/noirello/pyorc/branch/master/graph/badge.svg\n    :target: https://codecov.io/gh/noirello/pyorc\n    :alt: Codecov code coverage\n\n.. image:: https://readthedocs.org/projects/pyorc/badge/?version=latest\n    :target: https://pyorc.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n\nPython module for reading and writing `Apache ORC`_ file format. It uses the Apache ORC's Core C++ API\nunder the hood, and provides a similar interface as the `csv module`_ in the Python standard library.\n\nSupports only Python 3.8 or newer and ORC 1.7.\n\nFeatures\n--------\n\n- Reading ORC files.\n- Writing ORC files.\n- While using Python's stream/file-like object IO interface.\n\nThat sums up quite well the purpose of this project.\n\nExample\n-------\n\nMinimal example for reading an ORC file:\n\n.. code:: python\n\n        import pyorc\n\n        with open(\"./data.orc\", \"rb\") as data:\n            reader = pyorc.Reader(data)\n            for row in reader:\n                print(row)\n\nAnd another for writing one:\n\n.. code:: python\n\n        import pyorc\n\n        with open(\"./new_data.orc\", \"wb\") as data:\n            with pyorc.Writer(data, \"struct<col0:int,col1:string>\") as writer:\n                writer.write((1, \"ORC from Python\"))\n\nContribution\n============\n\nAny contributions are welcome. If you would like to help in development fork\nor report issue here on Github. You can also help in improving the\ndocumentation.\n\n.. _Apache ORC: https://orc.apache.org/\n.. _csv module: https://docs.python.org/3/library/csv.html\n",
    "bugtrack_url": null,
    "license": "Apache License, Version 2.0",
    "summary": "Python module for reading and writing Apache ORC file format.",
    "version": "0.9.0",
    "project_urls": {
        "Homepage": "https://github.com/noirello/pyorc"
    },
    "split_keywords": [
        "python3",
        "orc",
        "apache-orc"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9d78ed3eb577abd607cdcd8f12ff11ea68f90ed625a33109e7d5a36e7083756",
                "md5": "1660ca37962f234332bca4a41a07a489",
                "sha256": "8a6962d71eb4d6b5dde74430ac725c42c5789e1ac481b705b689c0899d19ae7d"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1660ca37962f234332bca4a41a07a489",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 4096689,
            "upload_time": "2023-11-04T18:49:51",
            "upload_time_iso_8601": "2023-11-04T18:49:51.623340Z",
            "url": "https://files.pythonhosted.org/packages/d9/d7/8ed3eb577abd607cdcd8f12ff11ea68f90ed625a33109e7d5a36e7083756/pyorc-0.9.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7f197be770064a0f7f614df5ec0e79ba15d9d9ce0a8e549161ee3bd415e75c3",
                "md5": "96f61750b6be024a2b3db33d10a829d6",
                "sha256": "8a3cd4bc84192acac031f136a804718e278280b1daf64e2f65496458f4d7c799"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96f61750b6be024a2b3db33d10a829d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2096397,
            "upload_time": "2023-11-04T18:49:54",
            "upload_time_iso_8601": "2023-11-04T18:49:54.884902Z",
            "url": "https://files.pythonhosted.org/packages/e7/f1/97be770064a0f7f614df5ec0e79ba15d9d9ce0a8e549161ee3bd415e75c3/pyorc-0.9.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c63376a504b878c2dc793b78f7c0d8ea7a733841a62f8f08277057e419d40f7",
                "md5": "03ba7558aa47490905db063f20733f5d",
                "sha256": "d132e80db8be69a2e63059390d4960f7dc9a3f639e389e756fe9903e4e5c6212"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "03ba7558aa47490905db063f20733f5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2595531,
            "upload_time": "2023-11-04T18:49:57",
            "upload_time_iso_8601": "2023-11-04T18:49:57.866133Z",
            "url": "https://files.pythonhosted.org/packages/2c/63/376a504b878c2dc793b78f7c0d8ea7a733841a62f8f08277057e419d40f7/pyorc-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fbc562b2969cf806f4539e290d92b877bee9be6c1ac87cb6a73cc02bd49c9e3",
                "md5": "5a2b738ed2f1dff28db2d9a74644c29f",
                "sha256": "64bff497e3735ee97c1cb507bdd836e4c92b3e738e6897df2e6413973762c0e8"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a2b738ed2f1dff28db2d9a74644c29f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 2714817,
            "upload_time": "2023-11-04T18:50:01",
            "upload_time_iso_8601": "2023-11-04T18:50:01.139623Z",
            "url": "https://files.pythonhosted.org/packages/2f/bc/562b2969cf806f4539e290d92b877bee9be6c1ac87cb6a73cc02bd49c9e3/pyorc-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4381d744c17f708492c9a7d19d39fa921c2d23a362a276d0765af07d095e860",
                "md5": "37c68b607af1b75d929901255d847e69",
                "sha256": "1701049d5e27484b15242b2c375d918773a673db13d59bfaa241ba2f63725afb"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "37c68b607af1b75d929901255d847e69",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3124098,
            "upload_time": "2023-11-04T18:50:04",
            "upload_time_iso_8601": "2023-11-04T18:50:04.499502Z",
            "url": "https://files.pythonhosted.org/packages/f4/38/1d744c17f708492c9a7d19d39fa921c2d23a362a276d0765af07d095e860/pyorc-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd87046f3a3f8d1aa00d60d78bd4ee1a578ae624a6253e7294065ad32854d08d",
                "md5": "a4ac253d9312162a04f92541c6a103ff",
                "sha256": "c8e1055713364b5e5774f151d01748d0b27a15a199ef66eceb3ec2c410ff0fbd"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4ac253d9312162a04f92541c6a103ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 3240128,
            "upload_time": "2023-11-04T18:50:08",
            "upload_time_iso_8601": "2023-11-04T18:50:08.023163Z",
            "url": "https://files.pythonhosted.org/packages/fd/87/046f3a3f8d1aa00d60d78bd4ee1a578ae624a6253e7294065ad32854d08d/pyorc-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbe4e79edca2b640c580e17ea69722d866c1f4d8bc4b1220d276639bf4555be3",
                "md5": "1c370162d014ee736a2feaab2463d194",
                "sha256": "895ecea373ce5c27ad2e2733155892a4488818ad9bfa3b3dde52f35c17766912"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1c370162d014ee736a2feaab2463d194",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 906443,
            "upload_time": "2023-11-04T18:50:10",
            "upload_time_iso_8601": "2023-11-04T18:50:10.682411Z",
            "url": "https://files.pythonhosted.org/packages/bb/e4/e79edca2b640c580e17ea69722d866c1f4d8bc4b1220d276639bf4555be3/pyorc-0.9.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25e45ac23218636b58eb52666db6fc575d9543ba04bfbeedfd85854ca55adbb6",
                "md5": "40e21df3cc1607a6987c028c4ac66f71",
                "sha256": "2ba83b47818cfb4583a24a08699d0dfc92c1101bee4f0a4fe5dd8f8a77605956"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "40e21df3cc1607a6987c028c4ac66f71",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 4100781,
            "upload_time": "2023-11-04T18:50:14",
            "upload_time_iso_8601": "2023-11-04T18:50:14.457194Z",
            "url": "https://files.pythonhosted.org/packages/25/e4/5ac23218636b58eb52666db6fc575d9543ba04bfbeedfd85854ca55adbb6/pyorc-0.9.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0652c310a91cb38fc471b9bcf0ae2021d543d76d3ed44f0bb43abc4cb2b7002",
                "md5": "c39cb6e74e2bd74c8beb5c35bd7186c5",
                "sha256": "306b833c8c5b759f8f86bcc3b72c9b83850b165543b9048126ac9674bee33fac"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c39cb6e74e2bd74c8beb5c35bd7186c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2098368,
            "upload_time": "2023-11-04T18:50:17",
            "upload_time_iso_8601": "2023-11-04T18:50:17.337975Z",
            "url": "https://files.pythonhosted.org/packages/f0/65/2c310a91cb38fc471b9bcf0ae2021d543d76d3ed44f0bb43abc4cb2b7002/pyorc-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a1de751a5f9f76d7539bb845c6e58c80341c749fa2554946304263e00da9af4",
                "md5": "bf81aa766029d42223f4b8cc108f7786",
                "sha256": "7f727124c539d33c57351be12002f9553cd8630e98797892a92c5ca365157c7b"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bf81aa766029d42223f4b8cc108f7786",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2596669,
            "upload_time": "2023-11-04T18:50:20",
            "upload_time_iso_8601": "2023-11-04T18:50:20.420316Z",
            "url": "https://files.pythonhosted.org/packages/5a/1d/e751a5f9f76d7539bb845c6e58c80341c749fa2554946304263e00da9af4/pyorc-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a4856688aaf086bb025c3825783eb5a0e43e170fb605a814636ed8e121e4ae8",
                "md5": "8b7bfb83b74f009e3a01b240809cf08a",
                "sha256": "c8c16195d15781596646c27f4070a11dc3004b5c0fd7c020abf09825f08b62f3"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b7bfb83b74f009e3a01b240809cf08a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 2717192,
            "upload_time": "2023-11-04T18:50:23",
            "upload_time_iso_8601": "2023-11-04T18:50:23.497959Z",
            "url": "https://files.pythonhosted.org/packages/6a/48/56688aaf086bb025c3825783eb5a0e43e170fb605a814636ed8e121e4ae8/pyorc-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74b91689e573fd2b6319ecdf488e440b98343a7de5a161b8a842c7696a658b8d",
                "md5": "553ec70c0f383341fa69ed051788afd2",
                "sha256": "f6aac2bbf35eef8580a6e422a8f2c1ebac23f6523a05e8e4db70569a79e66a04"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "553ec70c0f383341fa69ed051788afd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3125445,
            "upload_time": "2023-11-04T18:50:26",
            "upload_time_iso_8601": "2023-11-04T18:50:26.308107Z",
            "url": "https://files.pythonhosted.org/packages/74/b9/1689e573fd2b6319ecdf488e440b98343a7de5a161b8a842c7696a658b8d/pyorc-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a317e624c37df3abd2ae7c30a79d12a76ecc3579b5e708ec54d09384b1b6cad2",
                "md5": "67c444b2c9a88843b223fe7deb2b2b5d",
                "sha256": "9159b82e356fee6b0f95fa134e3196ff7866276744d40295cff881c7ad33724f"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67c444b2c9a88843b223fe7deb2b2b5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 3241728,
            "upload_time": "2023-11-04T18:50:29",
            "upload_time_iso_8601": "2023-11-04T18:50:29.306436Z",
            "url": "https://files.pythonhosted.org/packages/a3/17/e624c37df3abd2ae7c30a79d12a76ecc3579b5e708ec54d09384b1b6cad2/pyorc-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db4c7bee04452d04e4d8c227e37c055a8837e0ea430c4fd3d29a5f6197008f96",
                "md5": "331455d92f65b65ad83cefa18eb38590",
                "sha256": "99371c660bdd5b1d04619808b697819ea00bb2ad6d835232290c48f68a8bdd86"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "331455d92f65b65ad83cefa18eb38590",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 906982,
            "upload_time": "2023-11-04T18:50:31",
            "upload_time_iso_8601": "2023-11-04T18:50:31.383558Z",
            "url": "https://files.pythonhosted.org/packages/db/4c/7bee04452d04e4d8c227e37c055a8837e0ea430c4fd3d29a5f6197008f96/pyorc-0.9.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4aa1c4139f94aaffd95beba07744001b5a749a04dde2ad1722ca2ff8fbadd09",
                "md5": "eb9522e9f160cf1c77a09f5711a1c37c",
                "sha256": "aadec992e313a5b98e67f495f12ef470199bd539e01d3f5498625a029aa4a7a2"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "eb9522e9f160cf1c77a09f5711a1c37c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 4103759,
            "upload_time": "2023-11-04T18:50:34",
            "upload_time_iso_8601": "2023-11-04T18:50:34.190058Z",
            "url": "https://files.pythonhosted.org/packages/c4/aa/1c4139f94aaffd95beba07744001b5a749a04dde2ad1722ca2ff8fbadd09/pyorc-0.9.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e18959574705798652bf49e50e14d9d6661f04e8e76cfd0e05f01fbac096f42",
                "md5": "3eb5bc0bde411a5d3bc393f435c57254",
                "sha256": "a1894fb0bb580b13a10417a9a204a5ebd4fae3c901c10d35045f29c46d9ea776"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3eb5bc0bde411a5d3bc393f435c57254",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 2101429,
            "upload_time": "2023-11-04T18:50:36",
            "upload_time_iso_8601": "2023-11-04T18:50:36.776455Z",
            "url": "https://files.pythonhosted.org/packages/2e/18/959574705798652bf49e50e14d9d6661f04e8e76cfd0e05f01fbac096f42/pyorc-0.9.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b0815f4caa802753c885cfeb427c0179fb68fed0963b1fa749b01291921a160",
                "md5": "3a7dc451f8d15b1e2d46441551ced488",
                "sha256": "ff8810ef63d151325428860b6ed9c176efd252d3201fe53a213c931182fa8495"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a7dc451f8d15b1e2d46441551ced488",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 2595739,
            "upload_time": "2023-11-04T18:50:39",
            "upload_time_iso_8601": "2023-11-04T18:50:39.859942Z",
            "url": "https://files.pythonhosted.org/packages/4b/08/15f4caa802753c885cfeb427c0179fb68fed0963b1fa749b01291921a160/pyorc-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7edef4a403153202c90cb72eb6de58e32ca7e334f9757105fd9a686fc4247dbf",
                "md5": "46b3d3acc1e34ae0a7b9edf52e9c91d2",
                "sha256": "622ba3157ecac8ad6ba3cf141cb820dd9894658b95da6059f5bec47dc00fdc70"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46b3d3acc1e34ae0a7b9edf52e9c91d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 2712756,
            "upload_time": "2023-11-04T18:50:43",
            "upload_time_iso_8601": "2023-11-04T18:50:43.326415Z",
            "url": "https://files.pythonhosted.org/packages/7e/de/f4a403153202c90cb72eb6de58e32ca7e334f9757105fd9a686fc4247dbf/pyorc-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8520927397cce32ac3bf11688c7863dd23dabdd196a9c0a0a699f8f332fe593",
                "md5": "57c7053bdb56072517a963c70fe7d339",
                "sha256": "0643220d57df4571618561eda6bb31faf88cb3dd525e64d070bb18769c083687"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "57c7053bdb56072517a963c70fe7d339",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 3122744,
            "upload_time": "2023-11-04T18:50:46",
            "upload_time_iso_8601": "2023-11-04T18:50:46.686851Z",
            "url": "https://files.pythonhosted.org/packages/a8/52/0927397cce32ac3bf11688c7863dd23dabdd196a9c0a0a699f8f332fe593/pyorc-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bd8690e0bac3d5ba8194e65587f3d129801cf819063e2b2b290d89a723f01f4",
                "md5": "25f0e72b8d1f997e7535abc213f225db",
                "sha256": "2d0df1193e9bbbcd2d126ac9bd2aae1a937680fd5990b89a52e89ea9bbd7c249"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25f0e72b8d1f997e7535abc213f225db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 3239595,
            "upload_time": "2023-11-04T18:50:50",
            "upload_time_iso_8601": "2023-11-04T18:50:50.142855Z",
            "url": "https://files.pythonhosted.org/packages/4b/d8/690e0bac3d5ba8194e65587f3d129801cf819063e2b2b290d89a723f01f4/pyorc-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8ccb7ac46ee954048ec07a9f232d35a75a9fe3ae86c571721f1dfcdaa4cee67",
                "md5": "cf3cd73c70fb4e526a94935c91902d96",
                "sha256": "6702370765f3372d15d92b84642e8b80144c47af063b65a2e775b14ac887e21a"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cf3cd73c70fb4e526a94935c91902d96",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 907080,
            "upload_time": "2023-11-04T18:50:52",
            "upload_time_iso_8601": "2023-11-04T18:50:52.202279Z",
            "url": "https://files.pythonhosted.org/packages/f8/cc/b7ac46ee954048ec07a9f232d35a75a9fe3ae86c571721f1dfcdaa4cee67/pyorc-0.9.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0761bd97e214d8a389ce533f4b49112ccc0d7c9a9141c97b4f8644f5857a2f0f",
                "md5": "bd63ed201ce4b92baaad2ddf8ec281fd",
                "sha256": "231a76944ad4bd295cd4d8db2a4fc5e5aa7082d4aec76cd0d3c1850ea03e67aa"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "bd63ed201ce4b92baaad2ddf8ec281fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 4096081,
            "upload_time": "2023-11-04T18:50:55",
            "upload_time_iso_8601": "2023-11-04T18:50:55.081026Z",
            "url": "https://files.pythonhosted.org/packages/07/61/bd97e214d8a389ce533f4b49112ccc0d7c9a9141c97b4f8644f5857a2f0f/pyorc-0.9.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07fb8343f87f150f0e053be8bf287afec83da368feea721649f49bd3e2d1a72a",
                "md5": "37d73b68b19bda134fbe9150824465d1",
                "sha256": "7bbfb29614c7c16c5b6830b5fe9a4256cf0ce2328e971afcb02e8084af8147ae"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37d73b68b19bda134fbe9150824465d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 2096177,
            "upload_time": "2023-11-04T18:50:57",
            "upload_time_iso_8601": "2023-11-04T18:50:57.527458Z",
            "url": "https://files.pythonhosted.org/packages/07/fb/8343f87f150f0e053be8bf287afec83da368feea721649f49bd3e2d1a72a/pyorc-0.9.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1ba917a1b6d600d3543db705bd30c055206b1c66f557f97e98c607741cb8f8a",
                "md5": "afaca9d736c9b2335fc56f7111d872e0",
                "sha256": "3484a50b72e439e5da6538a812a4cf068b9a87dad1bde5736c8ff21b67d5ad93"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "afaca9d736c9b2335fc56f7111d872e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 2595324,
            "upload_time": "2023-11-04T18:51:00",
            "upload_time_iso_8601": "2023-11-04T18:51:00.215049Z",
            "url": "https://files.pythonhosted.org/packages/b1/ba/917a1b6d600d3543db705bd30c055206b1c66f557f97e98c607741cb8f8a/pyorc-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3328f16f0f5b4f3d4036ea6836691870c06960e551f5bf8482e547396cd395e9",
                "md5": "a4c747b7d78751feb89eaef270db8192",
                "sha256": "d2bbc39ad475b49c522e0a35c5972ec4def6ee8d13930f51b1ff88f9634402be"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4c747b7d78751feb89eaef270db8192",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 2714886,
            "upload_time": "2023-11-04T18:51:03",
            "upload_time_iso_8601": "2023-11-04T18:51:03.108582Z",
            "url": "https://files.pythonhosted.org/packages/33/28/f16f0f5b4f3d4036ea6836691870c06960e551f5bf8482e547396cd395e9/pyorc-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe8294ae08be32aabfc00f2a67b00053cd9eac81e288d5663d9936a2be7bd15a",
                "md5": "74548acbeb6172e55f67a465008e7f5f",
                "sha256": "5f1b03273f4c9937d0dca3b5c61ebe5280179123a535f2a94ea0a62dee8412dd"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74548acbeb6172e55f67a465008e7f5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3123412,
            "upload_time": "2023-11-04T18:51:05",
            "upload_time_iso_8601": "2023-11-04T18:51:05.919094Z",
            "url": "https://files.pythonhosted.org/packages/fe/82/94ae08be32aabfc00f2a67b00053cd9eac81e288d5663d9936a2be7bd15a/pyorc-0.9.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0befc8288f0069b968b404f743619f0445f4a5aedf45867ad785165b9b99cbe",
                "md5": "168b8a14ca512cf9e84f683254109a99",
                "sha256": "2180da5957fe22ea86b25503c028189fdfd06ddb93772d1765d90283418795b2"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "168b8a14ca512cf9e84f683254109a99",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 3239866,
            "upload_time": "2023-11-04T18:51:09",
            "upload_time_iso_8601": "2023-11-04T18:51:09.169572Z",
            "url": "https://files.pythonhosted.org/packages/b0/be/fc8288f0069b968b404f743619f0445f4a5aedf45867ad785165b9b99cbe/pyorc-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ff22bedff6f94d485d178ed026109fcc053738b45dd84564e460744350741d7",
                "md5": "224855889a0bbb7541fcc8dc7915da0d",
                "sha256": "0f6536c6c5ea0efa807a6278337ded04afea4c0e6222fd634ecc3fc4d19b53de"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "224855889a0bbb7541fcc8dc7915da0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 906175,
            "upload_time": "2023-11-04T18:51:11",
            "upload_time_iso_8601": "2023-11-04T18:51:11.555420Z",
            "url": "https://files.pythonhosted.org/packages/1f/f2/2bedff6f94d485d178ed026109fcc053738b45dd84564e460744350741d7/pyorc-0.9.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f9aadc2b3bf8923813674074ce0484df80a81e6d409469499e20cf6a20600b9",
                "md5": "46e3ba69ea3b41d9c83b47d3086d7ed1",
                "sha256": "e823705fcea32a08fbee6d3831227d172e37379dac2872979e35aac36a522f90"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "46e3ba69ea3b41d9c83b47d3086d7ed1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 4096871,
            "upload_time": "2023-11-04T18:51:14",
            "upload_time_iso_8601": "2023-11-04T18:51:14.265454Z",
            "url": "https://files.pythonhosted.org/packages/7f/9a/adc2b3bf8923813674074ce0484df80a81e6d409469499e20cf6a20600b9/pyorc-0.9.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48ddfac6210527e2060b3d15744d96fc7220198a63c3d7bad1d8a4ae8aa96bf8",
                "md5": "0d2aef6ea8267e4344a4857b39f937da",
                "sha256": "f4a2eefa8b679c1dee63bb46c4f6acf2ae6ecd8279497e7fcead8d6237eca075"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d2aef6ea8267e4344a4857b39f937da",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2096614,
            "upload_time": "2023-11-04T18:51:17",
            "upload_time_iso_8601": "2023-11-04T18:51:17.108723Z",
            "url": "https://files.pythonhosted.org/packages/48/dd/fac6210527e2060b3d15744d96fc7220198a63c3d7bad1d8a4ae8aa96bf8/pyorc-0.9.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c90228823fca5046c0325b299a6e2895af5d10db8cf71bb46460da1cb46c033f",
                "md5": "b67f3ea7d190e33bbe283fea94c893e3",
                "sha256": "e2ecff1e0e532e41af4c3b8fe5b2b9bd20a75a87173f7c054533431976bbc920"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b67f3ea7d190e33bbe283fea94c893e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2596570,
            "upload_time": "2023-11-04T18:51:19",
            "upload_time_iso_8601": "2023-11-04T18:51:19.693212Z",
            "url": "https://files.pythonhosted.org/packages/c9/02/28823fca5046c0325b299a6e2895af5d10db8cf71bb46460da1cb46c033f/pyorc-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe4ff038bd6d215f9c95b8d4686394af9b8135d9e64235a5b90a2f28d26ba080",
                "md5": "6af9dcb2061407ab3add9e35cd4520f4",
                "sha256": "7830402701cd9edb6d1e1699e3bfdbd4c980db4c2a3f9ae5a5af7a2304534b94"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6af9dcb2061407ab3add9e35cd4520f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 2715014,
            "upload_time": "2023-11-04T18:51:23",
            "upload_time_iso_8601": "2023-11-04T18:51:23.159933Z",
            "url": "https://files.pythonhosted.org/packages/fe/4f/f038bd6d215f9c95b8d4686394af9b8135d9e64235a5b90a2f28d26ba080/pyorc-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35b783a940d6e0e639e3247adf4fcb8cbdbf9da30e7fde75ee8e42b922938831",
                "md5": "c02b60bfbc468f6bb4f9486d7bc48d0c",
                "sha256": "34a35ba2fe7ae9f7abf8343e9ee24be33403edb8c46946001aa2926d66853208"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c02b60bfbc468f6bb4f9486d7bc48d0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 3123920,
            "upload_time": "2023-11-04T18:51:26",
            "upload_time_iso_8601": "2023-11-04T18:51:26.275022Z",
            "url": "https://files.pythonhosted.org/packages/35/b7/83a940d6e0e639e3247adf4fcb8cbdbf9da30e7fde75ee8e42b922938831/pyorc-0.9.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37885132a8d19adfa8e88064858f055e633ca9312eb9325a7af3415774b119d5",
                "md5": "bc2bbb63d9f765e6371049f8b0192a07",
                "sha256": "421868757c9f4ca34ea8e6ce7c6189ebd4dffee60f922d11c8ee2d34019aa308"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc2bbb63d9f765e6371049f8b0192a07",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 3240367,
            "upload_time": "2023-11-04T18:51:28",
            "upload_time_iso_8601": "2023-11-04T18:51:28.972490Z",
            "url": "https://files.pythonhosted.org/packages/37/88/5132a8d19adfa8e88064858f055e633ca9312eb9325a7af3415774b119d5/pyorc-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8160502148946278db744f9e4aac408121aaa9deb09eab900f00aba25aff1072",
                "md5": "160146659699a8a07703b5caf8faf86b",
                "sha256": "bcb97d761f5935954bd3825903d5eafec7f065c6da7f3a77376c88814272589c"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "160146659699a8a07703b5caf8faf86b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 903931,
            "upload_time": "2023-11-04T18:51:31",
            "upload_time_iso_8601": "2023-11-04T18:51:31.537224Z",
            "url": "https://files.pythonhosted.org/packages/81/60/502148946278db744f9e4aac408121aaa9deb09eab900f00aba25aff1072/pyorc-0.9.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f126aa2bd8b00b647b27317ebb558d5863b669250da640eb49babbbf04a0dba0",
                "md5": "32c4842de9d9119e063ffb3ccd3036dd",
                "sha256": "89e64cdef4c3d4121f89acb78e941851b864e6aa4034949aeec6f64848e7c538"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32c4842de9d9119e063ffb3ccd3036dd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 2094254,
            "upload_time": "2023-11-04T18:51:33",
            "upload_time_iso_8601": "2023-11-04T18:51:33.951265Z",
            "url": "https://files.pythonhosted.org/packages/f1/26/aa2bd8b00b647b27317ebb558d5863b669250da640eb49babbbf04a0dba0/pyorc-0.9.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73a5e3510a97100a32bfe52d3dd2486b91c1a5bd4061a12abb1d877efdf6b9df",
                "md5": "ea26a286fe280086eac0171e1dadadfe",
                "sha256": "6d41472108a2624377cbb86d14e7cde6f8645b8f135f1ff8af393f7757bc6c1d"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ea26a286fe280086eac0171e1dadadfe",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 2501071,
            "upload_time": "2023-11-04T18:51:36",
            "upload_time_iso_8601": "2023-11-04T18:51:36.078722Z",
            "url": "https://files.pythonhosted.org/packages/73/a5/e3510a97100a32bfe52d3dd2486b91c1a5bd4061a12abb1d877efdf6b9df/pyorc-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12a439ea43aa16a8c2623864ffd9b3b412f0ede7b850d6c00d6b56612b7dfdf6",
                "md5": "a40412ae650ff3364fc261794e6d43ca",
                "sha256": "f5618ae5527441cd7e8584fe8006355cfb25d7d51a2648efe7a4d2d1dd1f438b"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a40412ae650ff3364fc261794e6d43ca",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 2578871,
            "upload_time": "2023-11-04T18:51:38",
            "upload_time_iso_8601": "2023-11-04T18:51:38.997782Z",
            "url": "https://files.pythonhosted.org/packages/12/a4/39ea43aa16a8c2623864ffd9b3b412f0ede7b850d6c00d6b56612b7dfdf6/pyorc-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df4c365c9dac0a8c5c4902be106d8bafa5e82b39b0f29cae45b4fd3e1fcecdf7",
                "md5": "387e7c37a76b8f3a72624d2428c8eac8",
                "sha256": "dcbd0b51f172313be2176dfcf7a6f0f6b688f57d030667f26c44faa650bddc5e"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "387e7c37a76b8f3a72624d2428c8eac8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.6",
            "size": 906187,
            "upload_time": "2023-11-04T18:51:41",
            "upload_time_iso_8601": "2023-11-04T18:51:41.697445Z",
            "url": "https://files.pythonhosted.org/packages/df/4c/365c9dac0a8c5c4902be106d8bafa5e82b39b0f29cae45b4fd3e1fcecdf7/pyorc-0.9.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d0a8d1ca4fd471536584713b1bc5530478aa668c26f8a6109437fd1e0dfbe7e",
                "md5": "6ec6516297fbd7b23452a4316e4eb7c1",
                "sha256": "00e141343a9b62c47d68f397947d60139e479675f2a9f024cd79ef4e78e0e249"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ec6516297fbd7b23452a4316e4eb7c1",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 2093889,
            "upload_time": "2023-11-04T18:51:44",
            "upload_time_iso_8601": "2023-11-04T18:51:44.057126Z",
            "url": "https://files.pythonhosted.org/packages/4d/0a/8d1ca4fd471536584713b1bc5530478aa668c26f8a6109437fd1e0dfbe7e/pyorc-0.9.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f49f94dff51da9c5234b3d6796d5b78c7624e734b474b09e25e5c00ef3530523",
                "md5": "185702a4d3224479fa070b94922753ef",
                "sha256": "d2cc540d9f2d4fca289a91d430745d5d7544e8fe7d47014d976fd2d9532c134c"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "185702a4d3224479fa070b94922753ef",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 2588823,
            "upload_time": "2023-11-04T18:51:46",
            "upload_time_iso_8601": "2023-11-04T18:51:46.848591Z",
            "url": "https://files.pythonhosted.org/packages/f4/9f/94dff51da9c5234b3d6796d5b78c7624e734b474b09e25e5c00ef3530523/pyorc-0.9.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d68d56d24a55efa8637000996f42ac3354224961813b89eb205ab871e7e64d2f",
                "md5": "a06861112a7de2a3892bfcf7f336693f",
                "sha256": "9ae4491332ba48ceae3ac431c5ad5310640b5c67614dca0ff9fc81aa321337af"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a06861112a7de2a3892bfcf7f336693f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 2706236,
            "upload_time": "2023-11-04T18:51:49",
            "upload_time_iso_8601": "2023-11-04T18:51:49.996211Z",
            "url": "https://files.pythonhosted.org/packages/d6/8d/56d24a55efa8637000996f42ac3354224961813b89eb205ab871e7e64d2f/pyorc-0.9.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9de14ecd80f6682e0afa60caa2b9f865c3277e8131097884b6378c69dd99e862",
                "md5": "8bbf5d5c5b2d4f120a1a983ecfce2d63",
                "sha256": "71b6c99e024210b8a07f6a99f5c6e1404678788098ff79c02a441d8c2bf82af7"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8bbf5d5c5b2d4f120a1a983ecfce2d63",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.6",
            "size": 906201,
            "upload_time": "2023-11-04T18:51:52",
            "upload_time_iso_8601": "2023-11-04T18:51:52.113421Z",
            "url": "https://files.pythonhosted.org/packages/9d/e1/4ecd80f6682e0afa60caa2b9f865c3277e8131097884b6378c69dd99e862/pyorc-0.9.0-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "688d6bee4eff35e3973927c42d322990ee91ca731b73293575fe3bf6dd43bdb0",
                "md5": "cd2a90579a2ee47ed5c190a38ca85683",
                "sha256": "956bac0954ccf260d63afc1101e41012ad4c99e0c885901685da4c2fcda1a959"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd2a90579a2ee47ed5c190a38ca85683",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 2094480,
            "upload_time": "2023-11-04T18:51:54",
            "upload_time_iso_8601": "2023-11-04T18:51:54.459673Z",
            "url": "https://files.pythonhosted.org/packages/68/8d/6bee4eff35e3973927c42d322990ee91ca731b73293575fe3bf6dd43bdb0/pyorc-0.9.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f4d64e31c0b55b4b661f0e6525817673edf6da5d73722cda4067dad924d23d0",
                "md5": "0cdcde25c46c69c68bd492bef9dedfb2",
                "sha256": "484569f3ca2fff658b8c0af1a12fd29a6d46b6603ec514a3056969235ac4548b"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0cdcde25c46c69c68bd492bef9dedfb2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 2501753,
            "upload_time": "2023-11-04T18:51:57",
            "upload_time_iso_8601": "2023-11-04T18:51:57.520672Z",
            "url": "https://files.pythonhosted.org/packages/3f/4d/64e31c0b55b4b661f0e6525817673edf6da5d73722cda4067dad924d23d0/pyorc-0.9.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a09ac616bc1d2e62d7675fb1b2e93d3cbb2f25730a3003a13de1989dbda3db63",
                "md5": "021f81edee9bd8a298e635091c946834",
                "sha256": "fe8854b399fa9b5bb9aba53f672135d909c67eb5f589883cb17f6351f7a3a9ec"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "021f81edee9bd8a298e635091c946834",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 2580493,
            "upload_time": "2023-11-04T18:52:00",
            "upload_time_iso_8601": "2023-11-04T18:52:00.127631Z",
            "url": "https://files.pythonhosted.org/packages/a0/9a/c616bc1d2e62d7675fb1b2e93d3cbb2f25730a3003a13de1989dbda3db63/pyorc-0.9.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97974745df5b40e0d21218b6d3ef111ebac5360d57290d5b93bf0e641a37919f",
                "md5": "d7fb1eb2bd1865ed7e562b6377b0dccf",
                "sha256": "8dbffe0e943ee480eee30df7aa816d16e25235934dd380f53e7754ad18752bd5"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d7fb1eb2bd1865ed7e562b6377b0dccf",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.6",
            "size": 906372,
            "upload_time": "2023-11-04T18:52:02",
            "upload_time_iso_8601": "2023-11-04T18:52:02.816449Z",
            "url": "https://files.pythonhosted.org/packages/97/97/4745df5b40e0d21218b6d3ef111ebac5360d57290d5b93bf0e641a37919f/pyorc-0.9.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d64aac3588c0de6a3f74e2647808b820d3d46f315741322ca5edf27add46650c",
                "md5": "f6840a1847c21cc0c127473767b57383",
                "sha256": "d741e5398737e132b63d38134e83e411479c8a9d74510d48e2a92265e6eb0399"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f6840a1847c21cc0c127473767b57383",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 2094146,
            "upload_time": "2023-11-04T18:52:05",
            "upload_time_iso_8601": "2023-11-04T18:52:05.517039Z",
            "url": "https://files.pythonhosted.org/packages/d6/4a/ac3588c0de6a3f74e2647808b820d3d46f315741322ca5edf27add46650c/pyorc-0.9.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07ca9b2535a809a03d81d074de7cfd38efb0ed73ae80dd0e1c721cb8fde2e34a",
                "md5": "bcc665cc0bce4dda0b46245c8d5c9bf4",
                "sha256": "31bf2c9fdb7237cce31890d8d5b6bc8e544da7492d5c65db061d3c0cb53ee4c4"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bcc665cc0bce4dda0b46245c8d5c9bf4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 2501035,
            "upload_time": "2023-11-04T18:52:07",
            "upload_time_iso_8601": "2023-11-04T18:52:07.897877Z",
            "url": "https://files.pythonhosted.org/packages/07/ca/9b2535a809a03d81d074de7cfd38efb0ed73ae80dd0e1c721cb8fde2e34a/pyorc-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "072b73356b62b7bc16b54f8f15c5437610ac312a919b03e1875a8f5100b048dd",
                "md5": "e1b913321fb384dca81bcbe53084045b",
                "sha256": "91b062d113a41673b92af51fce21dd612683b6836a4840ec62bb2b90d761d30b"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1b913321fb384dca81bcbe53084045b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 2578575,
            "upload_time": "2023-11-04T18:52:10",
            "upload_time_iso_8601": "2023-11-04T18:52:10.235897Z",
            "url": "https://files.pythonhosted.org/packages/07/2b/73356b62b7bc16b54f8f15c5437610ac312a919b03e1875a8f5100b048dd/pyorc-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79de08f9557f9cbfaef33ba62aab8f09c0dc34b8c43a6d43c81287acca15a31b",
                "md5": "6ba9558805def667aa1961f06bcad66d",
                "sha256": "35ee317cdb502690593b9a0295edb2e9e4762abe3fea61013c790dec084ecabc"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6ba9558805def667aa1961f06bcad66d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.6",
            "size": 906149,
            "upload_time": "2023-11-04T18:52:13",
            "upload_time_iso_8601": "2023-11-04T18:52:13.430061Z",
            "url": "https://files.pythonhosted.org/packages/79/de/08f9557f9cbfaef33ba62aab8f09c0dc34b8c43a6d43c81287acca15a31b/pyorc-0.9.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8172d4547c17b3b6a977fd48a2566b783ce049449045262b26dc8e9be4c4ccc",
                "md5": "00de70758d7a3896421e7b2680272b19",
                "sha256": "aec25c98c5bf77a9ce5c1d2e9bf0564b4129339c8a122f42d6c55d8bdcef42d6"
            },
            "downloads": -1,
            "filename": "pyorc-0.9.0.tar.gz",
            "has_sig": false,
            "md5_digest": "00de70758d7a3896421e7b2680272b19",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 56352,
            "upload_time": "2023-11-04T18:52:15",
            "upload_time_iso_8601": "2023-11-04T18:52:15.079005Z",
            "url": "https://files.pythonhosted.org/packages/d8/17/2d4547c17b3b6a977fd48a2566b783ce049449045262b26dc8e9be4c4ccc/pyorc-0.9.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-04 18:52:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "noirello",
    "github_project": "pyorc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pyorc"
}
        
Elapsed time: 0.14845s