cramjam


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

[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)
[![CI](https://github.com/milesgranger/pyrus-cramjam/workflows/CI/badge.svg?branch=master)](https://github.com/milesgranger/pyrus-cramjam/actions?query=branch=master)
[![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)

[API Documentation](https://docs.rs/cramjam)

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

### CLI

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

---

Extremely thin Python bindings to de/compression algorithms in Rust.
Allows for using algorithms such as Snappy, without any system dependencies.

This is handy when being used in environments like AWS Lambda, where installing
packages like `python-snappy` becomes difficult because of system level dependencies.

---

##### Benchmarks

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

---

Available algorithms:

- [X] Snappy    (cramjam.snappy)
- [X] Brotli    (cramjam.brotli)
- [X] Bzip2     (cramjam.bzip2)
- [X] Lz4       (cramjam.lz4)
- [X] Gzip      (cramjam.gzip)
- [X] Deflate   (cramjam.deflate)
- [X] ZSTD      (cramjam.zstd)
- [X] XZ / LZMA (cramjam.xz)

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` 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'
```

**Special note!**  
If you know the length of the de/compress output, you
can provide `output_len=<<some int>>` to any `de/compress`
to get ~1.5-3x performance increase as this allows single 
buffer allocation; doesn't really apply if you're using `cramjam.Buffer`
or `cramjam.File` objects.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "cramjam",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "compression, decompression, snappy, zstd, bz2, gzip, lz4, brotli, deflate",
    "author": "Miles Granger <miles59923@gmail.com>",
    "author_email": "Miles Granger <miles59923@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/0d/f2/a7c127e61dcb7878f3ec5bf07fbf472805ea8108fd63335a51ab0bd1a432/cramjam-2.8.3.tar.gz",
    "platform": null,
    "description": "# cramjam-python\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/pyrus-cramjam/workflows/CI/badge.svg?branch=master)](https://github.com/milesgranger/pyrus-cramjam/actions?query=branch=master)\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\n[API Documentation](https://docs.rs/cramjam)\n\n### Install\n```commandline\npip install --upgrade cramjam  # Requires no Python or system dependencies!\n```\n\n### CLI\n\nA CLI interface is available as [`cramjam-cli`](./../cramjam-cli)\n\n---\n\nExtremely thin Python bindings to de/compression algorithms in Rust.\nAllows for using algorithms such as Snappy, without any system dependencies.\n\nThis is handy when being used in environments like AWS Lambda, where installing\npackages like `python-snappy` becomes difficult because of system level 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    (cramjam.snappy)\n- [X] Brotli    (cramjam.brotli)\n- [X] Bzip2     (cramjam.bzip2)\n- [X] Lz4       (cramjam.lz4)\n- [X] Gzip      (cramjam.gzip)\n- [X] Deflate   (cramjam.deflate)\n- [X] ZSTD      (cramjam.zstd)\n- [X] XZ / LZMA (cramjam.xz)\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` 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**Special note!**  \nIf you know the length of the de/compress output, you\ncan provide `output_len=<<some int>>` to any `de/compress`\nto get ~1.5-3x performance increase as this allows single \nbuffer allocation; doesn't really apply if you're using `cramjam.Buffer`\nor `cramjam.File` objects.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Thin Python bindings to de/compression algorithms in Rust",
    "version": "2.8.3",
    "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"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a8e5e7d858200d531efdabedc15a31f62e51703e39980033dc945d2ce1b7c59",
                "md5": "278a8fdf4a901cc66c0e24f70cf0b49f",
                "sha256": "8c8aa6d08c135ae7f0da01e6559a332c5d8fe4989a594db401040e385d04dffd"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "278a8fdf4a901cc66c0e24f70cf0b49f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3599814,
            "upload_time": "2024-03-21T12:20:58",
            "upload_time_iso_8601": "2024-03-21T12:20:58.455826Z",
            "url": "https://files.pythonhosted.org/packages/7a/8e/5e7d858200d531efdabedc15a31f62e51703e39980033dc945d2ce1b7c59/cramjam-2.8.3-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5db5149d5007f06b24754e928ef18998ff09a2c168f662b2f63bceb9fd8c9af3",
                "md5": "9499c9d19b8c2459a1119dd7837664b8",
                "sha256": "bd8c601fe8717e52517a2f2eef78217086acf449627bfdda97e3f53fd79c92af"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9499c9d19b8c2459a1119dd7837664b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1900663,
            "upload_time": "2024-03-21T12:21:01",
            "upload_time_iso_8601": "2024-03-21T12:21:01.472467Z",
            "url": "https://files.pythonhosted.org/packages/5d/b5/149d5007f06b24754e928ef18998ff09a2c168f662b2f63bceb9fd8c9af3/cramjam-2.8.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16634aa662ceb90bcdb5b5681363640c2dfce58ec5cb16f8a09c66627dd388bd",
                "md5": "89cd05a37bf5cd47afc9f68360a77411",
                "sha256": "dac42b2b4c3950e7eda9b5551e0e904784ed0c0428accc29171c230fb919ec72"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "89cd05a37bf5cd47afc9f68360a77411",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1951606,
            "upload_time": "2024-03-21T12:21:05",
            "upload_time_iso_8601": "2024-03-21T12:21:05.218434Z",
            "url": "https://files.pythonhosted.org/packages/16/63/4aa662ceb90bcdb5b5681363640c2dfce58ec5cb16f8a09c66627dd388bd/cramjam-2.8.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c67a7ee6cb3df10ca61f1266c1b28ea2f95b276685895329c5ec7e552f0766be",
                "md5": "5881e185a236393213434e95daed0bb2",
                "sha256": "ab8146faa5d8c52edf23724843c36469fc32ff2c4a174eba72f4da6de5016688"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5881e185a236393213434e95daed0bb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1722759,
            "upload_time": "2024-03-21T12:21:07",
            "upload_time_iso_8601": "2024-03-21T12:21:07.962802Z",
            "url": "https://files.pythonhosted.org/packages/c6/7a/7ee6cb3df10ca61f1266c1b28ea2f95b276685895329c5ec7e552f0766be/cramjam-2.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e59ae2050b6d06a12e27fdbb5afa3188a609e0984164a6b0d685c0584f04006c",
                "md5": "67cddb1aeb45468656d8dcd9e48d92d6",
                "sha256": "cb5f4d061e9abdc6663551446c332a58c101efb31fd1746229872600274c2b20"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "67cddb1aeb45468656d8dcd9e48d92d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1771715,
            "upload_time": "2024-03-21T12:21:10",
            "upload_time_iso_8601": "2024-03-21T12:21:10.880572Z",
            "url": "https://files.pythonhosted.org/packages/e5/9a/e2050b6d06a12e27fdbb5afa3188a609e0984164a6b0d685c0584f04006c/cramjam-2.8.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fdc1d9f44e8ab6a428eecf15aa743503ec38f03870ead4e6e588f56f1e2be34",
                "md5": "b62ef20737c76440ac67c69a1fcd1eaa",
                "sha256": "5d1ac94e00c64258330105473c641441db02b4dc3e9e9f2963d204e53ed93025"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b62ef20737c76440ac67c69a1fcd1eaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1962236,
            "upload_time": "2024-03-21T12:21:13",
            "upload_time_iso_8601": "2024-03-21T12:21:13.066993Z",
            "url": "https://files.pythonhosted.org/packages/8f/dc/1d9f44e8ab6a428eecf15aa743503ec38f03870ead4e6e588f56f1e2be34/cramjam-2.8.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05feef7148dcfa334673d5ad24c579e70a3f1cdedea4da0010ea3a4116b51de9",
                "md5": "9e8dbca6018f7bffc7759a04aec0ac34",
                "sha256": "8ed658f36a2bf667d5b8c7c6690103ad99f81cc62a1b64891b69298447329d4b"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9e8dbca6018f7bffc7759a04aec0ac34",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2656101,
            "upload_time": "2024-03-21T12:21:15",
            "upload_time_iso_8601": "2024-03-21T12:21:15.726516Z",
            "url": "https://files.pythonhosted.org/packages/05/fe/ef7148dcfa334673d5ad24c579e70a3f1cdedea4da0010ea3a4116b51de9/cramjam-2.8.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10018a7d8ea0cb7ca2e701e9bb7f1f7a04348024030b9fda0428b5e5637c7a51",
                "md5": "1719a529b5d6a9b000da584b3ada499e",
                "sha256": "3f6303c8cc583dfe5054cf84717674f75b18bca4ae8e576dc863958d5494dc4b"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1719a529b5d6a9b000da584b3ada499e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1970711,
            "upload_time": "2024-03-21T12:21:18",
            "upload_time_iso_8601": "2024-03-21T12:21:18.202467Z",
            "url": "https://files.pythonhosted.org/packages/10/01/8a7d8ea0cb7ca2e701e9bb7f1f7a04348024030b9fda0428b5e5637c7a51/cramjam-2.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb745bd00f3b33e68c95b869f22add0dbde4c80eb1300edd0cb95739d4faece0",
                "md5": "80632b58b171488e165cefda7e6ba8e1",
                "sha256": "04b31d427a8902e5c2eec4b8f29873de7a3ade202e3d68e7f2354b9f0aa00bc7"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "80632b58b171488e165cefda7e6ba8e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2017045,
            "upload_time": "2024-03-21T12:21:20",
            "upload_time_iso_8601": "2024-03-21T12:21:20.419115Z",
            "url": "https://files.pythonhosted.org/packages/eb/74/5bd00f3b33e68c95b869f22add0dbde4c80eb1300edd0cb95739d4faece0/cramjam-2.8.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a20af01573752c3cf157dfcd6a33621bcc3fe45040ab28c6d29e1eddf9eb59c",
                "md5": "6c3f0f1436d354e2a6da9989dc030fae",
                "sha256": "9728861bc0390681824961778b36f7f0b95039e8b90d46f1b67f51232f1ee159"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6c3f0f1436d354e2a6da9989dc030fae",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2124396,
            "upload_time": "2024-03-21T12:21:21",
            "upload_time_iso_8601": "2024-03-21T12:21:21.965245Z",
            "url": "https://files.pythonhosted.org/packages/2a/20/af01573752c3cf157dfcd6a33621bcc3fe45040ab28c6d29e1eddf9eb59c/cramjam-2.8.3-cp310-cp310-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "620ba4f76d2305fa7280c37f96b6e6bf1a036bacf7087decfadf1517ae978528",
                "md5": "1207d34217b9475955fd056a63b2bbf7",
                "sha256": "87e26e3e1d5fed1cac5b41be648d0daf0793f94cf4a7aebefce1f4f6656e2d21"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1207d34217b9475955fd056a63b2bbf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2099733,
            "upload_time": "2024-03-21T12:21:24",
            "upload_time_iso_8601": "2024-03-21T12:21:24.132776Z",
            "url": "https://files.pythonhosted.org/packages/62/0b/a4f76d2305fa7280c37f96b6e6bf1a036bacf7087decfadf1517ae978528/cramjam-2.8.3-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "809399dd8cdf9ad6d079e971d9a1c8ceec84816377798852e4915992ca978b6c",
                "md5": "84b94865d1ebab7a8412d8878c40f2ed",
                "sha256": "4c1d2d39c2193a77c5e5b327944f90e6ecf2caa1b55e7176cc83d80706ea15de"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "84b94865d1ebab7a8412d8878c40f2ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2150323,
            "upload_time": "2024-03-21T12:21:26",
            "upload_time_iso_8601": "2024-03-21T12:21:26.137292Z",
            "url": "https://files.pythonhosted.org/packages/80/93/99dd8cdf9ad6d079e971d9a1c8ceec84816377798852e4915992ca978b6c/cramjam-2.8.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f28dc065082d7399ad04b5605d480af43e7fd6650b3c68d1320f2db217f20f2",
                "md5": "fe31ca9171f2958fbe1b9ad15440a5d7",
                "sha256": "6721edd8f911ad84db83ee4902b7579fc01c55849062f3f1f4171b58fccf98eb"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "fe31ca9171f2958fbe1b9ad15440a5d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1578977,
            "upload_time": "2024-03-21T12:21:28",
            "upload_time_iso_8601": "2024-03-21T12:21:28.240912Z",
            "url": "https://files.pythonhosted.org/packages/4f/28/dc065082d7399ad04b5605d480af43e7fd6650b3c68d1320f2db217f20f2/cramjam-2.8.3-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b87c655d3fb4218af4c6d1ca67e537e503c26665bfa2d0a08b594a6529d621a",
                "md5": "3b01f86f7c7b2de2009b1d9a0a711598",
                "sha256": "4f7c16d358df366e308137411125a2bb50d1b19924fced3a390898fa8c9a074d"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3b01f86f7c7b2de2009b1d9a0a711598",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1638675,
            "upload_time": "2024-03-21T12:21:31",
            "upload_time_iso_8601": "2024-03-21T12:21:31.053325Z",
            "url": "https://files.pythonhosted.org/packages/0b/87/c655d3fb4218af4c6d1ca67e537e503c26665bfa2d0a08b594a6529d621a/cramjam-2.8.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a53777eb1b43e56dec6a4dc6ff4ea2d12b127a153e093bb46bce195b47d28eb",
                "md5": "177b4306019930374936f06973db64e9",
                "sha256": "24c2b426dd8fafb894f93a88f42e2827e14199d66836cb100582037e5371c724"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "177b4306019930374936f06973db64e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3599771,
            "upload_time": "2024-03-21T12:21:32",
            "upload_time_iso_8601": "2024-03-21T12:21:32.782568Z",
            "url": "https://files.pythonhosted.org/packages/6a/53/777eb1b43e56dec6a4dc6ff4ea2d12b127a153e093bb46bce195b47d28eb/cramjam-2.8.3-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea19daa48dc3d6a81ede070dd65c8acfe4b34c5683a56cdbeb7ecc16515dbb80",
                "md5": "ec6bf72996fac24320c92a9b0c6558af",
                "sha256": "007aa9444cb27b8691baae73ca907133cd939987438f874774011b4c740732dd"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec6bf72996fac24320c92a9b0c6558af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1900620,
            "upload_time": "2024-03-21T12:21:34",
            "upload_time_iso_8601": "2024-03-21T12:21:34.828174Z",
            "url": "https://files.pythonhosted.org/packages/ea/19/daa48dc3d6a81ede070dd65c8acfe4b34c5683a56cdbeb7ecc16515dbb80/cramjam-2.8.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f976e1db402afc9dc0e34719e603364d89e7a139a6235eb2dd5d9d66500e00b",
                "md5": "27e895f8cf211a4053b66476f6c339be",
                "sha256": "29987b54e31efed66738e8f236c597c4c9a91ec9d57bcb74307712e07505b4bb"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "27e895f8cf211a4053b66476f6c339be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1951685,
            "upload_time": "2024-03-21T12:21:36",
            "upload_time_iso_8601": "2024-03-21T12:21:36.796028Z",
            "url": "https://files.pythonhosted.org/packages/4f/97/6e1db402afc9dc0e34719e603364d89e7a139a6235eb2dd5d9d66500e00b/cramjam-2.8.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abd9d99a14583c41a9c00af2d4603a7bb1917a443f169ec408bce095ab7231ea",
                "md5": "48e8a0ecb9fe7d9eb50d9578df5d1301",
                "sha256": "65bfd41aa92c0025f32ba09214b48e9367a81122586b2617439b4327c4bd179c"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48e8a0ecb9fe7d9eb50d9578df5d1301",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1722685,
            "upload_time": "2024-03-21T12:21:38",
            "upload_time_iso_8601": "2024-03-21T12:21:38.768703Z",
            "url": "https://files.pythonhosted.org/packages/ab/d9/d99a14583c41a9c00af2d4603a7bb1917a443f169ec408bce095ab7231ea/cramjam-2.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "677e07d012a0d3120fedc2f087f0bba498ffea5720ff90815ee5a0e8b367bee5",
                "md5": "404da16793bc1646d88d8a0770c8608c",
                "sha256": "7337bd8218bd8508f35904274a38cce843a237fe6e23104238bbeb2f337107ed"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "404da16793bc1646d88d8a0770c8608c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1771852,
            "upload_time": "2024-03-21T12:21:40",
            "upload_time_iso_8601": "2024-03-21T12:21:40.735309Z",
            "url": "https://files.pythonhosted.org/packages/67/7e/07d012a0d3120fedc2f087f0bba498ffea5720ff90815ee5a0e8b367bee5/cramjam-2.8.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ad963b081b26b1d652f1607d80afc4f1010942418280d69aa5bb7b7a7e93c2e",
                "md5": "c09a16f97f3ace142b997e055d58009b",
                "sha256": "269f94d2efe6b6a97624782cd3b541e60535dd5874f4a8d5d0ba66ef59424ae3"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c09a16f97f3ace142b997e055d58009b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1962293,
            "upload_time": "2024-03-21T12:21:43",
            "upload_time_iso_8601": "2024-03-21T12:21:43.444911Z",
            "url": "https://files.pythonhosted.org/packages/1a/d9/63b081b26b1d652f1607d80afc4f1010942418280d69aa5bb7b7a7e93c2e/cramjam-2.8.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b88f6c4b0dcc0de269f3effe666e8f7d682aab5adde1c6f5a462c112e0be1f8",
                "md5": "f033de009b8b30439a679d55e40edd18",
                "sha256": "bec9ca5431c32ba94996b7c1c56695b37d48713b97ee1d2a456f4046f009e82f"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f033de009b8b30439a679d55e40edd18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2656100,
            "upload_time": "2024-03-21T12:21:45",
            "upload_time_iso_8601": "2024-03-21T12:21:45.475959Z",
            "url": "https://files.pythonhosted.org/packages/7b/88/f6c4b0dcc0de269f3effe666e8f7d682aab5adde1c6f5a462c112e0be1f8/cramjam-2.8.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e539d52bb20463a8bbc12dfe49c8099005c17879fdfc09dc25bb172cc9c4cef9",
                "md5": "bd78a82f55cc3684bb77f483f5c8cb55",
                "sha256": "2cb64a97e625ca029b55e37769b8c354e64cbea042c75471915dc385935d30ed"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd78a82f55cc3684bb77f483f5c8cb55",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1970760,
            "upload_time": "2024-03-21T12:21:47",
            "upload_time_iso_8601": "2024-03-21T12:21:47.408489Z",
            "url": "https://files.pythonhosted.org/packages/e5/39/d52bb20463a8bbc12dfe49c8099005c17879fdfc09dc25bb172cc9c4cef9/cramjam-2.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39244b8f3f23d13dd7b00861248fce0a5c62e6d718e1ca560a4fd25a2107c959",
                "md5": "05a5efbe9fb709764ba27a35ac7372e2",
                "sha256": "c28830ecf76501356d678dac4f37563554ec1c651a53a990cdf595f7ed75c651"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "05a5efbe9fb709764ba27a35ac7372e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2017012,
            "upload_time": "2024-03-21T12:21:49",
            "upload_time_iso_8601": "2024-03-21T12:21:49.995480Z",
            "url": "https://files.pythonhosted.org/packages/39/24/4b8f3f23d13dd7b00861248fce0a5c62e6d718e1ca560a4fd25a2107c959/cramjam-2.8.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2af993da8851400673e61df320f312bae5a8b5ee7855e5fbc7739ceb18100a01",
                "md5": "2764a543bbf7cce78043e985b210dbfd",
                "sha256": "35647a0e37a4dfec85a44c7966ae476b7db0e6cd65d91c08f1fb3007ed774d92"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2764a543bbf7cce78043e985b210dbfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2124589,
            "upload_time": "2024-03-21T12:21:52",
            "upload_time_iso_8601": "2024-03-21T12:21:52.075053Z",
            "url": "https://files.pythonhosted.org/packages/2a/f9/93da8851400673e61df320f312bae5a8b5ee7855e5fbc7739ceb18100a01/cramjam-2.8.3-cp311-cp311-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7207d22e827042373f763978d6f1110a099ada428117a4f53d70fe85c8748aef",
                "md5": "847ceaf29102f95610a94ba6109e9ecb",
                "sha256": "e954599c6369f429a868852eff453b894d88866acba439b65131ea93f5400b47"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "847ceaf29102f95610a94ba6109e9ecb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2099755,
            "upload_time": "2024-03-21T12:21:53",
            "upload_time_iso_8601": "2024-03-21T12:21:53.990760Z",
            "url": "https://files.pythonhosted.org/packages/72/07/d22e827042373f763978d6f1110a099ada428117a4f53d70fe85c8748aef/cramjam-2.8.3-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff4d82657e4973418084753e23e3364fafdc2dccc4aa3ee54e401c3eca5ef26f",
                "md5": "eac84c97fdc2164f81590ceba3f9fd21",
                "sha256": "86e238b6de79e045f5197df2c9dfaf8d10b37a6517ff4ffc4775fe5a3cf4d4a4"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eac84c97fdc2164f81590ceba3f9fd21",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2150317,
            "upload_time": "2024-03-21T12:21:55",
            "upload_time_iso_8601": "2024-03-21T12:21:55.845984Z",
            "url": "https://files.pythonhosted.org/packages/ff/4d/82657e4973418084753e23e3364fafdc2dccc4aa3ee54e401c3eca5ef26f/cramjam-2.8.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f65e0c44c04e60506386e44607388be7a8d358d64780f137f2283dbe423e87a",
                "md5": "481e3dd50f3d283c9d208cbba471836b",
                "sha256": "fe6434d3ee0899bc9396801d1abbc5d1fe77662bd3d1f1c1573fac6708459138"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "481e3dd50f3d283c9d208cbba471836b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1578977,
            "upload_time": "2024-03-21T12:21:57",
            "upload_time_iso_8601": "2024-03-21T12:21:57.783618Z",
            "url": "https://files.pythonhosted.org/packages/0f/65/e0c44c04e60506386e44607388be7a8d358d64780f137f2283dbe423e87a/cramjam-2.8.3-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08321f90bee4b86d1b92fb76c26f11db07b5bce7db842fb1cc912ed7f045b696",
                "md5": "48d1b60876519551ca450d2c43693791",
                "sha256": "e8ec1d4f27eb9d0412f0c567e7ffd14fbeb2b318a1ac394d5de4047c431fe94c"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "48d1b60876519551ca450d2c43693791",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1638658,
            "upload_time": "2024-03-21T12:21:59",
            "upload_time_iso_8601": "2024-03-21T12:21:59.848598Z",
            "url": "https://files.pythonhosted.org/packages/08/32/1f90bee4b86d1b92fb76c26f11db07b5bce7db842fb1cc912ed7f045b696/cramjam-2.8.3-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec5087d0f705401d6a754bcde63d2f1daaa2822935114a09f103fd885ae8ca3a",
                "md5": "5b4722e9b1cb9c4fe03cf66658dd962d",
                "sha256": "24990be4010b2185dcecc67133cd727657036e7b132d7de598148f5b1eb8e452"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "5b4722e9b1cb9c4fe03cf66658dd962d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3606608,
            "upload_time": "2024-03-21T12:22:02",
            "upload_time_iso_8601": "2024-03-21T12:22:02.980464Z",
            "url": "https://files.pythonhosted.org/packages/ec/50/87d0f705401d6a754bcde63d2f1daaa2822935114a09f103fd885ae8ca3a/cramjam-2.8.3-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83108237e11c55151503fd912e28bf806fd2a1e90ab213faaf1363a0a3444316",
                "md5": "9594acb2e3e9bae96623f557e1d1025f",
                "sha256": "572cb9a8dc5a189691d6e03a9bf9b4305fd9a9f36bb0f9fde55fc36837c2e6b3"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9594acb2e3e9bae96623f557e1d1025f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1904532,
            "upload_time": "2024-03-21T12:22:05",
            "upload_time_iso_8601": "2024-03-21T12:22:05.107324Z",
            "url": "https://files.pythonhosted.org/packages/83/10/8237e11c55151503fd912e28bf806fd2a1e90ab213faaf1363a0a3444316/cramjam-2.8.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6268c4d87606d8ceffd4e37882aca9b96f121a9238bb35a6d1599eacdc5741fe",
                "md5": "177855d821f57253f27da7ccb08bf6e2",
                "sha256": "9efe6915aa7ef176f3a7f42a4e46504573215953331b139abefd20d07d8aba82"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "177855d821f57253f27da7ccb08bf6e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1953471,
            "upload_time": "2024-03-21T12:22:07",
            "upload_time_iso_8601": "2024-03-21T12:22:07.183919Z",
            "url": "https://files.pythonhosted.org/packages/62/68/c4d87606d8ceffd4e37882aca9b96f121a9238bb35a6d1599eacdc5741fe/cramjam-2.8.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51ec57f1da227a7def2e8c87fa0d2724adb86036a085230adf4b082e4aa0d199",
                "md5": "fe4a1b41282b49ce6dd0bdb1df3936dc",
                "sha256": "fe84440100e7045190da7f80219be9989b0b6db6acadb3ae9cfe0935d93ebf8c"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe4a1b41282b49ce6dd0bdb1df3936dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1726699,
            "upload_time": "2024-03-21T12:22:10",
            "upload_time_iso_8601": "2024-03-21T12:22:10.057567Z",
            "url": "https://files.pythonhosted.org/packages/51/ec/57f1da227a7def2e8c87fa0d2724adb86036a085230adf4b082e4aa0d199/cramjam-2.8.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed0d9ce8fa5c1a237288c2686fca5437ee9bbf8190546f48af7eeba016c61387",
                "md5": "e87f2df1186f9081dc3eb8fc9ee93976",
                "sha256": "00524bb23f4abb3a3bfff08aa32b9274843170c5b43855807e0f59670e2ac98c"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e87f2df1186f9081dc3eb8fc9ee93976",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1774634,
            "upload_time": "2024-03-21T12:22:12",
            "upload_time_iso_8601": "2024-03-21T12:22:12.306543Z",
            "url": "https://files.pythonhosted.org/packages/ed/0d/9ce8fa5c1a237288c2686fca5437ee9bbf8190546f48af7eeba016c61387/cramjam-2.8.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef17931e80af28dcb207b2f48fea2e904fef88f8938bda8b89ec82353d47e6cd",
                "md5": "14a265e570abdfc701d23bcf78ce8291",
                "sha256": "ab67f29094165f0771acad8dd16e840259cfedcc94067af229530496dbf1a24c"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "14a265e570abdfc701d23bcf78ce8291",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1962428,
            "upload_time": "2024-03-21T12:22:14",
            "upload_time_iso_8601": "2024-03-21T12:22:14.007463Z",
            "url": "https://files.pythonhosted.org/packages/ef/17/931e80af28dcb207b2f48fea2e904fef88f8938bda8b89ec82353d47e6cd/cramjam-2.8.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65eb93490139b43aff0647b71cdc19f37a468241d793c37406457d9478cb2226",
                "md5": "70ef9336669657899daefcd8202f1678",
                "sha256": "be6fb5dd5bf1c89c717a73a1057505959f35c08e0e97a76d4cc6391b90d2263b"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "70ef9336669657899daefcd8202f1678",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2659803,
            "upload_time": "2024-03-21T12:22:16",
            "upload_time_iso_8601": "2024-03-21T12:22:16.144682Z",
            "url": "https://files.pythonhosted.org/packages/65/eb/93490139b43aff0647b71cdc19f37a468241d793c37406457d9478cb2226/cramjam-2.8.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "846a4825e220b2efb41e16293c0a8ca5d3682973abab44eee07a12362c0ae979",
                "md5": "ef180663a44a65176a90be2981008da2",
                "sha256": "d93b42d22bf3e17290c5e4cf58e715a419330bb5255c35933c14db82ecf3872c"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef180663a44a65176a90be2981008da2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1974562,
            "upload_time": "2024-03-21T12:22:17",
            "upload_time_iso_8601": "2024-03-21T12:22:17.726220Z",
            "url": "https://files.pythonhosted.org/packages/84/6a/4825e220b2efb41e16293c0a8ca5d3682973abab44eee07a12362c0ae979/cramjam-2.8.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f86bdfce7d945295fed65f77dbec36c4d9de55453968bd00f97af48975f96461",
                "md5": "b9e0444efbbc8c64b88014479947e6b9",
                "sha256": "afa065bab70e27565695441f69f493af3d379b8723030f2c3d2547d2e312a4be"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b9e0444efbbc8c64b88014479947e6b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2019894,
            "upload_time": "2024-03-21T12:22:19",
            "upload_time_iso_8601": "2024-03-21T12:22:19.379277Z",
            "url": "https://files.pythonhosted.org/packages/f8/6b/dfce7d945295fed65f77dbec36c4d9de55453968bd00f97af48975f96461/cramjam-2.8.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04710335439fe0cde9e98cef3868079af198e893b780ffb87796a6bdab5b59ea",
                "md5": "3160127bc55d45cdb0d67cc8005e465f",
                "sha256": "832224f52fa1e601e0ab678dba9bdfde3686fc4cd1a9f2ed4748f29eaf1cb553"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3160127bc55d45cdb0d67cc8005e465f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2127511,
            "upload_time": "2024-03-21T12:22:21",
            "upload_time_iso_8601": "2024-03-21T12:22:21.063461Z",
            "url": "https://files.pythonhosted.org/packages/04/71/0335439fe0cde9e98cef3868079af198e893b780ffb87796a6bdab5b59ea/cramjam-2.8.3-cp312-cp312-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4ddbb21a46b96548600b5a971d8fc87731cab3d27e7ad534ae0dbb72fd0ce68",
                "md5": "53ac0bddcbbe23549f4f9eee13aaea39",
                "sha256": "962b7106287bcc463150766b5b8c69f32dcc69713a8dbce00e0ca6936f95c55b"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "53ac0bddcbbe23549f4f9eee13aaea39",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2101741,
            "upload_time": "2024-03-21T12:22:22",
            "upload_time_iso_8601": "2024-03-21T12:22:22.587465Z",
            "url": "https://files.pythonhosted.org/packages/a4/dd/bb21a46b96548600b5a971d8fc87731cab3d27e7ad534ae0dbb72fd0ce68/cramjam-2.8.3-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09c0cfa95ba2cdd3763d2127f4da55072145e62394df5764f338f126260a9e63",
                "md5": "1498026c2e9f0e120ffaa21faacafcd8",
                "sha256": "2be92c6f0bcffaf8ea6a8164fe0388a188fec2fa9eff1828e8b64dc3a83740f9"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1498026c2e9f0e120ffaa21faacafcd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2154284,
            "upload_time": "2024-03-21T12:22:24",
            "upload_time_iso_8601": "2024-03-21T12:22:24.085310Z",
            "url": "https://files.pythonhosted.org/packages/09/c0/cfa95ba2cdd3763d2127f4da55072145e62394df5764f338f126260a9e63/cramjam-2.8.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db8df213a008c8c3229f01bc7fbee94adcdb1dbd0aa2f9e15756a950b026fdfb",
                "md5": "bc91afcb55d5d885db191cfe96676592",
                "sha256": "080f3eb7b648f5ba9d35084d8dddc68246a8f365df239792f6712908f0aa568e"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bc91afcb55d5d885db191cfe96676592",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1578572,
            "upload_time": "2024-03-21T12:22:25",
            "upload_time_iso_8601": "2024-03-21T12:22:25.560033Z",
            "url": "https://files.pythonhosted.org/packages/db/8d/f213a008c8c3229f01bc7fbee94adcdb1dbd0aa2f9e15756a950b026fdfb/cramjam-2.8.3-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffb6d8bbd30c44167c2fccc5f99f970603092f724a639f171ec002659dc9df15",
                "md5": "758e1505eb7dc1c3bbc0a8218c0a211f",
                "sha256": "c14728e3360cd212d5b606ca703c3bd1c8912efcdbc1aa032c81c2882509ebd5"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "758e1505eb7dc1c3bbc0a8218c0a211f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1645264,
            "upload_time": "2024-03-21T12:22:26",
            "upload_time_iso_8601": "2024-03-21T12:22:26.967476Z",
            "url": "https://files.pythonhosted.org/packages/ff/b6/d8bbd30c44167c2fccc5f99f970603092f724a639f171ec002659dc9df15/cramjam-2.8.3-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d891af683413dc7622ae66847adc9651aeddfd1e96b9e7c435f73cfed4f7562",
                "md5": "d126cc1ae11ddb2d29fb2072295a1def",
                "sha256": "c7e8329cde48740df8d332dade2f52b74612b8ea86005341c99bb192c82a5ce7"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d126cc1ae11ddb2d29fb2072295a1def",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1901261,
            "upload_time": "2024-03-21T12:22:28",
            "upload_time_iso_8601": "2024-03-21T12:22:28.523465Z",
            "url": "https://files.pythonhosted.org/packages/7d/89/1af683413dc7622ae66847adc9651aeddfd1e96b9e7c435f73cfed4f7562/cramjam-2.8.3-cp37-cp37m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0ae8acaaf80639cde206d4b15dbc456b314514e5f30478e0279e8ae5178cae9",
                "md5": "713db0446ad3ddbe986597f42f9111d7",
                "sha256": "77346ac669f5445d14b74476a4e8f3a259fd22681bd73790e92b8956d7e225fc"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "713db0446ad3ddbe986597f42f9111d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1952124,
            "upload_time": "2024-03-21T12:22:30",
            "upload_time_iso_8601": "2024-03-21T12:22:30.056303Z",
            "url": "https://files.pythonhosted.org/packages/f0/ae/8acaaf80639cde206d4b15dbc456b314514e5f30478e0279e8ae5178cae9/cramjam-2.8.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1407523ec6c9a4f2721d8d67a1c57fbf36c3dc86ed15d08c6d4e75d1f68893fc",
                "md5": "38a800076adab05bee9eeb8400ee4e9d",
                "sha256": "274878883e7fadf95a6b5bc58f9c1dd39fef2c31d68e18a0fb8594226457fba7"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "38a800076adab05bee9eeb8400ee4e9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1723044,
            "upload_time": "2024-03-21T12:22:31",
            "upload_time_iso_8601": "2024-03-21T12:22:31.516363Z",
            "url": "https://files.pythonhosted.org/packages/14/07/523ec6c9a4f2721d8d67a1c57fbf36c3dc86ed15d08c6d4e75d1f68893fc/cramjam-2.8.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcd4ba412459cc552f1c820cb4208c7c25ef36e2d2efdaedf2fe071f140ab736",
                "md5": "a3a39e405e9daf538ba0d74d48cc2f08",
                "sha256": "7871e1fd3ee8ca16799ba22d49fc1e52e78976fa8c659be41630eeb2914475a7"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a3a39e405e9daf538ba0d74d48cc2f08",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1772699,
            "upload_time": "2024-03-21T12:22:33",
            "upload_time_iso_8601": "2024-03-21T12:22:33.124503Z",
            "url": "https://files.pythonhosted.org/packages/fc/d4/ba412459cc552f1c820cb4208c7c25ef36e2d2efdaedf2fe071f140ab736/cramjam-2.8.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "705530edf10c9135f67071b1e57a3224eb1ca6a48c76598c43b700bb70a3c494",
                "md5": "2dd0c42e6a3d0f3652ec639f6032a9f8",
                "sha256": "345a952c5d4b922830efaa67dc0b42d21e18c182c1a1bda6d20bb78235f31d6f"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2dd0c42e6a3d0f3652ec639f6032a9f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1962640,
            "upload_time": "2024-03-21T12:22:35",
            "upload_time_iso_8601": "2024-03-21T12:22:35.175049Z",
            "url": "https://files.pythonhosted.org/packages/70/55/30edf10c9135f67071b1e57a3224eb1ca6a48c76598c43b700bb70a3c494/cramjam-2.8.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e52210d93962f54d5b76a0055221cdf0dbe3b8067d74753436ce094fa4487ab8",
                "md5": "b76db1bcdd67b2e39af6d707b89cc0dc",
                "sha256": "fb5d7739e2bc573ade12327ef7717b1ac5876c62938fab20eb54d762da23cae2"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b76db1bcdd67b2e39af6d707b89cc0dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2656355,
            "upload_time": "2024-03-21T12:22:37",
            "upload_time_iso_8601": "2024-03-21T12:22:37.319784Z",
            "url": "https://files.pythonhosted.org/packages/e5/22/10d93962f54d5b76a0055221cdf0dbe3b8067d74753436ce094fa4487ab8/cramjam-2.8.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "107a201022505bb1d39db06ca29f198039c8ebaf925d1f7c1099c80870199c05",
                "md5": "7bc2799d603460c6aa90ba0c53c65892",
                "sha256": "440a18fd4ae42e06dbbd7aee91d8248b61da9fef7610ffbd553d1ba93931394b"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7bc2799d603460c6aa90ba0c53c65892",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1971055,
            "upload_time": "2024-03-21T12:22:38",
            "upload_time_iso_8601": "2024-03-21T12:22:38.891462Z",
            "url": "https://files.pythonhosted.org/packages/10/7a/201022505bb1d39db06ca29f198039c8ebaf925d1f7c1099c80870199c05/cramjam-2.8.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dfbb7b4f9ecb11dad09b18777dd08b7620a541940160d2586db0790463c2adf",
                "md5": "3ea769ee0bdd0117ef47a59e08b772f5",
                "sha256": "476890974229713fc7b4c16fb050b756ba926c67e4d1200b3e03c5c051e9b552"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3ea769ee0bdd0117ef47a59e08b772f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2017412,
            "upload_time": "2024-03-21T12:22:40",
            "upload_time_iso_8601": "2024-03-21T12:22:40.971772Z",
            "url": "https://files.pythonhosted.org/packages/3d/fb/b7b4f9ecb11dad09b18777dd08b7620a541940160d2586db0790463c2adf/cramjam-2.8.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d54eeaa406481248a1057fbf6945d393b0be97f99d8f0c7da9a44fc9ed0996d",
                "md5": "03af6844b004ba5efb90bc7391e633cf",
                "sha256": "771b44e549f90b5532508782e25d1c40b8054dd83d52253d05945fc05836b252"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "03af6844b004ba5efb90bc7391e633cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2125481,
            "upload_time": "2024-03-21T12:22:42",
            "upload_time_iso_8601": "2024-03-21T12:22:42.598128Z",
            "url": "https://files.pythonhosted.org/packages/3d/54/eeaa406481248a1057fbf6945d393b0be97f99d8f0c7da9a44fc9ed0996d/cramjam-2.8.3-cp37-cp37m-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29924754f7868621af8fde73ca1d587d64f90e1694023dd05c7de5dc2906edb0",
                "md5": "a0a56f86c7a37d8865476e09191c7555",
                "sha256": "d824fd98364bc946c38ed324a3ec7befba055285aaf2c1ca61894bb7616226e8"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "a0a56f86c7a37d8865476e09191c7555",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2100238,
            "upload_time": "2024-03-21T12:22:44",
            "upload_time_iso_8601": "2024-03-21T12:22:44.439469Z",
            "url": "https://files.pythonhosted.org/packages/29/92/4754f7868621af8fde73ca1d587d64f90e1694023dd05c7de5dc2906edb0/cramjam-2.8.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bf0ee81c4881c36a62b09a5fb0fbc9326d41283f3d81b1af6c9a1823b4192f1",
                "md5": "ce7fcd4f09aa0cfe9e862f9d8bdb088e",
                "sha256": "2476828dea4089aa3cb9160391f8b36f793ca651afdcba80de1e341373928397"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce7fcd4f09aa0cfe9e862f9d8bdb088e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2150640,
            "upload_time": "2024-03-21T12:22:46",
            "upload_time_iso_8601": "2024-03-21T12:22:46.776113Z",
            "url": "https://files.pythonhosted.org/packages/8b/f0/ee81c4881c36a62b09a5fb0fbc9326d41283f3d81b1af6c9a1823b4192f1/cramjam-2.8.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9141ecaff0102156e4b30c70030be1b7b655ed9771027048c87fd19411603937",
                "md5": "5cf5c4ab9517b148e7d75ca5d846d97a",
                "sha256": "4a554bcfd068e831affd64a4f067c7c9b00b359742597c4fdadd18ff673baf30"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "5cf5c4ab9517b148e7d75ca5d846d97a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1579327,
            "upload_time": "2024-03-21T12:22:48",
            "upload_time_iso_8601": "2024-03-21T12:22:48.497164Z",
            "url": "https://files.pythonhosted.org/packages/91/41/ecaff0102156e4b30c70030be1b7b655ed9771027048c87fd19411603937/cramjam-2.8.3-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "316cd9ca9f9ddf13258c2c4edcc244cd3efb0ffe87355cbf8250218911b362f3",
                "md5": "afe9019fb65db59a2cce2848080a358d",
                "sha256": "246f1f7d32cac2b64617d2dddba11a82851e73cdcf9d1abb799b08dcd9d2ea49"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "afe9019fb65db59a2cce2848080a358d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1638962,
            "upload_time": "2024-03-21T12:22:50",
            "upload_time_iso_8601": "2024-03-21T12:22:50.624848Z",
            "url": "https://files.pythonhosted.org/packages/31/6c/d9ca9f9ddf13258c2c4edcc244cd3efb0ffe87355cbf8250218911b362f3/cramjam-2.8.3-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8e7c3b73dda1641d8cb1bc494b1dfc02eab1b54491c54c3634ede09c6599798",
                "md5": "a2072ab9787e042e8ae6efe7fb7d04c3",
                "sha256": "bc8f24c32124bb47536882c6b941cdb88cc16e4fa64d5bf347cb8dd72a193fc3"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "a2072ab9787e042e8ae6efe7fb7d04c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3600523,
            "upload_time": "2024-03-21T12:22:52",
            "upload_time_iso_8601": "2024-03-21T12:22:52.507460Z",
            "url": "https://files.pythonhosted.org/packages/f8/e7/c3b73dda1641d8cb1bc494b1dfc02eab1b54491c54c3634ede09c6599798/cramjam-2.8.3-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37b476252fc235e18e2d09ca6edbce87825e86f62344436625dc1be70a4bc7a1",
                "md5": "71d481e59266ea64cc1abae0293bf009",
                "sha256": "28c30078effc100739d3f9b227276a8360c1b32aac65efb4f641630552213548"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71d481e59266ea64cc1abae0293bf009",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1900983,
            "upload_time": "2024-03-21T12:22:54",
            "upload_time_iso_8601": "2024-03-21T12:22:54.003471Z",
            "url": "https://files.pythonhosted.org/packages/37/b4/76252fc235e18e2d09ca6edbce87825e86f62344436625dc1be70a4bc7a1/cramjam-2.8.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b41fdceccb786b1eb89e26395ccf1f547496c674272ed4efa335010e5858663c",
                "md5": "a56fa5913032c49e12e4d1f61bc7d954",
                "sha256": "ef0173fb457f73cf9c2553092419db0eba4d582890db95e542a4d93e11340421"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "a56fa5913032c49e12e4d1f61bc7d954",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1952167,
            "upload_time": "2024-03-21T12:22:55",
            "upload_time_iso_8601": "2024-03-21T12:22:55.587463Z",
            "url": "https://files.pythonhosted.org/packages/b4/1f/dceccb786b1eb89e26395ccf1f547496c674272ed4efa335010e5858663c/cramjam-2.8.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed382b17bf376d7ee14fc777c28140733b19314e532b3181cf4b6c8206a02804",
                "md5": "b337d8f56578f538c7c1681ef7a58056",
                "sha256": "9a1943f2cc0deee037ddcf92beff6049e12d4e6d557f568ddf59fb3b848f2152"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b337d8f56578f538c7c1681ef7a58056",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1723102,
            "upload_time": "2024-03-21T12:22:57",
            "upload_time_iso_8601": "2024-03-21T12:22:57.124129Z",
            "url": "https://files.pythonhosted.org/packages/ed/38/2b17bf376d7ee14fc777c28140733b19314e532b3181cf4b6c8206a02804/cramjam-2.8.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6a16f5f2c4ae949e8e996283ab2f40f46da4341da1bda0c4ed02a61b1092e68",
                "md5": "080506a5a15ab5b4797357affc79f208",
                "sha256": "5023a737d8d9cf5d123e6d87d088929c3cfb2aae90e0f584204427f74882150a"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "080506a5a15ab5b4797357affc79f208",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1772751,
            "upload_time": "2024-03-21T12:22:58",
            "upload_time_iso_8601": "2024-03-21T12:22:58.759231Z",
            "url": "https://files.pythonhosted.org/packages/e6/a1/6f5f2c4ae949e8e996283ab2f40f46da4341da1bda0c4ed02a61b1092e68/cramjam-2.8.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "420b87c83d8df36c7974141e415afa82a74ebad165970c1970fd1d9074d76bc5",
                "md5": "eba1fe622f283ec9550136fbf79a2b8b",
                "sha256": "6eec7e985f35708c234542721863d82781d0f7f6a71b45e14ce6d2625d4b131d"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "eba1fe622f283ec9550136fbf79a2b8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1962555,
            "upload_time": "2024-03-21T12:23:00",
            "upload_time_iso_8601": "2024-03-21T12:23:00.793097Z",
            "url": "https://files.pythonhosted.org/packages/42/0b/87c83d8df36c7974141e415afa82a74ebad165970c1970fd1d9074d76bc5/cramjam-2.8.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2ead3b421edee714ba1d5af4eaa2556bb6e230b316d84e69fa84bf12de790d7",
                "md5": "ab7bf6704f93166989140c0fb9451157",
                "sha256": "b188e750b95172c01defcfcfbba629cad797718b34402ec61b3bc9ff99403599"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ab7bf6704f93166989140c0fb9451157",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2656375,
            "upload_time": "2024-03-21T12:23:03",
            "upload_time_iso_8601": "2024-03-21T12:23:03.094344Z",
            "url": "https://files.pythonhosted.org/packages/c2/ea/d3b421edee714ba1d5af4eaa2556bb6e230b316d84e69fa84bf12de790d7/cramjam-2.8.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cb6d405ea6c3034aebb8171dbb876295c2847d9085098ef2071bd922cb5c49b",
                "md5": "7a3ffe3281af9810ccefc41707270e26",
                "sha256": "30e2d745cd4d244b7973d15aaebeedb537b980f9d3da80e6dea75ee1a872f9fa"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a3ffe3281af9810ccefc41707270e26",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1971088,
            "upload_time": "2024-03-21T12:23:04",
            "upload_time_iso_8601": "2024-03-21T12:23:04.776032Z",
            "url": "https://files.pythonhosted.org/packages/6c/b6/d405ea6c3034aebb8171dbb876295c2847d9085098ef2071bd922cb5c49b/cramjam-2.8.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc2727ba2a670a952ca4596f846edec85173e98beb01e34b63a2f81442d7c074",
                "md5": "4842ec3cee651775ea7b3bc3ed71f489",
                "sha256": "c9d54a4aa475d5e902f2ee518bdaa02f26c089e9f72950d00d1643c090f0deb3"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4842ec3cee651775ea7b3bc3ed71f489",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2017411,
            "upload_time": "2024-03-21T12:23:06",
            "upload_time_iso_8601": "2024-03-21T12:23:06.498716Z",
            "url": "https://files.pythonhosted.org/packages/fc/27/27ba2a670a952ca4596f846edec85173e98beb01e34b63a2f81442d7c074/cramjam-2.8.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5513b2223dc32ee8e154d3501286c9b70d8765626fc39828b899eac4e7e63e5",
                "md5": "6e551075760ab7de34795c3b8bfff79c",
                "sha256": "19b8c97350c8d65daea26267dd1becb59073569aac2ae5743952d7f48da5d37a"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6e551075760ab7de34795c3b8bfff79c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2125289,
            "upload_time": "2024-03-21T12:23:07",
            "upload_time_iso_8601": "2024-03-21T12:23:07.934440Z",
            "url": "https://files.pythonhosted.org/packages/a5/51/3b2223dc32ee8e154d3501286c9b70d8765626fc39828b899eac4e7e63e5/cramjam-2.8.3-cp38-cp38-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b65913ae372422d5503165077ddc8a84c3c2eddd3e2050993ab12dd23886e548",
                "md5": "73192adb8f4e4c8a633b77fb1a1cb450",
                "sha256": "3277fd42399755d6d3730edec4a192174ee64d219e0ffbc90613f15cbabf711f"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "73192adb8f4e4c8a633b77fb1a1cb450",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2100078,
            "upload_time": "2024-03-21T12:23:10",
            "upload_time_iso_8601": "2024-03-21T12:23:10.174121Z",
            "url": "https://files.pythonhosted.org/packages/b6/59/13ae372422d5503165077ddc8a84c3c2eddd3e2050993ab12dd23886e548/cramjam-2.8.3-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "465130a4a1034060eb8f35ab4302e46e6f3c0e5b40cdc8d00f2d0ff6f3d7187b",
                "md5": "89bbad0dfec4053f15911ed3710913e0",
                "sha256": "1fd25201f1278dc6faa2ae35e67b7a5bb352b7fc6ed1ee939637414ca8115863"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "89bbad0dfec4053f15911ed3710913e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2150680,
            "upload_time": "2024-03-21T12:23:11",
            "upload_time_iso_8601": "2024-03-21T12:23:11.892148Z",
            "url": "https://files.pythonhosted.org/packages/46/51/30a4a1034060eb8f35ab4302e46e6f3c0e5b40cdc8d00f2d0ff6f3d7187b/cramjam-2.8.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80daf9afe8f739aad86175800baa933f56534907b01cf77351d95fd0623cc30c",
                "md5": "6a079569d6e81a01329e465bee8db878",
                "sha256": "594477faff7f4380fa123cfbcf10ab8ee5af1a28b95750b66931ffafcb11ab5c"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6a079569d6e81a01329e465bee8db878",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1579263,
            "upload_time": "2024-03-21T12:23:13",
            "upload_time_iso_8601": "2024-03-21T12:23:13.954599Z",
            "url": "https://files.pythonhosted.org/packages/80/da/f9afe8f739aad86175800baa933f56534907b01cf77351d95fd0623cc30c/cramjam-2.8.3-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16f6e230eb1121ac44fd26d339fb68ca39cd24a00e0382f7a7db623423407bc6",
                "md5": "39aa9d6e159088bfd26f89d9e13d2da4",
                "sha256": "8ea1dc11538842ff20d9872a17214994f5913cbf3be5594b54aad2422becdf19"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "39aa9d6e159088bfd26f89d9e13d2da4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1639090,
            "upload_time": "2024-03-21T12:23:15",
            "upload_time_iso_8601": "2024-03-21T12:23:15.523464Z",
            "url": "https://files.pythonhosted.org/packages/16/f6/e230eb1121ac44fd26d339fb68ca39cd24a00e0382f7a7db623423407bc6/cramjam-2.8.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b725b824eaa1514a521f96adddf2b29e38b51bb96598db7bdac54dce8fec2c7d",
                "md5": "7d575965733f352ee0bedd698e360479",
                "sha256": "6379b92912f7569e126bd48d10e7087ddd20ea88a939532e3c4a85c2fa05d600"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "7d575965733f352ee0bedd698e360479",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3600523,
            "upload_time": "2024-03-21T12:23:17",
            "upload_time_iso_8601": "2024-03-21T12:23:17.026475Z",
            "url": "https://files.pythonhosted.org/packages/b7/25/b824eaa1514a521f96adddf2b29e38b51bb96598db7bdac54dce8fec2c7d/cramjam-2.8.3-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f94e836d19f291d6283742ad13a21ed02d6bcb577055b3f2a46eae178e06c80",
                "md5": "bc8029179287fdeabd33917b666e942e",
                "sha256": "11d2e9eebc7d202eda0ae09fb56a2cdbeb5a1563e89d2118bf18cf0030f35f77"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc8029179287fdeabd33917b666e942e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1900949,
            "upload_time": "2024-03-21T12:23:18",
            "upload_time_iso_8601": "2024-03-21T12:23:18.667448Z",
            "url": "https://files.pythonhosted.org/packages/7f/94/e836d19f291d6283742ad13a21ed02d6bcb577055b3f2a46eae178e06c80/cramjam-2.8.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd67aa05ff7645da8aefc15dfcd0eacbb10a46fdcca2732c5614c73b677c1dc5",
                "md5": "96835c28af64e86ed7de402bb3ab3c26",
                "sha256": "d5a0a2fe240c97587df07f3d5e1027673d599b3a6a7a0ab540aea69f09e9ff7a"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "96835c28af64e86ed7de402bb3ab3c26",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1952273,
            "upload_time": "2024-03-21T12:23:20",
            "upload_time_iso_8601": "2024-03-21T12:23:20.208952Z",
            "url": "https://files.pythonhosted.org/packages/cd/67/aa05ff7645da8aefc15dfcd0eacbb10a46fdcca2732c5614c73b677c1dc5/cramjam-2.8.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b720da6e10832c8dbbbe0e85006fd3b15e61f9865508b7f639abbf670b17171",
                "md5": "58eda319682bce8ecc3808503ed9d909",
                "sha256": "ba542f07fe3f41475d78626973533539e6cf2d5b6af37923fe6c7e7f0f74b9b2"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "58eda319682bce8ecc3808503ed9d909",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1722946,
            "upload_time": "2024-03-21T12:23:21",
            "upload_time_iso_8601": "2024-03-21T12:23:21.753455Z",
            "url": "https://files.pythonhosted.org/packages/7b/72/0da6e10832c8dbbbe0e85006fd3b15e61f9865508b7f639abbf670b17171/cramjam-2.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f97e5af5e135b77e596244e51b0afd888f73e70bbb668d69c3ed22afc46b2540",
                "md5": "a5d91d2d89a63180c9fee5b89d92058a",
                "sha256": "1374fe9a4431e546bb4501a16b84875d0bf80fc4e6c8942f0d5608ae48474267"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a5d91d2d89a63180c9fee5b89d92058a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1772016,
            "upload_time": "2024-03-21T12:23:23",
            "upload_time_iso_8601": "2024-03-21T12:23:23.448780Z",
            "url": "https://files.pythonhosted.org/packages/f9/7e/5af5e135b77e596244e51b0afd888f73e70bbb668d69c3ed22afc46b2540/cramjam-2.8.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64662ee7bbe44faca4389364d39b80ad792b0b80c6db0de60f9901ce9da19f85",
                "md5": "7a1abca10789d46dd579e8fa0d8f96bd",
                "sha256": "dcf7791e1cedb982ccc873ec9392c6cfb9c714a64ebf1ed4e8310b9cb44655f2"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7a1abca10789d46dd579e8fa0d8f96bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1962467,
            "upload_time": "2024-03-21T12:23:25",
            "upload_time_iso_8601": "2024-03-21T12:23:25.834810Z",
            "url": "https://files.pythonhosted.org/packages/64/66/2ee7bbe44faca4389364d39b80ad792b0b80c6db0de60f9901ce9da19f85/cramjam-2.8.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e4dc7401ccdde52f4a9f8deceedf7285e9c6bd41ad6003fd708e6ceffb92a9d",
                "md5": "7f255be825253b1aa3485314c5a72c1e",
                "sha256": "990e65c2bf1c155a9ddec5ecabf431cf77596432f697d3c6e0831b5174c51c40"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7f255be825253b1aa3485314c5a72c1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2656475,
            "upload_time": "2024-03-21T12:23:27",
            "upload_time_iso_8601": "2024-03-21T12:23:27.778362Z",
            "url": "https://files.pythonhosted.org/packages/3e/4d/c7401ccdde52f4a9f8deceedf7285e9c6bd41ad6003fd708e6ceffb92a9d/cramjam-2.8.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "171d4054c86855e2151a0f8c2991414abc9ceda8f70bf50f89d12f0f0bbfa881",
                "md5": "97417aa3bc2d4e7a0f7f753df6f89828",
                "sha256": "d9b244d04cef82872d12c227a2f202f080a454d664c05db351626e6ad4aaa307"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97417aa3bc2d4e7a0f7f753df6f89828",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1970927,
            "upload_time": "2024-03-21T12:23:30",
            "upload_time_iso_8601": "2024-03-21T12:23:30.840829Z",
            "url": "https://files.pythonhosted.org/packages/17/1d/4054c86855e2151a0f8c2991414abc9ceda8f70bf50f89d12f0f0bbfa881/cramjam-2.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6a0d4042acbc2e2bad78f744515ef153ecd9b6a97ee839880e4afd00b6604d5",
                "md5": "70002dc652a62a25ab1cd0c10ce73c70",
                "sha256": "80b088d15866b37851fd53e2b471becc9ec487257dceca1878621072a18e833e"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "70002dc652a62a25ab1cd0c10ce73c70",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2017355,
            "upload_time": "2024-03-21T12:23:32",
            "upload_time_iso_8601": "2024-03-21T12:23:32.951476Z",
            "url": "https://files.pythonhosted.org/packages/b6/a0/d4042acbc2e2bad78f744515ef153ecd9b6a97ee839880e4afd00b6604d5/cramjam-2.8.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8354a6dc7eef979036f6c76d74e56a0f66327a1cc64a72889b35fe0e728fa591",
                "md5": "992cdf0d692c5b0fa236246addb003a3",
                "sha256": "f667843e7a8fca208eecfe44e04088242f8ca60d74d4950fac3722043538d700"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "992cdf0d692c5b0fa236246addb003a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2124729,
            "upload_time": "2024-03-21T12:23:34",
            "upload_time_iso_8601": "2024-03-21T12:23:34.955688Z",
            "url": "https://files.pythonhosted.org/packages/83/54/a6dc7eef979036f6c76d74e56a0f66327a1cc64a72889b35fe0e728fa591/cramjam-2.8.3-cp39-cp39-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4f91b4e68160cc39480ef35b4ea875d680897d2596b6f931ab25bb58ce709d0",
                "md5": "c5f3b86889954f310664f18924f6b1f4",
                "sha256": "6f838d06d06709b9ce8b1ceae36aea4e1c7e613365185a91edcbeb5884f5e606"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c5f3b86889954f310664f18924f6b1f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2100142,
            "upload_time": "2024-03-21T12:23:36",
            "upload_time_iso_8601": "2024-03-21T12:23:36.663552Z",
            "url": "https://files.pythonhosted.org/packages/f4/f9/1b4e68160cc39480ef35b4ea875d680897d2596b6f931ab25bb58ce709d0/cramjam-2.8.3-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "307432c0e5c19c0b2ad0fd14f9f3eefddc466d36c1b39c9f1482d308fbee20f6",
                "md5": "c9ee2a466c519428859735aa847fa38f",
                "sha256": "4822eb5fe6839cd3d0439e5431e766ad010b2a388ca9617aa6372b6030897782"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9ee2a466c519428859735aa847fa38f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2150724,
            "upload_time": "2024-03-21T12:23:38",
            "upload_time_iso_8601": "2024-03-21T12:23:38.175572Z",
            "url": "https://files.pythonhosted.org/packages/30/74/32c0e5c19c0b2ad0fd14f9f3eefddc466d36c1b39c9f1482d308fbee20f6/cramjam-2.8.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae54016d82753f61a705f08b2fca5394a141f96ee2c9307fdbecf31b4b82cfac",
                "md5": "83149ab02580db090a0271623c6a273a",
                "sha256": "67e09b42e744efd08b93ac56f6100a859a31617d7146725516f3f2c744149d97"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "83149ab02580db090a0271623c6a273a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1579188,
            "upload_time": "2024-03-21T12:23:39",
            "upload_time_iso_8601": "2024-03-21T12:23:39.634539Z",
            "url": "https://files.pythonhosted.org/packages/ae/54/016d82753f61a705f08b2fca5394a141f96ee2c9307fdbecf31b4b82cfac/cramjam-2.8.3-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4322bd4c6484be349b040fda31d35e4fae5d390f4f607c1deb5b5fe94891c94f",
                "md5": "b3cf991f7ab2ae1f6ca16c6712c68ba6",
                "sha256": "11c9d30bc53892c57a3b296756c23659323ab1419a2b4bf22bbafc07b247bb67"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b3cf991f7ab2ae1f6ca16c6712c68ba6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1639029,
            "upload_time": "2024-03-21T12:23:41",
            "upload_time_iso_8601": "2024-03-21T12:23:41.180811Z",
            "url": "https://files.pythonhosted.org/packages/43/22/bd4c6484be349b040fda31d35e4fae5d390f4f607c1deb5b5fe94891c94f/cramjam-2.8.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "392cd83c8b81cacd57996df852e76068d6924c5b3a4aa9472f40a1f96beb1d86",
                "md5": "85c463e640083d7ec4d7597d201d3540",
                "sha256": "51e847dcfe74fba379fed2bc2b45f5c2f11c3ece5e9eebcf63f39a9594184588"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85c463e640083d7ec4d7597d201d3540",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1907487,
            "upload_time": "2024-03-21T12:23:42",
            "upload_time_iso_8601": "2024-03-21T12:23:42.669593Z",
            "url": "https://files.pythonhosted.org/packages/39/2c/d83c8b81cacd57996df852e76068d6924c5b3a4aa9472f40a1f96beb1d86/cramjam-2.8.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67b2e271b93c78cc4c032e937327d4ce524bd38493ea4c12b87eb648c19f5f53",
                "md5": "4babc0ecb441eb9042fee8c46cf78c93",
                "sha256": "07af94191f6a245226dc8a8bc6c94808e382ce9dfcca4bab0e8015fbc7fc3322"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4babc0ecb441eb9042fee8c46cf78c93",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1727022,
            "upload_time": "2024-03-21T12:23:44",
            "upload_time_iso_8601": "2024-03-21T12:23:44.902793Z",
            "url": "https://files.pythonhosted.org/packages/67/b2/e271b93c78cc4c032e937327d4ce524bd38493ea4c12b87eb648c19f5f53/cramjam-2.8.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "836bd59d0b8894066f736b539ab370d31789ed1185a55afe3743a456c53aef72",
                "md5": "8c74b477aed78a7aa35a3c7f74020a57",
                "sha256": "fc9c45469914099897c47bfc501616fb377f28a865adebf90ea6f3c8ae6dd4e6"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c74b477aed78a7aa35a3c7f74020a57",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1975045,
            "upload_time": "2024-03-21T12:23:47",
            "upload_time_iso_8601": "2024-03-21T12:23:47.125122Z",
            "url": "https://files.pythonhosted.org/packages/83/6b/d59d0b8894066f736b539ab370d31789ed1185a55afe3743a456c53aef72/cramjam-2.8.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "660988396f6c53416607822347a130ca279cbd35a9e8f8aa2bab47b53421091a",
                "md5": "3bbdb0f251650cd7dc0bef949622e26d",
                "sha256": "ef29fb916fe74be65d0ab8871ab8d964b0f5eb8028bb84b325be43675a59d6e7"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3bbdb0f251650cd7dc0bef949622e26d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2020621,
            "upload_time": "2024-03-21T12:23:48",
            "upload_time_iso_8601": "2024-03-21T12:23:48.841938Z",
            "url": "https://files.pythonhosted.org/packages/66/09/88396f6c53416607822347a130ca279cbd35a9e8f8aa2bab47b53421091a/cramjam-2.8.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "814c8a96aacfeddb5fb28f57c93ffdf2336b6108a4d9c0e4322873ade290fc6e",
                "md5": "9a476205a318ef25e7f1656a008de824",
                "sha256": "3850dac9a2f6dcb3249d23f9d505117643b967bdc1c572ed0cc492a48fd69daf"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9a476205a318ef25e7f1656a008de824",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2126153,
            "upload_time": "2024-03-21T12:23:51",
            "upload_time_iso_8601": "2024-03-21T12:23:51.129069Z",
            "url": "https://files.pythonhosted.org/packages/81/4c/8a96aacfeddb5fb28f57c93ffdf2336b6108a4d9c0e4322873ade290fc6e/cramjam-2.8.3-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0a43f6465b74a04d2fd54505774dd234fa7c206da9325529c9082e3bdc475ed",
                "md5": "0b204490140a42dd61fc83e2de57078d",
                "sha256": "e23e323ad28ed3e4e3a24ceffdab0ff235954109a88b536ea7b3b7886bd0a536"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0b204490140a42dd61fc83e2de57078d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2101453,
            "upload_time": "2024-03-21T12:23:52",
            "upload_time_iso_8601": "2024-03-21T12:23:52.732435Z",
            "url": "https://files.pythonhosted.org/packages/e0/a4/3f6465b74a04d2fd54505774dd234fa7c206da9325529c9082e3bdc475ed/cramjam-2.8.3-pp310-pypy310_pp73-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9118160b704c44fb4b8edccf6a1215d5ae6503db8007a136265892a45480eda1",
                "md5": "5f2b7529176c73382802c217329c8f78",
                "sha256": "1ba1a8ff855b30b4069a9b45ea9e7f2b5d882c7953bdfccda8d4b275fa7057ce"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f2b7529176c73382802c217329c8f78",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 2154376,
            "upload_time": "2024-03-21T12:23:54",
            "upload_time_iso_8601": "2024-03-21T12:23:54.407964Z",
            "url": "https://files.pythonhosted.org/packages/91/18/160b704c44fb4b8edccf6a1215d5ae6503db8007a136265892a45480eda1/cramjam-2.8.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55dce9ac996633ef164c0fbb41d9ecd93cccb0ddba1dc71eda86e81337c34aea",
                "md5": "945ab9edf9d05961de615b421fd7b064",
                "sha256": "eea606b01b43b91626e3aafd463bd19b6ed739bdb8b2b309e5d7ff72afc0e89d"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "945ab9edf9d05961de615b421fd7b064",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 1644035,
            "upload_time": "2024-03-21T12:23:55",
            "upload_time_iso_8601": "2024-03-21T12:23:55.928733Z",
            "url": "https://files.pythonhosted.org/packages/55/dc/e9ac996633ef164c0fbb41d9ecd93cccb0ddba1dc71eda86e81337c34aea/cramjam-2.8.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "839634130440f4cd621836b9ec2c00fe9478624ba01a50ee990a6665d4d5f712",
                "md5": "4fd7134221adf4f75819c2a301d8f9e5",
                "sha256": "97c706c520c3f8b0184278cc86187528458350216c6e4fa85d3f16bcad0d365d"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4fd7134221adf4f75819c2a301d8f9e5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1907483,
            "upload_time": "2024-03-21T12:23:57",
            "upload_time_iso_8601": "2024-03-21T12:23:57.580353Z",
            "url": "https://files.pythonhosted.org/packages/83/96/34130440f4cd621836b9ec2c00fe9478624ba01a50ee990a6665d4d5f712/cramjam-2.8.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef19c2261ba3d69fd165f418daa871edad9d5bc2fe44f07ee8e0fd848d49581e",
                "md5": "273c43862709880ecdf18b5ac213359a",
                "sha256": "9d08f1bab949ffd6dd6f25a89e4f7062d147aeea9c067e4dd155bdb190e5a519"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "273c43862709880ecdf18b5ac213359a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1726985,
            "upload_time": "2024-03-21T12:23:59",
            "upload_time_iso_8601": "2024-03-21T12:23:59.257497Z",
            "url": "https://files.pythonhosted.org/packages/ef/19/c2261ba3d69fd165f418daa871edad9d5bc2fe44f07ee8e0fd848d49581e/cramjam-2.8.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ee7df459b6f3bc84b5ffde377bb6acb35f4c9117ba24734411c236b9a734b18",
                "md5": "72fc016ede4735eb056d1f2227b18570",
                "sha256": "ba1e45074757ab0482ac544e60613b6b8658100ac9985c91868a4598cdfb63ba"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72fc016ede4735eb056d1f2227b18570",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1975079,
            "upload_time": "2024-03-21T12:24:01",
            "upload_time_iso_8601": "2024-03-21T12:24:01.543472Z",
            "url": "https://files.pythonhosted.org/packages/1e/e7/df459b6f3bc84b5ffde377bb6acb35f4c9117ba24734411c236b9a734b18/cramjam-2.8.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82258feac88c3636eb9b1573b3dd744f64b4bf345b42eaeefbdf7104e14cc9bd",
                "md5": "a863f8c0eaad538596be7c4c52797d4a",
                "sha256": "a2fededed05a042f093dbf1b11d69afb1874a2c9197fcf1d58c142ba9111db5a"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a863f8c0eaad538596be7c4c52797d4a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2020656,
            "upload_time": "2024-03-21T12:24:03",
            "upload_time_iso_8601": "2024-03-21T12:24:03.507462Z",
            "url": "https://files.pythonhosted.org/packages/82/25/8feac88c3636eb9b1573b3dd744f64b4bf345b42eaeefbdf7104e14cc9bd/cramjam-2.8.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d2497dc79398f427d7cd37383ca0dee74daa43e686b206ed35d5a003af1ca72",
                "md5": "f81221a8aebec3c272502e8580165a99",
                "sha256": "fc0c6eb8185c68f79a25bb298825e345cc09b826f5828bd8146e3600ca6e9981"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f81221a8aebec3c272502e8580165a99",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2126117,
            "upload_time": "2024-03-21T12:24:05",
            "upload_time_iso_8601": "2024-03-21T12:24:05.286091Z",
            "url": "https://files.pythonhosted.org/packages/1d/24/97dc79398f427d7cd37383ca0dee74daa43e686b206ed35d5a003af1ca72/cramjam-2.8.3-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e034326cb130c093b51ebcd0b6640fa5c4c079e338fd3d9962276294173859f5",
                "md5": "78f508f97807d6bf599745913ffc2116",
                "sha256": "6653c262ad71e6c0ae08eeca3af2ee89ad47483b6312f2c6094518cb77872406"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "78f508f97807d6bf599745913ffc2116",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2101399,
            "upload_time": "2024-03-21T12:24:06",
            "upload_time_iso_8601": "2024-03-21T12:24:06.834432Z",
            "url": "https://files.pythonhosted.org/packages/e0/34/326cb130c093b51ebcd0b6640fa5c4c079e338fd3d9962276294173859f5/cramjam-2.8.3-pp39-pypy39_pp73-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00aad2ec0687d898e4e1bd626130f909e5d97aa1e7cf46bf6ca52e244d56c5ea",
                "md5": "0fa293b94bd8424049f97cb273f0da8e",
                "sha256": "6c04f363cb4b316719421724521432b6e7f6490e5baaaf7692af961c28d0279b"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0fa293b94bd8424049f97cb273f0da8e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 2154385,
            "upload_time": "2024-03-21T12:24:08",
            "upload_time_iso_8601": "2024-03-21T12:24:08.514553Z",
            "url": "https://files.pythonhosted.org/packages/00/aa/d2ec0687d898e4e1bd626130f909e5d97aa1e7cf46bf6ca52e244d56c5ea/cramjam-2.8.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57c9c09013ba9e6bdeefe0ceb06efa98d3274ce4cae22ba1db18019fc0d8f797",
                "md5": "a52756647c0b8304bd14cc0d024e2bdb",
                "sha256": "e30f1f00de913b440baa36647817b9b7120a69b04eca05f3354aaf5b40f95ee5"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a52756647c0b8304bd14cc0d024e2bdb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 1644054,
            "upload_time": "2024-03-21T12:24:10",
            "upload_time_iso_8601": "2024-03-21T12:24:10.631001Z",
            "url": "https://files.pythonhosted.org/packages/57/c9/c09013ba9e6bdeefe0ceb06efa98d3274ce4cae22ba1db18019fc0d8f797/cramjam-2.8.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0df2a7c127e61dcb7878f3ec5bf07fbf472805ea8108fd63335a51ab0bd1a432",
                "md5": "9bc15727bf5963194662343b5b89c37c",
                "sha256": "6b1fa0a6ea8183831d04572597c182bd6cece62d583a36cde1e6a86e72ce2389"
            },
            "downloads": -1,
            "filename": "cramjam-2.8.3.tar.gz",
            "has_sig": false,
            "md5_digest": "9bc15727bf5963194662343b5b89c37c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1070001,
            "upload_time": "2024-03-21T12:24:12",
            "upload_time_iso_8601": "2024-03-21T12:24:12.295463Z",
            "url": "https://files.pythonhosted.org/packages/0d/f2/a7c127e61dcb7878f3ec5bf07fbf472805ea8108fd63335a51ab0bd1a432/cramjam-2.8.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-21 12:24:12",
    "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: 0.25658s