fastcrc


Namefastcrc JSON
Version 0.3.3 PyPI version JSON
download
home_pagehttps://github.com/overcat/fastcrc
SummaryA hyper-fast Python module for computing CRC(8, 16, 32, 64) checksum
upload_time2025-10-09 02:43:06
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords crc crc8 crc16 crc32 crc64
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            =======
fastcrc
=======

.. image:: https://img.shields.io/readthedocs/fastcrc.svg?style=flat&maxAge=1800
    :alt: Read the Docs
    :target: https://fastcrc.readthedocs.io/

.. image:: https://img.shields.io/pypi/v/fastcrc.svg?style=flat&maxAge=1800
    :alt: PyPI
    :target: https://pypi.python.org/pypi/fastcrc

.. image:: https://img.shields.io/badge/python-%3E%3D3.7-blue?style=flat
    :alt: Python - Version
    :target: https://pypi.python.org/pypi/fastcrc

A hyper-fast Python module for computing CRC(8, 16, 32, 64) checksum.


Installation
============

.. code-block:: text

   pip install fastcrc

Usage
=====

.. code:: python

   from fastcrc import crc8, crc16, crc32, crc64

   data = b"123456789"
   print(f"crc8 checksum with cdma2000 algorithm: {crc8.cdma2000(data)}")
   print(f"crc16 checksum with xmodem algorithm: {crc16.xmodem(data)}")
   print(f"crc32 checksum with aixm algorithm: {crc32.aixm(data)}")
   print(f"crc64 checksum with ecma_182 algorithm: {crc64.ecma_182(data)}")
   print(f"crc16 checksum with xmodem algorithm (with initial data): {crc16.xmodem(b'56789', crc16.xmodem(b'1234'))}")

Documentation
=============
fastcrc's documentation can be found at https://fastcrc.readthedocs.io

License
=======

fastcrc is licensed under `MIT License`_.

Thanks
=======

fastcrc is made possible by `crc-rs`_.

