cramjam


Namecramjam JSON
Version 2.11.0 PyPI version JSON
download
home_pageNone
SummaryThin Python bindings to de/compression algorithms in Rust
upload_time2025-07-27 21:25:07
maintainerNone
docs_urlNone
authorMiles Granger <miles59923@gmail.com>
requires_python>=3.8
licenseMIT
keywords compression decompression snappy zstd bz2 gzip lz4 brotli deflate blosc2
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # cramjam

[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)
[![CI](https://github.com/milesgranger/cramjam/actions/workflows/CI.yml/badge.svg)](https://github.com/milesgranger/cramjam/actions/workflows/CI.yml)
[![PyPI](https://img.shields.io/pypi/v/cramjam.svg)](https://pypi.org/project/cramjam)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/cramjam/badges/version.svg)](https://anaconda.org/conda-forge/cramjam)
[![Downloads](https://pepy.tech/badge/cramjam/month)](https://pepy.tech/project/cramjam)
[![NPM Version](https://img.shields.io/npm/v/cramjam)](https://www.npmjs.com/package/cramjam)


[API Documentation](https://milesgranger.github.io/cramjam/cramjam.html)

### Install (Python)
```commandline
pip install --upgrade cramjam  # Requires no Python or system dependencies!
```


### Install (JavaScript / TypeScript)
```commandline
npm install cramjam
```

### CLI

A CLI interface is available as [`cramjam-cli`](https://github.com/cramjam/cramjam-cli)

### libcramjam

A Rust crate and C friendly library available at [libcramjam](https://github.com/cramjam/libcramjam)

---

Extremely thin and easy-to-install Python bindings to de/compression algorithms in Rust.
Allows for using algorithms such as Snappy, without any system or other python dependencies.

---

##### Benchmarks

Some basic benchmarks are available [in the benchmarks directory](./benchmarks/README.md)

---

Available algorithms:

- [X] Snappy&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.snappy`
- [X] Brotli&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.brotli`
- [X] Bzip2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.bzip2`
- [X] Lz4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.lz4`
- [X] Gzip&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.gzip`
- [X] Zlib&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.zlib`
- [X] Deflate&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.deflate`
- [X] ZSTD&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.zstd`
- [X] XZ / LZMA&nbsp;&nbsp;`cramjam.xz`


Experimental (Requires build from source enabling each feature):

- [X] Blosc2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.experimental.blosc2`
- [X] ISA-L backend  _(only on 64-bit targets)_
  - [X] igzip&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.experimental.igzip`
  - [X] ideflate&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.experimental.ideflate`
  - [X] izlib&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.experimental.izlib`

All available for use as:

```python
>>> import cramjam
>>> import numpy as np
>>> compressed = cramjam.snappy.compress(b"bytes here")
>>> decompressed = cramjam.snappy.decompress(compressed)
>>> decompressed
cramjam.Buffer(len=10)  # an object which implements the buffer protocol
>>> bytes(decompressed)
b"bytes here"
>>> np.frombuffer(decompressed, dtype=np.uint8)
array([ 98, 121, 116, 101, 115,  32, 104, 101, 114, 101], dtype=uint8)
```

Where the API is `cramjam.<compression-variant>.compress/decompress` and accepts 
`bytes`/`bytearray`/`numpy.array`/`cramjam.File`/`cramjam.Buffer` / `memoryview` objects.

**de/compress_into**
Additionally, all variants support `decompress_into` and `compress_into`. 
Ex.
```python
>>> import numpy as np
>>> from cramjam import snappy, Buffer
>>>
>>> data = np.frombuffer(b'some bytes here', dtype=np.uint8)
>>> data
array([115, 111, 109, 101,  32,  98, 121, 116, 101, 115,  32, 104, 101,
       114, 101], dtype=uint8)
>>>
>>> compressed = Buffer()
>>> snappy.compress_into(data, compressed)
33  # 33 bytes written to compressed buffer
>>>
>>> compressed.tell()  # Where is the buffer position?
33  # goodie!
>>>
>>> compressed.seek(0)  # Go back to the start of the buffer so we can prepare to decompress
>>> decompressed = b'0' * len(data)  # let's write to `bytes` as output
>>> decompressed
b'000000000000000'
>>>
>>> snappy.decompress_into(compressed, decompressed)
15  # 15 bytes written to decompressed
>>> decompressed
b'some bytes here'
```


[TypeScript](./cramjam-js/README.md):


```typescript

import {Compress, Decompress} from 'cramjam';

const decoder = new TextDecoder();
const encoder = new TextEncoder();

const str = 'hello, world';
const encoded = encoder.encode(str);

const compressed = Compress.brotli(encoded);
const decompressed = Decompress.brotli(compressed);

const decoded = decoder.decode(decompressed);

```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cramjam",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "compression, decompression, snappy, zstd, bz2, gzip, lz4, brotli, deflate, blosc2",
    "author": "Miles Granger <miles59923@gmail.com>",
    "author_email": "Miles Granger <miles59923@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/14/12/34bf6e840a79130dfd0da7badfb6f7810b8fcfd60e75b0539372667b41b6/cramjam-2.11.0.tar.gz",
    "platform": null,
    "description": "# cramjam\n\n[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)\n[![CI](https://github.com/milesgranger/cramjam/actions/workflows/CI.yml/badge.svg)](https://github.com/milesgranger/cramjam/actions/workflows/CI.yml)\n[![PyPI](https://img.shields.io/pypi/v/cramjam.svg)](https://pypi.org/project/cramjam)\n[![Anaconda-Server Badge](https://anaconda.org/conda-forge/cramjam/badges/version.svg)](https://anaconda.org/conda-forge/cramjam)\n[![Downloads](https://pepy.tech/badge/cramjam/month)](https://pepy.tech/project/cramjam)\n[![NPM Version](https://img.shields.io/npm/v/cramjam)](https://www.npmjs.com/package/cramjam)\n\n\n[API Documentation](https://milesgranger.github.io/cramjam/cramjam.html)\n\n### Install (Python)\n```commandline\npip install --upgrade cramjam  # Requires no Python or system dependencies!\n```\n\n\n### Install (JavaScript / TypeScript)\n```commandline\nnpm install cramjam\n```\n\n### CLI\n\nA CLI interface is available as [`cramjam-cli`](https://github.com/cramjam/cramjam-cli)\n\n### libcramjam\n\nA Rust crate and C friendly library available at [libcramjam](https://github.com/cramjam/libcramjam)\n\n---\n\nExtremely thin and easy-to-install Python bindings to de/compression algorithms in Rust.\nAllows for using algorithms such as Snappy, without any system or other python dependencies.\n\n---\n\n##### Benchmarks\n\nSome basic benchmarks are available [in the benchmarks directory](./benchmarks/README.md)\n\n---\n\nAvailable algorithms:\n\n- [X] Snappy&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.snappy`\n- [X] Brotli&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.brotli`\n- [X] Bzip2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.bzip2`\n- [X] Lz4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.lz4`\n- [X] Gzip&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.gzip`\n- [X] Zlib&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.zlib`\n- [X] Deflate&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.deflate`\n- [X] ZSTD&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.zstd`\n- [X] XZ / LZMA&nbsp;&nbsp;`cramjam.xz`\n\n\nExperimental (Requires build from source enabling each feature):\n\n- [X] Blosc2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.experimental.blosc2`\n- [X] ISA-L backend  _(only on 64-bit targets)_\n  - [X] igzip&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.experimental.igzip`\n  - [X] ideflate&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.experimental.ideflate`\n  - [X] izlib&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;`cramjam.experimental.izlib`\n\nAll available for use as:\n\n```python\n>>> import cramjam\n>>> import numpy as np\n>>> compressed = cramjam.snappy.compress(b\"bytes here\")\n>>> decompressed = cramjam.snappy.decompress(compressed)\n>>> decompressed\ncramjam.Buffer(len=10)  # an object which implements the buffer protocol\n>>> bytes(decompressed)\nb\"bytes here\"\n>>> np.frombuffer(decompressed, dtype=np.uint8)\narray([ 98, 121, 116, 101, 115,  32, 104, 101, 114, 101], dtype=uint8)\n```\n\nWhere the API is `cramjam.<compression-variant>.compress/decompress` and accepts \n`bytes`/`bytearray`/`numpy.array`/`cramjam.File`/`cramjam.Buffer` / `memoryview` objects.\n\n**de/compress_into**\nAdditionally, all variants support `decompress_into` and `compress_into`. \nEx.\n```python\n>>> import numpy as np\n>>> from cramjam import snappy, Buffer\n>>>\n>>> data = np.frombuffer(b'some bytes here', dtype=np.uint8)\n>>> data\narray([115, 111, 109, 101,  32,  98, 121, 116, 101, 115,  32, 104, 101,\n       114, 101], dtype=uint8)\n>>>\n>>> compressed = Buffer()\n>>> snappy.compress_into(data, compressed)\n33  # 33 bytes written to compressed buffer\n>>>\n>>> compressed.tell()  # Where is the buffer position?\n33  # goodie!\n>>>\n>>> compressed.seek(0)  # Go back to the start of the buffer so we can prepare to decompress\n>>> decompressed = b'0' * len(data)  # let's write to `bytes` as output\n>>> decompressed\nb'000000000000000'\n>>>\n>>> snappy.decompress_into(compressed, decompressed)\n15  # 15 bytes written to decompressed\n>>> decompressed\nb'some bytes here'\n```\n\n\n[TypeScript](./cramjam-js/README.md):\n\n\n```typescript\n\nimport {Compress, Decompress} from 'cramjam';\n\nconst decoder = new TextDecoder();\nconst encoder = new TextEncoder();\n\nconst str = 'hello, world';\nconst encoded = encoder.encode(str);\n\nconst compressed = Compress.brotli(encoded);\nconst decompressed = Decompress.brotli(compressed);\n\nconst decoded = decoder.decode(decompressed);\n\n```\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Thin Python bindings to de/compression algorithms in Rust",
    "version": "2.11.0",
    "project_urls": {
        "documentation": "https://docs.rs/cramjam/latest/cramjam",
        "homepage": "https://github.com/milesgranger/pyrus-cramjam",
        "repository": "https://github.com/milesgranger/pyrus-cramjam"
    },
    "split_keywords": [
        "compression",
        " decompression",
        " snappy",
        " zstd",
        " bz2",
        " gzip",
        " lz4",
        " brotli",
        " deflate",
        " blosc2"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53d320d0402e4e983b66603117ad3dd3b864a05d7997a830206d3ff9cacef9a2",
                "md5": "7e6ab33b4b5c18536b958a1795dc8dcb",
                "sha256": "d0859c65775e8ebf2cbc084bfd51bd0ffda10266da6f9306451123b89f8e5a63"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "7e6ab33b4b5c18536b958a1795dc8dcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3558999,
            "upload_time": "2025-07-27T21:21:34",
            "upload_time_iso_8601": "2025-07-27T21:21:34.105996Z",
            "url": "https://files.pythonhosted.org/packages/53/d3/20d0402e4e983b66603117ad3dd3b864a05d7997a830206d3ff9cacef9a2/cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5a8a6e2744288938ccd320a5c6f6f3653faa790f933f5edd088c6e5782a2354",
                "md5": "a519566c7a13991f084a13bf889bbb48",
                "sha256": "1d77b9b0aca02a3f6eeeff27fcd315ca5972616c0919ee38e522cce257bcd349"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a519566c7a13991f084a13bf889bbb48",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1861558,
            "upload_time": "2025-07-27T21:21:36",
            "upload_time_iso_8601": "2025-07-27T21:21:36.624305Z",
            "url": "https://files.pythonhosted.org/packages/f5/a8/a6e2744288938ccd320a5c6f6f3653faa790f933f5edd088c6e5782a2354/cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96297961e09a849eea7d8302e7baa6f829dd3ef3faf199cb25ed29b318ae799b",
                "md5": "71b34374a742c7a95f394d34efc9165d",
                "sha256": "66425bc25b5481359b12a6719b6e7c90ffe76d85d0691f1da7df304bfb8ce45c"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "71b34374a742c7a95f394d34efc9165d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1699431,
            "upload_time": "2025-07-27T21:21:38",
            "upload_time_iso_8601": "2025-07-27T21:21:38.396274Z",
            "url": "https://files.pythonhosted.org/packages/96/29/7961e09a849eea7d8302e7baa6f829dd3ef3faf199cb25ed29b318ae799b/cramjam-2.11.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a606665e52f01a8919bf37c43dcf0e03b6dd3866f5c4e95440b357d508ee14e",
                "md5": "3d6dcef199078d82b437fc08f7ef3022",
                "sha256": "bd748d3407ec63e049b3aea1595e218814fccab329b7fb10bb51120a30e9fb7e"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "3d6dcef199078d82b437fc08f7ef3022",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2025262,
            "upload_time": "2025-07-27T21:21:40",
            "upload_time_iso_8601": "2025-07-27T21:21:40.417362Z",
            "url": "https://files.pythonhosted.org/packages/7a/60/6665e52f01a8919bf37c43dcf0e03b6dd3866f5c4e95440b357d508ee14e/cramjam-2.11.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d78079bd84dbeb109e2c6efb74e661b7bd4c3ba393208ebcf69e2ae9454ae80c",
                "md5": "aebecea9579c0c915e52f61ea5ffbae6",
                "sha256": "a6d9a23a35b3a105c42a8de60fc2e80281ae6e758f05a3baea0b68eb1ddcb679"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aebecea9579c0c915e52f61ea5ffbae6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1766177,
            "upload_time": "2025-07-27T21:21:42",
            "upload_time_iso_8601": "2025-07-27T21:21:42.224883Z",
            "url": "https://files.pythonhosted.org/packages/d7/80/79bd84dbeb109e2c6efb74e661b7bd4c3ba393208ebcf69e2ae9454ae80c/cramjam-2.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28efb43280767ebcde022ba31f1e9902137655a956ae30e920d75630fa67e36e",
                "md5": "4a21d680ebb440c793e09931eb705b20",
                "sha256": "40a75b95e05e38a2a055b2446f09994ce1139151721659315151d4ad6289bbff"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4a21d680ebb440c793e09931eb705b20",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1854031,
            "upload_time": "2025-07-27T21:21:43",
            "upload_time_iso_8601": "2025-07-27T21:21:43.651818Z",
            "url": "https://files.pythonhosted.org/packages/28/ef/b43280767ebcde022ba31f1e9902137655a956ae30e920d75630fa67e36e/cramjam-2.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "601c79d522757c494dfd9e9b208b0604cc7e97b481483cc477144f5705a06ab7",
                "md5": "a711dd9ade1971069ce66d830100d2d1",
                "sha256": "e5d042c376d2025300da37d65192d06a457918b63b31140f697f85fd8e310b29"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a711dd9ade1971069ce66d830100d2d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2035812,
            "upload_time": "2025-07-27T21:21:45",
            "upload_time_iso_8601": "2025-07-27T21:21:45.473199Z",
            "url": "https://files.pythonhosted.org/packages/60/1c/79d522757c494dfd9e9b208b0604cc7e97b481483cc477144f5705a06ab7/cramjam-2.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8703bf0670380069b3abd4c6b53f61d3148f4e08935569c08efbeaf7550e87d",
                "md5": "83337615ee4c6e1a544fb1786b68d4d9",
                "sha256": "cb148b35ab20c75b19a06c27f05732e2a321adbd86fadc93f9466dbd7b1154a7"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "83337615ee4c6e1a544fb1786b68d4d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2067661,
            "upload_time": "2025-07-27T21:21:47",
            "upload_time_iso_8601": "2025-07-27T21:21:47.901949Z",
            "url": "https://files.pythonhosted.org/packages/c8/70/3bf0670380069b3abd4c6b53f61d3148f4e08935569c08efbeaf7550e87d/cramjam-2.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db7e4f6ca98a4b474348e965a529b359184785d1119ab7c4c9ec1280b8bea50a",
                "md5": "6e2adf39e702b8675a61362820ad033c",
                "sha256": "0ee47c220f0f5179ddc923ab91fc9e282c27b29fabc60c433dfe06f08084f798"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e2adf39e702b8675a61362820ad033c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1981523,
            "upload_time": "2025-07-27T21:21:49",
            "upload_time_iso_8601": "2025-07-27T21:21:49.704786Z",
            "url": "https://files.pythonhosted.org/packages/db/7e/4f6ca98a4b474348e965a529b359184785d1119ab7c4c9ec1280b8bea50a/cramjam-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a6cb241511c7ffd5f1da29641429bb0e19b5fbcffafde5ba1bbcbf9394ea456",
                "md5": "d63da0499e9d7b81aec9a4390b2c1bb0",
                "sha256": "0cf1b5a81b21ea175c976c3ab09e00494258f4b49b7995efc86060cced3f0b2e"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d63da0499e9d7b81aec9a4390b2c1bb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2034251,
            "upload_time": "2025-07-27T21:21:51",
            "upload_time_iso_8601": "2025-07-27T21:21:51.252039Z",
            "url": "https://files.pythonhosted.org/packages/8a/6c/b241511c7ffd5f1da29641429bb0e19b5fbcffafde5ba1bbcbf9394ea456/cramjam-2.11.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "145c4ef926c8c3c1bf6da96f9c53450ff334cdb6d0fc1efced0aea97e2090803",
                "md5": "0d934c858bbd30878c671bff79fe404a",
                "sha256": "360c00338ecf48921492455007f904be607fc7818de3d681acbcc542aae2fb36"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0d934c858bbd30878c671bff79fe404a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2155322,
            "upload_time": "2025-07-27T21:21:53",
            "upload_time_iso_8601": "2025-07-27T21:21:53.348686Z",
            "url": "https://files.pythonhosted.org/packages/14/5c/4ef926c8c3c1bf6da96f9c53450ff334cdb6d0fc1efced0aea97e2090803/cramjam-2.11.0-cp310-cp310-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "befbeb2aef7fb2730e56c5a2c9000817ee8fb4a95c92f19cc6e441afed42ec29",
                "md5": "299bcdefd252b8999adbf0cde3ae15af",
                "sha256": "f31fcc0d30dc3f3e94ea6b4d8e1a855071757c6abf6a7b1e284050ab7d4c299c"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "299bcdefd252b8999adbf0cde3ae15af",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2169094,
            "upload_time": "2025-07-27T21:21:55",
            "upload_time_iso_8601": "2025-07-27T21:21:55.187094Z",
            "url": "https://files.pythonhosted.org/packages/be/fb/eb2aef7fb2730e56c5a2c9000817ee8fb4a95c92f19cc6e441afed42ec29/cramjam-2.11.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b80925a5c668dcee1c6f61775067185c5dc9a63c766d5393e5c60d2af4217a7",
                "md5": "cb18c231465456d49888178dab7bfb4d",
                "sha256": "033be66fdceb3d63b2c99b257a98380c4ec22c9e4dca54a2bfec3718cd24e184"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb18c231465456d49888178dab7bfb4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2159089,
            "upload_time": "2025-07-27T21:21:57",
            "upload_time_iso_8601": "2025-07-27T21:21:57.118854Z",
            "url": "https://files.pythonhosted.org/packages/3b/80/925a5c668dcee1c6f61775067185c5dc9a63c766d5393e5c60d2af4217a7/cramjam-2.11.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1facb2819640eef0592a6de7ca832c0d23c69bd1620f765ce88b60dbc8da9ba2",
                "md5": "eac353417727284b3c2ba016a0ad31e2",
                "sha256": "1c6cea67f6000b81f6bd27d14c8a6f62d00336ca7252fd03ee16f6b70eb5c0d2"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "eac353417727284b3c2ba016a0ad31e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1605046,
            "upload_time": "2025-07-27T21:21:58",
            "upload_time_iso_8601": "2025-07-27T21:21:58.617806Z",
            "url": "https://files.pythonhosted.org/packages/1f/ac/b2819640eef0592a6de7ca832c0d23c69bd1620f765ce88b60dbc8da9ba2/cramjam-2.11.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5af406af04727b9556721049e2127656d727306d275c518e3d97f9ed4cffd0d8",
                "md5": "8bae55697c117f39a1ce314e3724f0e7",
                "sha256": "98aa4a351b047b0f7f9e971585982065028adc2c162c5c23c5d5734c5ccc1077"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8bae55697c117f39a1ce314e3724f0e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1710647,
            "upload_time": "2025-07-27T21:22:00",
            "upload_time_iso_8601": "2025-07-27T21:22:00.279409Z",
            "url": "https://files.pythonhosted.org/packages/5a/f4/06af04727b9556721049e2127656d727306d275c518e3d97f9ed4cffd0d8/cramjam-2.11.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0898001f6a9b6b6e9fa69bec5319789083475d6f26d52aaea209d3ebf939284",
                "md5": "4073897807e0f355954c9f8dba061d88",
                "sha256": "04cfa39118570e70e920a9b75c733299784b6d269733dbc791d9aaed6edd2615"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "4073897807e0f355954c9f8dba061d88",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3559272,
            "upload_time": "2025-07-27T21:22:01",
            "upload_time_iso_8601": "2025-07-27T21:22:01.988426Z",
            "url": "https://files.pythonhosted.org/packages/d0/89/8001f6a9b6b6e9fa69bec5319789083475d6f26d52aaea209d3ebf939284/cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bf3001d00070ca92e5fbe6aacc768e455568b0cde46b0eb944561a4ea132300",
                "md5": "1730ae42ff33817b7fea91c6555cb21c",
                "sha256": "66a18f68506290349a256375d7aa2f645b9f7993c10fc4cc211db214e4e61d2b"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1730ae42ff33817b7fea91c6555cb21c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1861743,
            "upload_time": "2025-07-27T21:22:03",
            "upload_time_iso_8601": "2025-07-27T21:22:03.754490Z",
            "url": "https://files.pythonhosted.org/packages/0b/f3/001d00070ca92e5fbe6aacc768e455568b0cde46b0eb944561a4ea132300/cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c935041a3af01bf3f6158f120070f798546d4383b962b63c35cd91dcbf193e17",
                "md5": "131c5a7849bcb04bf21901b67192f133",
                "sha256": "50e7d65533857736cd56f6509cf2c4866f28ad84dd15b5bdbf2f8a81e77fa28a"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "131c5a7849bcb04bf21901b67192f133",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1699631,
            "upload_time": "2025-07-27T21:22:05",
            "upload_time_iso_8601": "2025-07-27T21:22:05.192135Z",
            "url": "https://files.pythonhosted.org/packages/c9/35/041a3af01bf3f6158f120070f798546d4383b962b63c35cd91dcbf193e17/cramjam-2.11.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17eb5358b238808abebd0c949c42635c3751204ca7cf82b29b984abe9f5e33c8",
                "md5": "d6407afb604777135e442ae92936ca8e",
                "sha256": "1f71989668458fc327ac15396db28d92df22f8024bb12963929798b2729d2df5"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "d6407afb604777135e442ae92936ca8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2025603,
            "upload_time": "2025-07-27T21:22:06",
            "upload_time_iso_8601": "2025-07-27T21:22:06.726083Z",
            "url": "https://files.pythonhosted.org/packages/17/eb/5358b238808abebd0c949c42635c3751204ca7cf82b29b984abe9f5e33c8/cramjam-2.11.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e7919dba7c03a27408d8d11b5a7a4a7908459cfd4e6f375b73264dc66517bf6",
                "md5": "1be8961f480e7cdfc6a7e918a072813d",
                "sha256": "ee77ac543f1e2b22af1e8be3ae589f729491b6090582340aacd77d1d757d9569"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1be8961f480e7cdfc6a7e918a072813d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1766283,
            "upload_time": "2025-07-27T21:22:08",
            "upload_time_iso_8601": "2025-07-27T21:22:08.568138Z",
            "url": "https://files.pythonhosted.org/packages/0e/79/19dba7c03a27408d8d11b5a7a4a7908459cfd4e6f375b73264dc66517bf6/cramjam-2.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4ad40e4b3408501d886d082db465c33971655fe82573c535428e52ab905f4d0",
                "md5": "18d578dc9fe0b12975d7474483708179",
                "sha256": "ad52784120e7e4d8a0b5b0517d185b8bf7f74f5e17272857ddc8951a628d9be1"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "18d578dc9fe0b12975d7474483708179",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1854407,
            "upload_time": "2025-07-27T21:22:10",
            "upload_time_iso_8601": "2025-07-27T21:22:10.518479Z",
            "url": "https://files.pythonhosted.org/packages/a4/ad/40e4b3408501d886d082db465c33971655fe82573c535428e52ab905f4d0/cramjam-2.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "366ec1b60ceb6d7ea6ff8b0bf197520aefe23f878bf2bfb0de65f2b0c2f82cd1",
                "md5": "8f69b96ea50fd78362ee719fe28b4a68",
                "sha256": "4b86f8e6d9c1b3f9a75b2af870c93ceee0f1b827cd2507387540e053b35d7459"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8f69b96ea50fd78362ee719fe28b4a68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2035793,
            "upload_time": "2025-07-27T21:22:12",
            "upload_time_iso_8601": "2025-07-27T21:22:12.504189Z",
            "url": "https://files.pythonhosted.org/packages/36/6e/c1b60ceb6d7ea6ff8b0bf197520aefe23f878bf2bfb0de65f2b0c2f82cd1/cramjam-2.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9cad32a8d5f4b1e3717787945ec6d71bd1c6e6bccba4b7e903fc0d9d4e4b08c3",
                "md5": "d14e80c06e4a774f6fe34aa352283e5d",
                "sha256": "320d61938950d95da2371b46c406ec433e7955fae9f396c8e1bf148ffc187d11"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d14e80c06e4a774f6fe34aa352283e5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2067499,
            "upload_time": "2025-07-27T21:22:14",
            "upload_time_iso_8601": "2025-07-27T21:22:14.067787Z",
            "url": "https://files.pythonhosted.org/packages/9c/ad/32a8d5f4b1e3717787945ec6d71bd1c6e6bccba4b7e903fc0d9d4e4b08c3/cramjam-2.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffcd3b5a662736ea62ff7fa4c4a10a85e050bfdaad375cc53dc80427e8afe41c",
                "md5": "b4750f955ce4ac5cb38ec6e61d6c3e51",
                "sha256": "41eafc8c1653a35a5c7e75ad48138f9f60085cc05cd99d592e5298552d944e9f"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4750f955ce4ac5cb38ec6e61d6c3e51",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1981853,
            "upload_time": "2025-07-27T21:22:15",
            "upload_time_iso_8601": "2025-07-27T21:22:15.908510Z",
            "url": "https://files.pythonhosted.org/packages/ff/cd/3b5a662736ea62ff7fa4c4a10a85e050bfdaad375cc53dc80427e8afe41c/cramjam-2.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "268e1dbcfaaa7a702ee82ee683ec3a81656934dd7e04a7bc4ee854033686f98a",
                "md5": "a490ac9035d2fec0c426f5d283934b23",
                "sha256": "03a7316c6bf763dfa34279335b27702321da44c455a64de58112968c0818ec4a"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a490ac9035d2fec0c426f5d283934b23",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2034514,
            "upload_time": "2025-07-27T21:22:17",
            "upload_time_iso_8601": "2025-07-27T21:22:17.352091Z",
            "url": "https://files.pythonhosted.org/packages/26/8e/1dbcfaaa7a702ee82ee683ec3a81656934dd7e04a7bc4ee854033686f98a/cramjam-2.11.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5062f11709bfdce74af79a88b410dcb76dedc97612166e759136931bf63cfd7b",
                "md5": "afa4f9ba5e8c2b794db974276a08351e",
                "sha256": "244c2ed8bd7ccbb294a2abe7ca6498db7e89d7eb5e744691dc511a7dc82e65ca"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "afa4f9ba5e8c2b794db974276a08351e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2155343,
            "upload_time": "2025-07-27T21:22:18",
            "upload_time_iso_8601": "2025-07-27T21:22:18.854300Z",
            "url": "https://files.pythonhosted.org/packages/50/62/f11709bfdce74af79a88b410dcb76dedc97612166e759136931bf63cfd7b/cramjam-2.11.0-cp311-cp311-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a6d3b98b61841a5376d9a9b8468ae58753a8e6cf22be9534a0fa5af4d8621cc",
                "md5": "bed542b28b3d2d272532e217ae10630f",
                "sha256": "405f8790bad36ce0b4bbdb964ad51507bfc7942c78447f25cb828b870a1d86a0"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bed542b28b3d2d272532e217ae10630f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2169367,
            "upload_time": "2025-07-27T21:22:20",
            "upload_time_iso_8601": "2025-07-27T21:22:20.389005Z",
            "url": "https://files.pythonhosted.org/packages/8a/6d/3b98b61841a5376d9a9b8468ae58753a8e6cf22be9534a0fa5af4d8621cc/cramjam-2.11.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1172bd5db5c49dbebc8b002f1c4983101b28d2e7fc9419753db1c31ec22b03ef",
                "md5": "5fa04887c90204f323aef9fabbcd475f",
                "sha256": "6b1b751a5411032b08fb3ac556160229ca01c6bbe4757bb3a9a40b951ebaac23"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5fa04887c90204f323aef9fabbcd475f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2159334,
            "upload_time": "2025-07-27T21:22:22",
            "upload_time_iso_8601": "2025-07-27T21:22:22.254788Z",
            "url": "https://files.pythonhosted.org/packages/11/72/bd5db5c49dbebc8b002f1c4983101b28d2e7fc9419753db1c31ec22b03ef/cramjam-2.11.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3432203c57acdb6eea727e7078b2219984e64ed4ad043c996ed56321301ba167",
                "md5": "1fe3fb133bde7b4b6e6e2edf9b5d551e",
                "sha256": "5251585608778b9ac8effed544933df7ad85b4ba21ee9738b551f17798b215ac"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "1fe3fb133bde7b4b6e6e2edf9b5d551e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1605313,
            "upload_time": "2025-07-27T21:22:24",
            "upload_time_iso_8601": "2025-07-27T21:22:24.126448Z",
            "url": "https://files.pythonhosted.org/packages/34/32/203c57acdb6eea727e7078b2219984e64ed4ad043c996ed56321301ba167/cramjam-2.11.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9bd102d6deb87a8524ac11cddcd31a7612b8f20bf9b473c3c645045e3b957c7",
                "md5": "060eee171704404fcaded7bf6acbb209",
                "sha256": "dca88bc8b68ce6d35dafd8c4d5d59a238a56c43fa02b74c2ce5f9dfb0d1ccb46"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "060eee171704404fcaded7bf6acbb209",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1710991,
            "upload_time": "2025-07-27T21:22:25",
            "upload_time_iso_8601": "2025-07-27T21:22:25.661855Z",
            "url": "https://files.pythonhosted.org/packages/a9/bd/102d6deb87a8524ac11cddcd31a7612b8f20bf9b473c3c645045e3b957c7/cramjam-2.11.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b0d7c84c913a5fae85b773a9dcf8874390f9d68ba0fcc6630efa7ff1541b950",
                "md5": "2c8ade54b1afaa6561c146872e7f3295",
                "sha256": "dba5c14b8b4f73ea1e65720f5a3fe4280c1d27761238378be8274135c60bbc6e"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "2c8ade54b1afaa6561c146872e7f3295",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3553368,
            "upload_time": "2025-07-27T21:22:27",
            "upload_time_iso_8601": "2025-07-27T21:22:27.162834Z",
            "url": "https://files.pythonhosted.org/packages/0b/0d/7c84c913a5fae85b773a9dcf8874390f9d68ba0fcc6630efa7ff1541b950/cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bcc4f6d185d8a744776f53035e72831ff8eefc2354f46ab836f4bd3c4f6c138",
                "md5": "6680ae27bd33f2e91108ae3605b676de",
                "sha256": "11eb40722b3fcf3e6890fba46c711bf60f8dc26360a24876c85e52d76c33b25b"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6680ae27bd33f2e91108ae3605b676de",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1860014,
            "upload_time": "2025-07-27T21:22:28",
            "upload_time_iso_8601": "2025-07-27T21:22:28.738839Z",
            "url": "https://files.pythonhosted.org/packages/2b/cc/4f6d185d8a744776f53035e72831ff8eefc2354f46ab836f4bd3c4f6c138/cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ca8626c76263085c6d5ded0e71823b411e9522bfc93ba6cc59855a5869296e7",
                "md5": "2e484bf0461ab1dec80406bd95efb873",
                "sha256": "aeb26e2898994b6e8319f19a4d37c481512acdcc6d30e1b5ecc9d8ec57e835cb"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2e484bf0461ab1dec80406bd95efb873",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1693512,
            "upload_time": "2025-07-27T21:22:30",
            "upload_time_iso_8601": "2025-07-27T21:22:30.999100Z",
            "url": "https://files.pythonhosted.org/packages/1c/a8/626c76263085c6d5ded0e71823b411e9522bfc93ba6cc59855a5869296e7/cramjam-2.11.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9520851a16a62447532e30ba95a80e638926fdea869a34b4b5b9d0a020083ba",
                "md5": "ba20795c5a27cbf94729a4618247424b",
                "sha256": "4f8d82081ed7d8fe52c982bd1f06e4c7631a73fe1fb6d4b3b3f2404f87dc40fe"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "ba20795c5a27cbf94729a4618247424b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2025285,
            "upload_time": "2025-07-27T21:22:32",
            "upload_time_iso_8601": "2025-07-27T21:22:32.954493Z",
            "url": "https://files.pythonhosted.org/packages/e9/52/0851a16a62447532e30ba95a80e638926fdea869a34b4b5b9d0a020083ba/cramjam-2.11.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9876122e444f59dbc216451d8e3d8282c9665dc79eaf822f5f1470066be1b695",
                "md5": "bccb4a3508bfbc30cd838c7d2eaaa636",
                "sha256": "092a3ec26e0a679305018380e4f652eae1b6dfe3fc3b154ee76aa6b92221a17c"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bccb4a3508bfbc30cd838c7d2eaaa636",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1761327,
            "upload_time": "2025-07-27T21:22:34",
            "upload_time_iso_8601": "2025-07-27T21:22:34.484272Z",
            "url": "https://files.pythonhosted.org/packages/98/76/122e444f59dbc216451d8e3d8282c9665dc79eaf822f5f1470066be1b695/cramjam-2.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3bc3a0189aef1af2b29632c039c19a7a1b752bc21a4053582a5464183a0ad3d",
                "md5": "730b97b11f475f1c834bc7db5b0b4d4c",
                "sha256": "529d6d667c65fd105d10bd83d1cd3f9869f8fd6c66efac9415c1812281196a92"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "730b97b11f475f1c834bc7db5b0b4d4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1854075,
            "upload_time": "2025-07-27T21:22:36",
            "upload_time_iso_8601": "2025-07-27T21:22:36.157290Z",
            "url": "https://files.pythonhosted.org/packages/a3/bc/3a0189aef1af2b29632c039c19a7a1b752bc21a4053582a5464183a0ad3d/cramjam-2.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e808a6343b13778ce52d94bb8d5365a30c3aa951276b1857201fe79d7e2ad25",
                "md5": "b216d54224cd63653d0422eb3b5d2929",
                "sha256": "555eb9c90c450e0f76e27d9ff064e64a8b8c6478ab1a5594c91b7bc5c82fd9f0"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b216d54224cd63653d0422eb3b5d2929",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2032710,
            "upload_time": "2025-07-27T21:22:38",
            "upload_time_iso_8601": "2025-07-27T21:22:38.170984Z",
            "url": "https://files.pythonhosted.org/packages/2e/80/8a6343b13778ce52d94bb8d5365a30c3aa951276b1857201fe79d7e2ad25/cramjam-2.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df6bcd1778a207c29eda10791e3dfa018b588001928086e179fc71254793c625",
                "md5": "e643638950f1537976d676a82ad6a37b",
                "sha256": "5edf4c9e32493035b514cf2ba0c969d81ccb31de63bd05490cc8bfe3b431674e"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e643638950f1537976d676a82ad6a37b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2068353,
            "upload_time": "2025-07-27T21:22:39",
            "upload_time_iso_8601": "2025-07-27T21:22:39.615970Z",
            "url": "https://files.pythonhosted.org/packages/df/6b/cd1778a207c29eda10791e3dfa018b588001928086e179fc71254793c625/cramjam-2.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcf05c2a5cd5711032f3b191ca50cb786c17689b4a9255f9f768866e6c9f04d9",
                "md5": "217cfd5852b930c7493a2ab8e946b679",
                "sha256": "2fa2fe41f48c4d58d923803383b0737f048918b5a0d10390de9628bb6272b107"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "217cfd5852b930c7493a2ab8e946b679",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1978104,
            "upload_time": "2025-07-27T21:22:41",
            "upload_time_iso_8601": "2025-07-27T21:22:41.106931Z",
            "url": "https://files.pythonhosted.org/packages/dc/f0/5c2a5cd5711032f3b191ca50cb786c17689b4a9255f9f768866e6c9f04d9/cramjam-2.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f98bb363a5fb2c3347504fe9a64f8d0f1e276844f0e532aa7162c061cd1ffee4",
                "md5": "d9565a503173b657ae9fee31d1150247",
                "sha256": "9ca14cf1cabdb0b77d606db1bb9e9ca593b1dbd421fcaf251ec9a5431ec449f3"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d9565a503173b657ae9fee31d1150247",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2030779,
            "upload_time": "2025-07-27T21:22:42",
            "upload_time_iso_8601": "2025-07-27T21:22:42.969599Z",
            "url": "https://files.pythonhosted.org/packages/f9/8b/b363a5fb2c3347504fe9a64f8d0f1e276844f0e532aa7162c061cd1ffee4/cramjam-2.11.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "787bd83dad46adb6c988a74361f81ad9c5c22642be53ad88616a19baedd06243",
                "md5": "6caa591e53de286b828938001c205ae0",
                "sha256": "309e95bf898829476bccf4fd2c358ec00e7ff73a12f95a3cdeeba4bb1d3683d5"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6caa591e53de286b828938001c205ae0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2155297,
            "upload_time": "2025-07-27T21:22:44",
            "upload_time_iso_8601": "2025-07-27T21:22:44.600123Z",
            "url": "https://files.pythonhosted.org/packages/78/7b/d83dad46adb6c988a74361f81ad9c5c22642be53ad88616a19baedd06243/cramjam-2.11.0-cp312-cp312-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1abe60d9be4cb33d8740a4aa94c7513f2ef3c4eba4fd13536f086facbafade71",
                "md5": "c6ed23e59f5c429cb800cc43b838ebba",
                "sha256": "86dca35d2f15ef22922411496c220f3c9e315d5512f316fe417461971cc1648d"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c6ed23e59f5c429cb800cc43b838ebba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2169255,
            "upload_time": "2025-07-27T21:22:46",
            "upload_time_iso_8601": "2025-07-27T21:22:46.534092Z",
            "url": "https://files.pythonhosted.org/packages/1a/be/60d9be4cb33d8740a4aa94c7513f2ef3c4eba4fd13536f086facbafade71/cramjam-2.11.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11b04a595f01a243aec8ad272b160b161c44351190c35d98d7787919d962e9e5",
                "md5": "8f9a4c5e545392c58610673ca5b8fced",
                "sha256": "193c6488bd2f514cbc0bef5c18fad61a5f9c8d059dd56edf773b3b37f0e85496"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f9a4c5e545392c58610673ca5b8fced",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2155651,
            "upload_time": "2025-07-27T21:22:48",
            "upload_time_iso_8601": "2025-07-27T21:22:48.460821Z",
            "url": "https://files.pythonhosted.org/packages/11/b0/4a595f01a243aec8ad272b160b161c44351190c35d98d7787919d962e9e5/cramjam-2.11.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38477776659aaa677046b77f527106e53ddd47373416d8fcdb1e1a881ec5dc06",
                "md5": "45c2c376c9453db99b10e546ff3ed9d0",
                "sha256": "514e2c008a8b4fa823122ca3ecab896eac41d9aa0f5fc881bd6264486c204e32"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "45c2c376c9453db99b10e546ff3ed9d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1603568,
            "upload_time": "2025-07-27T21:22:50",
            "upload_time_iso_8601": "2025-07-27T21:22:50.084565Z",
            "url": "https://files.pythonhosted.org/packages/38/47/7776659aaa677046b77f527106e53ddd47373416d8fcdb1e1a881ec5dc06/cramjam-2.11.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75b1d53002729cfd94c5844ddfaf1233c86d29f2dbfc1b764a6562c41c044199",
                "md5": "95d07939720840a2e65bc319647d26ae",
                "sha256": "53fed080476d5f6ad7505883ec5d1ec28ba36c2273db3b3e92d7224fe5e463db"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "95d07939720840a2e65bc319647d26ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1709287,
            "upload_time": "2025-07-27T21:22:51",
            "upload_time_iso_8601": "2025-07-27T21:22:51.534866Z",
            "url": "https://files.pythonhosted.org/packages/75/b1/d53002729cfd94c5844ddfaf1233c86d29f2dbfc1b764a6562c41c044199/cramjam-2.11.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a8b406c5dc0f8e82385519d8c299c40fd6a56d97eca3fcd6f5da8dad48de75b",
                "md5": "ce6543a31d538ed80dc07eb9926bca10",
                "sha256": "2c289729cc1c04e88bafa48b51082fb462b0a57dbc96494eab2be9b14dca62af"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "ce6543a31d538ed80dc07eb9926bca10",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3553330,
            "upload_time": "2025-07-27T21:22:53",
            "upload_time_iso_8601": "2025-07-27T21:22:53.124942Z",
            "url": "https://files.pythonhosted.org/packages/0a/8b/406c5dc0f8e82385519d8c299c40fd6a56d97eca3fcd6f5da8dad48de75b/cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00ad4186884083d6e4125b285903e17841827ab0d6d0cffc86216d27ed91e91d",
                "md5": "2993d8967b212dc01fa2eadbd9931163",
                "sha256": "045201ee17147e36cf43d8ae2fa4b4836944ac672df5874579b81cf6d40f1a1f"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2993d8967b212dc01fa2eadbd9931163",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1859756,
            "upload_time": "2025-07-27T21:22:54",
            "upload_time_iso_8601": "2025-07-27T21:22:54.821075Z",
            "url": "https://files.pythonhosted.org/packages/00/ad/4186884083d6e4125b285903e17841827ab0d6d0cffc86216d27ed91e91d/cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "540191b485cf76a7efef638151e8a7d35784dae2c4ff221b1aec2c083e4b106d",
                "md5": "a089bcf141d6da3e8d0700e3368b9813",
                "sha256": "619cd195d74c9e1d2a3ad78d63451d35379c84bd851aec552811e30842e1c67a"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a089bcf141d6da3e8d0700e3368b9813",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1693609,
            "upload_time": "2025-07-27T21:22:56",
            "upload_time_iso_8601": "2025-07-27T21:22:56.331120Z",
            "url": "https://files.pythonhosted.org/packages/54/01/91b485cf76a7efef638151e8a7d35784dae2c4ff221b1aec2c083e4b106d/cramjam-2.11.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd84d0c80d279b2976870fc7d10f15dcb90a3c10c06566c6964b37c152694974",
                "md5": "e0aebb6c86f215467f8a38c489214657",
                "sha256": "6eb3ae5ab72edb2ed68bdc0f5710f0a6cad7fd778a610ec2c31ee15e32d3921e"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "e0aebb6c86f215467f8a38c489214657",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2024912,
            "upload_time": "2025-07-27T21:22:57",
            "upload_time_iso_8601": "2025-07-27T21:22:57.915619Z",
            "url": "https://files.pythonhosted.org/packages/cd/84/d0c80d279b2976870fc7d10f15dcb90a3c10c06566c6964b37c152694974/cramjam-2.11.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d67088f2a5cb904281ed5d3c111b8f7d5366639817a5470f059bcd26833fc870",
                "md5": "cb0f793c1c8c12dfdf19d216804afab6",
                "sha256": "df7da3f4b19e3078f9635f132d31b0a8196accb2576e3213ddd7a77f93317c20"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cb0f793c1c8c12dfdf19d216804afab6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1760715,
            "upload_time": "2025-07-27T21:22:59",
            "upload_time_iso_8601": "2025-07-27T21:22:59.528469Z",
            "url": "https://files.pythonhosted.org/packages/d6/70/88f2a5cb904281ed5d3c111b8f7d5366639817a5470f059bcd26833fc870/cramjam-2.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b206cf5b02081132537d28964fb385fcef9ed9f8a017dd7d8c59d317e53ba50d",
                "md5": "f325730f511f1b14dcfb151d51c2b3e8",
                "sha256": "57286b289cd557ac76c24479d8ecfb6c3d5b854cce54ccc7671f9a2f5e2a2708"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f325730f511f1b14dcfb151d51c2b3e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1853782,
            "upload_time": "2025-07-27T21:23:01",
            "upload_time_iso_8601": "2025-07-27T21:23:01.070575Z",
            "url": "https://files.pythonhosted.org/packages/b2/06/cf5b02081132537d28964fb385fcef9ed9f8a017dd7d8c59d317e53ba50d/cramjam-2.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "572763525087ed40a53d1867021b9c4858b80cc86274ffe7225deed067d88d92",
                "md5": "b0a4259be8493b21f6f6bf097b091aed",
                "sha256": "28952fbbf8b32c0cb7fa4be9bcccfca734bf0d0989f4b509dc7f2f70ba79ae06"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b0a4259be8493b21f6f6bf097b091aed",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2032354,
            "upload_time": "2025-07-27T21:23:03",
            "upload_time_iso_8601": "2025-07-27T21:23:03.021976Z",
            "url": "https://files.pythonhosted.org/packages/57/27/63525087ed40a53d1867021b9c4858b80cc86274ffe7225deed067d88d92/cramjam-2.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3efdbba082c6ebfb6410da4dd39a64e654d7194fcfd4567f85991a83fa4ec32",
                "md5": "9e80b810ee78bbdb6f01f0da1df09cb1",
                "sha256": "78ed2e4099812a438b545dfbca1928ec825e743cd253bc820372d6ef8c3adff4"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9e80b810ee78bbdb6f01f0da1df09cb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2068007,
            "upload_time": "2025-07-27T21:23:04",
            "upload_time_iso_8601": "2025-07-27T21:23:04.526276Z",
            "url": "https://files.pythonhosted.org/packages/c3/ef/dbba082c6ebfb6410da4dd39a64e654d7194fcfd4567f85991a83fa4ec32/cramjam-2.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35ced902b9358a46a086938feae83b2251720e030f06e46006f4c1fc0ac9da20",
                "md5": "de9b13be67d84ffb8f3175f328295edb",
                "sha256": "7d9aecd5c3845d415bd6c9957c93de8d93097e269137c2ecb0e5a5256374bdc8"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de9b13be67d84ffb8f3175f328295edb",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1977485,
            "upload_time": "2025-07-27T21:23:06",
            "upload_time_iso_8601": "2025-07-27T21:23:06.058784Z",
            "url": "https://files.pythonhosted.org/packages/35/ce/d902b9358a46a086938feae83b2251720e030f06e46006f4c1fc0ac9da20/cramjam-2.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e803982f54553244b0afcbdb2ad2065d460f0ab05a72a96896a969a1ca136a1e",
                "md5": "e7bf9d99584fc3d2fc8379a07a43a952",
                "sha256": "362fcf4d6f5e1242a4540812455f5a594949190f6fbc04f2ffbfd7ae0266d788"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e7bf9d99584fc3d2fc8379a07a43a952",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2030447,
            "upload_time": "2025-07-27T21:23:07",
            "upload_time_iso_8601": "2025-07-27T21:23:07.679364Z",
            "url": "https://files.pythonhosted.org/packages/e8/03/982f54553244b0afcbdb2ad2065d460f0ab05a72a96896a969a1ca136a1e/cramjam-2.11.0-cp313-cp313-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "745f748e54cdb665ec098ec519e23caacc65fc5ae58718183b071e33fc1c45b4",
                "md5": "2a6f65d0685ff3bb95ff29ffdc32ba18",
                "sha256": "13240b3dea41b1174456cb9426843b085dc1a2bdcecd9ee2d8f65ac5703374b0"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2a6f65d0685ff3bb95ff29ffdc32ba18",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2154949,
            "upload_time": "2025-07-27T21:23:09",
            "upload_time_iso_8601": "2025-07-27T21:23:09.366268Z",
            "url": "https://files.pythonhosted.org/packages/74/5f/748e54cdb665ec098ec519e23caacc65fc5ae58718183b071e33fc1c45b4/cramjam-2.11.0-cp313-cp313-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6981c4e6cb06ed69db0dc81f9a8b1dc74995ebd4351e7a1877143f7031ff2700",
                "md5": "d8abb67665cae72076dcd15ba2b22e3a",
                "sha256": "c54eed83726269594b9086d827decc7d2015696e31b99bf9b69b12d9063584fe"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d8abb67665cae72076dcd15ba2b22e3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2168925,
            "upload_time": "2025-07-27T21:23:10",
            "upload_time_iso_8601": "2025-07-27T21:23:10.976739Z",
            "url": "https://files.pythonhosted.org/packages/69/81/c4e6cb06ed69db0dc81f9a8b1dc74995ebd4351e7a1877143f7031ff2700/cramjam-2.11.0-cp313-cp313-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "135b966365523ce8290a08e163e3b489626c5adacdff2b3da9da1b0823dfb14e",
                "md5": "55218743cef789b3472cf0be705ab9d7",
                "sha256": "f8195006fdd0fc0a85b19df3d64a3ef8a240e483ae1dfc7ac6a4316019eb5df2"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55218743cef789b3472cf0be705ab9d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2154950,
            "upload_time": "2025-07-27T21:23:12",
            "upload_time_iso_8601": "2025-07-27T21:23:12.514497Z",
            "url": "https://files.pythonhosted.org/packages/13/5b/966365523ce8290a08e163e3b489626c5adacdff2b3da9da1b0823dfb14e/cramjam-2.11.0-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a7d7f8eb5c534b72b32c6eb79d74585bfee44a9a5647a14040bb65c31c2572d",
                "md5": "1b3e3b034c43e74cd6189db0eb42d120",
                "sha256": "ccf30e3fe6d770a803dcdf3bb863fa44ba5dc2664d4610ba2746a3c73599f2e4"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "1b3e3b034c43e74cd6189db0eb42d120",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1603199,
            "upload_time": "2025-07-27T21:23:14",
            "upload_time_iso_8601": "2025-07-27T21:23:14.380573Z",
            "url": "https://files.pythonhosted.org/packages/3a/7d/7f8eb5c534b72b32c6eb79d74585bfee44a9a5647a14040bb65c31c2572d/cramjam-2.11.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "370547b5e0bf7c41a3b1cdd3b7c2147f880c93226a6bef1f5d85183040cbdece",
                "md5": "a63e17d17e6b809239beb5812499fb8a",
                "sha256": "ee36348a204f0a68b03400f4736224e9f61d1c6a1582d7f875c1ca56f0254268"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a63e17d17e6b809239beb5812499fb8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1708924,
            "upload_time": "2025-07-27T21:23:16",
            "upload_time_iso_8601": "2025-07-27T21:23:16.332950Z",
            "url": "https://files.pythonhosted.org/packages/37/05/47b5e0bf7c41a3b1cdd3b7c2147f880c93226a6bef1f5d85183040cbdece/cramjam-2.11.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de07a1051cdbbe6d723df16d756b97f09da7c1adb69e29695c58f0392bc12515",
                "md5": "79cf1ef597c2ca6defccfefe5c3cc775",
                "sha256": "7ba5e38c9fbd06f086f4a5a64a1a5b7b417cd3f8fc07a20e5c03651f72f36100"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "79cf1ef597c2ca6defccfefe5c3cc775",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 3554141,
            "upload_time": "2025-07-27T21:23:17",
            "upload_time_iso_8601": "2025-07-27T21:23:17.938296Z",
            "url": "https://files.pythonhosted.org/packages/de/07/a1051cdbbe6d723df16d756b97f09da7c1adb69e29695c58f0392bc12515/cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "746658487d2e16ef3d04f51a7c7f0e69823e806744b4c21101e89da4873074bc",
                "md5": "794ac246f8dfdea165aa9b7b40a2a2b6",
                "sha256": "b8adeee57b41fe08e4520698a4b0bd3cc76dbd81f99424b806d70a5256a391d3"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "794ac246f8dfdea165aa9b7b40a2a2b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1860353,
            "upload_time": "2025-07-27T21:23:19",
            "upload_time_iso_8601": "2025-07-27T21:23:19.593348Z",
            "url": "https://files.pythonhosted.org/packages/74/66/58487d2e16ef3d04f51a7c7f0e69823e806744b4c21101e89da4873074bc/cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67b467f6254d166ffbcc9d5fa1b56876eaa920c32ebc8e9d3d525b27296b693b",
                "md5": "529f73484d1378d9f9bbffedaae69c66",
                "sha256": "b96a74fa03a636c8a7d76f700d50e9a8bc17a516d6a72d28711225d641e30968"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "529f73484d1378d9f9bbffedaae69c66",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1693832,
            "upload_time": "2025-07-27T21:23:21",
            "upload_time_iso_8601": "2025-07-27T21:23:21.185411Z",
            "url": "https://files.pythonhosted.org/packages/67/b4/67f6254d166ffbcc9d5fa1b56876eaa920c32ebc8e9d3d525b27296b693b/cramjam-2.11.0-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55a34e0b31c0d454ae70c04684ed7c13d3c67b4c31790c278c1e788cb804fa4a",
                "md5": "1699cef81dd59183bcb9593d0f4b4eca",
                "sha256": "c3811a56fa32e00b377ef79121c0193311fd7501f0fb378f254c7f083cc1fbe0"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "1699cef81dd59183bcb9593d0f4b4eca",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2027080,
            "upload_time": "2025-07-27T21:23:23",
            "upload_time_iso_8601": "2025-07-27T21:23:23.303464Z",
            "url": "https://files.pythonhosted.org/packages/55/a3/4e0b31c0d454ae70c04684ed7c13d3c67b4c31790c278c1e788cb804fa4a/cramjam-2.11.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9c75e8eed361d1d3b8be14f38a54852c5370cc0ceb2c2d543b8ba590c34f080",
                "md5": "1729ce4a7e0e05b8a0dad9db5b190ea5",
                "sha256": "c5d927e87461f8a0d448e4ab5eb2bca9f31ca5d8ea86d70c6f470bb5bc666d7e"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1729ce4a7e0e05b8a0dad9db5b190ea5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1761543,
            "upload_time": "2025-07-27T21:23:24",
            "upload_time_iso_8601": "2025-07-27T21:23:24.991986Z",
            "url": "https://files.pythonhosted.org/packages/d9/c7/5e8eed361d1d3b8be14f38a54852c5370cc0ceb2c2d543b8ba590c34f080/cramjam-2.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "090c06b7f8b0ce9fde89470505116a01fc0b6cb92d406c4fb1e46f168b5d3fa5",
                "md5": "48839a21be8d495e651fbb24f422af0d",
                "sha256": "f1f5c450121430fd89cb5767e0a9728ecc65997768fd4027d069cb0368af62f9"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "48839a21be8d495e651fbb24f422af0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1854636,
            "upload_time": "2025-07-27T21:23:26",
            "upload_time_iso_8601": "2025-07-27T21:23:26.987704Z",
            "url": "https://files.pythonhosted.org/packages/09/0c/06b7f8b0ce9fde89470505116a01fc0b6cb92d406c4fb1e46f168b5d3fa5/cramjam-2.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6fc66ebc02c9d5acdf4e5f2b1ec6e1252bd5feee25762246798ae823b3347457",
                "md5": "14e94344adb88ac053eae97b1cb3a969",
                "sha256": "724aa7490be50235d97f07e2ca10067927c5d7f336b786ddbc868470e822aa25"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "14e94344adb88ac053eae97b1cb3a969",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2032715,
            "upload_time": "2025-07-27T21:23:28",
            "upload_time_iso_8601": "2025-07-27T21:23:28.603602Z",
            "url": "https://files.pythonhosted.org/packages/6f/c6/6ebc02c9d5acdf4e5f2b1ec6e1252bd5feee25762246798ae823b3347457/cramjam-2.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a277a122971c23f5ca4b53e4322c647ac7554626c95978f92d19419315dddd05",
                "md5": "ce838aed451caf275cb94b9b1ae2bf76",
                "sha256": "54c4637122e7cfd7aac5c1d3d4c02364f446d6923ea34cf9d0e8816d6e7a4936"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ce838aed451caf275cb94b9b1ae2bf76",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2069039,
            "upload_time": "2025-07-27T21:23:30",
            "upload_time_iso_8601": "2025-07-27T21:23:30.319304Z",
            "url": "https://files.pythonhosted.org/packages/a2/77/a122971c23f5ca4b53e4322c647ac7554626c95978f92d19419315dddd05/cramjam-2.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "190ff6121b90b86b9093c066889274d26a1de3f29969d45c2ed1ecbe2033cb78",
                "md5": "0a15e4bc085a1371b21b4e5c8a462e4f",
                "sha256": "17eb39b1696179fb471eea2de958fa21f40a2cd8bf6b40d428312d5541e19dc4"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a15e4bc085a1371b21b4e5c8a462e4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1979566,
            "upload_time": "2025-07-27T21:23:32",
            "upload_time_iso_8601": "2025-07-27T21:23:32.002673Z",
            "url": "https://files.pythonhosted.org/packages/19/0f/f6121b90b86b9093c066889274d26a1de3f29969d45c2ed1ecbe2033cb78/cramjam-2.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0a3f95bc57fd7f4166ce6da816cfa917fb7df4bb80e669eb459d85586498414",
                "md5": "5e9a04af5ef77b281459c34ea2066b5d",
                "sha256": "36aa5a798aa34e11813a80425a30d8e052d8de4a28f27bfc0368cfc454d1b403"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5e9a04af5ef77b281459c34ea2066b5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2030905,
            "upload_time": "2025-07-27T21:23:33",
            "upload_time_iso_8601": "2025-07-27T21:23:33.696691Z",
            "url": "https://files.pythonhosted.org/packages/e0/a3/f95bc57fd7f4166ce6da816cfa917fb7df4bb80e669eb459d85586498414/cramjam-2.11.0-cp314-cp314-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc52e429de4e8bc86ee65e090dae0f87f45abd271742c63fb2d03c522ffde28a",
                "md5": "88f8bc4940b3892ea6c08e66b77c435b",
                "sha256": "449fca52774dc0199545fbf11f5128933e5a6833946707885cf7be8018017839"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "88f8bc4940b3892ea6c08e66b77c435b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2155592,
            "upload_time": "2025-07-27T21:23:35",
            "upload_time_iso_8601": "2025-07-27T21:23:35.375220Z",
            "url": "https://files.pythonhosted.org/packages/fc/52/e429de4e8bc86ee65e090dae0f87f45abd271742c63fb2d03c522ffde28a/cramjam-2.11.0-cp314-cp314-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c6c65a7a0207787ad39ad804af4da7f06a60149de19481d73d270b540657234",
                "md5": "b2fcb03ddb9a381482841cd86b31478d",
                "sha256": "d87d37b3d476f4f7623c56a232045d25bd9b988314702ea01bd9b4a94948a778"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b2fcb03ddb9a381482841cd86b31478d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2170839,
            "upload_time": "2025-07-27T21:23:37",
            "upload_time_iso_8601": "2025-07-27T21:23:37.197827Z",
            "url": "https://files.pythonhosted.org/packages/6c/6c/65a7a0207787ad39ad804af4da7f06a60149de19481d73d270b540657234/cramjam-2.11.0-cp314-cp314-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2c55c5db505ba692bc844246b066e23901d5905a32baf2f33719c620e65887f",
                "md5": "913a7e6cf91b6e5bb0915c9b08e14132",
                "sha256": "26cb45c47d71982d76282e303931c6dd4baee1753e5d48f9a89b3a63e690b3a3"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "913a7e6cf91b6e5bb0915c9b08e14132",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2157236,
            "upload_time": "2025-07-27T21:23:38",
            "upload_time_iso_8601": "2025-07-27T21:23:38.854945Z",
            "url": "https://files.pythonhosted.org/packages/b2/c5/5c5db505ba692bc844246b066e23901d5905a32baf2f33719c620e65887f/cramjam-2.11.0-cp314-cp314-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40816cdb3ed222d13ae86bda77aafe8d50566e81a1169d49ed195b6263610704",
                "md5": "99ded8970d7e4d8d4840b98dabf9be82",
                "sha256": "966ac9358b23d21ecd895c418c048e806fd254e46d09b1ff0cdad2eba195ea3e"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "99ded8970d7e4d8d4840b98dabf9be82",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 3559671,
            "upload_time": "2025-07-27T21:23:44",
            "upload_time_iso_8601": "2025-07-27T21:23:44.504705Z",
            "url": "https://files.pythonhosted.org/packages/40/81/6cdb3ed222d13ae86bda77aafe8d50566e81a1169d49ed195b6263610704/cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb4352b7e54fe5ba1ef0270d9fdc43dabd7971f70ea2d7179be918c997820247",
                "md5": "c5fd889908cb42c98227f31b4b8a2d03",
                "sha256": "387f09d647a0d38dcb4539f8a14281f8eb6bb1d3e023471eb18a5974b2121c86"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5fd889908cb42c98227f31b4b8a2d03",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1867876,
            "upload_time": "2025-07-27T21:23:46",
            "upload_time_iso_8601": "2025-07-27T21:23:46.987668Z",
            "url": "https://files.pythonhosted.org/packages/cb/43/52b7e54fe5ba1ef0270d9fdc43dabd7971f70ea2d7179be918c997820247/cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d2830d5b8d10acd30db3193bc562a313bff722888eaa45cfe32aa09389f2b24",
                "md5": "a459bcaf12960b1c2b3930260a65bc60",
                "sha256": "665b0d8fbbb1a7f300265b43926457ec78385200133e41fef19d85790fc1e800"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a459bcaf12960b1c2b3930260a65bc60",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1695562,
            "upload_time": "2025-07-27T21:23:48",
            "upload_time_iso_8601": "2025-07-27T21:23:48.644237Z",
            "url": "https://files.pythonhosted.org/packages/9d/28/30d5b8d10acd30db3193bc562a313bff722888eaa45cfe32aa09389f2b24/cramjam-2.11.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d986ec806f986e01b896a650655024ea52a13e25c3ac8a3a382f493089483cdc",
                "md5": "d783dbca279c89b456d79f9ea5f8df55",
                "sha256": "ca905387c7a371531b9622d93471be4d745ef715f2890c3702479cd4fc85aa51"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "d783dbca279c89b456d79f9ea5f8df55",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2025056,
            "upload_time": "2025-07-27T21:23:50",
            "upload_time_iso_8601": "2025-07-27T21:23:50.404027Z",
            "url": "https://files.pythonhosted.org/packages/d9/86/ec806f986e01b896a650655024ea52a13e25c3ac8a3a382f493089483cdc/cramjam-2.11.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0943c2c17586b90848d29d63181f7d14b8bd3a7d00975ad46e3edf2af8af7e1f",
                "md5": "5907124961a4fb2d0d4cc5aa25138f0b",
                "sha256": "3c1aa56aef2c8af55a21ed39040a94a12b53fb23beea290f94d19a76027e2ffb"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5907124961a4fb2d0d4cc5aa25138f0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1764084,
            "upload_time": "2025-07-27T21:23:52",
            "upload_time_iso_8601": "2025-07-27T21:23:52.265756Z",
            "url": "https://files.pythonhosted.org/packages/09/43/c2c17586b90848d29d63181f7d14b8bd3a7d00975ad46e3edf2af8af7e1f/cramjam-2.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ba968bc334fadb434a61df10071dc8606702aa4f5b6cdb2df62474fc21d2845",
                "md5": "b724de9a392c772a09b105afd880e019",
                "sha256": "e5db59c1cdfaa2ab85cc988e602d6919495f735ca8a5fd7603608eb1e23c26d5"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b724de9a392c772a09b105afd880e019",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1854859,
            "upload_time": "2025-07-27T21:23:54",
            "upload_time_iso_8601": "2025-07-27T21:23:54.085158Z",
            "url": "https://files.pythonhosted.org/packages/2b/a9/68bc334fadb434a61df10071dc8606702aa4f5b6cdb2df62474fc21d2845/cramjam-2.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b4eb48e67835b5811ec5e9cb2e2bcba9c3fd76dab3e732569fe801b542c6ca9",
                "md5": "0cff5d8a61fb5b3c65382f13b97b4a46",
                "sha256": "b1f893014f00fe5e89a660a032e813bf9f6d91de74cd1490cdb13b2b59d0c9a3"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0cff5d8a61fb5b3c65382f13b97b4a46",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2035970,
            "upload_time": "2025-07-27T21:23:55",
            "upload_time_iso_8601": "2025-07-27T21:23:55.758630Z",
            "url": "https://files.pythonhosted.org/packages/5b/4e/b48e67835b5811ec5e9cb2e2bcba9c3fd76dab3e732569fe801b542c6ca9/cramjam-2.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c470d2ac33d572b4d90f7f0f2c8a1d60fb48f06b128fdc2c05f9b49891bb0279",
                "md5": "1b1b2b87ee663dfac7b4d07f9445806d",
                "sha256": "c26a1eb487947010f5de24943bd7c422dad955b2b0f8650762539778c380ca89"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1b1b2b87ee663dfac7b4d07f9445806d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2069320,
            "upload_time": "2025-07-27T21:23:57",
            "upload_time_iso_8601": "2025-07-27T21:23:57.494675Z",
            "url": "https://files.pythonhosted.org/packages/c4/70/d2ac33d572b4d90f7f0f2c8a1d60fb48f06b128fdc2c05f9b49891bb0279/cramjam-2.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d4c85cec77af4a74308ba5fca8e296c4e2f80ec465c537afc7ab1e0ca2f9a00",
                "md5": "6634ae627851d3bd061f7ac63ad18c11",
                "sha256": "7d5c8bfb438d94e7b892d1426da5fc4b4a5370cc360df9b8d9d77c33b896c37e"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6634ae627851d3bd061f7ac63ad18c11",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1982668,
            "upload_time": "2025-07-27T21:23:59",
            "upload_time_iso_8601": "2025-07-27T21:23:59.126911Z",
            "url": "https://files.pythonhosted.org/packages/1d/4c/85cec77af4a74308ba5fca8e296c4e2f80ec465c537afc7ab1e0ca2f9a00/cramjam-2.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5545938546d1629e008cc3138df7c424ef892719b1796ff408a2ab8550032e5e",
                "md5": "691810dff4464f1365ed4828cff100eb",
                "sha256": "cb1fb8c9337ab0da25a01c05d69a0463209c347f16512ac43be5986f3d1ebaf4"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "691810dff4464f1365ed4828cff100eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2034028,
            "upload_time": "2025-07-27T21:24:00",
            "upload_time_iso_8601": "2025-07-27T21:24:00.865762Z",
            "url": "https://files.pythonhosted.org/packages/55/45/938546d1629e008cc3138df7c424ef892719b1796ff408a2ab8550032e5e/cramjam-2.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0176b5a53e20505555f1640e66dcf70394bcf51a1a3a072aa18ea35135a0f9ed",
                "md5": "09f2c5c01b80a291ced7608ee630e80d",
                "sha256": "1f6449f6de52dde3e2f1038284910c8765a397a25e2d05083870f3f5e7fc682c"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "09f2c5c01b80a291ced7608ee630e80d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2155513,
            "upload_time": "2025-07-27T21:24:02",
            "upload_time_iso_8601": "2025-07-27T21:24:02.920475Z",
            "url": "https://files.pythonhosted.org/packages/01/76/b5a53e20505555f1640e66dcf70394bcf51a1a3a072aa18ea35135a0f9ed/cramjam-2.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84128d3f6ceefae81bbe45a347fdfa2219d9f3ac75ebc304f92cd5fcb4fbddc5",
                "md5": "7c26ca3e1d7e534620814edb81a8d08b",
                "sha256": "382dec4f996be48ed9c6958d4e30c2b89435d7c2c4dbf32480b3b8886293dd65"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "7c26ca3e1d7e534620814edb81a8d08b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2170035,
            "upload_time": "2025-07-27T21:24:04",
            "upload_time_iso_8601": "2025-07-27T21:24:04.558455Z",
            "url": "https://files.pythonhosted.org/packages/84/12/8d3f6ceefae81bbe45a347fdfa2219d9f3ac75ebc304f92cd5fcb4fbddc5/cramjam-2.11.0-cp314-cp314t-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b853be6f0a1398f976070672be64f61895f8839857618a2d8cc0d3ab529d3dc",
                "md5": "22b67476a1511b4fea3328371ef8035f",
                "sha256": "d388bd5723732c3afe1dd1d181e4213cc4e1be210b080572e7d5749f6e955656"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22b67476a1511b4fea3328371ef8035f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 2160229,
            "upload_time": "2025-07-27T21:24:06",
            "upload_time_iso_8601": "2025-07-27T21:24:06.729030Z",
            "url": "https://files.pythonhosted.org/packages/4b/85/3be6f0a1398f976070672be64f61895f8839857618a2d8cc0d3ab529d3dc/cramjam-2.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "575e66cfc3635511b20014bbb3f2ecf0095efb3049e9e96a4a9e478e4f3d7b78",
                "md5": "adbab37cc991b967bea640f07b8ecb3a",
                "sha256": "0a70ff17f8e1d13f322df616505550f0f4c39eda62290acb56f069d4857037c8"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "adbab37cc991b967bea640f07b8ecb3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1610267,
            "upload_time": "2025-07-27T21:24:08",
            "upload_time_iso_8601": "2025-07-27T21:24:08.428751Z",
            "url": "https://files.pythonhosted.org/packages/57/5e/66cfc3635511b20014bbb3f2ecf0095efb3049e9e96a4a9e478e4f3d7b78/cramjam-2.11.0-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cec6c71e82e041c95ffe6a92ac707785500aa2a515a4339c2c7dd67e3c449249",
                "md5": "c8c9fc25530b7918fa601f6a0e575c67",
                "sha256": "028400d699442d40dbda02f74158c73d05cb76587a12490d0bfedd958fd49188"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c8c9fc25530b7918fa601f6a0e575c67",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1713108,
            "upload_time": "2025-07-27T21:24:10",
            "upload_time_iso_8601": "2025-07-27T21:24:10.147001Z",
            "url": "https://files.pythonhosted.org/packages/ce/c6/c71e82e041c95ffe6a92ac707785500aa2a515a4339c2c7dd67e3c449249/cramjam-2.11.0-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b02288e6693e60afe98901e5bbe91b8dea193e3aa7f42e2770f9c3339f5c1065",
                "md5": "d5a7a048d10e223233b5671bb7948903",
                "sha256": "4efe919d443c2fd112fe25fe636a52f9628250c9a50d9bddb0488d8a6c09acc6"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "d5a7a048d10e223233b5671bb7948903",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1604136,
            "upload_time": "2025-07-27T21:23:40",
            "upload_time_iso_8601": "2025-07-27T21:23:40.560891Z",
            "url": "https://files.pythonhosted.org/packages/b0/22/88e6693e60afe98901e5bbe91b8dea193e3aa7f42e2770f9c3339f5c1065/cramjam-2.11.0-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ccf801618801cd59ccedcc99f0f96d20be67d8cfc3497da9ccaaad6b481781dd",
                "md5": "f913634b2485e2508a97e466aa739880",
                "sha256": "ccec3524ea41b9abd5600e3e27001fd774199dbb4f7b9cb248fcee37d4bda84c"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f913634b2485e2508a97e466aa739880",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.8",
            "size": 1710272,
            "upload_time": "2025-07-27T21:23:42",
            "upload_time_iso_8601": "2025-07-27T21:23:42.236756Z",
            "url": "https://files.pythonhosted.org/packages/cc/f8/01618801cd59ccedcc99f0f96d20be67d8cfc3497da9ccaaad6b481781dd/cramjam-2.11.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c333d7a7fbfb313614d59ae2e512b9dacfc22efb07c20e4af7deb73d3409f7b",
                "md5": "fe14a8a199acd58500f6bfec6caf307a",
                "sha256": "2581e82dca742b55d8b1d7f33892394c06b057a74f2853ffcb0802dcddcbf694"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "fe14a8a199acd58500f6bfec6caf307a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3559843,
            "upload_time": "2025-07-27T21:24:11",
            "upload_time_iso_8601": "2025-07-27T21:24:11.928842Z",
            "url": "https://files.pythonhosted.org/packages/8c/33/3d7a7fbfb313614d59ae2e512b9dacfc22efb07c20e4af7deb73d3409f7b/cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4b0ccf09697df7fcc750c4913dc4bf3fb91e5b778dda65fb9fa55dde61c03dc",
                "md5": "cc7c6886acef1dee7147b7cfd0cac95c",
                "sha256": "a9994a42cd12f07ece04eff94dbf6e127b3986f7af9b26db1eb4545c477a6604"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc7c6886acef1dee7147b7cfd0cac95c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1862081,
            "upload_time": "2025-07-27T21:24:13",
            "upload_time_iso_8601": "2025-07-27T21:24:13.800862Z",
            "url": "https://files.pythonhosted.org/packages/d4/b0/ccf09697df7fcc750c4913dc4bf3fb91e5b778dda65fb9fa55dde61c03dc/cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4155d36255f1a9004a3352469143d2b8a5b769e0eb4e484a8192da41ad67e893",
                "md5": "79353d8b6321c203af7cd70af58b243a",
                "sha256": "a4963dac24213690183110d6b41125fdc4af871a5a213589d6c6606d49e1b949"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "79353d8b6321c203af7cd70af58b243a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1699970,
            "upload_time": "2025-07-27T21:24:15",
            "upload_time_iso_8601": "2025-07-27T21:24:15.547534Z",
            "url": "https://files.pythonhosted.org/packages/41/55/d36255f1a9004a3352469143d2b8a5b769e0eb4e484a8192da41ad67e893/cramjam-2.11.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3552722a2efbe104903648185411f9c634e5678035476bc556001d6ef811e191",
                "md5": "f6d8f3516aadc813cf336e11baa82eb5",
                "sha256": "c9af16f0b07d851b968c54e52d19430d820bb47c26d10a09cfb5c7127de26773"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "f6d8f3516aadc813cf336e11baa82eb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2025715,
            "upload_time": "2025-07-27T21:24:17",
            "upload_time_iso_8601": "2025-07-27T21:24:17.327064Z",
            "url": "https://files.pythonhosted.org/packages/35/52/722a2efbe104903648185411f9c634e5678035476bc556001d6ef811e191/cramjam-2.11.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a6075084f30277d5f2481d20a544654894a32528f98f4415c1bd467823ab5b2",
                "md5": "da0634aad2f13b8a50f28589d591231e",
                "sha256": "1e2400c09ba620e2ca91a903dbe907d75f6a1994d8337e9f3026778daa92b08d"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da0634aad2f13b8a50f28589d591231e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1766999,
            "upload_time": "2025-07-27T21:24:19",
            "upload_time_iso_8601": "2025-07-27T21:24:19.163099Z",
            "url": "https://files.pythonhosted.org/packages/0a/60/75084f30277d5f2481d20a544654894a32528f98f4415c1bd467823ab5b2/cramjam-2.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "895c2663bdfcea6ab06fcac97883b5b574a12236c5d9f70691cc05dd49cb10fb",
                "md5": "9d8a6c6b5d170ca4943d602bc508d1e1",
                "sha256": "b820004db8b22715cee2ef154d4b47b3d76c4677ff217c587dd46f694a3052f9"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9d8a6c6b5d170ca4943d602bc508d1e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1854352,
            "upload_time": "2025-07-27T21:24:20",
            "upload_time_iso_8601": "2025-07-27T21:24:20.953713Z",
            "url": "https://files.pythonhosted.org/packages/89/5c/2663bdfcea6ab06fcac97883b5b574a12236c5d9f70691cc05dd49cb10fb/cramjam-2.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4df1db5b57ccf77e923687b2061766e69c2cbdaf41641204207dbf55ef7ebe9",
                "md5": "4f8a2082153c8a41d2eea338b7d70858",
                "sha256": "261e9200942189d8201a005ffa1e29339479364b5b0013ab0758b03229d9ac67"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4f8a2082153c8a41d2eea338b7d70858",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2036219,
            "upload_time": "2025-07-27T21:24:23",
            "upload_time_iso_8601": "2025-07-27T21:24:23.029308Z",
            "url": "https://files.pythonhosted.org/packages/b4/df/1db5b57ccf77e923687b2061766e69c2cbdaf41641204207dbf55ef7ebe9/cramjam-2.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f728fa3b017668a3264068c893e57a6b923dfd8fa851a1c821c4cc1c95cd47a6",
                "md5": "35174cad6d79382de7e838195b143e57",
                "sha256": "a24c61f1fad56ca68aee53bf67b6a84cd762a2c71ee4b71064378547c2411ae6"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "35174cad6d79382de7e838195b143e57",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2077245,
            "upload_time": "2025-07-27T21:24:25",
            "upload_time_iso_8601": "2025-07-27T21:24:25.127348Z",
            "url": "https://files.pythonhosted.org/packages/f7/28/fa3b017668a3264068c893e57a6b923dfd8fa851a1c821c4cc1c95cd47a6/cramjam-2.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d11d6f6018ee81acec6c4ef6cda6bd0770959992caf2f1c41e7944a135a53eca",
                "md5": "202e327240fdfe9e8be60de8ba2a03ed",
                "sha256": "ab86d22f69a21961f35d1a1b02278b5bb9a95c5f5b4722c6904bca343c8d219f"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "202e327240fdfe9e8be60de8ba2a03ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1982235,
            "upload_time": "2025-07-27T21:24:26",
            "upload_time_iso_8601": "2025-07-27T21:24:26.851414Z",
            "url": "https://files.pythonhosted.org/packages/d1/1d/6f6018ee81acec6c4ef6cda6bd0770959992caf2f1c41e7944a135a53eca/cramjam-2.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31b4c38f6077d8ec7c9208d23d4f7f19a618f5b4940170c9deba5d3bdc722eb6",
                "md5": "8f6434f6314f588e9966030c69b767d0",
                "sha256": "a88bc9b191422cd5b22a1521b28607008590628b6b2a8a7db5c54ec04dc82fa1"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8f6434f6314f588e9966030c69b767d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2034629,
            "upload_time": "2025-07-27T21:24:28",
            "upload_time_iso_8601": "2025-07-27T21:24:28.694046Z",
            "url": "https://files.pythonhosted.org/packages/31/b4/c38f6077d8ec7c9208d23d4f7f19a618f5b4940170c9deba5d3bdc722eb6/cramjam-2.11.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "663b3f46a349b1a7a67e2bda10e99403e9163c87c95e34399cc69f4f86a2461a",
                "md5": "140de6735eb0183004da527cba1a2be0",
                "sha256": "7855bc4df5ed5f7fb1c98ea3fd98292e9acd3c097b1b21d596a69e1e60455400"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "140de6735eb0183004da527cba1a2be0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2155552,
            "upload_time": "2025-07-27T21:24:30",
            "upload_time_iso_8601": "2025-07-27T21:24:30.572558Z",
            "url": "https://files.pythonhosted.org/packages/66/3b/3f46a349b1a7a67e2bda10e99403e9163c87c95e34399cc69f4f86a2461a/cramjam-2.11.0-cp39-cp39-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed86b431a51162d4c8f33b28bdcca047382e1038757d43625e65c8d29ed6c31f",
                "md5": "f6ed9de07ed16fd7de7ce927fbb26d0f",
                "sha256": "19eb43e21db9dc42613599703c1a8e40b0170514a313f11f4c8be380425a1019"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f6ed9de07ed16fd7de7ce927fbb26d0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2169651,
            "upload_time": "2025-07-27T21:24:32",
            "upload_time_iso_8601": "2025-07-27T21:24:32.331618Z",
            "url": "https://files.pythonhosted.org/packages/ed/86/b431a51162d4c8f33b28bdcca047382e1038757d43625e65c8d29ed6c31f/cramjam-2.11.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ed59aa69784da58b6bd3f5abcaad2eb76ad2a89efde7929821bad17355fd8da",
                "md5": "9101bbdb4c42b02260170f9e972dcccc",
                "sha256": "cec977d673ad596bae6bdfc0091ee386cef05b515b23f2ce52f9fadd0156186a"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9101bbdb4c42b02260170f9e972dcccc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2159740,
            "upload_time": "2025-07-27T21:24:34",
            "upload_time_iso_8601": "2025-07-27T21:24:34.108892Z",
            "url": "https://files.pythonhosted.org/packages/6e/d5/9aa69784da58b6bd3f5abcaad2eb76ad2a89efde7929821bad17355fd8da/cramjam-2.11.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ce175706936eb81605a939e15b8b7a1241b35e805ce76a64838b4586c440f61",
                "md5": "b1435a000f69fd9a24204353a256ddd8",
                "sha256": "dcc3b15b97f3054964b47e2a5fcfb4f5ff569e9af0a7af19f1d4c5f4231bbf3b"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "b1435a000f69fd9a24204353a256ddd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1605449,
            "upload_time": "2025-07-27T21:24:36",
            "upload_time_iso_8601": "2025-07-27T21:24:36.538138Z",
            "url": "https://files.pythonhosted.org/packages/9c/e1/75706936eb81605a939e15b8b7a1241b35e805ce76a64838b4586c440f61/cramjam-2.11.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "376bae7626994c7285bfc0ffa0d9929c3c16f2d0aea5b9e151dad82fd0616762",
                "md5": "96c29781a202ab5034a0e058321a2c97",
                "sha256": "5eb0603d8f8019451fc00e1daf4022dfc9df59c16d2e68f925c77ac94555493b"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "96c29781a202ab5034a0e058321a2c97",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1710860,
            "upload_time": "2025-07-27T21:24:38",
            "upload_time_iso_8601": "2025-07-27T21:24:38.243833Z",
            "url": "https://files.pythonhosted.org/packages/37/6b/ae7626994c7285bfc0ffa0d9929c3c16f2d0aea5b9e151dad82fd0616762/cramjam-2.11.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf8f82e35ec3c5387f1864f46b3c24bce89a07af8bb3ef242ae47281db2c1848",
                "md5": "fe2d9ad7a8892abce88a23de779721ce",
                "sha256": "37bed927abc4a7ae2d2669baa3675e21904d8a038ed8e4313326ea7b3be62b2b"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "fe2d9ad7a8892abce88a23de779721ce",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3573104,
            "upload_time": "2025-07-27T21:24:40",
            "upload_time_iso_8601": "2025-07-27T21:24:40.069841Z",
            "url": "https://files.pythonhosted.org/packages/bf/8f/82e35ec3c5387f1864f46b3c24bce89a07af8bb3ef242ae47281db2c1848/cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f04e0c821918080a32ba1e52c040e12dd02dada67728f07305c5f778b808a807",
                "md5": "0958778e435141beab5b52542c5c9514",
                "sha256": "50e4a58635fa8c6897d84847d6e065eb69f92811670fc5e9f2d9e3b6279a02b6"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0958778e435141beab5b52542c5c9514",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1873441,
            "upload_time": "2025-07-27T21:24:42",
            "upload_time_iso_8601": "2025-07-27T21:24:42.333579Z",
            "url": "https://files.pythonhosted.org/packages/f0/4e/0c821918080a32ba1e52c040e12dd02dada67728f07305c5f778b808a807/cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8fd848d077bf6abc4ce84273d8e3f3a70d61a2240519a339462f699d8acf829",
                "md5": "d857ec10217ba0b4f0b025abcd7187ce",
                "sha256": "3d1ba626dd5f81f7f09bbf59f70b534e2b75e0d6582b056b7bd31b397f1c13e9"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d857ec10217ba0b4f0b025abcd7187ce",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1702589,
            "upload_time": "2025-07-27T21:24:44",
            "upload_time_iso_8601": "2025-07-27T21:24:44.305196Z",
            "url": "https://files.pythonhosted.org/packages/a8/fd/848d077bf6abc4ce84273d8e3f3a70d61a2240519a339462f699d8acf829/cramjam-2.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d1c899818999bbdb59c601756b413e87d37fd65875d1315346c10e367bb3505",
                "md5": "97f945c9fe4dc16f13227ff4192a9f45",
                "sha256": "c71e140d5eb3145d61d59d0be0bf72f07cc4cf4b32cb136b09f712a3b1040f5f"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "97f945c9fe4dc16f13227ff4192a9f45",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1773646,
            "upload_time": "2025-07-27T21:24:46",
            "upload_time_iso_8601": "2025-07-27T21:24:46.495895Z",
            "url": "https://files.pythonhosted.org/packages/9d/1c/899818999bbdb59c601756b413e87d37fd65875d1315346c10e367bb3505/cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f26c2813c5422c43b3dcd8b6645bc359f08870737c44325ee4accc18f24eee0",
                "md5": "606a56edad06c9b63fac31bd431a2d74",
                "sha256": "7a6ed7926a5cca28edebad7d0fedd2ad492710ae3524d25fc59a2b20546d9ce1"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "606a56edad06c9b63fac31bd431a2d74",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1994179,
            "upload_time": "2025-07-27T21:24:49",
            "upload_time_iso_8601": "2025-07-27T21:24:49.131963Z",
            "url": "https://files.pythonhosted.org/packages/5f/26/c2813c5422c43b3dcd8b6645bc359f08870737c44325ee4accc18f24eee0/cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e4faf984f8d7f963f0301812cdd620ddcfd8276461ed7a786c0f89e82b14739",
                "md5": "d25c25fd60eb54b9ccce78c7977ca63a",
                "sha256": "5eb4ed3cea945b164b0513fd491884993acac2153a27b93a84019c522e8eda82"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d25c25fd60eb54b9ccce78c7977ca63a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1714790,
            "upload_time": "2025-07-27T21:24:51",
            "upload_time_iso_8601": "2025-07-27T21:24:51.045022Z",
            "url": "https://files.pythonhosted.org/packages/2e/4f/af984f8d7f963f0301812cdd620ddcfd8276461ed7a786c0f89e82b14739/cramjam-2.11.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81dab3301962ccd6fce9fefa1ecd8ea479edaeaa38fadb1f34d5391d2587216a",
                "md5": "d781dd016cc75027cc38892b7cd597d9",
                "sha256": "52d5db3369f95b27b9f3c14d067acb0b183333613363ed34268c9e04560f997f"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "d781dd016cc75027cc38892b7cd597d9",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 3573546,
            "upload_time": "2025-07-27T21:24:52",
            "upload_time_iso_8601": "2025-07-27T21:24:52.944730Z",
            "url": "https://files.pythonhosted.org/packages/81/da/b3301962ccd6fce9fefa1ecd8ea479edaeaa38fadb1f34d5391d2587216a/cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6c2410ddb8ad4b9dfb129284666293cb6559479645da560f7077dc19d6bee9e",
                "md5": "6b65ba8f60dbde3c0d4a2791ef387ecb",
                "sha256": "4820516366d455b549a44d0e2210ee7c4575882dda677564ce79092588321d54"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b65ba8f60dbde3c0d4a2791ef387ecb",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 1873654,
            "upload_time": "2025-07-27T21:24:54",
            "upload_time_iso_8601": "2025-07-27T21:24:54.958431Z",
            "url": "https://files.pythonhosted.org/packages/b6/c2/410ddb8ad4b9dfb129284666293cb6559479645da560f7077dc19d6bee9e/cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d599f68a443c64f7ce7aff5bed369b0aa5b2fac668fa3dfd441837e316e97a1f",
                "md5": "dd3228f2334d17cd44dc6797fa6ebef8",
                "sha256": "d9e5db525dc0a950a825202f84ee68d89a072479e07da98795a3469df942d301"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd3228f2334d17cd44dc6797fa6ebef8",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 1702846,
            "upload_time": "2025-07-27T21:24:57",
            "upload_time_iso_8601": "2025-07-27T21:24:57.124450Z",
            "url": "https://files.pythonhosted.org/packages/d5/99/f68a443c64f7ce7aff5bed369b0aa5b2fac668fa3dfd441837e316e97a1f/cramjam-2.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c020ff358ab773def1ee3383587906c453d289953171e9c92db84fdd01bf172",
                "md5": "f5190b01be107c92617dbe98e1b71fc1",
                "sha256": "62ab4971199b2270005359cdc379bc5736071dc7c9a228581c5122d9ffaac50c"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f5190b01be107c92617dbe98e1b71fc1",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 1773683,
            "upload_time": "2025-07-27T21:24:59",
            "upload_time_iso_8601": "2025-07-27T21:24:59.280463Z",
            "url": "https://files.pythonhosted.org/packages/6c/02/0ff358ab773def1ee3383587906c453d289953171e9c92db84fdd01bf172/cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9313298e15f87c9cf2aabdbdd90b153d8644cf989cb42a45d68a1b71e1f7aaf",
                "md5": "ec59e98a2430f6a67647a86fb6068209",
                "sha256": "24758375cc5414d3035ca967ebb800e8f24604ececcba3c67d6f0218201ebf2d"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec59e98a2430f6a67647a86fb6068209",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 1994136,
            "upload_time": "2025-07-27T21:25:01",
            "upload_time_iso_8601": "2025-07-27T21:25:01.565143Z",
            "url": "https://files.pythonhosted.org/packages/e9/31/3298e15f87c9cf2aabdbdd90b153d8644cf989cb42a45d68a1b71e1f7aaf/cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c79020d1747255f1ee69a412e319da51ea594c18cca195e7a4d4c713f045eff5",
                "md5": "1ea26227ab41e49d60a37fd3086eec96",
                "sha256": "6c2eea545fef1065c7dd4eda991666fd9c783fbc1d226592ccca8d8891c02f23"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0-pp311-pypy311_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1ea26227ab41e49d60a37fd3086eec96",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.8",
            "size": 1714982,
            "upload_time": "2025-07-27T21:25:05",
            "upload_time_iso_8601": "2025-07-27T21:25:05.790595Z",
            "url": "https://files.pythonhosted.org/packages/c7/90/20d1747255f1ee69a412e319da51ea594c18cca195e7a4d4c713f045eff5/cramjam-2.11.0-pp311-pypy311_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "141234bf6e840a79130dfd0da7badfb6f7810b8fcfd60e75b0539372667b41b6",
                "md5": "c71f126d0290e43b4c7043c32f898fd9",
                "sha256": "5c82500ed91605c2d9781380b378397012e25127e89d64f460fea6aeac4389b4"
            },
            "downloads": -1,
            "filename": "cramjam-2.11.0.tar.gz",
            "has_sig": false,
            "md5_digest": "c71f126d0290e43b4c7043c32f898fd9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 99100,
            "upload_time": "2025-07-27T21:25:07",
            "upload_time_iso_8601": "2025-07-27T21:25:07.559449Z",
            "url": "https://files.pythonhosted.org/packages/14/12/34bf6e840a79130dfd0da7badfb6f7810b8fcfd60e75b0539372667b41b6/cramjam-2.11.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-27 21:25:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "milesgranger",
    "github_project": "pyrus-cramjam",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cramjam"
}
        
Elapsed time: 1.81995s