pycrc32


Namepycrc32 JSON
Version 0.3.0 PyPI version JSON
download
home_pagehttps://github.com/code-inflation/pycrc32
SummaryPython module for SIMD-accelerated CRC32 checksum computation
upload_time2024-12-15 17:01:33
maintainerNone
docs_urlNone
authorcybuerg <robin.buergi@gmail.com>
requires_python>=3.8
licenseMIT License
keywords crc crc32 simd checksum
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pycrc32
![PyPI - Version](https://img.shields.io/pypi/v/pycrc32)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pycrc32)
![PyPI - License](https://img.shields.io/pypi/l/pycrc32)
![PyPI - Downloads](https://img.shields.io/pypi/dm/pycrc32)


`pycrc32` is a Python module for SIMD-accelerated CRC32 checksum computation.  
Big thanks to [rust-crc32fast](https://github.com/srijs/rust-crc32fast) - this project just provides Python bindings for their Rust implementation.

## Installation
```sh
pip install pycrc32
```

## Usage
```python
from pycrc32 import crc32

data = b"123456789"
print(f"crc32 for {data!r} is {crc32(data)}")
```

### Advanced Checksum Calculation with `Hasher`
For scenarios that require more flexibility, such as processing large amounts of data or computing the checksum in stages, you can use the `Hasher` class:
```python
from pycrc32 import Hasher

# Create a new Hasher instance
hasher = Hasher()

# Update the hasher with data chunks
hasher.update(b"123456")
hasher.update(b"789")

# Finalize the computation and get the checksum
checksum = hasher.finalize()
print(f"Checksum: {checksum}")

# Reset the hasher to compute another checksum
hasher.reset()
hasher.update(b"The quick brown fox jumps over the lazy dog")
new_checksum = hasher.finalize()
print(f"New checksum: {new_checksum}")
```

You can also initialize a `Hasher` with a specific initial CRC32 state:
```python
initial_crc = 12345678
hasher = Hasher.with_initial(initial_crc)

hasher.update(b"additional data")
final_checksum = hasher.finalize()
print(f"Final checksum with initial state: {final_checksum}")
```

To combine checksums from different data blocks without needing to concatenate the data, use the `combine` method:
```python
hasher1 = Hasher()
hasher1.update(b"Data block 1")
checksum1 = hasher1.finalize()

hasher2 = Hasher()
hasher2.update(b"Data block 2")
checksum2 = hasher2.finalize()

# Combine checksums from hasher1 into hasher2
hasher1.combine(hasher2)  # Combine the state of hasher2 into hasher1

# The final checksum after combination
combined_checksum = hasher1.finalize()
print(f"Combined checksum: {combined_checksum}")
```

## Speed
The performance of `pycrc32` has been benchmarked on a trusty old Intel i7-8550U using 32MB of random input data. Below is a comparison of the median computation times across different libraries:

| Library   | Median Time (s) |
|-----------|-----------------|
| `pycrc32` | 0.002703        |
| `zlib`    | 0.019796        |
| `fastcrc` | 0.071426        |

We reach almost 10x performance improvements compared to the `zlib` baseline implementation.  
See `scripts/bench.py` for more details.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/code-inflation/pycrc32",
    "name": "pycrc32",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "crc, crc32, simd, checksum",
    "author": "cybuerg <robin.buergi@gmail.com>",
    "author_email": "Robin B\u00fcrgi <robin.buergi@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/1d/f8/873c300b113847147bbd553471b54f57e7835ab20029fb1557ee2faf904a/pycrc32-0.3.0.tar.gz",
    "platform": null,
    "description": "# pycrc32\n![PyPI - Version](https://img.shields.io/pypi/v/pycrc32)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pycrc32)\n![PyPI - License](https://img.shields.io/pypi/l/pycrc32)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/pycrc32)\n\n\n`pycrc32` is a Python module for SIMD-accelerated CRC32 checksum computation.  \nBig thanks to [rust-crc32fast](https://github.com/srijs/rust-crc32fast) - this project just provides Python bindings for their Rust implementation.\n\n## Installation\n```sh\npip install pycrc32\n```\n\n## Usage\n```python\nfrom pycrc32 import crc32\n\ndata = b\"123456789\"\nprint(f\"crc32 for {data!r} is {crc32(data)}\")\n```\n\n### Advanced Checksum Calculation with `Hasher`\nFor scenarios that require more flexibility, such as processing large amounts of data or computing the checksum in stages, you can use the `Hasher` class:\n```python\nfrom pycrc32 import Hasher\n\n# Create a new Hasher instance\nhasher = Hasher()\n\n# Update the hasher with data chunks\nhasher.update(b\"123456\")\nhasher.update(b\"789\")\n\n# Finalize the computation and get the checksum\nchecksum = hasher.finalize()\nprint(f\"Checksum: {checksum}\")\n\n# Reset the hasher to compute another checksum\nhasher.reset()\nhasher.update(b\"The quick brown fox jumps over the lazy dog\")\nnew_checksum = hasher.finalize()\nprint(f\"New checksum: {new_checksum}\")\n```\n\nYou can also initialize a `Hasher` with a specific initial CRC32 state:\n```python\ninitial_crc = 12345678\nhasher = Hasher.with_initial(initial_crc)\n\nhasher.update(b\"additional data\")\nfinal_checksum = hasher.finalize()\nprint(f\"Final checksum with initial state: {final_checksum}\")\n```\n\nTo combine checksums from different data blocks without needing to concatenate the data, use the `combine` method:\n```python\nhasher1 = Hasher()\nhasher1.update(b\"Data block 1\")\nchecksum1 = hasher1.finalize()\n\nhasher2 = Hasher()\nhasher2.update(b\"Data block 2\")\nchecksum2 = hasher2.finalize()\n\n# Combine checksums from hasher1 into hasher2\nhasher1.combine(hasher2)  # Combine the state of hasher2 into hasher1\n\n# The final checksum after combination\ncombined_checksum = hasher1.finalize()\nprint(f\"Combined checksum: {combined_checksum}\")\n```\n\n## Speed\nThe performance of `pycrc32` has been benchmarked on a trusty old Intel i7-8550U using 32MB of random input data. Below is a comparison of the median computation times across different libraries:\n\n| Library   | Median Time (s) |\n|-----------|-----------------|\n| `pycrc32` | 0.002703        |\n| `zlib`    | 0.019796        |\n| `fastcrc` | 0.071426        |\n\nWe reach almost 10x performance improvements compared to the `zlib` baseline implementation.  \nSee `scripts/bench.py` for more details.\n\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Python module for SIMD-accelerated CRC32 checksum computation",
    "version": "0.3.0",
    "project_urls": {
        "Homepage": "https://github.com/code-inflation/pycrc32",
        "Repository": "https://github.com/code-inflation/pycrc32"
    },
    "split_keywords": [
        "crc",
        " crc32",
        " simd",
        " checksum"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1092fbb40da89e7f14c31e3a73863c65ccab020705d927d4158878c150a39f94",
                "md5": "6487482fe6358adee380ee2ed1cef1a0",
                "sha256": "4c8c0befd3660e5005eaa6962d39944eb8f0be8bdf6fc186906d25fb31fd2ea0"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6487482fe6358adee380ee2ed1cef1a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 275554,
            "upload_time": "2024-12-15T16:58:39",
            "upload_time_iso_8601": "2024-12-15T16:58:39.320381Z",
            "url": "https://files.pythonhosted.org/packages/10/92/fbb40da89e7f14c31e3a73863c65ccab020705d927d4158878c150a39f94/pycrc32-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a7881dfdb39254bb4bdcc5b771897f68febbad8831af946ae2c4a56454adbee",
                "md5": "d9c07ed1218f955e256016dcf157ded8",
                "sha256": "2b8910a6ed386071d83a044b32ddab9c2b10a6b55a210cc16de1aca91fc06058"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d9c07ed1218f955e256016dcf157ded8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 282687,
            "upload_time": "2024-12-15T16:59:04",
            "upload_time_iso_8601": "2024-12-15T16:59:04.728765Z",
            "url": "https://files.pythonhosted.org/packages/6a/78/81dfdb39254bb4bdcc5b771897f68febbad8831af946ae2c4a56454adbee/pycrc32-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c588de90d732465bf763a4b4329286c4318b7ddd51952307499d3c706dbc4651",
                "md5": "921cd1d778a450b1f84e6dc58d3e71f6",
                "sha256": "fe33e2e9183e5e133ec9f4916576e21336333a4e6703bdb518297af201bb3cfe"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "921cd1d778a450b1f84e6dc58d3e71f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 315355,
            "upload_time": "2024-12-15T16:59:26",
            "upload_time_iso_8601": "2024-12-15T16:59:26.561329Z",
            "url": "https://files.pythonhosted.org/packages/c5/88/de90d732465bf763a4b4329286c4318b7ddd51952307499d3c706dbc4651/pycrc32-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbeb15fdd4e1c23c94458027360613d05a7db795a349a7900443250f0a2c30f0",
                "md5": "c006f78b86c2e8252d6c4f1c6b5eb0c0",
                "sha256": "dd7255f869c8df40323314874286bf34bcfb28d433dc3b1c3f7e9cc0fc49d102"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c006f78b86c2e8252d6c4f1c6b5eb0c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 317296,
            "upload_time": "2024-12-15T16:59:45",
            "upload_time_iso_8601": "2024-12-15T16:59:45.626878Z",
            "url": "https://files.pythonhosted.org/packages/fb/eb/15fdd4e1c23c94458027360613d05a7db795a349a7900443250f0a2c30f0/pycrc32-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04c08eddc4f70488ccb75c82bf908890aecc18239daaf99dd0fb9926dbd1ff52",
                "md5": "3875a2c5db41a51ed47cb901d0f60e34",
                "sha256": "d874fdd7ee430484d4839e6eb9f9a1899d14586491cf186cfe3648986a5c4f88"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3875a2c5db41a51ed47cb901d0f60e34",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 278494,
            "upload_time": "2024-12-15T17:00:11",
            "upload_time_iso_8601": "2024-12-15T17:00:11.004454Z",
            "url": "https://files.pythonhosted.org/packages/04/c0/8eddc4f70488ccb75c82bf908890aecc18239daaf99dd0fb9926dbd1ff52/pycrc32-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7123aabf667bfbb37273dc5132426b9f8539aa7359d4ead2ffd4a8fd29ed8b6",
                "md5": "6fc68cf57a958e98f801a27766fdca17",
                "sha256": "cfe73a47c0b01b87a9c83abf79a1c21b6d561b20d0a94831fc13880a3988c7d9"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "6fc68cf57a958e98f801a27766fdca17",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 293820,
            "upload_time": "2024-12-15T16:59:59",
            "upload_time_iso_8601": "2024-12-15T16:59:59.671314Z",
            "url": "https://files.pythonhosted.org/packages/c7/12/3aabf667bfbb37273dc5132426b9f8539aa7359d4ead2ffd4a8fd29ed8b6/pycrc32-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9c39a3b41858d88b28c97eddb4638cdea162fa050c34bbd81298e0afc545a0d",
                "md5": "de9ddfa5cda84821eee5d36dbef24682",
                "sha256": "0342a14928f2864326224827fdbc4a90f37d8bc49b438102e7a6517b9953936d"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "de9ddfa5cda84821eee5d36dbef24682",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 453750,
            "upload_time": "2024-12-15T17:00:33",
            "upload_time_iso_8601": "2024-12-15T17:00:33.898482Z",
            "url": "https://files.pythonhosted.org/packages/d9/c3/9a3b41858d88b28c97eddb4638cdea162fa050c34bbd81298e0afc545a0d/pycrc32-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2f590a18a347d89f85615bcb2304f7ea0787b751d18078ee2323f1dc7e35a88",
                "md5": "cd9ffb54fa259868d5de73fe14bab0df",
                "sha256": "678232665d546ec0c014a72111bacc70e40957b3134d254f1f639362b30dc888"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cd9ffb54fa259868d5de73fe14bab0df",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 545128,
            "upload_time": "2024-12-15T17:00:54",
            "upload_time_iso_8601": "2024-12-15T17:00:54.021192Z",
            "url": "https://files.pythonhosted.org/packages/e2/f5/90a18a347d89f85615bcb2304f7ea0787b751d18078ee2323f1dc7e35a88/pycrc32-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17f30c581a12148867890189bdc0c14a78ec469405cee29e106201ad190b9755",
                "md5": "3fccb5acba2d33987f2585a9f328284b",
                "sha256": "0de2efe1200e7f0630a2ff67db794b60ef325ce1034cbd4003855e66a4acddbd"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3fccb5acba2d33987f2585a9f328284b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 474531,
            "upload_time": "2024-12-15T17:01:05",
            "upload_time_iso_8601": "2024-12-15T17:01:05.866803Z",
            "url": "https://files.pythonhosted.org/packages/17/f3/0c581a12148867890189bdc0c14a78ec469405cee29e106201ad190b9755/pycrc32-0.3.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "961739ec5705f8f5dc2b89830fa660aff0cc554fd305c925a9abf8c3cef2208e",
                "md5": "849c0319947009c035201159f13413b0",
                "sha256": "1fcaee503b450d19c0e4a524e6edc0f97d0070acc19ca9e244613fe1482ca9bc"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "849c0319947009c035201159f13413b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 449318,
            "upload_time": "2024-12-15T17:01:19",
            "upload_time_iso_8601": "2024-12-15T17:01:19.245007Z",
            "url": "https://files.pythonhosted.org/packages/96/17/39ec5705f8f5dc2b89830fa660aff0cc554fd305c925a9abf8c3cef2208e/pycrc32-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58553520cea6720134939b1b1a69169059424d66ee5a7a2aa0e6f7bb3fb4443e",
                "md5": "6c9079238317d03e2a73762d63f610c5",
                "sha256": "1a6839f855f9629967d43872efbd8e22789c7caf5f6029e876539deb9d95939c"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "6c9079238317d03e2a73762d63f610c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 139041,
            "upload_time": "2024-12-15T17:01:42",
            "upload_time_iso_8601": "2024-12-15T17:01:42.871709Z",
            "url": "https://files.pythonhosted.org/packages/58/55/3520cea6720134939b1b1a69169059424d66ee5a7a2aa0e6f7bb3fb4443e/pycrc32-0.3.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2819ab51235d25f5c69663be83a6978389c9d9b51132035a0f3bfc376bd848a0",
                "md5": "a2b3fbffdbd909990469ca06ed642e6a",
                "sha256": "b5f7a2b4a41e039896ab3de2432c61b239d290fcd2e844482d8b6fe48372b488"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a2b3fbffdbd909990469ca06ed642e6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 145105,
            "upload_time": "2024-12-15T17:01:34",
            "upload_time_iso_8601": "2024-12-15T17:01:34.463904Z",
            "url": "https://files.pythonhosted.org/packages/28/19/ab51235d25f5c69663be83a6978389c9d9b51132035a0f3bfc376bd848a0/pycrc32-0.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5fc3985771934e38cc6bde16359126e20bb844cd23abb55a9094a0a4d0b6de32",
                "md5": "0a0f2c3615c1cf85b907d18182d64e06",
                "sha256": "1164b8dc0dc1f3740869b429814018abdbd3cb26a358ca12c2fb3338522630dc"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a0f2c3615c1cf85b907d18182d64e06",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 251662,
            "upload_time": "2024-12-15T17:00:29",
            "upload_time_iso_8601": "2024-12-15T17:00:29.079045Z",
            "url": "https://files.pythonhosted.org/packages/5f/c3/985771934e38cc6bde16359126e20bb844cd23abb55a9094a0a4d0b6de32/pycrc32-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c332d841bf2a835cd1f3209ad3bfdcb97f2bd5e256ebe35193049f6317e9bbf",
                "md5": "2c420426a49a13126be1d34c3c25e8ab",
                "sha256": "696278580611ad19bdca7a42a308a2c94af46076f167b67a7d6ba3d97ff1be0f"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2c420426a49a13126be1d34c3c25e8ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 244618,
            "upload_time": "2024-12-15T17:00:22",
            "upload_time_iso_8601": "2024-12-15T17:00:22.566452Z",
            "url": "https://files.pythonhosted.org/packages/7c/33/2d841bf2a835cd1f3209ad3bfdcb97f2bd5e256ebe35193049f6317e9bbf/pycrc32-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "393d4838a0378182ffd63dc6d7c296b1296277535d46e1282b95f2c43c1bdd04",
                "md5": "d78a5da8871a1089c821ad48ca7f295e",
                "sha256": "3bf36899f73b1f6557db636ac33242bf5d3d35301dac9ea2fcf0f2f61496d8ec"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d78a5da8871a1089c821ad48ca7f295e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 275387,
            "upload_time": "2024-12-15T16:58:41",
            "upload_time_iso_8601": "2024-12-15T16:58:41.899312Z",
            "url": "https://files.pythonhosted.org/packages/39/3d/4838a0378182ffd63dc6d7c296b1296277535d46e1282b95f2c43c1bdd04/pycrc32-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06b186c1890a530199a0bc999fa178d3afc3e6b74ed1682af9350dd8d8d5b1ea",
                "md5": "280912ac3d65ccfbcb14cb3ab99d8d23",
                "sha256": "cc7516df1fed5724224f2fb446b5bb6e2c74ca57d3dbc892102c5e937f721655"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "280912ac3d65ccfbcb14cb3ab99d8d23",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 282831,
            "upload_time": "2024-12-15T16:59:10",
            "upload_time_iso_8601": "2024-12-15T16:59:10.443112Z",
            "url": "https://files.pythonhosted.org/packages/06/b1/86c1890a530199a0bc999fa178d3afc3e6b74ed1682af9350dd8d8d5b1ea/pycrc32-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c7f4f581415a93da1ad8e8220dc9f6542409b7812ca99ab41783c91c323fcc9",
                "md5": "36c8d52560817beaa52e1146d758b59f",
                "sha256": "807e95cf1b4eabd938783b1f953cb2151c8927f345df36363e11f68615f8f799"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "36c8d52560817beaa52e1146d758b59f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 315497,
            "upload_time": "2024-12-15T16:59:31",
            "upload_time_iso_8601": "2024-12-15T16:59:31.065313Z",
            "url": "https://files.pythonhosted.org/packages/7c/7f/4f581415a93da1ad8e8220dc9f6542409b7812ca99ab41783c91c323fcc9/pycrc32-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ebdd4ab9b5d4ce1cacdeedb2af12b3ba5a4b94f4bc44f27eaa51dd49e940276",
                "md5": "095783c78fc17d8edd550f0fc04e5111",
                "sha256": "81481da393ab33b9f04ac4f4896c420f0fd332851f1722ba627fc0d87625a9f5"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "095783c78fc17d8edd550f0fc04e5111",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 316880,
            "upload_time": "2024-12-15T16:59:46",
            "upload_time_iso_8601": "2024-12-15T16:59:46.844069Z",
            "url": "https://files.pythonhosted.org/packages/5e/bd/d4ab9b5d4ce1cacdeedb2af12b3ba5a4b94f4bc44f27eaa51dd49e940276/pycrc32-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00e525ca9a49844c660d925b0119b2e83f13398efeeec97ad60829fc09dbc395",
                "md5": "9287e9248c2b753b033c600492af76c6",
                "sha256": "a7ae033fa8354aec09524d1ce02dadec61ab2f1a20599a1d622fcdd2cd98d26f"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9287e9248c2b753b033c600492af76c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 278337,
            "upload_time": "2024-12-15T17:00:13",
            "upload_time_iso_8601": "2024-12-15T17:00:13.659541Z",
            "url": "https://files.pythonhosted.org/packages/00/e5/25ca9a49844c660d925b0119b2e83f13398efeeec97ad60829fc09dbc395/pycrc32-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d879669e34ddcaa84595f005b63b04bcc2672a62b0c6c86aaf85ba52ac23f36e",
                "md5": "39f41fdd59cc009b7319a090e8c4a06e",
                "sha256": "8fee5d3db0ea96f545e4d13ef9aa3381260b82899bdac36d0e924fd6042c4528"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "39f41fdd59cc009b7319a090e8c4a06e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 293714,
            "upload_time": "2024-12-15T17:00:00",
            "upload_time_iso_8601": "2024-12-15T17:00:00.865925Z",
            "url": "https://files.pythonhosted.org/packages/d8/79/669e34ddcaa84595f005b63b04bcc2672a62b0c6c86aaf85ba52ac23f36e/pycrc32-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc5852b5f305e12c4fd733e9fa5dda9548a2e1da9656214ec029fd479cbe520c",
                "md5": "6ff44df2b922e301b756670842af3187",
                "sha256": "d16855079dccabab14c161d60e8b5c6fcc24ba7b477f0d6b2b0fc61098020ef4"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6ff44df2b922e301b756670842af3187",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 453678,
            "upload_time": "2024-12-15T17:00:37",
            "upload_time_iso_8601": "2024-12-15T17:00:37.930493Z",
            "url": "https://files.pythonhosted.org/packages/bc/58/52b5f305e12c4fd733e9fa5dda9548a2e1da9656214ec029fd479cbe520c/pycrc32-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5e56215a55960142425263d8f4ff40528d7e2fb1b7a2353f6530cd9f8811198",
                "md5": "2ec915138f5192061bffb4e21775554a",
                "sha256": "356933f6129a53326002a3d096632e196a3941e3c4628c2a045b62618ece54e5"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2ec915138f5192061bffb4e21775554a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 545074,
            "upload_time": "2024-12-15T17:00:55",
            "upload_time_iso_8601": "2024-12-15T17:00:55.343957Z",
            "url": "https://files.pythonhosted.org/packages/a5/e5/6215a55960142425263d8f4ff40528d7e2fb1b7a2353f6530cd9f8811198/pycrc32-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8343a9c909f156d1190887db5de7cae0c85cd6c6746fe2679579dee09c5798cd",
                "md5": "dc2ef045e04121dbae9b1af52463dba9",
                "sha256": "477ae751f5b2beceecf0270489d02eab4f004f7e66e98d9a6556142639599de9"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "dc2ef045e04121dbae9b1af52463dba9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 474481,
            "upload_time": "2024-12-15T17:01:07",
            "upload_time_iso_8601": "2024-12-15T17:01:07.153826Z",
            "url": "https://files.pythonhosted.org/packages/83/43/a9c909f156d1190887db5de7cae0c85cd6c6746fe2679579dee09c5798cd/pycrc32-0.3.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de40d1746be437114f1dd5814dfdfdd939cd18b6aec9bfb1453248568c1442b6",
                "md5": "ddf03f2c9703355f4e568c10dc8f25d6",
                "sha256": "746a794be343f2f2dfb7cb145487aaf87df2399272f648747e147b046659f3e6"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ddf03f2c9703355f4e568c10dc8f25d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 449276,
            "upload_time": "2024-12-15T17:01:20",
            "upload_time_iso_8601": "2024-12-15T17:01:20.562492Z",
            "url": "https://files.pythonhosted.org/packages/de/40/d1746be437114f1dd5814dfdfdd939cd18b6aec9bfb1453248568c1442b6/pycrc32-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71445e5e54b43d341981aef92b357f95d8b6ee13f82d9c6192d8eb1c59b48b5b",
                "md5": "8956c950f5fd8dce47706c838013f917",
                "sha256": "21d09a82abfc1e1354444815b7c5eeabe3f459cdd134353db40aab2be6e7dfa8"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "8956c950f5fd8dce47706c838013f917",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 139022,
            "upload_time": "2024-12-15T17:01:44",
            "upload_time_iso_8601": "2024-12-15T17:01:44.026771Z",
            "url": "https://files.pythonhosted.org/packages/71/44/5e5e54b43d341981aef92b357f95d8b6ee13f82d9c6192d8eb1c59b48b5b/pycrc32-0.3.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d20728c5393484d62bd32c81b31fa22440aa2193446f8b5ec7d10e1032cc5837",
                "md5": "edcbaa80bcee25358678aceff932586c",
                "sha256": "477960deb180c2f5b93382f58ca99801639b81a07a775cf6f25401c804040fd6"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "edcbaa80bcee25358678aceff932586c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 145046,
            "upload_time": "2024-12-15T17:01:35",
            "upload_time_iso_8601": "2024-12-15T17:01:35.623331Z",
            "url": "https://files.pythonhosted.org/packages/d2/07/28c5393484d62bd32c81b31fa22440aa2193446f8b5ec7d10e1032cc5837/pycrc32-0.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b49614cb75b32747268b0e964c673ae0483d8576b29ea260051ff82a2244f10",
                "md5": "987b4cc3368e7b10add27cc6599976c1",
                "sha256": "fa4d592617e1fb172dd3d401d1940f37431569f4d617d49f9eaf0828cf7e9727"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "987b4cc3368e7b10add27cc6599976c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 248246,
            "upload_time": "2024-12-15T17:00:30",
            "upload_time_iso_8601": "2024-12-15T17:00:30.302079Z",
            "url": "https://files.pythonhosted.org/packages/7b/49/614cb75b32747268b0e964c673ae0483d8576b29ea260051ff82a2244f10/pycrc32-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed0d4f98ad183bd88b02eb59c428c4da54137101842681eed392cc46a3e3097d",
                "md5": "76cdb5be692a8534c44935e2d82fd262",
                "sha256": "d4d7fecf48a57d98319cae47cf0a3b35821352eafc6e3014478d99d5ab7e20ac"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "76cdb5be692a8534c44935e2d82fd262",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 241234,
            "upload_time": "2024-12-15T17:00:25",
            "upload_time_iso_8601": "2024-12-15T17:00:25.237152Z",
            "url": "https://files.pythonhosted.org/packages/ed/0d/4f98ad183bd88b02eb59c428c4da54137101842681eed392cc46a3e3097d/pycrc32-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09d138d444db4057db0eb4a2268d7a585aebf3cbec39359be4bb63f7058e160f",
                "md5": "8916df3ce63f8ec8d86b251533082b0c",
                "sha256": "74119f5d9f2cebe9d14ade91b06b6dfbab5c9c51214fe39b2f52d3efb4e8260a"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8916df3ce63f8ec8d86b251533082b0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 275507,
            "upload_time": "2024-12-15T16:58:44",
            "upload_time_iso_8601": "2024-12-15T16:58:44.424635Z",
            "url": "https://files.pythonhosted.org/packages/09/d1/38d444db4057db0eb4a2268d7a585aebf3cbec39359be4bb63f7058e160f/pycrc32-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a637dc49ba289a0f9bd437ecd3c3c65b90aed42d0ada1333134db5c10cc3a93",
                "md5": "277c34cac3dae11432e9fe823c7f605c",
                "sha256": "da6438da0ea9cfc7e9995cfd2a11bee06326b63976e73296d4a6abe152cf8884"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "277c34cac3dae11432e9fe823c7f605c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 282018,
            "upload_time": "2024-12-15T16:59:11",
            "upload_time_iso_8601": "2024-12-15T16:59:11.854306Z",
            "url": "https://files.pythonhosted.org/packages/3a/63/7dc49ba289a0f9bd437ecd3c3c65b90aed42d0ada1333134db5c10cc3a93/pycrc32-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f063f5747bdcffa1b688eee36b1742a7e00fa1a7eba7e5a31c60e41f5bb3144",
                "md5": "fa01f8a8287dbbaeaafcd52221feedb6",
                "sha256": "bc7bc0467e3b47644e744c2609690e6407cf5d021f77ec2fc991f6dc10c853a7"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fa01f8a8287dbbaeaafcd52221feedb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 315394,
            "upload_time": "2024-12-15T16:59:32",
            "upload_time_iso_8601": "2024-12-15T16:59:32.366322Z",
            "url": "https://files.pythonhosted.org/packages/1f/06/3f5747bdcffa1b688eee36b1742a7e00fa1a7eba7e5a31c60e41f5bb3144/pycrc32-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86cff84d16cdc9e67f223f6b580fbf8a1be65d5bbd4f7d0b990b996ff029ad0b",
                "md5": "5021500be67f46049fb144dc598c31b6",
                "sha256": "24ce8761dbc1766abd0048e5f192c7e06c520c0e59b8b853887cf3b6b6465476"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5021500be67f46049fb144dc598c31b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 316311,
            "upload_time": "2024-12-15T16:59:48",
            "upload_time_iso_8601": "2024-12-15T16:59:48.159904Z",
            "url": "https://files.pythonhosted.org/packages/86/cf/f84d16cdc9e67f223f6b580fbf8a1be65d5bbd4f7d0b990b996ff029ad0b/pycrc32-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e5415707e38e18ce87e6b71cd24926e42f828e775bd0f7ed2a80ff5e751d6f0",
                "md5": "090612b316ea4d18384a881fb97b0394",
                "sha256": "1745a8f005750717e57a98f7b8a3e8118056e85cc89d719f6af34ab68f81c36b"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "090612b316ea4d18384a881fb97b0394",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 277431,
            "upload_time": "2024-12-15T17:00:14",
            "upload_time_iso_8601": "2024-12-15T17:00:14.890780Z",
            "url": "https://files.pythonhosted.org/packages/7e/54/15707e38e18ce87e6b71cd24926e42f828e775bd0f7ed2a80ff5e751d6f0/pycrc32-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fc4f706ad9fd2f5d972f916561c054db69713d0f0f56a4466e5c769d9a380c9",
                "md5": "a604282e182e4a6f1480958dbdde2e04",
                "sha256": "876bc7d2886fccb92f472f86ded46fd32c2df366f1a29790fedc397b341182f8"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "a604282e182e4a6f1480958dbdde2e04",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 293040,
            "upload_time": "2024-12-15T17:00:02",
            "upload_time_iso_8601": "2024-12-15T17:00:02.289162Z",
            "url": "https://files.pythonhosted.org/packages/9f/c4/f706ad9fd2f5d972f916561c054db69713d0f0f56a4466e5c769d9a380c9/pycrc32-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc777050e699d64fa98ffe7ee4089f9fe2cd03170e8505ba5eda4279cc7352da",
                "md5": "8f5ffcf1cbb959bbcd37ae4175c541ed",
                "sha256": "ed9b284d11b79b9ff16dc62f0789845bc53ab39960eb218a4d1e59da1f788878"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8f5ffcf1cbb959bbcd37ae4175c541ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 453921,
            "upload_time": "2024-12-15T17:00:39",
            "upload_time_iso_8601": "2024-12-15T17:00:39.651783Z",
            "url": "https://files.pythonhosted.org/packages/bc/77/7050e699d64fa98ffe7ee4089f9fe2cd03170e8505ba5eda4279cc7352da/pycrc32-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1420f9838350b4d87569c5ff7151fe3b526e26cdf7c38ee4f88afb4ffa2f0aa2",
                "md5": "59c2be357aa00161f9a8d08d55e3f9ea",
                "sha256": "986b2b508f20ca117cf9022a2f30faa8eb2f2d292da5e44917b0ec85481c5a12"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "59c2be357aa00161f9a8d08d55e3f9ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 544672,
            "upload_time": "2024-12-15T17:00:56",
            "upload_time_iso_8601": "2024-12-15T17:00:56.614057Z",
            "url": "https://files.pythonhosted.org/packages/14/20/f9838350b4d87569c5ff7151fe3b526e26cdf7c38ee4f88afb4ffa2f0aa2/pycrc32-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5ff6845def8b25fdde9881a10d28f4e79ae61c205bb158ea87baf5c47c56c09",
                "md5": "26e009d44afa9a148f2327dc5785f398",
                "sha256": "19f8b8a04a851f65ef9e7322142de8dcbfba05d2496638c05510edcacc9df097"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "26e009d44afa9a148f2327dc5785f398",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 473265,
            "upload_time": "2024-12-15T17:01:08",
            "upload_time_iso_8601": "2024-12-15T17:01:08.492463Z",
            "url": "https://files.pythonhosted.org/packages/f5/ff/6845def8b25fdde9881a10d28f4e79ae61c205bb158ea87baf5c47c56c09/pycrc32-0.3.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ae58e7ffde4d5b603ee5ae1fcb4cd653e15be5c3070469a679b298cfc57836b",
                "md5": "76bfe35b241e8fcefabf26b38b3d528a",
                "sha256": "f89d33f97017c35d73ba97533f24bc83e9992f709de12a5053c5700ee880d187"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76bfe35b241e8fcefabf26b38b3d528a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 448202,
            "upload_time": "2024-12-15T17:01:22",
            "upload_time_iso_8601": "2024-12-15T17:01:22.069444Z",
            "url": "https://files.pythonhosted.org/packages/4a/e5/8e7ffde4d5b603ee5ae1fcb4cd653e15be5c3070469a679b298cfc57836b/pycrc32-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c2695e9c39b06c23c358188986b6f06f60cd7be099c6b34a2ffa7ed7115e951",
                "md5": "398987f744947bb2b415163f67475ef1",
                "sha256": "1f9cf08dd8e943cbf15b266152faee8a643cdbb546594036b3f4ccc7dbc41069"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "398987f744947bb2b415163f67475ef1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 138883,
            "upload_time": "2024-12-15T17:01:45",
            "upload_time_iso_8601": "2024-12-15T17:01:45.242993Z",
            "url": "https://files.pythonhosted.org/packages/7c/26/95e9c39b06c23c358188986b6f06f60cd7be099c6b34a2ffa7ed7115e951/pycrc32-0.3.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e30301b00277ffa4aea3f5e12f6237b66f6c56cfde1da57932662157c67019a4",
                "md5": "c43c415755da362f7cca026a9b246200",
                "sha256": "2be7b0dc631b149b435cab23a986aef15b6d5f98ecb0bae51d9d85c97e6db3ce"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c43c415755da362f7cca026a9b246200",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 144932,
            "upload_time": "2024-12-15T17:01:37",
            "upload_time_iso_8601": "2024-12-15T17:01:37.998288Z",
            "url": "https://files.pythonhosted.org/packages/e3/03/01b00277ffa4aea3f5e12f6237b66f6c56cfde1da57932662157c67019a4/pycrc32-0.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6d4171730e620c724439ee6e80741c5f7fc87a71d525327126af9dd41ac4427",
                "md5": "440a56b347ce4545718ebe9d03a137c4",
                "sha256": "af0be84a13e1f156c49710497e36ebe32070c97a53a6b4aa2b800026b623a937"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "440a56b347ce4545718ebe9d03a137c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 248614,
            "upload_time": "2024-12-15T17:00:32",
            "upload_time_iso_8601": "2024-12-15T17:00:32.631540Z",
            "url": "https://files.pythonhosted.org/packages/a6/d4/171730e620c724439ee6e80741c5f7fc87a71d525327126af9dd41ac4427/pycrc32-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6790e3c0602ca2a188a8388484aeceb9065cc319a8a1f1d84e5910fc5b8053e",
                "md5": "4aefaad5750d65cef3f7bdfc94f4e392",
                "sha256": "2139cb9a3dea85af53d18785da31cb246560a9fbf1a9d4d77bc96cf71f3c07bd"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4aefaad5750d65cef3f7bdfc94f4e392",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 241590,
            "upload_time": "2024-12-15T17:00:26",
            "upload_time_iso_8601": "2024-12-15T17:00:26.425900Z",
            "url": "https://files.pythonhosted.org/packages/f6/79/0e3c0602ca2a188a8388484aeceb9065cc319a8a1f1d84e5910fc5b8053e/pycrc32-0.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1de87ef017c37ce9c9bd2e905a8f97aabc6c0768e06360afc4c214e8755c244",
                "md5": "0e625eb752154ebda8edbd30ff6f8474",
                "sha256": "b6aeeb870b4acda9b32fad57f095c7f86b2934831d6fbfd330d9c3ad04be0a1f"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0e625eb752154ebda8edbd30ff6f8474",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 275448,
            "upload_time": "2024-12-15T16:58:47",
            "upload_time_iso_8601": "2024-12-15T16:58:47.126859Z",
            "url": "https://files.pythonhosted.org/packages/d1/de/87ef017c37ce9c9bd2e905a8f97aabc6c0768e06360afc4c214e8755c244/pycrc32-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "335a6a8709d793ffd5fcbbb6745d9dc4e0fd4fc1866e57323435ad27707ae7e3",
                "md5": "d7c6e1622a728cf21111cae8f172c844",
                "sha256": "e4d9e685a6c4163470c0555aaa2bb2fcf88f5ba42b4f3ac14001b4975762c5f7"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d7c6e1622a728cf21111cae8f172c844",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 281887,
            "upload_time": "2024-12-15T16:59:14",
            "upload_time_iso_8601": "2024-12-15T16:59:14.403950Z",
            "url": "https://files.pythonhosted.org/packages/33/5a/6a8709d793ffd5fcbbb6745d9dc4e0fd4fc1866e57323435ad27707ae7e3/pycrc32-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "230233b53ff06bd19100b854323eb2a8649e235835e4f49f2e9a2521594d6b0c",
                "md5": "a3f8402222fd8e0173dabf6b2f48e776",
                "sha256": "d46b362393f5d7e28692c2c7e0bbab6d6f153cbdd4891741dc7dd2b29f849783"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a3f8402222fd8e0173dabf6b2f48e776",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 315077,
            "upload_time": "2024-12-15T16:59:33",
            "upload_time_iso_8601": "2024-12-15T16:59:33.588325Z",
            "url": "https://files.pythonhosted.org/packages/23/02/33b53ff06bd19100b854323eb2a8649e235835e4f49f2e9a2521594d6b0c/pycrc32-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c921331b357a9e564e3f5645f98673ab6f5e612adc3ba284826d06275ee8dcb9",
                "md5": "48ca22dfd1d790855d0556e1ce5b82bf",
                "sha256": "509b24b9856ba638f4d3b3056e68b339a86f035c548f57793c99115ea3a7b31c"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "48ca22dfd1d790855d0556e1ce5b82bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 315697,
            "upload_time": "2024-12-15T16:59:49",
            "upload_time_iso_8601": "2024-12-15T16:59:49.523232Z",
            "url": "https://files.pythonhosted.org/packages/c9/21/331b357a9e564e3f5645f98673ab6f5e612adc3ba284826d06275ee8dcb9/pycrc32-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb248917590d20ab611a6abcafa1b191d70cc465b05f25d98197d7032b9222e2",
                "md5": "4e05b41d044a0e725a65030f04b1958b",
                "sha256": "1305a1992cb2a9d63f8e7cac10bbdc4fb23a73fff7a604139c39aa002a4a4693"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e05b41d044a0e725a65030f04b1958b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 277714,
            "upload_time": "2024-12-15T17:00:16",
            "upload_time_iso_8601": "2024-12-15T17:00:16.024353Z",
            "url": "https://files.pythonhosted.org/packages/eb/24/8917590d20ab611a6abcafa1b191d70cc465b05f25d98197d7032b9222e2/pycrc32-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3277377ae90f9f6d598da902d7126b51ff3e7013e6634bcffcdee9c179c90340",
                "md5": "76c604f9ae7e62340e7a9268c28c26a9",
                "sha256": "564dda15581bfd9e2bab2af65ad1e395c2441b9bb74ab5388a366ecf180f217d"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "76c604f9ae7e62340e7a9268c28c26a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 293069,
            "upload_time": "2024-12-15T17:00:06",
            "upload_time_iso_8601": "2024-12-15T17:00:06.014008Z",
            "url": "https://files.pythonhosted.org/packages/32/77/377ae90f9f6d598da902d7126b51ff3e7013e6634bcffcdee9c179c90340/pycrc32-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed852fa4327fe309533560b3e74d76c0732f4ccdf483b7235b71ddc82fa71d8e",
                "md5": "0d1c7120d5fb89477069f2dac4c0522c",
                "sha256": "5649f81517091a19dcc7f9bb47d2459ddb89e95bbe74a05b63b490b2566889ea"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d1c7120d5fb89477069f2dac4c0522c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 453672,
            "upload_time": "2024-12-15T17:00:41",
            "upload_time_iso_8601": "2024-12-15T17:00:41.098474Z",
            "url": "https://files.pythonhosted.org/packages/ed/85/2fa4327fe309533560b3e74d76c0732f4ccdf483b7235b71ddc82fa71d8e/pycrc32-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ab92f496033ad56d28837dcdf43a8d25a077805d51b04605fc65f9ed0e2e55d",
                "md5": "03687ffa595fc2404c4e5aa84a398517",
                "sha256": "88e899e9f29dbfcc73d0c5ddfe9a5cefea7fd0f342ebe360fe0f2e1039279c67"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "03687ffa595fc2404c4e5aa84a398517",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 544530,
            "upload_time": "2024-12-15T17:00:57",
            "upload_time_iso_8601": "2024-12-15T17:00:57.853656Z",
            "url": "https://files.pythonhosted.org/packages/5a/b9/2f496033ad56d28837dcdf43a8d25a077805d51b04605fc65f9ed0e2e55d/pycrc32-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33fc891420e3c26d6c5109fba67308cf21b94b8591a1c7b245c0fb1d2ba5d7e3",
                "md5": "5c25cf729a04ab6a5fdaa211f6094d08",
                "sha256": "a47edf8baa1bcd560bbfa040fcbe1e6c40b150f85c9e4c4848ab44d58f2779ee"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5c25cf729a04ab6a5fdaa211f6094d08",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 473066,
            "upload_time": "2024-12-15T17:01:10",
            "upload_time_iso_8601": "2024-12-15T17:01:10.253447Z",
            "url": "https://files.pythonhosted.org/packages/33/fc/891420e3c26d6c5109fba67308cf21b94b8591a1c7b245c0fb1d2ba5d7e3/pycrc32-0.3.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9b93079dc83c87f0ac4c38add9fe2fb342da3902993b2abc548ae491e91cea8",
                "md5": "d4a9937428b93183445a843154599f38",
                "sha256": "60ecc4c4f7b8374830205beef0fcf9b4eeaa6a79e00773243fa46dc7dab7fbe9"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4a9937428b93183445a843154599f38",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 448334,
            "upload_time": "2024-12-15T17:01:23",
            "upload_time_iso_8601": "2024-12-15T17:01:23.611732Z",
            "url": "https://files.pythonhosted.org/packages/e9/b9/3079dc83c87f0ac4c38add9fe2fb342da3902993b2abc548ae491e91cea8/pycrc32-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3d6b3c7e45971c6b8fe52c935a48144abf7c0efd530cb2243fd5543167231c9",
                "md5": "97e54a0c0a63c18c747b45f84b539840",
                "sha256": "1568333a3d1599fd836e68e9bdd33904ba3266afcb9c0849af6d007dbd90378f"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "97e54a0c0a63c18c747b45f84b539840",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 274821,
            "upload_time": "2024-12-15T16:58:49",
            "upload_time_iso_8601": "2024-12-15T16:58:49.791024Z",
            "url": "https://files.pythonhosted.org/packages/a3/d6/b3c7e45971c6b8fe52c935a48144abf7c0efd530cb2243fd5543167231c9/pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94e37e2478692f0c4d81d41e6f44bc1c3b9313e6386eaaa24fe374155f777be5",
                "md5": "afdaeeb04f94f99fd3a2276566648d95",
                "sha256": "82b1461927a1007314873edaa7ca9cd634068e4b5a40f544ebbe0450bb6678ad"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "afdaeeb04f94f99fd3a2276566648d95",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 281119,
            "upload_time": "2024-12-15T16:59:16",
            "upload_time_iso_8601": "2024-12-15T16:59:16.931578Z",
            "url": "https://files.pythonhosted.org/packages/94/e3/7e2478692f0c4d81d41e6f44bc1c3b9313e6386eaaa24fe374155f777be5/pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2f4ad6db1b74762b2f1385f394a632287f34fddf04641ad527da00a26f10ebb",
                "md5": "c62942fc71193227be27292767542e88",
                "sha256": "f6ded996d89542292df1be4649d7284789c7c6c50ec6e29c1a6a6de782057b13"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c62942fc71193227be27292767542e88",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 314633,
            "upload_time": "2024-12-15T16:59:36",
            "upload_time_iso_8601": "2024-12-15T16:59:36.110808Z",
            "url": "https://files.pythonhosted.org/packages/a2/f4/ad6db1b74762b2f1385f394a632287f34fddf04641ad527da00a26f10ebb/pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18d4fb116be425ae5d10bc0db11f12df25ba1c55b8c6055ccffb75f67efb6851",
                "md5": "6d9a9ffc07c4f0431604561c14ed55d3",
                "sha256": "7f0b0d1ea5febe7e16ff8b1bc94e3f118138fa07ea9363b610d64a2713674b6c"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6d9a9ffc07c4f0431604561c14ed55d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 318283,
            "upload_time": "2024-12-15T16:59:50",
            "upload_time_iso_8601": "2024-12-15T16:59:50.805815Z",
            "url": "https://files.pythonhosted.org/packages/18/d4/fb116be425ae5d10bc0db11f12df25ba1c55b8c6055ccffb75f67efb6851/pycrc32-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19741eb51cad6ae468aaf4faf98a0a7880e5fc2c6a9841b0d562ee1feaa56632",
                "md5": "0f07f26e62b1fb45aae0bc6bdbbd91ec",
                "sha256": "1b431338cdc575d95393bb8417dce6168f009822035a2bc044bd24c28120b803"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0f07f26e62b1fb45aae0bc6bdbbd91ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 453022,
            "upload_time": "2024-12-15T17:00:42",
            "upload_time_iso_8601": "2024-12-15T17:00:42.295386Z",
            "url": "https://files.pythonhosted.org/packages/19/74/1eb51cad6ae468aaf4faf98a0a7880e5fc2c6a9841b0d562ee1feaa56632/pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63541b0a6abfaaa53668cf7b9c0c31289190b7d5a23fe66e89f0ea46f3e9cced",
                "md5": "a151f515b95804ab41b07c8411c373ce",
                "sha256": "d8b329574f22e1d9ebb56817ad8e0e91ef4225c1f82b2baa1d15b361e0ac0517"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a151f515b95804ab41b07c8411c373ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 543941,
            "upload_time": "2024-12-15T17:00:59",
            "upload_time_iso_8601": "2024-12-15T17:00:59.188019Z",
            "url": "https://files.pythonhosted.org/packages/63/54/1b0a6abfaaa53668cf7b9c0c31289190b7d5a23fe66e89f0ea46f3e9cced/pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42803a410dc2849905eba60d57dbe02796e4501d5a23da15ece44d0cd14260fa",
                "md5": "a0cfdbe49583b0198e16075bdf5055ce",
                "sha256": "12f6087135db968701cb8705b11973cbd7f88944cf3205297f8b726892a8f3ba"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a0cfdbe49583b0198e16075bdf5055ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 472933,
            "upload_time": "2024-12-15T17:01:11",
            "upload_time_iso_8601": "2024-12-15T17:01:11.543093Z",
            "url": "https://files.pythonhosted.org/packages/42/80/3a410dc2849905eba60d57dbe02796e4501d5a23da15ece44d0cd14260fa/pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b97a8befe6a1f65896dc4ea9a27e3331c6190a2785e2d7a2da61c654b1a03e8",
                "md5": "90c0fc8051f5c165062e440ccdde91be",
                "sha256": "d0b69fe1a5a979546c0d49e5f7bdf220a0bedfdb29dd09da2124f6eca2471b4e"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90c0fc8051f5c165062e440ccdde91be",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 448040,
            "upload_time": "2024-12-15T17:01:25",
            "upload_time_iso_8601": "2024-12-15T17:01:25.305879Z",
            "url": "https://files.pythonhosted.org/packages/8b/97/a8befe6a1f65896dc4ea9a27e3331c6190a2785e2d7a2da61c654b1a03e8/pycrc32-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81aaa115594ba71c922cf1270452e6115bff6346aaf1b3b080839abc113c98a3",
                "md5": "7bfffe82529faa4918dfd5d2979eda10",
                "sha256": "2b20cae0634426f50e85101613cb32c9756da517187d9c5474ebe3a55d644551"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7bfffe82529faa4918dfd5d2979eda10",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 276220,
            "upload_time": "2024-12-15T16:58:52",
            "upload_time_iso_8601": "2024-12-15T16:58:52.269748Z",
            "url": "https://files.pythonhosted.org/packages/81/aa/a115594ba71c922cf1270452e6115bff6346aaf1b3b080839abc113c98a3/pycrc32-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f052327dbc9842e5f4a80b82534d4799ae571a9262078df9a2e9b56ee99bb35",
                "md5": "16635404173b8c08309497331e9364bb",
                "sha256": "9ba7e6e814e7c5c2204c7809301757528dd0ae8a29fb0cdeaa1483d0cac82bce"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "16635404173b8c08309497331e9364bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 282693,
            "upload_time": "2024-12-15T16:59:18",
            "upload_time_iso_8601": "2024-12-15T16:59:18.158566Z",
            "url": "https://files.pythonhosted.org/packages/8f/05/2327dbc9842e5f4a80b82534d4799ae571a9262078df9a2e9b56ee99bb35/pycrc32-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e69fe91dac87790f64dc6c96545e9c8306382a8598126491e7bf2903e8f78228",
                "md5": "2a5a849f1352db099f70269c3f37b4a4",
                "sha256": "acd2f449d64737fa23ecca893d18005aa9c3501dc714f0145865e07cb754a535"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2a5a849f1352db099f70269c3f37b4a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 317037,
            "upload_time": "2024-12-15T16:59:37",
            "upload_time_iso_8601": "2024-12-15T16:59:37.380101Z",
            "url": "https://files.pythonhosted.org/packages/e6/9f/e91dac87790f64dc6c96545e9c8306382a8598126491e7bf2903e8f78228/pycrc32-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efc49b8d6168365f80284c13c1b4ebaa154b3f1e3fff7e6bcce2c40f9636168d",
                "md5": "c1fa02e9688098dc66295ee167fb692c",
                "sha256": "48241c49ee185ae2e20e47440458eb614b7a71cb562bcaaa9d784b2fca811f5e"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c1fa02e9688098dc66295ee167fb692c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 318134,
            "upload_time": "2024-12-15T16:59:52",
            "upload_time_iso_8601": "2024-12-15T16:59:52.126656Z",
            "url": "https://files.pythonhosted.org/packages/ef/c4/9b8d6168365f80284c13c1b4ebaa154b3f1e3fff7e6bcce2c40f9636168d/pycrc32-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "086c527dbf2586d3f51887069242b471bb66e247c192a171ba62e8440623c28c",
                "md5": "395332d622d68073032d1efbb3cb9470",
                "sha256": "0310d971ba48ab4892affd50ba90bf749d4d7e061bb74f24bbb4bf752ae4a4cf"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "395332d622d68073032d1efbb3cb9470",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 279262,
            "upload_time": "2024-12-15T17:00:17",
            "upload_time_iso_8601": "2024-12-15T17:00:17.281267Z",
            "url": "https://files.pythonhosted.org/packages/08/6c/527dbf2586d3f51887069242b471bb66e247c192a171ba62e8440623c28c/pycrc32-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "070231720508e0f80e8f93bc588a4839428646b665cd9b5858d29f5b2e3a52da",
                "md5": "342769934a2203a94d7ef4c7e500430a",
                "sha256": "d2d4938c7b64903e4b172a9dc48ec6767e51a8049ddb95c24cdd4d007c82dff3"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "342769934a2203a94d7ef4c7e500430a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 294189,
            "upload_time": "2024-12-15T17:00:07",
            "upload_time_iso_8601": "2024-12-15T17:00:07.302655Z",
            "url": "https://files.pythonhosted.org/packages/07/02/31720508e0f80e8f93bc588a4839428646b665cd9b5858d29f5b2e3a52da/pycrc32-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e81e0243848a9816a1082f2d0086af570207b532f7219c959210adf975b15170",
                "md5": "97093b0dc6ccfc987bcddc2da7db50e3",
                "sha256": "3a42abcf4ea300bbec4fb2e4961d9d773021093193fbeebcb8191a2f1549d5de"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "97093b0dc6ccfc987bcddc2da7db50e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 454582,
            "upload_time": "2024-12-15T17:00:46",
            "upload_time_iso_8601": "2024-12-15T17:00:46.149350Z",
            "url": "https://files.pythonhosted.org/packages/e8/1e/0243848a9816a1082f2d0086af570207b532f7219c959210adf975b15170/pycrc32-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "315b24d5de62cc7b5187c8aae61a4843d0fc4bc2a64fd5a960acd5c96e3bad95",
                "md5": "693d54ed27386f2dec33a470de086e89",
                "sha256": "fed33084dc4cdf9ad33b283de5c6f43f7d111f39f8ef89f1692f9646f0ebe376"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "693d54ed27386f2dec33a470de086e89",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 544934,
            "upload_time": "2024-12-15T17:01:00",
            "upload_time_iso_8601": "2024-12-15T17:01:00.402076Z",
            "url": "https://files.pythonhosted.org/packages/31/5b/24d5de62cc7b5187c8aae61a4843d0fc4bc2a64fd5a960acd5c96e3bad95/pycrc32-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66d13282be288acad3965b0cceb4115f9183027fd0b38a35d73e2c6dc0337f28",
                "md5": "157bd8b1a88f0eb34fc13b996a1d33d8",
                "sha256": "0f4d3882ee962b3775ab4b872b90978c721df83ba39b81b0c49ab708d2dc5ade"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "157bd8b1a88f0eb34fc13b996a1d33d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 474372,
            "upload_time": "2024-12-15T17:01:14",
            "upload_time_iso_8601": "2024-12-15T17:01:14.030953Z",
            "url": "https://files.pythonhosted.org/packages/66/d1/3282be288acad3965b0cceb4115f9183027fd0b38a35d73e2c6dc0337f28/pycrc32-0.3.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0e5fdd140bfaf87cf1da8e5188791562aebbdfb156d0b1f3984fd47ccb74f0e",
                "md5": "c6dba025106fb118dfb3c8049aee4874",
                "sha256": "655fd84147b3607474659ee77796528a43f1959da64149766b7491baf9185c11"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6dba025106fb118dfb3c8049aee4874",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 450191,
            "upload_time": "2024-12-15T17:01:26",
            "upload_time_iso_8601": "2024-12-15T17:01:26.560968Z",
            "url": "https://files.pythonhosted.org/packages/c0/e5/fdd140bfaf87cf1da8e5188791562aebbdfb156d0b1f3984fd47ccb74f0e/pycrc32-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "018b5a08b12d870fb04890316e03905626f2c5fddfd3bac2eadde662eabbda3f",
                "md5": "779e57af4a1b606cd1e9fb75049ccc51",
                "sha256": "5e5e9045c4046e3e262738a27f5dd4f922f8085d69b37ed9a0c42f1b2df547cf"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "779e57af4a1b606cd1e9fb75049ccc51",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 139263,
            "upload_time": "2024-12-15T17:01:46",
            "upload_time_iso_8601": "2024-12-15T17:01:46.459910Z",
            "url": "https://files.pythonhosted.org/packages/01/8b/5a08b12d870fb04890316e03905626f2c5fddfd3bac2eadde662eabbda3f/pycrc32-0.3.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b70fc95012944fd57a522d17a87db12d89b04ab24264f9fd4f19d18e2a922f49",
                "md5": "0df4b9f27e1d4384310d3fafb915e401",
                "sha256": "d417f051ace96308720ebd72f61016560b3c09d31766217d467d078d1443293a"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0df4b9f27e1d4384310d3fafb915e401",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 145628,
            "upload_time": "2024-12-15T17:01:39",
            "upload_time_iso_8601": "2024-12-15T17:01:39.153254Z",
            "url": "https://files.pythonhosted.org/packages/b7/0f/c95012944fd57a522d17a87db12d89b04ab24264f9fd4f19d18e2a922f49/pycrc32-0.3.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ef1932ef7eb7b8b276cffea88e3f63c7bbc32624e764b81ee5a52605bab1ad5",
                "md5": "ac8aa6985b1c60bc14bf169414ed7165",
                "sha256": "c3f31a6dd9f6619c040184ee9794a9cd64d64df35ac288cfde2da5eb7b7c2298"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ac8aa6985b1c60bc14bf169414ed7165",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 276428,
            "upload_time": "2024-12-15T16:58:53",
            "upload_time_iso_8601": "2024-12-15T16:58:53.512176Z",
            "url": "https://files.pythonhosted.org/packages/1e/f1/932ef7eb7b8b276cffea88e3f63c7bbc32624e764b81ee5a52605bab1ad5/pycrc32-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcce8ddcaee4c342ad9045936ae65e54f2eb7aef04757fbeca54c795792c8c32",
                "md5": "cb0b56b1508727b5eea0d17f13ba57ce",
                "sha256": "2f5757a72a640165adc036228edcf5d474499c2a496923505db363d4e8671be1"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cb0b56b1508727b5eea0d17f13ba57ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 283250,
            "upload_time": "2024-12-15T16:59:20",
            "upload_time_iso_8601": "2024-12-15T16:59:20.815302Z",
            "url": "https://files.pythonhosted.org/packages/bc/ce/8ddcaee4c342ad9045936ae65e54f2eb7aef04757fbeca54c795792c8c32/pycrc32-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a3779b51088af20f16a62bfbce5ea35b5abbc6edb7dd1ed59ba1363dd25a9a5",
                "md5": "be1a02ba78af15713f122828292aa9cb",
                "sha256": "a2bb2a332d3057e3e3a3b3f9690ab6924c5c798c7e43c61e1426ffd2c19a2f27"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "be1a02ba78af15713f122828292aa9cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 317386,
            "upload_time": "2024-12-15T16:59:38",
            "upload_time_iso_8601": "2024-12-15T16:59:38.671379Z",
            "url": "https://files.pythonhosted.org/packages/4a/37/79b51088af20f16a62bfbce5ea35b5abbc6edb7dd1ed59ba1363dd25a9a5/pycrc32-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31e83716cec7cb32e03b4dd767118ca8ce271562e1a8c10f48a0060005d236fb",
                "md5": "0bd6abb79c9335e96f59bd7c0152e25f",
                "sha256": "1aafd4111e635a9306399f79ef28cb98ed1e969c35f02cbb7add0b17dd1849b8"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0bd6abb79c9335e96f59bd7c0152e25f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 319326,
            "upload_time": "2024-12-15T16:59:53",
            "upload_time_iso_8601": "2024-12-15T16:59:53.683307Z",
            "url": "https://files.pythonhosted.org/packages/31/e8/3716cec7cb32e03b4dd767118ca8ce271562e1a8c10f48a0060005d236fb/pycrc32-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05fc434684e2cff9d4b95cfc6489cc012f3fd9450bfd215eaa4ea8b79a739a4a",
                "md5": "c2467704b96a063c66cc56f99422d1e3",
                "sha256": "a16e036ab9e6ba0c52dd68508cc2ddd9bd1d3367790260f26b51ed42dfda15c0"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2467704b96a063c66cc56f99422d1e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 279805,
            "upload_time": "2024-12-15T17:00:18",
            "upload_time_iso_8601": "2024-12-15T17:00:18.558705Z",
            "url": "https://files.pythonhosted.org/packages/05/fc/434684e2cff9d4b95cfc6489cc012f3fd9450bfd215eaa4ea8b79a739a4a/pycrc32-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "536cfba1ae80466e6993b0d8f0824af8a7c50459406d76ce2f53004c0a56593e",
                "md5": "2241027fcab7effb77b414d3c9c81050",
                "sha256": "f78239bf9c6593e6a5d7f8f1c81b1b507c4b0f7b3bad7f54f0c5cf5f9ef3e840"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2241027fcab7effb77b414d3c9c81050",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 294731,
            "upload_time": "2024-12-15T17:00:08",
            "upload_time_iso_8601": "2024-12-15T17:00:08.460229Z",
            "url": "https://files.pythonhosted.org/packages/53/6c/fba1ae80466e6993b0d8f0824af8a7c50459406d76ce2f53004c0a56593e/pycrc32-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fcd9652861b246fdca21dffd8e6166084d9f088b2ca1c9117adc5e1173b3a09",
                "md5": "4c7943a48f71f5fdb21c2323f74d0f1d",
                "sha256": "c7d0145597adb0b92d968bee9616a2e0696c5ffd9ec8dbfcc78158822ca7198f"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4c7943a48f71f5fdb21c2323f74d0f1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 454640,
            "upload_time": "2024-12-15T17:00:48",
            "upload_time_iso_8601": "2024-12-15T17:00:48.778350Z",
            "url": "https://files.pythonhosted.org/packages/8f/cd/9652861b246fdca21dffd8e6166084d9f088b2ca1c9117adc5e1173b3a09/pycrc32-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ab1ccc7754cab4c9dcb70125b5c4576d616d23231dad93aa3c8e32b6ce41b4f",
                "md5": "96aab438e4cabecc28d783ed798faa89",
                "sha256": "aed53b40dfee83b17dda3330ab5406590177d909822ee267c0711ac7d8f9c40c"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "96aab438e4cabecc28d783ed798faa89",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 545206,
            "upload_time": "2024-12-15T17:01:01",
            "upload_time_iso_8601": "2024-12-15T17:01:01.638521Z",
            "url": "https://files.pythonhosted.org/packages/6a/b1/ccc7754cab4c9dcb70125b5c4576d616d23231dad93aa3c8e32b6ce41b4f/pycrc32-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8840e11f234a7ea5c088b4ebab1bd5443e020e605240f2c9dfbf2c6a94a7f1d8",
                "md5": "c0b2dddb1e6afc6bbbde86b2d0bde23e",
                "sha256": "831c2f80cb2532c4d028eb340335a72727023baac3f6d0be7680902f47351378"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c0b2dddb1e6afc6bbbde86b2d0bde23e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 474640,
            "upload_time": "2024-12-15T17:01:15",
            "upload_time_iso_8601": "2024-12-15T17:01:15.333148Z",
            "url": "https://files.pythonhosted.org/packages/88/40/e11f234a7ea5c088b4ebab1bd5443e020e605240f2c9dfbf2c6a94a7f1d8/pycrc32-0.3.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b1cb8ade6c03250997a01d2fefdb0fe48f34956b319d2d3945643d54a26484a",
                "md5": "7b5f500954b2981b9518564f18512905",
                "sha256": "e27d979203ca31dc8e18e35d69610d1087442db43bd597ebd7822f38c4a174ee"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b5f500954b2981b9518564f18512905",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 450593,
            "upload_time": "2024-12-15T17:01:27",
            "upload_time_iso_8601": "2024-12-15T17:01:27.807247Z",
            "url": "https://files.pythonhosted.org/packages/9b/1c/b8ade6c03250997a01d2fefdb0fe48f34956b319d2d3945643d54a26484a/pycrc32-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d7613af8ccb01a2617b4de08ea261120063ad9e80314d70278f8c8bc69c613f",
                "md5": "a9ac004e6acb44a6be075cd73d31052a",
                "sha256": "b45322e6914dffaace7000b747c71e3955cc02c9c332e01bc0fc4de2a90ce0e3"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "a9ac004e6acb44a6be075cd73d31052a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 139113,
            "upload_time": "2024-12-15T17:01:47",
            "upload_time_iso_8601": "2024-12-15T17:01:47.655998Z",
            "url": "https://files.pythonhosted.org/packages/7d/76/13af8ccb01a2617b4de08ea261120063ad9e80314d70278f8c8bc69c613f/pycrc32-0.3.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23e9fac498b9746a6fb438fd967bdb34ef97563f52f78681c4265da526b52bd4",
                "md5": "5aa44068395ad275f27ae9da3f326bfc",
                "sha256": "7c039e0d72118e5355540e6f52e085b909d8925d92177c05c87662afc9fc3971"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5aa44068395ad275f27ae9da3f326bfc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 145537,
            "upload_time": "2024-12-15T17:01:41",
            "upload_time_iso_8601": "2024-12-15T17:01:41.545149Z",
            "url": "https://files.pythonhosted.org/packages/23/e9/fac498b9746a6fb438fd967bdb34ef97563f52f78681c4265da526b52bd4/pycrc32-0.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87e8d1f80504ebd99bef31d0a5f272017aa2762d0f138f3b57e704fc19f18a92",
                "md5": "a9cea2a92ad4427fc72d45799f496992",
                "sha256": "5e962ee6c149da27479ca9b53167eb904afe0f5e5e3ee0f06b489f289a0c3c20"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a9cea2a92ad4427fc72d45799f496992",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 275761,
            "upload_time": "2024-12-15T16:58:56",
            "upload_time_iso_8601": "2024-12-15T16:58:56.211062Z",
            "url": "https://files.pythonhosted.org/packages/87/e8/d1f80504ebd99bef31d0a5f272017aa2762d0f138f3b57e704fc19f18a92/pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c05b292dbddea6262bdd1c019c0387f9672eb737fab0cf9de8047b9da10b0995",
                "md5": "d50d9249c83839330fe21c20d2f0ac56",
                "sha256": "af97dafba8fb077d50ff19b42e0f66864a4840dd875e7e896cee0ea66b45bdb6"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d50d9249c83839330fe21c20d2f0ac56",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 283782,
            "upload_time": "2024-12-15T16:59:22",
            "upload_time_iso_8601": "2024-12-15T16:59:22.061653Z",
            "url": "https://files.pythonhosted.org/packages/c0/5b/292dbddea6262bdd1c019c0387f9672eb737fab0cf9de8047b9da10b0995/pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0dae8dc3da1505ef166378d4ac1c958e3b7a956f1df84b06b7bfedef8724c4c4",
                "md5": "b1cef7acdec709022309848109f324b0",
                "sha256": "b114cc5947e0e063a105bed35d2d348d9f545e9d7bd8285ba0b035410c04cefa"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b1cef7acdec709022309848109f324b0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 315608,
            "upload_time": "2024-12-15T16:59:40",
            "upload_time_iso_8601": "2024-12-15T16:59:40.026165Z",
            "url": "https://files.pythonhosted.org/packages/0d/ae/8dc3da1505ef166378d4ac1c958e3b7a956f1df84b06b7bfedef8724c4c4/pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d40dab9235d9904f3a2e4db83870abc1691c854c75203908bb2447402e82aa2d",
                "md5": "5fe3c4bf3cf76defafd0f91184541e95",
                "sha256": "ca9b2dcbbbcf6a014775d8f763b4df15f322f9192a00d377c9460f65db26e961"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5fe3c4bf3cf76defafd0f91184541e95",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 317741,
            "upload_time": "2024-12-15T16:59:55",
            "upload_time_iso_8601": "2024-12-15T16:59:55.010194Z",
            "url": "https://files.pythonhosted.org/packages/d4/0d/ab9235d9904f3a2e4db83870abc1691c854c75203908bb2447402e82aa2d/pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58e817aaa4412c20981fe51c5ba3f1e4a0ec889e71ebd5bd89d278bdd4960898",
                "md5": "3a95765dc9b318e97745fe765150646b",
                "sha256": "785d7af865ea6f6d9a031e4c9958aad7fa391428ff09f011f1410fceeb083e39"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a95765dc9b318e97745fe765150646b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 278726,
            "upload_time": "2024-12-15T17:00:21",
            "upload_time_iso_8601": "2024-12-15T17:00:21.365289Z",
            "url": "https://files.pythonhosted.org/packages/58/e8/17aaa4412c20981fe51c5ba3f1e4a0ec889e71ebd5bd89d278bdd4960898/pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "949c1b638e15862ebef9172812676f98f28b3ca564c55b9c19317c40fa5a12ad",
                "md5": "bef58a734b0c493a4116489851ecb6b4",
                "sha256": "1f7a2ceb5da20633c168fa970262f44cf487bf4f0380b18a759d9f17f4c15a0d"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "bef58a734b0c493a4116489851ecb6b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 293872,
            "upload_time": "2024-12-15T17:00:09",
            "upload_time_iso_8601": "2024-12-15T17:00:09.745262Z",
            "url": "https://files.pythonhosted.org/packages/94/9c/1b638e15862ebef9172812676f98f28b3ca564c55b9c19317c40fa5a12ad/pycrc32-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f64e65b97b5426f57a878c72bf53ba66389a354be7ad23f27bca4ca83b26310",
                "md5": "fd46d66f4c26e321d5ad6b0b939f475d",
                "sha256": "5e5f4dd06c722925600e3c4317bd19a27d8919e382475068f21fbb259140916c"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fd46d66f4c26e321d5ad6b0b939f475d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 454260,
            "upload_time": "2024-12-15T17:00:49",
            "upload_time_iso_8601": "2024-12-15T17:00:49.941316Z",
            "url": "https://files.pythonhosted.org/packages/0f/64/e65b97b5426f57a878c72bf53ba66389a354be7ad23f27bca4ca83b26310/pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3ca39eb091cca6e44e4258a41d4537224986a2b062eb93a25a430c32f77ff7a",
                "md5": "1b8e3898de041d0679c6666ba7b79104",
                "sha256": "1a5bfa6eee14edc384a81fbe68eaa0d50935fd109b4fa8568688d76814d0634e"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1b8e3898de041d0679c6666ba7b79104",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 545778,
            "upload_time": "2024-12-15T17:01:03",
            "upload_time_iso_8601": "2024-12-15T17:01:03.005689Z",
            "url": "https://files.pythonhosted.org/packages/f3/ca/39eb091cca6e44e4258a41d4537224986a2b062eb93a25a430c32f77ff7a/pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5fc07c0acbeefcc0c9932438ebb44be6c7399e88f8521960ef5694f52f503196",
                "md5": "2d495f91173ac22dcb054ea404316583",
                "sha256": "7418643d74e5724f18d627fe3c38c53ce4e4d23b2a24dd03d2f4a870a47caf7d"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2d495f91173ac22dcb054ea404316583",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 474283,
            "upload_time": "2024-12-15T17:01:16",
            "upload_time_iso_8601": "2024-12-15T17:01:16.747288Z",
            "url": "https://files.pythonhosted.org/packages/5f/c0/7c0acbeefcc0c9932438ebb44be6c7399e88f8521960ef5694f52f503196/pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb914afad9d8150c31daf8d75444bbbee16794418c3208e2c1c6f1568c73270f",
                "md5": "a1469c854f218834d49432e12ab6a9c0",
                "sha256": "0f7dba447add4076c8b3e524306b2dbfcf3dc524c873aa2b088134217b483b38"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1469c854f218834d49432e12ab6a9c0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 449753,
            "upload_time": "2024-12-15T17:01:29",
            "upload_time_iso_8601": "2024-12-15T17:01:29.213227Z",
            "url": "https://files.pythonhosted.org/packages/eb/91/4afad9d8150c31daf8d75444bbbee16794418c3208e2c1c6f1568c73270f/pycrc32-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbd77acd40ba2df28d69a49b4433eb6cd27b53a1246caaf373a3b4769845fd41",
                "md5": "8d0ee97ab3c304172a7d6eac7473b55f",
                "sha256": "28a843050c58d3ac2b5827fd7e398fd7dd53b08a946c3e1a7b7a4ca4636284e3"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8d0ee97ab3c304172a7d6eac7473b55f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 276232,
            "upload_time": "2024-12-15T16:58:57",
            "upload_time_iso_8601": "2024-12-15T16:58:57.446641Z",
            "url": "https://files.pythonhosted.org/packages/db/d7/7acd40ba2df28d69a49b4433eb6cd27b53a1246caaf373a3b4769845fd41/pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15274c793bea048d6810cb20f602d9185fab82dec5cdf6e83ee66b6a77cd050f",
                "md5": "48d362a3c636b676d08bda7755a8ab64",
                "sha256": "c503bb8d9d99fb84799bbe74e705e09760ca1a6e6c1489d7c8b21436f0999cda"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "48d362a3c636b676d08bda7755a8ab64",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 283583,
            "upload_time": "2024-12-15T16:59:23",
            "upload_time_iso_8601": "2024-12-15T16:59:23.207534Z",
            "url": "https://files.pythonhosted.org/packages/15/27/4c793bea048d6810cb20f602d9185fab82dec5cdf6e83ee66b6a77cd050f/pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "512c0acc433763d8a0e33c2fc9ee98cd20b3991ca16f6f3ab8b4cb896a509b32",
                "md5": "de7c927784498b5d858f3c62a969e143",
                "sha256": "de5d1ca09eff7fd4e3d0b0db7b2ce6772cd54f3f64b56ddde8901d67daa854e1"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "de7c927784498b5d858f3c62a969e143",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 316661,
            "upload_time": "2024-12-15T16:59:44",
            "upload_time_iso_8601": "2024-12-15T16:59:44.254302Z",
            "url": "https://files.pythonhosted.org/packages/51/2c/0acc433763d8a0e33c2fc9ee98cd20b3991ca16f6f3ab8b4cb896a509b32/pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80e79c78ea41b36628cfd1b3ff0f59bbaeca5629277cf37ded7d0032a575161f",
                "md5": "112a1b81cfad49b8fadfe47c26446e3c",
                "sha256": "3b160e88d222e66c668fc456ad882eba8b4faa4f7b6212f74d19f72f6c5e1bd3"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "112a1b81cfad49b8fadfe47c26446e3c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 318308,
            "upload_time": "2024-12-15T16:59:56",
            "upload_time_iso_8601": "2024-12-15T16:59:56.951449Z",
            "url": "https://files.pythonhosted.org/packages/80/e7/9c78ea41b36628cfd1b3ff0f59bbaeca5629277cf37ded7d0032a575161f/pycrc32-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10b516e1d3b0487a731a80688024470f34ab281a6dfc2bc41e7486e18a3c5a8d",
                "md5": "9464f179f45dcf1666e49d8996395380",
                "sha256": "756ff813f4ae4200eba017b02a809d9965b599e7d746b9deec08eb6a3fb1d9fc"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9464f179f45dcf1666e49d8996395380",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 454582,
            "upload_time": "2024-12-15T17:00:52",
            "upload_time_iso_8601": "2024-12-15T17:00:52.700848Z",
            "url": "https://files.pythonhosted.org/packages/10/b5/16e1d3b0487a731a80688024470f34ab281a6dfc2bc41e7486e18a3c5a8d/pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "efceb0f2d0f38f80b426f9976211180619e17f0184b4c00f510c010399cec731",
                "md5": "444cd2ad0c3ef3c989eaf7e85bcd6291",
                "sha256": "2d7b9574f17ccfe68234e7e464189be13bcce71f460b68769caeedc9011335d3"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "444cd2ad0c3ef3c989eaf7e85bcd6291",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 545540,
            "upload_time": "2024-12-15T17:01:04",
            "upload_time_iso_8601": "2024-12-15T17:01:04.378543Z",
            "url": "https://files.pythonhosted.org/packages/ef/ce/b0f2d0f38f80b426f9976211180619e17f0184b4c00f510c010399cec731/pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa7a1a5868671c7ad9fbf3cf01ef9337eae67aa27ec48889421f1016ca5624a8",
                "md5": "7a1b6063b6c9fefd89d6beeafd332cf0",
                "sha256": "94bb0ead797c49c236d3b6bb738bc5f532df5576256ed9049763b7935ee2ede0"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7a1b6063b6c9fefd89d6beeafd332cf0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 473913,
            "upload_time": "2024-12-15T17:01:17",
            "upload_time_iso_8601": "2024-12-15T17:01:17.949799Z",
            "url": "https://files.pythonhosted.org/packages/fa/7a/1a5868671c7ad9fbf3cf01ef9337eae67aa27ec48889421f1016ca5624a8/pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ea64a906676020df64f119d613fc65f547cb7a1db99a43430b57aa94017a19e",
                "md5": "0ce9e0835ee416448fa138520ef0f303",
                "sha256": "bd6468aeaa80d8f30d51273550cb61587b77f6efa9de949659c4f875dbed6a8f"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0ce9e0835ee416448fa138520ef0f303",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 450331,
            "upload_time": "2024-12-15T17:01:30",
            "upload_time_iso_8601": "2024-12-15T17:01:30.762856Z",
            "url": "https://files.pythonhosted.org/packages/6e/a6/4a906676020df64f119d613fc65f547cb7a1db99a43430b57aa94017a19e/pycrc32-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1df8873c300b113847147bbd553471b54f57e7835ab20029fb1557ee2faf904a",
                "md5": "169571c2cb24cfd20122a1a63eccaac6",
                "sha256": "58d7da2b20a95c90111f6bdd13cef7b6fd9d534d82fae844f690f3c00642c6c9"
            },
            "downloads": -1,
            "filename": "pycrc32-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "169571c2cb24cfd20122a1a63eccaac6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 7687,
            "upload_time": "2024-12-15T17:01:33",
            "upload_time_iso_8601": "2024-12-15T17:01:33.621518Z",
            "url": "https://files.pythonhosted.org/packages/1d/f8/873c300b113847147bbd553471b54f57e7835ab20029fb1557ee2faf904a/pycrc32-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-15 17:01:33",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "code-inflation",
    "github_project": "pycrc32",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pycrc32"
}
        
Elapsed time: 0.42393s