.. _MIT License: ./LICENSE
.. _crc-rs: https://github.com/mrhooray/crc-rs

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/overcat/fastcrc",
    "name": "fastcrc",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "crc, crc8, crc16, crc32, crc64",
    "author": null,
    "author_email": "overcat <4catcode@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/64/f5/adbdf97c307c502cdb4a9d78814b38398c48325595a1b0063db8861d7cc6/fastcrc-0.3.3.tar.gz",
    "platform": null,
    "description": "=======\nfastcrc\n=======\n\n.. image:: https://img.shields.io/readthedocs/fastcrc.svg?style=flat&maxAge=1800\n    :alt: Read the Docs\n    :target: https://fastcrc.readthedocs.io/\n\n.. image:: https://img.shields.io/pypi/v/fastcrc.svg?style=flat&maxAge=1800\n    :alt: PyPI\n    :target: https://pypi.python.org/pypi/fastcrc\n\n.. image:: https://img.shields.io/badge/python-%3E%3D3.7-blue?style=flat\n    :alt: Python - Version\n    :target: https://pypi.python.org/pypi/fastcrc\n\nA hyper-fast Python module for computing CRC(8, 16, 32, 64) checksum.\n\n\nInstallation\n============\n\n.. code-block:: text\n\n   pip install fastcrc\n\nUsage\n=====\n\n.. code:: python\n\n   from fastcrc import crc8, crc16, crc32, crc64\n\n   data = b\"123456789\"\n   print(f\"crc8 checksum with cdma2000 algorithm: {crc8.cdma2000(data)}\")\n   print(f\"crc16 checksum with xmodem algorithm: {crc16.xmodem(data)}\")\n   print(f\"crc32 checksum with aixm algorithm: {crc32.aixm(data)}\")\n   print(f\"crc64 checksum with ecma_182 algorithm: {crc64.ecma_182(data)}\")\n   print(f\"crc16 checksum with xmodem algorithm (with initial data): {crc16.xmodem(b'56789', crc16.xmodem(b'1234'))}\")\n\nDocumentation\n=============\nfastcrc's documentation can be found at https://fastcrc.readthedocs.io\n\nLicense\n=======\n\nfastcrc is licensed under `MIT License`_.\n\nThanks\n=======\n\nfastcrc is made possible by `crc-rs`_.\n\n.. _MIT License: ./LICENSE\n.. _crc-rs: https://github.com/mrhooray/crc-rs\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A hyper-fast Python module for computing CRC(8, 16, 32, 64) checksum",
    "version": "0.3.3",
    "project_urls": {
        "Homepage": "https://github.com/overcat/fastcrc",
        "documentation": "https://fastcrc.readthedocs.io",
        "repository": "https://github.com/overcat/fastcrc"
    },
    "split_keywords": [
        "crc",
        " crc8",
        " crc16",
        " crc32",
        " crc64"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa9a49d65bdbb27cfe1e2354d5135bf90007a6e953791bd5df80fc78b8a71e9e",
                "md5": "d3300dc8e75f2bf01343f863ef1889b6",
                "sha256": "b72f47bbcc817ee2284d063a6839b665edd4f37f321ddb52f12c7c721a54ef32"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d3300dc8e75f2bf01343f863ef1889b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 280153,
            "upload_time": "2025-10-09T02:40:18",
            "upload_time_iso_8601": "2025-10-09T02:40:18.066447Z",
            "url": "https://files.pythonhosted.org/packages/aa/9a/49d65bdbb27cfe1e2354d5135bf90007a6e953791bd5df80fc78b8a71e9e/fastcrc-0.3.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5806f68d2f580add3838b4e5013cde3d72e5782b089d9dd96182d0fdb56340e",
                "md5": "1f85e9966623e6b0cd58ed40eea0c81b",
                "sha256": "c37f045a1f420fd7d854444196511d9a6f125ae39260b570631829d3044c37dc"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1f85e9966623e6b0cd58ed40eea0c81b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 286269,
            "upload_time": "2025-10-09T02:40:34",
            "upload_time_iso_8601": "2025-10-09T02:40:34.082883Z",
            "url": "https://files.pythonhosted.org/packages/a5/80/6f68d2f580add3838b4e5013cde3d72e5782b089d9dd96182d0fdb56340e/fastcrc-0.3.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "849975decd8406e7ff643e3f611042b8f9deaaa38ad71f88156721a5fb263eb1",
                "md5": "936ce33608b47c8720858365372577b0",
                "sha256": "4ede4c8ad636256c4a9be3dce509b002783729d008515b8c0d125ce0ed1bf316"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "936ce33608b47c8720858365372577b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 419023,
            "upload_time": "2025-10-09T02:40:50",
            "upload_time_iso_8601": "2025-10-09T02:40:50.152711Z",
            "url": "https://files.pythonhosted.org/packages/84/99/75decd8406e7ff643e3f611042b8f9deaaa38ad71f88156721a5fb263eb1/fastcrc-0.3.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed78db2dc07ec0844fa871a1176ce1becd0300554084e98e1dcd8941b54042d8",
                "md5": "344b8d531f59f23576c4a10ede33ffdc",
                "sha256": "fe55710fad61b64cfb0ca453ecc45974b89cff0aa9b13b814b7337b879f9b40d"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "344b8d531f59f23576c4a10ede33ffdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 308586,
            "upload_time": "2025-10-09T02:41:06",
            "upload_time_iso_8601": "2025-10-09T02:41:06.867946Z",
            "url": "https://files.pythonhosted.org/packages/ed/78/db2dc07ec0844fa871a1176ce1becd0300554084e98e1dcd8941b54042d8/fastcrc-0.3.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a722adf1d2a0ea9e33247a33328527f89a88dfe1c699d7fe648785187f0fadf2",
                "md5": "2f91a7567706373d4a6eef08dd782a53",
                "sha256": "17f6479948e7ce06ca29cc895b6697e2f83b7b41c9f0cf56160240eca06f5777"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f91a7567706373d4a6eef08dd782a53",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 285365,
            "upload_time": "2025-10-09T02:41:34",
            "upload_time_iso_8601": "2025-10-09T02:41:34.995709Z",
            "url": "https://files.pythonhosted.org/packages/a7/22/adf1d2a0ea9e33247a33328527f89a88dfe1c699d7fe648785187f0fadf2/fastcrc-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60046d8a56b61299730e8deb1197860215d09504b22eae597c228e2b7f9431f9",
                "md5": "d4e6b0a40cda94842c9337d5c2cfe916",
                "sha256": "7f99ca4dddde982dcb9dbce3cddc454c408dc1c57d74bbf9f002cb6290bec601"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "d4e6b0a40cda94842c9337d5c2cfe916",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 295158,
            "upload_time": "2025-10-09T02:41:23",
            "upload_time_iso_8601": "2025-10-09T02:41:23.749336Z",
            "url": "https://files.pythonhosted.org/packages/60/04/6d8a56b61299730e8deb1197860215d09504b22eae597c228e2b7f9431f9/fastcrc-0.3.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cff43b222a2bd2f8cb75c09786d89fc685688bbeaf2b59ac42734c70eb1c6271",
                "md5": "d5fe1eb3f3b84750087cee3bf94d3684",
                "sha256": "65c9a3eda84370f28aa57912c64297b77525fbd86bdd4417e15679a7e26fa10a"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d5fe1eb3f3b84750087cee3bf94d3684",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 461032,
            "upload_time": "2025-10-09T02:41:59",
            "upload_time_iso_8601": "2025-10-09T02:41:59.584375Z",
            "url": "https://files.pythonhosted.org/packages/cf/f4/3b222a2bd2f8cb75c09786d89fc685688bbeaf2b59ac42734c70eb1c6271/fastcrc-0.3.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f07fb436fb46d58704813f6ff9056b097c4ab25a8eb682eaa2cba8dd3f3146f",
                "md5": "96bfa7b0fb48b6ff62b8e4b319f6e2ce",
                "sha256": "36d3ee4ad894bddc2ef8491f1827a0cb89284a4e565d00a380b00480495a473d"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "96bfa7b0fb48b6ff62b8e4b319f6e2ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 550934,
            "upload_time": "2025-10-09T02:42:15",
            "upload_time_iso_8601": "2025-10-09T02:42:15.784824Z",
            "url": "https://files.pythonhosted.org/packages/3f/07/fb436fb46d58704813f6ff9056b097c4ab25a8eb682eaa2cba8dd3f3146f/fastcrc-0.3.3-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04fceb8be4598690f7f420b3201f3bb4dd4f7894735ed0208d4eb3b70b3d0c65",
                "md5": "309ffacca86f88382e32dc0055330258",
                "sha256": "16fbe69b6956fcd3e192e9a297a0a09583ce6e18dd338248f77f4dcf2d32f64c"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "309ffacca86f88382e32dc0055330258",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 475844,
            "upload_time": "2025-10-09T02:42:32",
            "upload_time_iso_8601": "2025-10-09T02:42:32.709401Z",
            "url": "https://files.pythonhosted.org/packages/04/fc/eb8be4598690f7f420b3201f3bb4dd4f7894735ed0208d4eb3b70b3d0c65/fastcrc-0.3.3-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46799b6a87ea334194a8377bca2708ea36271e49072bdfeb92c22a1fce3752ee",
                "md5": "cb6dc447a82b48ad7f1bd62aeeb94a55",
                "sha256": "add57552abf17b6f289632ecce6030f11470e5c6fd615cda3a6be5f6e4994fee"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb6dc447a82b48ad7f1bd62aeeb94a55",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 451041,
            "upload_time": "2025-10-09T02:42:50",
            "upload_time_iso_8601": "2025-10-09T02:42:50.540292Z",
            "url": "https://files.pythonhosted.org/packages/46/79/9b6a87ea334194a8377bca2708ea36271e49072bdfeb92c22a1fce3752ee/fastcrc-0.3.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5d1d2643dd00d9138c42fe6e3ef2cb782e74634f5301b741e578f7eca239251",
                "md5": "9e12b182e571487d8caaa7ac4aca6811",
                "sha256": "8b79cd3ea37907130bd85df2d497f5bfe5b521c56b61732f514d3ef859230b70"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9e12b182e571487d8caaa7ac4aca6811",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 146931,
            "upload_time": "2025-10-09T02:43:07",
            "upload_time_iso_8601": "2025-10-09T02:43:07.205387Z",
            "url": "https://files.pythonhosted.org/packages/b5/d1/d2643dd00d9138c42fe6e3ef2cb782e74634f5301b741e578f7eca239251/fastcrc-0.3.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a68a7bc6a64aa2c34c37cccbe005103d6a1ebb6fd48bf9adeae2065298ddab92",
                "md5": "ed3f97985d99c7809ea135ab650c1a35",
                "sha256": "5271d738eba54abf694dc14331cd590d7c958fd33106b061e03e1d34a13a82ef"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed3f97985d99c7809ea135ab650c1a35",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 257427,
            "upload_time": "2025-10-09T02:41:55",
            "upload_time_iso_8601": "2025-10-09T02:41:55.766366Z",
            "url": "https://files.pythonhosted.org/packages/a6/8a/7bc6a64aa2c34c37cccbe005103d6a1ebb6fd48bf9adeae2065298ddab92/fastcrc-0.3.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89f6c5441421cba5dbdc13f3293ce764a0118b3dc236811f7d8b8d708b13aeb5",
                "md5": "6c7f5d12735a164733bb2f1ae62646d4",
                "sha256": "a73bf4dc5ae38df9a092037c2a513b677a72f11be9ceab0f32b7015e6ce8abd3"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6c7f5d12735a164733bb2f1ae62646d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 250220,
            "upload_time": "2025-10-09T02:41:50",
            "upload_time_iso_8601": "2025-10-09T02:41:50.618534Z",
            "url": "https://files.pythonhosted.org/packages/89/f6/c5441421cba5dbdc13f3293ce764a0118b3dc236811f7d8b8d708b13aeb5/fastcrc-0.3.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27cc07f3e4c95f25ec5500b49333ae2512a18e308cf4d58801a7a6a5a2684223",
                "md5": "c302a38b464c5d1405d8df0d74c1348b",
                "sha256": "c05dade3ae799511b2c4402980a0b8a5b8d8e98a1b5bc794444042814f803a03"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c302a38b464c5d1405d8df0d74c1348b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 279886,
            "upload_time": "2025-10-09T02:40:19",
            "upload_time_iso_8601": "2025-10-09T02:40:19.536735Z",
            "url": "https://files.pythonhosted.org/packages/27/cc/07f3e4c95f25ec5500b49333ae2512a18e308cf4d58801a7a6a5a2684223/fastcrc-0.3.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1390c69d245d26bfce2ec7512cb27bba0b42ac291a2010a5216c899982521d69",
                "md5": "cc1701edba704f0563a186206dc911e2",
                "sha256": "e292f916cefc887ebe4c8e0c97f322dc179bb64a6f1242f7d45f545269b58bf2"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cc1701edba704f0563a186206dc911e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 286049,
            "upload_time": "2025-10-09T02:40:35",
            "upload_time_iso_8601": "2025-10-09T02:40:35.477880Z",
            "url": "https://files.pythonhosted.org/packages/13/90/c69d245d26bfce2ec7512cb27bba0b42ac291a2010a5216c899982521d69/fastcrc-0.3.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "093c7c0d77a19ded078bd43773a527608ed983785733eed74e2878a261322f79",
                "md5": "f1a51a6bda67333bbd65d996db33b9bd",
                "sha256": "6e2967b327faab84167e639024ce8d473b93192fec195c3b5e31552175343322"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f1a51a6bda67333bbd65d996db33b9bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 419014,
            "upload_time": "2025-10-09T02:40:51",
            "upload_time_iso_8601": "2025-10-09T02:40:51.777037Z",
            "url": "https://files.pythonhosted.org/packages/09/3c/7c0d77a19ded078bd43773a527608ed983785733eed74e2878a261322f79/fastcrc-0.3.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85bcd18297e89ec9501bfcfd6a6002e5c15855feb45aeb9a7a628642d95fb0c9",
                "md5": "6b1b4e454c3e350ab9458c05619e2552",
                "sha256": "6239383fd91fafd1ea22220c77242bbb223da0c05dddfa05ec0f35fe767efdd9"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6b1b4e454c3e350ab9458c05619e2552",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 308458,
            "upload_time": "2025-10-09T02:41:08",
            "upload_time_iso_8601": "2025-10-09T02:41:08.522757Z",
            "url": "https://files.pythonhosted.org/packages/85/bc/d18297e89ec9501bfcfd6a6002e5c15855feb45aeb9a7a628642d95fb0c9/fastcrc-0.3.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bbc15991a7e9e1646534eb7d2422c151ef87b5b76f54e4006303b5adeb4f676a",
                "md5": "62cb008295e579fe098196f7cd92a0ad",
                "sha256": "f43ac0973cd429375ef78cf712328096771b04a1ab4f4be77f806c5224157eba"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62cb008295e579fe098196f7cd92a0ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 285133,
            "upload_time": "2025-10-09T02:41:36",
            "upload_time_iso_8601": "2025-10-09T02:41:36.234979Z",
            "url": "https://files.pythonhosted.org/packages/bb/c1/5991a7e9e1646534eb7d2422c151ef87b5b76f54e4006303b5adeb4f676a/fastcrc-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5bec7b94c79ea3046a0cf2af0b1c73eed9e61df5f8c3f3eb4733651399aa0d4",
                "md5": "eaa3ce96350860575ea201c53def2499",
                "sha256": "5d46609c32cd04faba517cd968b4082661f1ab6575fe3461f6c2a012860ad066"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "eaa3ce96350860575ea201c53def2499",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 295065,
            "upload_time": "2025-10-09T02:41:25",
            "upload_time_iso_8601": "2025-10-09T02:41:25.100948Z",
            "url": "https://files.pythonhosted.org/packages/a5/be/c7b94c79ea3046a0cf2af0b1c73eed9e61df5f8c3f3eb4733651399aa0d4/fastcrc-0.3.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27d8520df0f2ad34d973a616fad643a41defe392e8e86f8030a798d32a647b8f",
                "md5": "4cb430ec840f137faeee158ecc1e065d",
                "sha256": "18af62428ebb85c9f720667a9f20ce5d4ceb8c74e129ea44a4ca03c48d38854b"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4cb430ec840f137faeee158ecc1e065d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 460829,
            "upload_time": "2025-10-09T02:42:01",
            "upload_time_iso_8601": "2025-10-09T02:42:01.326441Z",
            "url": "https://files.pythonhosted.org/packages/27/d8/520df0f2ad34d973a616fad643a41defe392e8e86f8030a798d32a647b8f/fastcrc-0.3.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cfed8624096d734be94de76467d78d265c28d45d313d6803e543c8763e8da64",
                "md5": "adfc4369e29bbb6b6584ce95b583ce17",
                "sha256": "7e03fecbe60176892831a950da2b330265becfb3c642c8e15a6976d0e705bc74"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "adfc4369e29bbb6b6584ce95b583ce17",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 550885,
            "upload_time": "2025-10-09T02:42:17",
            "upload_time_iso_8601": "2025-10-09T02:42:17.136410Z",
            "url": "https://files.pythonhosted.org/packages/2c/fe/d8624096d734be94de76467d78d265c28d45d313d6803e543c8763e8da64/fastcrc-0.3.3-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2da0bee1b2d9c2b79c5ed1f552685c48ae61e2566f51284a52e1f3e3060c5a4a",
                "md5": "87e5b050763b16dc2262075c21e2d9f7",
                "sha256": "88023114e38daa19098fe8706055b73deabf5de539e6cc1cf37ecbe63aaa4f50"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "87e5b050763b16dc2262075c21e2d9f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 475622,
            "upload_time": "2025-10-09T02:42:34",
            "upload_time_iso_8601": "2025-10-09T02:42:34.484081Z",
            "url": "https://files.pythonhosted.org/packages/2d/a0/bee1b2d9c2b79c5ed1f552685c48ae61e2566f51284a52e1f3e3060c5a4a/fastcrc-0.3.3-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e92896762c5632d5f948b8a8fde92a3284adea61dccbe6c1e8bf044f433e2c98",
                "md5": "053649f259abf9b9ba4b370281ab1570",
                "sha256": "e009de425bfab97a50a362a9678583f112d6fcd897900099f48c8452fcb35c1f"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "053649f259abf9b9ba4b370281ab1570",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 450807,
            "upload_time": "2025-10-09T02:42:51",
            "upload_time_iso_8601": "2025-10-09T02:42:51.925406Z",
            "url": "https://files.pythonhosted.org/packages/e9/28/96762c5632d5f948b8a8fde92a3284adea61dccbe6c1e8bf044f433e2c98/fastcrc-0.3.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c7af882e6d49ae4f0b8f8ddc4803ad45e9ebf05ec431c5e603adcb5ccb71f5a",
                "md5": "7e54abac346cbda3616c1c7cf5edc802",
                "sha256": "7e8b59a242ce702e4d39bb7011621ec0f985f8904ada69b2af2302895c1c0bfb"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7e54abac346cbda3616c1c7cf5edc802",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 146817,
            "upload_time": "2025-10-09T02:43:08",
            "upload_time_iso_8601": "2025-10-09T02:43:08.382551Z",
            "url": "https://files.pythonhosted.org/packages/3c/7a/f882e6d49ae4f0b8f8ddc4803ad45e9ebf05ec431c5e603adcb5ccb71f5a/fastcrc-0.3.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e37ee2b05b3d11fcfec41b47462f15fd4a702a8b77c09b865638e5926f821fc5",
                "md5": "15deaa6507ac9036829503412412a2e4",
                "sha256": "d27164be20e33bf484911ca24c9293fac7b35f0d3c921f153a1c2548b3cded03"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15deaa6507ac9036829503412412a2e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 256040,
            "upload_time": "2025-10-09T02:41:57",
            "upload_time_iso_8601": "2025-10-09T02:41:57.018007Z",
            "url": "https://files.pythonhosted.org/packages/e3/7e/e2b05b3d11fcfec41b47462f15fd4a702a8b77c09b865638e5926f821fc5/fastcrc-0.3.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8ec46273e816d4ed46850d12990990b910b69d7851621be18f93c8b720f8c61",
                "md5": "e83fc679ee0ef2d7d3b340aa3a03973d",
                "sha256": "ea736ef3487f03fed852d0c80019ac13b8cabbf2d928a8007fcc327baea33564"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e83fc679ee0ef2d7d3b340aa3a03973d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 248197,
            "upload_time": "2025-10-09T02:41:52",
            "upload_time_iso_8601": "2025-10-09T02:41:52.281474Z",
            "url": "https://files.pythonhosted.org/packages/b8/ec/46273e816d4ed46850d12990990b910b69d7851621be18f93c8b720f8c61/fastcrc-0.3.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b526ce4240cc108c6014db311305cb6f790bc2b064100db116cebe4a479f0ff6",
                "md5": "98a77c5c2538e2f6cf7ec176552d373d",
                "sha256": "8d3861912a6b32a77fd232fe30db3ba1ce19aa99dfe6087fb40c3342db30035f"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "98a77c5c2538e2f6cf7ec176552d373d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 279747,
            "upload_time": "2025-10-09T02:40:21",
            "upload_time_iso_8601": "2025-10-09T02:40:21.038339Z",
            "url": "https://files.pythonhosted.org/packages/b5/26/ce4240cc108c6014db311305cb6f790bc2b064100db116cebe4a479f0ff6/fastcrc-0.3.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48ec5ac7fd0eb249990a8ce9a6e7afcf20f2642b3e6d769496d43e786b7f2dae",
                "md5": "d370eac321d869798e514a084f4dc644",
                "sha256": "6c45f2a55238bff9d28385e94102a7734a70692c6efe06943ad6ce66eacab213"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d370eac321d869798e514a084f4dc644",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 286063,
            "upload_time": "2025-10-09T02:40:36",
            "upload_time_iso_8601": "2025-10-09T02:40:36.975811Z",
            "url": "https://files.pythonhosted.org/packages/48/ec/5ac7fd0eb249990a8ce9a6e7afcf20f2642b3e6d769496d43e786b7f2dae/fastcrc-0.3.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba3268a5aec0c412bb772626977bccf56e3a3ccb7669a92c081ba3702ce4d007",
                "md5": "0feece3ddfcdc094070729d223f2299a",
                "sha256": "f57c676d7ca75370e8beb2f6a69395391dc38febe6beb491b6339d9466f67ff3"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0feece3ddfcdc094070729d223f2299a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 416258,
            "upload_time": "2025-10-09T02:40:53",
            "upload_time_iso_8601": "2025-10-09T02:40:53.282481Z",
            "url": "https://files.pythonhosted.org/packages/ba/32/68a5aec0c412bb772626977bccf56e3a3ccb7669a92c081ba3702ce4d007/fastcrc-0.3.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09cafe397b3f0ba01499f5f32a41a6f91904ca3888de7fc664d16071530af6cd",
                "md5": "d092c287d87be7447bcdffd1242fa1a0",
                "sha256": "b0bbb6991284c4cb59673b074a3d325c7f25f6c0a8c702d0f8b54a98cdcb23b6"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d092c287d87be7447bcdffd1242fa1a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 308698,
            "upload_time": "2025-10-09T02:41:09",
            "upload_time_iso_8601": "2025-10-09T02:41:09.813873Z",
            "url": "https://files.pythonhosted.org/packages/09/ca/fe397b3f0ba01499f5f32a41a6f91904ca3888de7fc664d16071530af6cd/fastcrc-0.3.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bff1901c57d713a401f16baafb4d54af79e2c8b3125ef62a017c12599088a2ff",
                "md5": "bf1f910e0cae97882c22716bed0a3986",
                "sha256": "21874aa0a01f8cd8d5f732e6c1c215fdc5d9acd895ab699a57a9fb8bfa3f09db"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf1f910e0cae97882c22716bed0a3986",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 284992,
            "upload_time": "2025-10-09T02:41:37",
            "upload_time_iso_8601": "2025-10-09T02:41:37.768402Z",
            "url": "https://files.pythonhosted.org/packages/bf/f1/901c57d713a401f16baafb4d54af79e2c8b3125ef62a017c12599088a2ff/fastcrc-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "930ad4dfa8587d60d7d9ac64a3d776662507cdc95739c0792c49fa6b50b9a3f5",
                "md5": "314c265092242b2077cfccaa5f47eabd",
                "sha256": "668bf9728adef9e66fda903e23bdbab80715890c0c4b4d97357bb6dd635ad9bc"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "314c265092242b2077cfccaa5f47eabd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 294717,
            "upload_time": "2025-10-09T02:41:26",
            "upload_time_iso_8601": "2025-10-09T02:41:26.338592Z",
            "url": "https://files.pythonhosted.org/packages/93/0a/d4dfa8587d60d7d9ac64a3d776662507cdc95739c0792c49fa6b50b9a3f5/fastcrc-0.3.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "345fd02b9064d1c04c3b593a2d9da0c18aa73b12744c5be20d511ae947211e62",
                "md5": "cd2009b218317e632276729c2ae2f084",
                "sha256": "331a86b9ec5f49a4442eecde89c74650a99044c828f09e98e40b1ac41375038d"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd2009b218317e632276729c2ae2f084",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 460617,
            "upload_time": "2025-10-09T02:42:02",
            "upload_time_iso_8601": "2025-10-09T02:42:02.654278Z",
            "url": "https://files.pythonhosted.org/packages/34/5f/d02b9064d1c04c3b593a2d9da0c18aa73b12744c5be20d511ae947211e62/fastcrc-0.3.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3dd02a79156a1805e4008abef5435c75421a028a02247fae26dfe57f76967ef3",
                "md5": "64bc6d7566869e480fb0133accd46098",
                "sha256": "fffe9aebb65f148b0cea26d3c5917e6ed8c6e397411a074cb9aebba300330bed"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "64bc6d7566869e480fb0133accd46098",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 550760,
            "upload_time": "2025-10-09T02:42:18",
            "upload_time_iso_8601": "2025-10-09T02:42:18.567703Z",
            "url": "https://files.pythonhosted.org/packages/3d/d0/2a79156a1805e4008abef5435c75421a028a02247fae26dfe57f76967ef3/fastcrc-0.3.3-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3cbfd89e754c94a735b5857aca59d2c4741a77917f6707342668b4af6f3035d",
                "md5": "6deaaed28612862a98512bd46dfed732",
                "sha256": "8ce19bf2f901948a177a2e6aa99958ac7dc31e017cb043e61e610266207a865e"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6deaaed28612862a98512bd46dfed732",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 475527,
            "upload_time": "2025-10-09T02:42:36",
            "upload_time_iso_8601": "2025-10-09T02:42:36.169674Z",
            "url": "https://files.pythonhosted.org/packages/c3/cb/fd89e754c94a735b5857aca59d2c4741a77917f6707342668b4af6f3035d/fastcrc-0.3.3-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cfc4397c3186bc8080167edaa24fb8454fdbc9fa5e2ec3dc8592be93b54969f1",
                "md5": "49c818303619e8c6788a933cf8ef2ca5",
                "sha256": "79de691c0319e22f333bdee619c0b2e8195ba5dcc451a7e859aa68d2f5b39e46"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49c818303619e8c6788a933cf8ef2ca5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 450586,
            "upload_time": "2025-10-09T02:42:53",
            "upload_time_iso_8601": "2025-10-09T02:42:53.699656Z",
            "url": "https://files.pythonhosted.org/packages/cf/c4/397c3186bc8080167edaa24fb8454fdbc9fa5e2ec3dc8592be93b54969f1/fastcrc-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "629c32fa65b780a75aafec4c2d10e6cbb41cc2157da23304e3004f22b453bdfb",
                "md5": "834c2b41b57312e749754cc99b1fb518",
                "sha256": "c7ac935e0264ab67a09e05065badaeb3c5dfe615732ca365c3403d336d26bf16"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "834c2b41b57312e749754cc99b1fb518",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 146716,
            "upload_time": "2025-10-09T02:43:09",
            "upload_time_iso_8601": "2025-10-09T02:43:09.647044Z",
            "url": "https://files.pythonhosted.org/packages/62/9c/32fa65b780a75aafec4c2d10e6cbb41cc2157da23304e3004f22b453bdfb/fastcrc-0.3.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "926744fc16acf1b2cf260512c8015305ea00dcec81db348626601cdc4928ea66",
                "md5": "69b900388213aa4a7322b4170e8a0574",
                "sha256": "c579d5f43a061d837ad7aa4f0e0f8887c855bdcd9b242c984c804aae8801364e"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69b900388213aa4a7322b4170e8a0574",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 256040,
            "upload_time": "2025-10-09T02:41:58",
            "upload_time_iso_8601": "2025-10-09T02:41:58.268407Z",
            "url": "https://files.pythonhosted.org/packages/92/67/44fc16acf1b2cf260512c8015305ea00dcec81db348626601cdc4928ea66/fastcrc-0.3.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5546dfb1f84a342a60a4fdd43577eae06cc35a51a463e4a20589c6c537afc085",
                "md5": "fa025419b95cdc5ffb387f8a979995ff",
                "sha256": "f277d944c9cb302dec5138af35873adb4bc64fd8e5f8721073338860c46c7e7a"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fa025419b95cdc5ffb387f8a979995ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 248402,
            "upload_time": "2025-10-09T02:41:53",
            "upload_time_iso_8601": "2025-10-09T02:41:53.545053Z",
            "url": "https://files.pythonhosted.org/packages/55/46/dfb1f84a342a60a4fdd43577eae06cc35a51a463e4a20589c6c537afc085/fastcrc-0.3.3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab8e18c25ed0d75dffcc120e18f72adde9649054e32c8b6b4da1e087f3b113b2",
                "md5": "fbf526b95fcd53abe53176fe1e4c7746",
                "sha256": "c364acab3b0249e68657ac7f381845b0d03dabcfa91a11c652ddce110f5064c7"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fbf526b95fcd53abe53176fe1e4c7746",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 280037,
            "upload_time": "2025-10-09T02:40:22",
            "upload_time_iso_8601": "2025-10-09T02:40:22.287456Z",
            "url": "https://files.pythonhosted.org/packages/ab/8e/18c25ed0d75dffcc120e18f72adde9649054e32c8b6b4da1e087f3b113b2/fastcrc-0.3.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6fb394889f004aa2352af363f56de0ae826ec483eec16b2c1037245b4b7833c7",
                "md5": "97471e58718a8af8b8a7cba19b9672da",
                "sha256": "f64e9a840808b86221f5676dbedec24796f6d8f73bd75eba29f0020a9427ea25"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "97471e58718a8af8b8a7cba19b9672da",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 286185,
            "upload_time": "2025-10-09T02:40:38",
            "upload_time_iso_8601": "2025-10-09T02:40:38.238615Z",
            "url": "https://files.pythonhosted.org/packages/6f/b3/94889f004aa2352af363f56de0ae826ec483eec16b2c1037245b4b7833c7/fastcrc-0.3.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33552dca4d6db215545b3115710fb3fe9ae971c75d42b698b21ad7445e85e726",
                "md5": "86c338dc26f10e0abda7c90a91120b0a",
                "sha256": "958576b0b0025db2c9f674656871c436d68a20cda1bf766b4de7f83aef519900"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "86c338dc26f10e0abda7c90a91120b0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 419080,
            "upload_time": "2025-10-09T02:40:54",
            "upload_time_iso_8601": "2025-10-09T02:40:54.582833Z",
            "url": "https://files.pythonhosted.org/packages/33/55/2dca4d6db215545b3115710fb3fe9ae971c75d42b698b21ad7445e85e726/fastcrc-0.3.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5393b0916076c87755c0561fd13b77038ed84282eb9de9971f37fa81a15e4a5",
                "md5": "3455c428463c99cea6af45405ed8047e",
                "sha256": "77eb0bdb9aa7a1feea1890cd36dd8ce04c2aa29c71bcef8325288dc325f80c12"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3455c428463c99cea6af45405ed8047e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 309084,
            "upload_time": "2025-10-09T02:41:11",
            "upload_time_iso_8601": "2025-10-09T02:41:11.476151Z",
            "url": "https://files.pythonhosted.org/packages/e5/39/3b0916076c87755c0561fd13b77038ed84282eb9de9971f37fa81a15e4a5/fastcrc-0.3.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ccd94e884b01947a80fab0d7b2df376925d23bc9d33b434136c65c5ba2a85d7d",
                "md5": "a9a2d98b2874524e071d0d6517e20bc2",
                "sha256": "6945e1d427335807e982e9e6913e2827cb0516f0bfa10a74752d7a3f727b3c9f"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9a2d98b2874524e071d0d6517e20bc2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 285046,
            "upload_time": "2025-10-09T02:41:39",
            "upload_time_iso_8601": "2025-10-09T02:41:39.470566Z",
            "url": "https://files.pythonhosted.org/packages/cc/d9/4e884b01947a80fab0d7b2df376925d23bc9d33b434136c65c5ba2a85d7d/fastcrc-0.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39820c07c971e156c154787a7eccb196e137a65b29e280f580c380316729f56f",
                "md5": "e54cb632ee29bbfb30d47e795fe23c21",
                "sha256": "a055c78d2b3c5de9ad590375bdbb494e2f8a54eec6797099f58eb9958693f78d"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e54cb632ee29bbfb30d47e795fe23c21",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 294741,
            "upload_time": "2025-10-09T02:41:28",
            "upload_time_iso_8601": "2025-10-09T02:41:28.044847Z",
            "url": "https://files.pythonhosted.org/packages/39/82/0c07c971e156c154787a7eccb196e137a65b29e280f580c380316729f56f/fastcrc-0.3.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdb0980695d40dd133bf3b8ee7c313b04130425d347aa9bebdcfbfc85ccd50e1",
                "md5": "7170582d622d631c8873edeab13d47de",
                "sha256": "9abafe4ed1a5e7f1a65a0dea30ee4146c7ccd738196978f979d11710bb9152d2"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7170582d622d631c8873edeab13d47de",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 460869,
            "upload_time": "2025-10-09T02:42:04",
            "upload_time_iso_8601": "2025-10-09T02:42:04.100078Z",
            "url": "https://files.pythonhosted.org/packages/fd/b0/980695d40dd133bf3b8ee7c313b04130425d347aa9bebdcfbfc85ccd50e1/fastcrc-0.3.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "789c8f8ec9d775bac9dcc7108389258b900e0b734274efeac155fd64b727ae49",
                "md5": "5fac8516a80e8752f21bf5b064488777",
                "sha256": "989fdf701c71e11dcd7d5cdb8e4f2ca8596c3833dda8b540ad91e226991ee063"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5fac8516a80e8752f21bf5b064488777",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 550729,
            "upload_time": "2025-10-09T02:42:20",
            "upload_time_iso_8601": "2025-10-09T02:42:20.474806Z",
            "url": "https://files.pythonhosted.org/packages/78/9c/8f8ec9d775bac9dcc7108389258b900e0b734274efeac155fd64b727ae49/fastcrc-0.3.3-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ec0e805f4889bf1ed583fae169676311a951805c003b41ddafb42bb95e4c50c",
                "md5": "dcc684852a8296347fb05794946c0f48",
                "sha256": "12a159e4fd56d799dd57fcddbb4652827037a9c3caeff41d277e5223bb925a73"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "dcc684852a8296347fb05794946c0f48",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 475450,
            "upload_time": "2025-10-09T02:42:37",
            "upload_time_iso_8601": "2025-10-09T02:42:37.905319Z",
            "url": "https://files.pythonhosted.org/packages/0e/c0/e805f4889bf1ed583fae169676311a951805c003b41ddafb42bb95e4c50c/fastcrc-0.3.3-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d08fe9f6eff20af2a84a8631b72ee9c370f238ded2aef3336db50a3552148cf",
                "md5": "90deb1ab5c1ee563dcd62fcefb5ad58e",
                "sha256": "0a6080eeeeddc174e5ef1eddb85557eb233c1c207df8e96c63fbc236d3d917e7"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90deb1ab5c1ee563dcd62fcefb5ad58e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 450927,
            "upload_time": "2025-10-09T02:42:55",
            "upload_time_iso_8601": "2025-10-09T02:42:55.047688Z",
            "url": "https://files.pythonhosted.org/packages/1d/08/fe9f6eff20af2a84a8631b72ee9c370f238ded2aef3336db50a3552148cf/fastcrc-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bc79a896c694e5167076b4d3438a9c5b82995078248328c368bffb389657c31",
                "md5": "ecb09bb72df5138c9ed9e2650ed1c0e2",
                "sha256": "bf1b47f9e08896737831008eb7fc8b611f54c2b422a4011e78fd0e094dc16d30"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ecb09bb72df5138c9ed9e2650ed1c0e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 279783,
            "upload_time": "2025-10-09T02:40:23",
            "upload_time_iso_8601": "2025-10-09T02:40:23.840023Z",
            "url": "https://files.pythonhosted.org/packages/1b/c7/9a896c694e5167076b4d3438a9c5b82995078248328c368bffb389657c31/fastcrc-0.3.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64c6de301da1d0bafba75b79326523960d15b85ca19ba826ea96cfd8af876350",
                "md5": "a54f28745fbd869ab2dcd938f8138847",
                "sha256": "5a52f88168a75771a7752b340ca60c07f7f8b1a6896446d53cc1ed297c367679"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a54f28745fbd869ab2dcd938f8138847",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 285925,
            "upload_time": "2025-10-09T02:40:39",
            "upload_time_iso_8601": "2025-10-09T02:40:39.527943Z",
            "url": "https://files.pythonhosted.org/packages/64/c6/de301da1d0bafba75b79326523960d15b85ca19ba826ea96cfd8af876350/fastcrc-0.3.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b8a0db6c554dbfca7363b1bb761b51ab9981ceb26b8a17dc898e5b354b7ead6",
                "md5": "b3fcdd3414b1fcd8f65600508ca25757",
                "sha256": "a476e5a377a5959f2f31878a53c3891d31abe8074fffa6283383979bfe74a282"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b3fcdd3414b1fcd8f65600508ca25757",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 416903,
            "upload_time": "2025-10-09T02:40:55",
            "upload_time_iso_8601": "2025-10-09T02:40:55.819267Z",
            "url": "https://files.pythonhosted.org/packages/3b/8a/0db6c554dbfca7363b1bb761b51ab9981ceb26b8a17dc898e5b354b7ead6/fastcrc-0.3.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e673705819a5b5493341b04da8fd2d894d8f40137ae4c445ce29562007bcb256",
                "md5": "72b394f445d98fbdbaf5f64cb0950b87",
                "sha256": "f153789c9d768b189eef71ab65637c1b79eaa039e2cfcd6ab9245fb0ff291186"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "72b394f445d98fbdbaf5f64cb0950b87",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 308560,
            "upload_time": "2025-10-09T02:41:12",
            "upload_time_iso_8601": "2025-10-09T02:41:12.713161Z",
            "url": "https://files.pythonhosted.org/packages/e6/73/705819a5b5493341b04da8fd2d894d8f40137ae4c445ce29562007bcb256/fastcrc-0.3.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0678a593b8efa3d867a079aceab080f6b693e89d95178508cc747c706da2c67d",
                "md5": "e9b518f3ce661c2724d0aa4eb56bd55e",
                "sha256": "4a29d59aee4fa060b488deb72ab5cc6a8904e29f6816152176daf7ff180ee213"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e9b518f3ce661c2724d0aa4eb56bd55e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 460528,
            "upload_time": "2025-10-09T02:42:05",
            "upload_time_iso_8601": "2025-10-09T02:42:05.425238Z",
            "url": "https://files.pythonhosted.org/packages/06/78/a593b8efa3d867a079aceab080f6b693e89d95178508cc747c706da2c67d/fastcrc-0.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e88bddf800163bf97eb6af7ce7fca511a1300fee9145f6fb3f57b2d11e78be7d",
                "md5": "aa59783e0ba183ed596058b63c016bcc",
                "sha256": "cd43810fbe6cc75ca217b7235c1a6f82293f30ba3f6a8ce60ffb7c5f56405198"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "aa59783e0ba183ed596058b63c016bcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 550581,
            "upload_time": "2025-10-09T02:42:22",
            "upload_time_iso_8601": "2025-10-09T02:42:22.116688Z",
            "url": "https://files.pythonhosted.org/packages/e8/8b/ddf800163bf97eb6af7ce7fca511a1300fee9145f6fb3f57b2d11e78be7d/fastcrc-0.3.3-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a1c831a11e358ac04bdded2e58975f0eb4df924ea50b71960cf9df8d9f69e31",
                "md5": "cc3e7c2593eb4ed4cb90730ca008a7d2",
                "sha256": "a7e06ead4f3faa614f84635c1384301d764db5a052a7ca7f315d335b2b4dbb4a"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cc3e7c2593eb4ed4cb90730ca008a7d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 475325,
            "upload_time": "2025-10-09T02:42:39",
            "upload_time_iso_8601": "2025-10-09T02:42:39.255548Z",
            "url": "https://files.pythonhosted.org/packages/4a/1c/831a11e358ac04bdded2e58975f0eb4df924ea50b71960cf9df8d9f69e31/fastcrc-0.3.3-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04e8abbb7785170cf7ea70268a253f731847324663d8fdb604758834b3122302",
                "md5": "904eec9cbdbea4b9c2d25952cde90105",
                "sha256": "b0d9252e0e55a4009951919d03d66a2983774eb113ad143ea11b8f4400fbf63b"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "904eec9cbdbea4b9c2d25952cde90105",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 450499,
            "upload_time": "2025-10-09T02:42:56",
            "upload_time_iso_8601": "2025-10-09T02:42:56.620492Z",
            "url": "https://files.pythonhosted.org/packages/04/e8/abbb7785170cf7ea70268a253f731847324663d8fdb604758834b3122302/fastcrc-0.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf57d45087aebd922e0c400717700c46470830332661b82509e28b4e9e26ff25",
                "md5": "b2dbe5321f43f43955bde112eefedb33",
                "sha256": "4c5e3fb15252354c8faad0dd25d68b4abe7005af6d1e451be65a39084d389488"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b2dbe5321f43f43955bde112eefedb33",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 146903,
            "upload_time": "2025-10-09T02:43:10",
            "upload_time_iso_8601": "2025-10-09T02:43:10.790902Z",
            "url": "https://files.pythonhosted.org/packages/bf/57/d45087aebd922e0c400717700c46470830332661b82509e28b4e9e26ff25/fastcrc-0.3.3-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5669e5879ffc54f8deb5e01f8bdfa0088999d171d3883e1ff6e1c37866f70bc",
                "md5": "63b089638c2dda6ba27d1895bbe08370",
                "sha256": "ed13f0f946fa29fc9df1f50607ab228bb9370fcd033dbb6cd55b99bb4366fa59"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63b089638c2dda6ba27d1895bbe08370",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 284425,
            "upload_time": "2025-10-09T02:41:41",
            "upload_time_iso_8601": "2025-10-09T02:41:41.001506Z",
            "url": "https://files.pythonhosted.org/packages/c5/66/9e5879ffc54f8deb5e01f8bdfa0088999d171d3883e1ff6e1c37866f70bc/fastcrc-0.3.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6411af21e458c9a60ddcfaa2fb3d7a6513eafa240090d64e3c8a76e6a41f7cb9",
                "md5": "312004a1f4d08ecb21a3547d53090c8d",
                "sha256": "4c55451d55d1ad1d5cd0e4d9efb674b0c26b77a3e4bd61066abd6fa1bef8dbbe"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "312004a1f4d08ecb21a3547d53090c8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 294490,
            "upload_time": "2025-10-09T02:41:29",
            "upload_time_iso_8601": "2025-10-09T02:41:29.307133Z",
            "url": "https://files.pythonhosted.org/packages/64/11/af21e458c9a60ddcfaa2fb3d7a6513eafa240090d64e3c8a76e6a41f7cb9/fastcrc-0.3.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbde8814e6bd613b9d77e3c0c218380628c802a52968605993a8066910cda493",
                "md5": "ceadc12e471322374e56b3ca344f301b",
                "sha256": "617444837cf9f0c4c19ce2ce7103b570842ca23187b1c23e7e8843dc0e4736e3"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "ceadc12e471322374e56b3ca344f301b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 139878,
            "upload_time": "2025-10-09T02:43:13",
            "upload_time_iso_8601": "2025-10-09T02:43:13.175121Z",
            "url": "https://files.pythonhosted.org/packages/cb/de/8814e6bd613b9d77e3c0c218380628c802a52968605993a8066910cda493/fastcrc-0.3.3-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "261f521be28cfea3a01c9fff4a75bbf05bb395902962fd12b23aeab9bd475a6a",
                "md5": "a24d73af43c82883cd445747dc47fa19",
                "sha256": "dede886cc525f67d4b0e279a2e2d64680fdb90e76442f1a2928527176d5f25ab"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a24d73af43c82883cd445747dc47fa19",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 280310,
            "upload_time": "2025-10-09T02:40:25",
            "upload_time_iso_8601": "2025-10-09T02:40:25.334148Z",
            "url": "https://files.pythonhosted.org/packages/26/1f/521be28cfea3a01c9fff4a75bbf05bb395902962fd12b23aeab9bd475a6a/fastcrc-0.3.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05e35eb911ce5e2137a68136add2aa1d7ee35528049823d5769b36f06a288223",
                "md5": "7746b77fa8e228d111f4e2e4dfaa8ab7",
                "sha256": "0c6a2dbd9053b4546b83aa0be11605435d36e3665821a294924269b42c536373"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7746b77fa8e228d111f4e2e4dfaa8ab7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 286123,
            "upload_time": "2025-10-09T02:40:40",
            "upload_time_iso_8601": "2025-10-09T02:40:40.999492Z",
            "url": "https://files.pythonhosted.org/packages/05/e3/5eb911ce5e2137a68136add2aa1d7ee35528049823d5769b36f06a288223/fastcrc-0.3.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "890777300fe1d9483088fdf5a2f49a6947a625531c45810ca8ccd1c0b17465d6",
                "md5": "40bab196a2592964a692e8b706ef52b5",
                "sha256": "c9e6e4ca7ebde4e5c880661b2233e94ef57b45ea00b5e0009d85012b50afe3fb"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "40bab196a2592964a692e8b706ef52b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 419381,
            "upload_time": "2025-10-09T02:40:57",
            "upload_time_iso_8601": "2025-10-09T02:40:57.697838Z",
            "url": "https://files.pythonhosted.org/packages/89/07/77300fe1d9483088fdf5a2f49a6947a625531c45810ca8ccd1c0b17465d6/fastcrc-0.3.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69da16626b74ab754d82b74f33a716c5875a4d4460e7c418c6956a23302a7abd",
                "md5": "56c59071b7eaa347ea4e8fab9cd87c2a",
                "sha256": "0994f5a9ea361c42d654becf88a0a7ba38e7a4c3e25c5090d36a93826a049f6c"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "56c59071b7eaa347ea4e8fab9cd87c2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 308936,
            "upload_time": "2025-10-09T02:41:14",
            "upload_time_iso_8601": "2025-10-09T02:41:14.058354Z",
            "url": "https://files.pythonhosted.org/packages/69/da/16626b74ab754d82b74f33a716c5875a4d4460e7c418c6956a23302a7abd/fastcrc-0.3.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2b7e1ef692d18dee44f75fb89fadebed3f5d9c8d9081cf5d179a18634708e2e",
                "md5": "3bd4affafa2e4bd11e2cd685feaf9832",
                "sha256": "5ff0cd5973c06f18d3aaa31cac11c333a6318fb125c6907fe2bc73e57d096a38"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3bd4affafa2e4bd11e2cd685feaf9832",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 461136,
            "upload_time": "2025-10-09T02:42:06",
            "upload_time_iso_8601": "2025-10-09T02:42:06.946234Z",
            "url": "https://files.pythonhosted.org/packages/b2/b7/e1ef692d18dee44f75fb89fadebed3f5d9c8d9081cf5d179a18634708e2e/fastcrc-0.3.3-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "251346c45c035a29c375ac4fea05eb452144bf9788b177ca081aac552ddcefbd",
                "md5": "944be7e78fadcad95d78ce5503cb4f3f",
                "sha256": "36936e42c90af6f6f7b36ad2c11a579ebe7ea01964285f84b380ad1bb9989783"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "944be7e78fadcad95d78ce5503cb4f3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 550770,
            "upload_time": "2025-10-09T02:42:23",
            "upload_time_iso_8601": "2025-10-09T02:42:23.734381Z",
            "url": "https://files.pythonhosted.org/packages/25/13/46c45c035a29c375ac4fea05eb452144bf9788b177ca081aac552ddcefbd/fastcrc-0.3.3-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e956ab87582b32db46a5770b0e7d83e338e7942025a2270a7ce7c601f2afb94f",
                "md5": "e99ee19725e7d000227dc3f9afb6f244",
                "sha256": "66f620c99fd54314865d32d99719d3eedccfddd9916cccd1c27d5432ddd3cd93"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e99ee19725e7d000227dc3f9afb6f244",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 476028,
            "upload_time": "2025-10-09T02:42:40",
            "upload_time_iso_8601": "2025-10-09T02:42:40.737740Z",
            "url": "https://files.pythonhosted.org/packages/e9/56/ab87582b32db46a5770b0e7d83e338e7942025a2270a7ce7c601f2afb94f/fastcrc-0.3.3-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9c60c8669074573bceb98105949c926a9e2645a5fb0597d3d52d9bd7689b920",
                "md5": "c237182894e93183567f1f8610716a58",
                "sha256": "744b7d16cce58a0e29ae1f3909750f524715bbd8b4ea4aa9e5a235eda2369e5b"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c237182894e93183567f1f8610716a58",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 451519,
            "upload_time": "2025-10-09T02:42:57",
            "upload_time_iso_8601": "2025-10-09T02:42:57.999501Z",
            "url": "https://files.pythonhosted.org/packages/b9/c6/0c8669074573bceb98105949c926a9e2645a5fb0597d3d52d9bd7689b920/fastcrc-0.3.3-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3784fc5d43e8917298b10f24f1aa9e102ef13f62517d4f885e07d66ee75e3c92",
                "md5": "1d3ccafcbe77528409a8840035d09a05",
                "sha256": "b56e8d95d2842ab2d7a39ca905458c4a7cdbccf0e2588cd1da95f839ee18c096"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1d3ccafcbe77528409a8840035d09a05",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 280179,
            "upload_time": "2025-10-09T02:40:27",
            "upload_time_iso_8601": "2025-10-09T02:40:27.022010Z",
            "url": "https://files.pythonhosted.org/packages/37/84/fc5d43e8917298b10f24f1aa9e102ef13f62517d4f885e07d66ee75e3c92/fastcrc-0.3.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e3960323614567e60c7177e21bd527ed5d5e5009a7c7c62ad2cdcc01c959533",
                "md5": "5f67bb234606805419e6eca80671d74e",
                "sha256": "6b473b1c0bbab905114ddded766bdeb6f3ec639a2fc75fbbedd71d03ddaf1539"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5f67bb234606805419e6eca80671d74e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 286138,
            "upload_time": "2025-10-09T02:40:42",
            "upload_time_iso_8601": "2025-10-09T02:40:42.333069Z",
            "url": "https://files.pythonhosted.org/packages/5e/39/60323614567e60c7177e21bd527ed5d5e5009a7c7c62ad2cdcc01c959533/fastcrc-0.3.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8de55666e25f86b5c1c45cf35b6365f6b536b4b4377912d34c218621b204fae",
                "md5": "a0432779b57bc05d228c23f3107ab9c0",
                "sha256": "d2763f76d91b102b4981428decf03b14333e8efaf6294fd3ca61f69d5f44c398"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a0432779b57bc05d228c23f3107ab9c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 419275,
            "upload_time": "2025-10-09T02:40:59",
            "upload_time_iso_8601": "2025-10-09T02:40:59.227867Z",
            "url": "https://files.pythonhosted.org/packages/a8/de/55666e25f86b5c1c45cf35b6365f6b536b4b4377912d34c218621b204fae/fastcrc-0.3.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3d6f46be4cd9beaae5c4630d5a7b3f20ecc843802b525ee8dd94376760c681f",
                "md5": "77ea7e3f1a903168ead62c3a36ad6bb7",
                "sha256": "cf05779648e66d5ef6fd9b07024eaaf8c6296ff482475fba4fa54df37ec07e5d"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "77ea7e3f1a903168ead62c3a36ad6bb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 308973,
            "upload_time": "2025-10-09T02:41:15",
            "upload_time_iso_8601": "2025-10-09T02:41:15.671715Z",
            "url": "https://files.pythonhosted.org/packages/f3/d6/f46be4cd9beaae5c4630d5a7b3f20ecc843802b525ee8dd94376760c681f/fastcrc-0.3.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f4ca9f3a0b5c493ac1afe6d517a60e60c3e011e39f10ad6b7f8161d682a7e54",
                "md5": "d86efe88103cf67d821bed9a0a18dacd",
                "sha256": "97255420a56a95f6d93da3dbcbd1f8c78690136df392ac9822e8dc4ab694f782"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d86efe88103cf67d821bed9a0a18dacd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 285728,
            "upload_time": "2025-10-09T02:41:42",
            "upload_time_iso_8601": "2025-10-09T02:41:42.281695Z",
            "url": "https://files.pythonhosted.org/packages/0f/4c/a9f3a0b5c493ac1afe6d517a60e60c3e011e39f10ad6b7f8161d682a7e54/fastcrc-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c6859ae71552e6d52b134eb34911666609ef031e38a7111f077ebae2f865883",
                "md5": "303bd960b04f917d608d7cddf42dbfa2",
                "sha256": "fa2a79bfe0b28e88d181903c1f37fd3bd7d5f359599dbc3cc7fa92e3d1a71026"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "303bd960b04f917d608d7cddf42dbfa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 295263,
            "upload_time": "2025-10-09T02:41:30",
            "upload_time_iso_8601": "2025-10-09T02:41:30.565454Z",
            "url": "https://files.pythonhosted.org/packages/1c/68/59ae71552e6d52b134eb34911666609ef031e38a7111f077ebae2f865883/fastcrc-0.3.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "087d2c1f4d6c3b596cc579303285e531a80a0b18823a8afbf908cf1aa97b62a3",
                "md5": "728d2a2058afd8ca9c878d588f59ad51",
                "sha256": "dfe8e958a41646cbd000c91c55d09acdda120634ce1a6c3b8ca09d6821c37dd2"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "728d2a2058afd8ca9c878d588f59ad51",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 460988,
            "upload_time": "2025-10-09T02:42:08",
            "upload_time_iso_8601": "2025-10-09T02:42:08.325191Z",
            "url": "https://files.pythonhosted.org/packages/08/7d/2c1f4d6c3b596cc579303285e531a80a0b18823a8afbf908cf1aa97b62a3/fastcrc-0.3.3-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0f9fe488652b0bfc6ab0f68210efda7649dacd86355a9f7500948b0c6af883e",
                "md5": "87314a6da9b2b168b91357aa691a4a9d",
                "sha256": "dd649f099f9aa0027be3c60624aaff98d2db7fa84a59b9ff6070183b768249f1"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "87314a6da9b2b168b91357aa691a4a9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 550943,
            "upload_time": "2025-10-09T02:42:25",
            "upload_time_iso_8601": "2025-10-09T02:42:25.809247Z",
            "url": "https://files.pythonhosted.org/packages/b0/f9/fe488652b0bfc6ab0f68210efda7649dacd86355a9f7500948b0c6af883e/fastcrc-0.3.3-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b12c31939ecef5bb2b6204ebe78ce99715d928a08bce73021a84f37c609f4a3",
                "md5": "508b4c71302f18e020fdba3608a9d252",
                "sha256": "b3b915fedcda89b5d3f64fb6ac7e0626c953766223bd7f6f9776686c2db4dce0"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "508b4c71302f18e020fdba3608a9d252",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 475849,
            "upload_time": "2025-10-09T02:42:42",
            "upload_time_iso_8601": "2025-10-09T02:42:42.507130Z",
            "url": "https://files.pythonhosted.org/packages/7b/12/c31939ecef5bb2b6204ebe78ce99715d928a08bce73021a84f37c609f4a3/fastcrc-0.3.3-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db2a2bfc01475748507e5fce7f8d2eb290559172a4b3bd384a8e114bfceeca45",
                "md5": "c5d3fbc5615697c31d397077721d19c8",
                "sha256": "6624fd88e355df688dc93d0b4c742603f8896831c274ec40b28439199e35c25e"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5d3fbc5615697c31d397077721d19c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 451121,
            "upload_time": "2025-10-09T02:42:59",
            "upload_time_iso_8601": "2025-10-09T02:42:59.536128Z",
            "url": "https://files.pythonhosted.org/packages/db/2a/2bfc01475748507e5fce7f8d2eb290559172a4b3bd384a8e114bfceeca45/fastcrc-0.3.3-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f5a556a56c11155697e09eacd15f4a32565072b790c864fd1311a9f0a41865f",
                "md5": "e2aef339ddecffdfb6bf6d8ae510d4ac",
                "sha256": "b5f0181e3e74e90040082a782b95765e93746f2e47c55f99dc33f4fd2f6ba743"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2aef339ddecffdfb6bf6d8ae510d4ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 280341,
            "upload_time": "2025-10-09T02:40:28",
            "upload_time_iso_8601": "2025-10-09T02:40:28.448271Z",
            "url": "https://files.pythonhosted.org/packages/1f/5a/556a56c11155697e09eacd15f4a32565072b790c864fd1311a9f0a41865f/fastcrc-0.3.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5cf10ffca9b947d37197130bf710ffee53d754765f98e8bac89c1f1d4e0520e9",
                "md5": "13ccb5eda56d854558b52a39e92b90f6",
                "sha256": "fd1d3bdd8cf483840fd8238382a44d4892b9bb9a63d5b25b1f5e20b06b7bf718"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "13ccb5eda56d854558b52a39e92b90f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 286720,
            "upload_time": "2025-10-09T02:40:43",
            "upload_time_iso_8601": "2025-10-09T02:40:43.725762Z",
            "url": "https://files.pythonhosted.org/packages/5c/f1/0ffca9b947d37197130bf710ffee53d754765f98e8bac89c1f1d4e0520e9/fastcrc-0.3.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bfce348b3d33255326f726a68191c84b96f8c8664e30e1bb848d25e86b9d981a",
                "md5": "f251809850d3c8b93c04a946053e958c",
                "sha256": "f7b7967ea223e8d18a1a0abd3e9b6b64c6f22e68ed249a10e333850d89de3c24"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f251809850d3c8b93c04a946053e958c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 419122,
            "upload_time": "2025-10-09T02:41:00",
            "upload_time_iso_8601": "2025-10-09T02:41:00.991842Z",
            "url": "https://files.pythonhosted.org/packages/bf/ce/348b3d33255326f726a68191c84b96f8c8664e30e1bb848d25e86b9d981a/fastcrc-0.3.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f4f2f22c21d4eb56b2173fc35ebd979ef5cb0dc95eab35d770baf4741978fbb",
                "md5": "1372c9b903e7adf7b716ea5ddb2c38c2",
                "sha256": "320366edaf266cc320fa390b8c4da8d9c7471c3e414526a923266ec554a848c7"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1372c9b903e7adf7b716ea5ddb2c38c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 309082,
            "upload_time": "2025-10-09T02:41:17",
            "upload_time_iso_8601": "2025-10-09T02:41:17.101520Z",
            "url": "https://files.pythonhosted.org/packages/2f/4f/2f22c21d4eb56b2173fc35ebd979ef5cb0dc95eab35d770baf4741978fbb/fastcrc-0.3.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "769974b804163e19ec0c1ff5dcc6e6d84c18d4237e7bf73105dd9a973737322b",
                "md5": "be82e97a3449cbfe5e825029f4330f91",
                "sha256": "929bee0a97a2955e5d3597f06d8754d95caed69a69ccd13a0582c5a4dcf1f92c"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be82e97a3449cbfe5e825029f4330f91",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 285855,
            "upload_time": "2025-10-09T02:41:47",
            "upload_time_iso_8601": "2025-10-09T02:41:47.664530Z",
            "url": "https://files.pythonhosted.org/packages/76/99/74b804163e19ec0c1ff5dcc6e6d84c18d4237e7bf73105dd9a973737322b/fastcrc-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f48be60a1431056eeb49450a68e657786b48ec6e64374f9e7faf7906cc52bf22",
                "md5": "2f3ece3a1633aae75e2837d45cdf9a6a",
                "sha256": "e85b6745919839af23aef20d04f5f5a05bcaccfcfe9dd6a13f12944c4f0c512e"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2f3ece3a1633aae75e2837d45cdf9a6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 295605,
            "upload_time": "2025-10-09T02:41:32",
            "upload_time_iso_8601": "2025-10-09T02:41:32.249135Z",
            "url": "https://files.pythonhosted.org/packages/f4/8b/e60a1431056eeb49450a68e657786b48ec6e64374f9e7faf7906cc52bf22/fastcrc-0.3.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9e382128a346ab466b2e32c8059d60cfce5c08a374889f088b8f6368c7c5d53",
                "md5": "8d920c86afd02be5f579a10e7107bad4",
                "sha256": "70cc0ee0648a14f6bbe672846c987fccc5dadbeee9806e5d229411c413a4f697"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8d920c86afd02be5f579a10e7107bad4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 461219,
            "upload_time": "2025-10-09T02:42:09",
            "upload_time_iso_8601": "2025-10-09T02:42:09.849942Z",
            "url": "https://files.pythonhosted.org/packages/b9/e3/82128a346ab466b2e32c8059d60cfce5c08a374889f088b8f6368c7c5d53/fastcrc-0.3.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9e0a7a7b5860d4e075255296c9b3ad61238c3b42567ed5ffd4c8c25841a2b7d",
                "md5": "79130e31ca09c1331669c829d0d371b2",
                "sha256": "30e5c88e7a7208984e31ce0beca3b102d00c82c503fd03e15c35a204a7c96594"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "79130e31ca09c1331669c829d0d371b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 551169,
            "upload_time": "2025-10-09T02:42:27",
            "upload_time_iso_8601": "2025-10-09T02:42:27.144820Z",
            "url": "https://files.pythonhosted.org/packages/c9/e0/a7a7b5860d4e075255296c9b3ad61238c3b42567ed5ffd4c8c25841a2b7d/fastcrc-0.3.3-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a03e75746d1d7fed2116f489d5c8678425e0e67822ba1e7bd6dc46e2c231726",
                "md5": "38830ac276a6fc041dd8dd91fae09119",
                "sha256": "d2bd672e241e936fa1c65503f326568a7f76adc888f4eb920317ad49b07f5105"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "38830ac276a6fc041dd8dd91fae09119",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 476381,
            "upload_time": "2025-10-09T02:42:44",
            "upload_time_iso_8601": "2025-10-09T02:42:44.967049Z",
            "url": "https://files.pythonhosted.org/packages/3a/03/e75746d1d7fed2116f489d5c8678425e0e67822ba1e7bd6dc46e2c231726/fastcrc-0.3.3-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e58b70d70e77a67f0c815ccb4075d90e4e067c1ae8dbbe4b855a8f243409535",
                "md5": "64878adcd5b2cae21776d0ed348e1d58",
                "sha256": "57361461cef9a3ced8ccfae6de85b04069da26cec75b4ca4da679371aa670a68"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64878adcd5b2cae21776d0ed348e1d58",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 451209,
            "upload_time": "2025-10-09T02:43:00",
            "upload_time_iso_8601": "2025-10-09T02:43:00.980128Z",
            "url": "https://files.pythonhosted.org/packages/3e/58/b70d70e77a67f0c815ccb4075d90e4e067c1ae8dbbe4b855a8f243409535/fastcrc-0.3.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52402101099f5eefc5e0ca9064a6e6d1f3cc39bd19b2a0591c9d6715f603c5d8",
                "md5": "09f577f16ebe62bc485d6ee5ef4b6171",
                "sha256": "2d787a4cab71144a60b2e25c97eee82ef6308d288c2e48e74659ae2c46e9e80e"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "09f577f16ebe62bc485d6ee5ef4b6171",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 147460,
            "upload_time": "2025-10-09T02:43:11",
            "upload_time_iso_8601": "2025-10-09T02:43:11.996065Z",
            "url": "https://files.pythonhosted.org/packages/52/40/2101099f5eefc5e0ca9064a6e6d1f3cc39bd19b2a0591c9d6715f603c5d8/fastcrc-0.3.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7017c54f34206e6b49dbd84638993c0db15bc597f539f7fc832ad735b53c576",
                "md5": "7bd56b2bf006756245dcac6ecfe838b1",
                "sha256": "9215ee0a04ff530182050d84daaab520f3d6633a2883445a84461983c92c1542"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7bd56b2bf006756245dcac6ecfe838b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 280949,
            "upload_time": "2025-10-09T02:40:30",
            "upload_time_iso_8601": "2025-10-09T02:40:30.028867Z",
            "url": "https://files.pythonhosted.org/packages/a7/01/7c54f34206e6b49dbd84638993c0db15bc597f539f7fc832ad735b53c576/fastcrc-0.3.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aec6e107ccc9ceef8ed1e897324b709b7478573e76a1e12e010c9ee9b7053201",
                "md5": "57422f39f50d19f72ff1e89df264bffe",
                "sha256": "f421ce65cb8ffb6a40b0b0c63d6c9c3de673097327ddfbaff88a60ae78941777"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "57422f39f50d19f72ff1e89df264bffe",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 287184,
            "upload_time": "2025-10-09T02:40:45",
            "upload_time_iso_8601": "2025-10-09T02:40:45.110529Z",
            "url": "https://files.pythonhosted.org/packages/ae/c6/e107ccc9ceef8ed1e897324b709b7478573e76a1e12e010c9ee9b7053201/fastcrc-0.3.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c47bc6155c07b6bea0a9d4cea95bc4a2a01c0e08fe8f8896ad59cd02a23dd0b",
                "md5": "b305b8577f0f331683d7b3063315f8be",
                "sha256": "d73cdf5d0a252686fd80cd01c5305872efea6723c06d886f83c0b1c0a597a625"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b305b8577f0f331683d7b3063315f8be",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 418557,
            "upload_time": "2025-10-09T02:41:02",
            "upload_time_iso_8601": "2025-10-09T02:41:02.693162Z",
            "url": "https://files.pythonhosted.org/packages/7c/47/bc6155c07b6bea0a9d4cea95bc4a2a01c0e08fe8f8896ad59cd02a23dd0b/fastcrc-0.3.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d930a603c529bcb415139757ff444c9a0d289745fe6d1dcdf2eefbbbd50184a9",
                "md5": "f432ed539f847041a8d3f9e4be254922",
                "sha256": "bdfb948fb92393ccf6b21a8f472f71cad8e3ec4acf723fc95218c194aefcf082"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f432ed539f847041a8d3f9e4be254922",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 309642,
            "upload_time": "2025-10-09T02:41:18",
            "upload_time_iso_8601": "2025-10-09T02:41:18.852489Z",
            "url": "https://files.pythonhosted.org/packages/d9/30/a603c529bcb415139757ff444c9a0d289745fe6d1dcdf2eefbbbd50184a9/fastcrc-0.3.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1c089a62e7be2c475c55903a1f3fa1f099f37bc355598a224acfd24461af49e",
                "md5": "a4e5ad2e15fa9d17b9962b4e03b8b118",
                "sha256": "f575396b476c5c529fd5aa5142f7124832b9f591192d98c28d6c9235e3e110fc"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a4e5ad2e15fa9d17b9962b4e03b8b118",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 461781,
            "upload_time": "2025-10-09T02:42:11",
            "upload_time_iso_8601": "2025-10-09T02:42:11.412326Z",
            "url": "https://files.pythonhosted.org/packages/a1/c0/89a62e7be2c475c55903a1f3fa1f099f37bc355598a224acfd24461af49e/fastcrc-0.3.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cdaa2b396be8c9dd126af7cfb9a2646614bb64f1046fddaa7448352e3b806530",
                "md5": "fd1dfabcc7c02098b84f44af75187448",
                "sha256": "9809ca442e51b5f07744b17fe1f328708eca9795e4e5fca08db6aad288ff4e9c"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fd1dfabcc7c02098b84f44af75187448",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 551520,
            "upload_time": "2025-10-09T02:42:28",
            "upload_time_iso_8601": "2025-10-09T02:42:28.606065Z",
            "url": "https://files.pythonhosted.org/packages/cd/aa/2b396be8c9dd126af7cfb9a2646614bb64f1046fddaa7448352e3b806530/fastcrc-0.3.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "787d275dd3e6bab3ffc747f35724c69eb14d0fa65c29a06fdb4260ae2323477e",
                "md5": "c9196791e2eea8d43b1e94dbdb829a7b",
                "sha256": "b1c8d7821a44314cfac7fc6ad2ea031afe7e852dd3758b65557da6b4cb1fdcf4"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c9196791e2eea8d43b1e94dbdb829a7b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 476521,
            "upload_time": "2025-10-09T02:42:46",
            "upload_time_iso_8601": "2025-10-09T02:42:46.377719Z",
            "url": "https://files.pythonhosted.org/packages/78/7d/275dd3e6bab3ffc747f35724c69eb14d0fa65c29a06fdb4260ae2323477e/fastcrc-0.3.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7092fbd38c016965017a179c6c58cdee350e42715bf2944bdace6b2f7d86aaee",
                "md5": "fb704e1ad735845fe0bbf6505e73a7f6",
                "sha256": "e894c1c40429add01edf439daa8da38892e1956d4f3dcad7dae02ef09110d9e8"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb704e1ad735845fe0bbf6505e73a7f6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 451686,
            "upload_time": "2025-10-09T02:43:02",
            "upload_time_iso_8601": "2025-10-09T02:43:02.354799Z",
            "url": "https://files.pythonhosted.org/packages/70/92/fbd38c016965017a179c6c58cdee350e42715bf2944bdace6b2f7d86aaee/fastcrc-0.3.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66e4665d6749de53c631728275abcaeca515c90ff468ceecd85eb3ae710fb0f3",
                "md5": "cfe2a1ac32754d43b689f23b5eb9feed",
                "sha256": "12aedab91f22323fe3ca673a1f6ce2ed55b4eca284d541d8e9e7338ed3c73a13"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cfe2a1ac32754d43b689f23b5eb9feed",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 280508,
            "upload_time": "2025-10-09T02:40:31",
            "upload_time_iso_8601": "2025-10-09T02:40:31.272820Z",
            "url": "https://files.pythonhosted.org/packages/66/e4/665d6749de53c631728275abcaeca515c90ff468ceecd85eb3ae710fb0f3/fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52f4743305011c357e98adf45aad3fe5d05c5047815a85f358fd95cadda7a7e0",
                "md5": "872fefed047b9962d3dc767db81b3599",
                "sha256": "ba1626083bcb9e68f898c9c260f7b6663213c55a17005f0233ae8326d873fbff"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "872fefed047b9962d3dc767db81b3599",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 287142,
            "upload_time": "2025-10-09T02:40:46",
            "upload_time_iso_8601": "2025-10-09T02:40:46.412882Z",
            "url": "https://files.pythonhosted.org/packages/52/f4/743305011c357e98adf45aad3fe5d05c5047815a85f358fd95cadda7a7e0/fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88efbc4ddf5b41d9a3b66d09dfb2b424048bdfb3ebce2a1822104fa9ac224736",
                "md5": "06715a0044414720fa0831f251b13621",
                "sha256": "4529492beab177f2631e1d14d6ef77ada58b14674f20d71da83e49273ea35318"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "06715a0044414720fa0831f251b13621",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 417320,
            "upload_time": "2025-10-09T02:41:04",
            "upload_time_iso_8601": "2025-10-09T02:41:04.062844Z",
            "url": "https://files.pythonhosted.org/packages/88/ef/bc4ddf5b41d9a3b66d09dfb2b424048bdfb3ebce2a1822104fa9ac224736/fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e6787e9d66c9eb0dd4183d83620a6c7bdcbd5c6c28463ac461fce124168c7c51",
                "md5": "a023eaca52790f018cff10fac3548685",
                "sha256": "5c2a3d03fadc1c2dfb9feb138f274980adb3f74306e29dd75d7aba871dad5850"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a023eaca52790f018cff10fac3548685",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 309030,
            "upload_time": "2025-10-09T02:41:20",
            "upload_time_iso_8601": "2025-10-09T02:41:20.508914Z",
            "url": "https://files.pythonhosted.org/packages/e6/78/7e9d66c9eb0dd4183d83620a6c7bdcbd5c6c28463ac461fce124168c7c51/fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36650bedb03cd8a766491160b9309b87b8d035e035317e4257bfa7543f3f0cb4",
                "md5": "8f9beb5786d1250a7010464ddec7826d",
                "sha256": "826666c02fc0c7dd5a57e8a878642001c62c1a6a9fac15aa559f12caa5133579"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f9beb5786d1250a7010464ddec7826d",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 285525,
            "upload_time": "2025-10-09T02:41:48",
            "upload_time_iso_8601": "2025-10-09T02:41:48.906420Z",
            "url": "https://files.pythonhosted.org/packages/36/65/0bedb03cd8a766491160b9309b87b8d035e035317e4257bfa7543f3f0cb4/fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1788a80ca9fa9c108ec24d17d35f37533feb1061a13ac886ef4d0b283817de55",
                "md5": "b4c5204aab0cdd54ba34ff662ea51db4",
                "sha256": "51de7f9dd93cf28bd364e09f691bef6a617b2cd900209fc03181e524a360e1c4"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b4c5204aab0cdd54ba34ff662ea51db4",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 296267,
            "upload_time": "2025-10-09T02:41:33",
            "upload_time_iso_8601": "2025-10-09T02:41:33.677092Z",
            "url": "https://files.pythonhosted.org/packages/17/88/a80ca9fa9c108ec24d17d35f37533feb1061a13ac886ef4d0b283817de55/fastcrc-0.3.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87cc733a231d39f49e2eea916344749ad18cc35609158a75757a49959af615c5",
                "md5": "ebe1766adf63fdb3e7d7696143244481",
                "sha256": "c5977d510ac8cbf7a9a6d4a8efc3753449e503800dc4cec841afa587b23cd5c0"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ebe1766adf63fdb3e7d7696143244481",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 461425,
            "upload_time": "2025-10-09T02:42:12",
            "upload_time_iso_8601": "2025-10-09T02:42:12.915063Z",
            "url": "https://files.pythonhosted.org/packages/87/cc/733a231d39f49e2eea916344749ad18cc35609158a75757a49959af615c5/fastcrc-0.3.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bb9e9b9f7ab57236ceb518e7f9334f12b600baaf94db509587a2ca20bb4ba43",
                "md5": "1d9f84faf804eaf1f8176b65103da1a9",
                "sha256": "b8f3ccece440d784c7a2e29e88d5d3fb31d2a7004191620abe810decd9934b74"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1d9f84faf804eaf1f8176b65103da1a9",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 551590,
            "upload_time": "2025-10-09T02:42:29",
            "upload_time_iso_8601": "2025-10-09T02:42:29.913065Z",
            "url": "https://files.pythonhosted.org/packages/2b/b9/e9b9f7ab57236ceb518e7f9334f12b600baaf94db509587a2ca20bb4ba43/fastcrc-0.3.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85d0eeaef7e0f2328bec033f8f125254d476af72c8a06cd01a200de8ae77d482",
                "md5": "8ee7576da9197e8a0e043e30f323471b",
                "sha256": "887512a6d789e2badab67c42ea5d504598391f3731cbadd899c34abe981e2a86"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "8ee7576da9197e8a0e043e30f323471b",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 476521,
            "upload_time": "2025-10-09T02:42:47",
            "upload_time_iso_8601": "2025-10-09T02:42:47.777546Z",
            "url": "https://files.pythonhosted.org/packages/85/d0/eeaef7e0f2328bec033f8f125254d476af72c8a06cd01a200de8ae77d482/fastcrc-0.3.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "412ad333cc7cfa3a307a00deb24de655cc5db432329797f48539867983ce9a59",
                "md5": "fdc34fcc6bbc22abd136ff6a6a45dc76",
                "sha256": "9b84eb69ef26816b66acde80786ddfd2c3ed3a8b41e680f0cb2c8f732155cd98"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fdc34fcc6bbc22abd136ff6a6a45dc76",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.7",
            "size": 451443,
            "upload_time": "2025-10-09T02:43:03",
            "upload_time_iso_8601": "2025-10-09T02:43:03.737767Z",
            "url": "https://files.pythonhosted.org/packages/41/2a/d333cc7cfa3a307a00deb24de655cc5db432329797f48539867983ce9a59/fastcrc-0.3.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1296199884dc8141d41252d5e7372119a754e07b0157158a2cd4bd1cfc19246e",
                "md5": "532e1783fb7b202f57d351c544fe1fb0",
                "sha256": "49bf56f25bb05b54d12fa0c1bff36907192f87cba0464d9afb9128276495d5e0"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "532e1783fb7b202f57d351c544fe1fb0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 281302,
            "upload_time": "2025-10-09T02:40:32",
            "upload_time_iso_8601": "2025-10-09T02:40:32.605803Z",
            "url": "https://files.pythonhosted.org/packages/12/96/199884dc8141d41252d5e7372119a754e07b0157158a2cd4bd1cfc19246e/fastcrc-0.3.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5d3b4cce96c0aa94cf8d4be17ffba655a7654761238b188c64b89a2266853eb",
                "md5": "8eaa92b41160426238171585afa057db",
                "sha256": "9596093fdbfbb08738dff54f509d5892f812466c5c2c28b17d13a9b0d326c515"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8eaa92b41160426238171585afa057db",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 287605,
            "upload_time": "2025-10-09T02:40:48",
            "upload_time_iso_8601": "2025-10-09T02:40:48.751454Z",
            "url": "https://files.pythonhosted.org/packages/a5/d3/b4cce96c0aa94cf8d4be17ffba655a7654761238b188c64b89a2266853eb/fastcrc-0.3.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67e06c718de50a267575869f9dd27d7f8be805d7c6517f4d1c8bef53be493276",
                "md5": "2dfd04e8033caf9a14c4bb6c0cc3c651",
                "sha256": "51463cc8f8213c5a66708861500231f78c237a09b93cbb6e15ed3e875549f5fa"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2dfd04e8033caf9a14c4bb6c0cc3c651",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 420115,
            "upload_time": "2025-10-09T02:41:05",
            "upload_time_iso_8601": "2025-10-09T02:41:05.457160Z",
            "url": "https://files.pythonhosted.org/packages/67/e0/6c718de50a267575869f9dd27d7f8be805d7c6517f4d1c8bef53be493276/fastcrc-0.3.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70fe4c3da1ed384ed8f37e703d8ff3221681340de9f76f73867de45898704d4f",
                "md5": "84776a6b1a50a27d3af6cdf2eb6a4d0e",
                "sha256": "e5ecf7e231ab89c4bf04ca6d8869312faf6cd8fb2ab47d71925684c6e0a93ef2"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "84776a6b1a50a27d3af6cdf2eb6a4d0e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 309819,
            "upload_time": "2025-10-09T02:41:22",
            "upload_time_iso_8601": "2025-10-09T02:41:22.452425Z",
            "url": "https://files.pythonhosted.org/packages/70/fe/4c3da1ed384ed8f37e703d8ff3221681340de9f76f73867de45898704d4f/fastcrc-0.3.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d2efa435bfaa5343c40378167c823326697120564d648f45abf0e633ccdba77",
                "md5": "3f5ff7da66d55a3b01b76b46e2c270b6",
                "sha256": "480de1964222ed0e0c9898684a5a818d30998c8abb5b0dec61454b76e2454b4f"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3f5ff7da66d55a3b01b76b46e2c270b6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 462179,
            "upload_time": "2025-10-09T02:42:14",
            "upload_time_iso_8601": "2025-10-09T02:42:14.308503Z",
            "url": "https://files.pythonhosted.org/packages/5d/2e/fa435bfaa5343c40378167c823326697120564d648f45abf0e633ccdba77/fastcrc-0.3.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64d50405df9a042b323c96c37dd3e89209613b3738749289a78133f5cbddf557",
                "md5": "9b3dcc597da2cd0c626a3ea5af2b7aff",
                "sha256": "78094a44b85e67448487d14cc397ea684db235d3ebe4f0cde85153ee4a8ce821"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9b3dcc597da2cd0c626a3ea5af2b7aff",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 551807,
            "upload_time": "2025-10-09T02:42:31",
            "upload_time_iso_8601": "2025-10-09T02:42:31.300059Z",
            "url": "https://files.pythonhosted.org/packages/64/d5/0405df9a042b323c96c37dd3e89209613b3738749289a78133f5cbddf557/fastcrc-0.3.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c57ae7fa00f7f049719955b620c5be4b7c17f79e0288b621b60e4c9cc76aa43",
                "md5": "30d12bf1c8c893dc1fed14ee76a43403",
                "sha256": "4d25fc43bd24f24c32f38d7fd91a225c6e3cc090cd34478ba71dae16f12efabc"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "30d12bf1c8c893dc1fed14ee76a43403",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 477023,
            "upload_time": "2025-10-09T02:42:49",
            "upload_time_iso_8601": "2025-10-09T02:42:49.195940Z",
            "url": "https://files.pythonhosted.org/packages/4c/57/ae7fa00f7f049719955b620c5be4b7c17f79e0288b621b60e4c9cc76aa43/fastcrc-0.3.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6cee814d62ee881d227e88bd80174984049fc562aed6175a2db7a65481e5b559",
                "md5": "67e7ae83cff7c2ed2124dd7f7e8095a1",
                "sha256": "5411dc8b004f8b9b63ec081dc393b38bdad864ccffe7788c6a3d568f25f89676"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67e7ae83cff7c2ed2124dd7f7e8095a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 452050,
            "upload_time": "2025-10-09T02:43:05",
            "upload_time_iso_8601": "2025-10-09T02:43:05.084353Z",
            "url": "https://files.pythonhosted.org/packages/6c/ee/814d62ee881d227e88bd80174984049fc562aed6175a2db7a65481e5b559/fastcrc-0.3.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64f5adbdf97c307c502cdb4a9d78814b38398c48325595a1b0063db8861d7cc6",
                "md5": "b6d75eab269f2cf305d265b20917edb6",
                "sha256": "019bafdcae27406b26f18ee97a994d3a860f7661f31289160a064dbacea2fef1"
            },
            "downloads": -1,
            "filename": "fastcrc-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "b6d75eab269f2cf305d265b20917edb6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 11867,
            "upload_time": "2025-10-09T02:43:06",
            "upload_time_iso_8601": "2025-10-09T02:43:06.320454Z",
            "url": "https://files.pythonhosted.org/packages/64/f5/adbdf97c307c502cdb4a9d78814b38398c48325595a1b0063db8861d7cc6/fastcrc-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-09 02:43:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "overcat",
    "github_project": "fastcrc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fastcrc"
}
        
Elapsed time: 1.45606s