deflate


Namedeflate JSON
Version 0.8.1 PyPI version JSON
download
home_pageNone
SummaryPython wrapper for libdeflate.
upload_time2025-07-18 12:25:23
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # deflate API

This is a very thin Python wrapper Eric Biggers' excellent
[libdeflate](https://github.com/ebiggers/libdeflate).

Currently, it handles:

## Compression and decompression of gzip data, with a very basic API

```python
import deflate
level = 6  # The default; may be 1-12 for libdeflate.
compressed = deflate.gzip_compress(b"hello world!" * 1000, level)
original = deflate.gzip_decompress(compressed)
```

## Compression and decompression of raw DEFLATE or zlib data

The original size of the decompressed data needs to be kept through additional logic.

```python
import deflate
level = 6  # The default; may be 1-12 for libdeflate.
data = b"hello world!" * 1000
# DEFLATE
compressed = deflate.deflate_compress(data, level)
original = deflate.deflate_decompress(compressed, len(data))
# zlib
compressed = deflate.zlib_compress(data, level)
original = deflate.zlib_decompress(compressed, len(data))
```

## CRC32 computation

```python
import deflate
crc32 = deflate.crc32(b"hello world! ")  # initial
crc32 = deflate.crc32(b"hello universe!", crc32)  # continued
```

## Adler-32 computation

```python
import deflate
adler32 = deflate.adler32(b"hello world! ")  # initial
adler32 = deflate.adler32(b"hello universe!", adler32)  # continued
```

# Installation

```bash
pip install deflate
```

By default, `deflate` will compile and statically link the bundled `libdeflate` when you
build from source (or use the pre-compiled wheels). To link to a system-installed `libdeflate`, set the
`LIBDEFLATE_PREFIX` environment variable and build from source:

```
LIBDEFLATE_PREFIX=/opt/homebrew/Cellar/libdeflate/1.20 pip install deflate --no-binary=deflate
```

Be warned: you can't use this wheel on a system without the referenced libdeflate.

# Testing

```bash
pip install -r requirements-dev.lock
python -m pytest
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "deflate",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Dan Watson <dcwatson@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/25/f5/4999436aed92db2ce6f2a78d494fd82e72b028c97d9ef64bd6ff127570ef/deflate-0.8.1.tar.gz",
    "platform": null,
    "description": "# deflate API\n\nThis is a very thin Python wrapper Eric Biggers' excellent\n[libdeflate](https://github.com/ebiggers/libdeflate).\n\nCurrently, it handles:\n\n## Compression and decompression of gzip data, with a very basic API\n\n```python\nimport deflate\nlevel = 6  # The default; may be 1-12 for libdeflate.\ncompressed = deflate.gzip_compress(b\"hello world!\" * 1000, level)\noriginal = deflate.gzip_decompress(compressed)\n```\n\n## Compression and decompression of raw DEFLATE or zlib data\n\nThe original size of the decompressed data needs to be kept through additional logic.\n\n```python\nimport deflate\nlevel = 6  # The default; may be 1-12 for libdeflate.\ndata = b\"hello world!\" * 1000\n# DEFLATE\ncompressed = deflate.deflate_compress(data, level)\noriginal = deflate.deflate_decompress(compressed, len(data))\n# zlib\ncompressed = deflate.zlib_compress(data, level)\noriginal = deflate.zlib_decompress(compressed, len(data))\n```\n\n## CRC32 computation\n\n```python\nimport deflate\ncrc32 = deflate.crc32(b\"hello world! \")  # initial\ncrc32 = deflate.crc32(b\"hello universe!\", crc32)  # continued\n```\n\n## Adler-32 computation\n\n```python\nimport deflate\nadler32 = deflate.adler32(b\"hello world! \")  # initial\nadler32 = deflate.adler32(b\"hello universe!\", adler32)  # continued\n```\n\n# Installation\n\n```bash\npip install deflate\n```\n\nBy default, `deflate` will compile and statically link the bundled `libdeflate` when you\nbuild from source (or use the pre-compiled wheels). To link to a system-installed `libdeflate`, set the\n`LIBDEFLATE_PREFIX` environment variable and build from source:\n\n```\nLIBDEFLATE_PREFIX=/opt/homebrew/Cellar/libdeflate/1.20 pip install deflate --no-binary=deflate\n```\n\nBe warned: you can't use this wheel on a system without the referenced libdeflate.\n\n# Testing\n\n```bash\npip install -r requirements-dev.lock\npython -m pytest\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python wrapper for libdeflate.",
    "version": "0.8.1",
    "project_urls": {
        "Homepage": "https://github.com/dcwatson/deflate"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8014a10461810599f96db2e8603dfd183327cddd5db2ad449afa9766ff7463a0",
                "md5": "e70a283aaad751ffe712a7f9efe30fc8",
                "sha256": "084c4da5825ca7a497519bbdb45a2ea53fca4f418f9cb4140ee656f7615ad975"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e70a283aaad751ffe712a7f9efe30fc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 55205,
            "upload_time": "2025-07-18T12:24:39",
            "upload_time_iso_8601": "2025-07-18T12:24:39.312305Z",
            "url": "https://files.pythonhosted.org/packages/80/14/a10461810599f96db2e8603dfd183327cddd5db2ad449afa9766ff7463a0/deflate-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "91faf072a2de7c9488ce3710cf2edcd11c822c2ab18f00c10121710cdc6b28ba",
                "md5": "54a22ef89ce1cf24eb4aecef1351ca29",
                "sha256": "b1e29c6d67b8758a9a1c5b8829a6acb401bb7e945ecd724b683a326c49abf3d6"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "54a22ef89ce1cf24eb4aecef1351ca29",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 40593,
            "upload_time": "2025-07-18T12:24:40",
            "upload_time_iso_8601": "2025-07-18T12:24:40.586044Z",
            "url": "https://files.pythonhosted.org/packages/91/fa/f072a2de7c9488ce3710cf2edcd11c822c2ab18f00c10121710cdc6b28ba/deflate-0.8.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4cc7a61976e88a178d62aaccdc721e2ac0b887437903b88861f4c6f0385bb29",
                "md5": "b5bc0eeae9f8db65cb0e5c4c085e368f",
                "sha256": "22b9624b9394af53c8982b0c41e930665bdc21ca7c8f418c50dc1a4fc018246c"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b5bc0eeae9f8db65cb0e5c4c085e368f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 50249,
            "upload_time": "2025-07-18T12:24:41",
            "upload_time_iso_8601": "2025-07-18T12:24:41.755553Z",
            "url": "https://files.pythonhosted.org/packages/a4/cc/7a61976e88a178d62aaccdc721e2ac0b887437903b88861f4c6f0385bb29/deflate-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46a8856320102e88d8902181bc85ecea71ebfceffc0253c1513f2f28242f8d45",
                "md5": "ebf0f12abb5ed4c2d10aa4d964026fda",
                "sha256": "cbb8af5029201382298008d47b4c914f0c0837803cd4f7d6fdf3cd695a38cdf6"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebf0f12abb5ed4c2d10aa4d964026fda",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 51824,
            "upload_time": "2025-07-18T12:24:42",
            "upload_time_iso_8601": "2025-07-18T12:24:42.865667Z",
            "url": "https://files.pythonhosted.org/packages/46/a8/856320102e88d8902181bc85ecea71ebfceffc0253c1513f2f28242f8d45/deflate-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab7bbf4281396439469cfd0cf8b59351e755522788de0fa0eda18abc48a93296",
                "md5": "4f3911949de7b365640f0ddba1123569",
                "sha256": "c5bec0154af42a4a584213629c79b437f30ede231a596e595745376b967deb30"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4f3911949de7b365640f0ddba1123569",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 54699,
            "upload_time": "2025-07-18T12:24:43",
            "upload_time_iso_8601": "2025-07-18T12:24:43.656198Z",
            "url": "https://files.pythonhosted.org/packages/ab/7b/bf4281396439469cfd0cf8b59351e755522788de0fa0eda18abc48a93296/deflate-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78ecce32307f094f4cef9ea8b9310ba4f32952a4bdb436f659a4f6916dcb1520",
                "md5": "51a069a81a78306ec1816bdaee00eab5",
                "sha256": "91af4a75cb4603b3abf7221c0213a24a3024f19d5dfecea13271619a223555fe"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "51a069a81a78306ec1816bdaee00eab5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 51346,
            "upload_time": "2025-07-18T12:24:44",
            "upload_time_iso_8601": "2025-07-18T12:24:44.713674Z",
            "url": "https://files.pythonhosted.org/packages/78/ec/ce32307f094f4cef9ea8b9310ba4f32952a4bdb436f659a4f6916dcb1520/deflate-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ad36f968f2534e04d229984a602a7eb0165548f7cd8750a5df35e380397635e",
                "md5": "3b34cdf7e6adcc7029c95fcf4dff0fc9",
                "sha256": "3a047ff5014268c9245bc33480f18b791e1964d7e897866434be9c0756f6cbdd"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3b34cdf7e6adcc7029c95fcf4dff0fc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 57249,
            "upload_time": "2025-07-18T12:24:45",
            "upload_time_iso_8601": "2025-07-18T12:24:45.502222Z",
            "url": "https://files.pythonhosted.org/packages/5a/d3/6f968f2534e04d229984a602a7eb0165548f7cd8750a5df35e380397635e/deflate-0.8.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06f60f4a42263bc56cefb7c0701ff170d6ad9736d8696055ed41c80f50be3d79",
                "md5": "4255af297a765326093f1d574bd5111e",
                "sha256": "7d6aae3e2268bff5d74beeeba713e7d9115de27739ed41295896c2c5ae9fcbac"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4255af297a765326093f1d574bd5111e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 55204,
            "upload_time": "2025-07-18T12:24:46",
            "upload_time_iso_8601": "2025-07-18T12:24:46.627137Z",
            "url": "https://files.pythonhosted.org/packages/06/f6/0f4a42263bc56cefb7c0701ff170d6ad9736d8696055ed41c80f50be3d79/deflate-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8b299db740bcd6903360083ebeadd373edb407ac2f1a9227dcaa6b2ffc03215",
                "md5": "c0336454edeb7ade2a3bffda8c296329",
                "sha256": "19cfd8aac3566c0bb44f2e4d9806d526c93534a7857dd91618f9012e9af56ee8"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "c0336454edeb7ade2a3bffda8c296329",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 44037,
            "upload_time": "2025-07-18T12:24:47",
            "upload_time_iso_8601": "2025-07-18T12:24:47.341577Z",
            "url": "https://files.pythonhosted.org/packages/d8/b2/99db740bcd6903360083ebeadd373edb407ac2f1a9227dcaa6b2ffc03215/deflate-0.8.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "869d191f679a9167419beff167ccda9d730c829892f9a09dfedc74210195153a",
                "md5": "4eee9521af0463f81fb62b2b1d8fc697",
                "sha256": "bea89f4cacd3fe21e93be45fbd0253a329f778d661125ab1c036a99be1882700"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4eee9521af0463f81fb62b2b1d8fc697",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 50051,
            "upload_time": "2025-07-18T12:24:48",
            "upload_time_iso_8601": "2025-07-18T12:24:48.368306Z",
            "url": "https://files.pythonhosted.org/packages/86/9d/191f679a9167419beff167ccda9d730c829892f9a09dfedc74210195153a/deflate-0.8.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "368077c7336deb6f36d110cb718de5cf5dcb97f2aeb48a98cbd61f7bfe1c950f",
                "md5": "b8692145ad80674c2c44f21d4a7d3832",
                "sha256": "42f6fc79e34cda342b7a1b2a28943e7f3cd1312b286b8d847a3608169193f781"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8692145ad80674c2c44f21d4a7d3832",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 55160,
            "upload_time": "2025-07-18T12:24:49",
            "upload_time_iso_8601": "2025-07-18T12:24:49.389976Z",
            "url": "https://files.pythonhosted.org/packages/36/80/77c7336deb6f36d110cb718de5cf5dcb97f2aeb48a98cbd61f7bfe1c950f/deflate-0.8.1-cp311-abi3-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d8a451f1c7cd1d517441c5df6c44726a3fc121b2983800a40e282259f4fdf84",
                "md5": "6811b2f6b8f3c745399ac62f0548e258",
                "sha256": "874382ead84be558e70bf4b5ebc6ce9d7ac2abdb2bd6830407dcb634bb5539ae"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6811b2f6b8f3c745399ac62f0548e258",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 40534,
            "upload_time": "2025-07-18T12:24:50",
            "upload_time_iso_8601": "2025-07-18T12:24:50.820125Z",
            "url": "https://files.pythonhosted.org/packages/9d/8a/451f1c7cd1d517441c5df6c44726a3fc121b2983800a40e282259f4fdf84/deflate-0.8.1-cp311-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca16e985b65ad1b290e592546137a0505c9df0329c5a12691d47b119b942a4f0",
                "md5": "3afed3432754b7b16ffa3001c011fbfb",
                "sha256": "ba5c8676f402480a290b61a8051953c8bbab85983b03e56cbfc7b1708bb6776c"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3afed3432754b7b16ffa3001c011fbfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 50176,
            "upload_time": "2025-07-18T12:24:51",
            "upload_time_iso_8601": "2025-07-18T12:24:51.539793Z",
            "url": "https://files.pythonhosted.org/packages/ca/16/e985b65ad1b290e592546137a0505c9df0329c5a12691d47b119b942a4f0/deflate-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de4ab795ccf23430801970e606215cec0074030b37154918d3b5f54efc48437d",
                "md5": "c2e381a7a92705742bdca790ae07963f",
                "sha256": "d0bf846e44f84d93ae99dc7bd4b71176f2abf0fd4f3baddbfc164387963763b6"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2e381a7a92705742bdca790ae07963f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 51757,
            "upload_time": "2025-07-18T12:24:52",
            "upload_time_iso_8601": "2025-07-18T12:24:52.263655Z",
            "url": "https://files.pythonhosted.org/packages/de/4a/b795ccf23430801970e606215cec0074030b37154918d3b5f54efc48437d/deflate-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a0d78349c64b3ba45d3593f04a97bd541af77863c6b401821588a107729b5f2",
                "md5": "5578407752b7b7628f113a29542cf4b1",
                "sha256": "cc65690c9e24ed491a856dd20cea27d00f5a818add19952c7bf10743d94a0dbd"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5578407752b7b7628f113a29542cf4b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 54632,
            "upload_time": "2025-07-18T12:24:53",
            "upload_time_iso_8601": "2025-07-18T12:24:53.451511Z",
            "url": "https://files.pythonhosted.org/packages/7a/0d/78349c64b3ba45d3593f04a97bd541af77863c6b401821588a107729b5f2/deflate-0.8.1-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adc6d9bab3858c6a20bda9500a75f31c04d7bb2e79a3d99c5ff107f0677e969f",
                "md5": "dd4579d47d6df4ec3a0437c093401939",
                "sha256": "5773f52faf63e3ab5fc47556a35335afb029bc7a020bac728af744764760aef3"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dd4579d47d6df4ec3a0437c093401939",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 51272,
            "upload_time": "2025-07-18T12:24:54",
            "upload_time_iso_8601": "2025-07-18T12:24:54.215392Z",
            "url": "https://files.pythonhosted.org/packages/ad/c6/d9bab3858c6a20bda9500a75f31c04d7bb2e79a3d99c5ff107f0677e969f/deflate-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4e2f368c86186bd5eec61762672cc622f463b6a188f9684ee7cd99396f8bb98",
                "md5": "98de62a1191e0a568f79c986dcc85f0f",
                "sha256": "319a376f4b49fd40578be54dcd9a2d056631c1fec1dc5ddba1c4363e5f2a55e2"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "98de62a1191e0a568f79c986dcc85f0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 57182,
            "upload_time": "2025-07-18T12:24:54",
            "upload_time_iso_8601": "2025-07-18T12:24:54.989291Z",
            "url": "https://files.pythonhosted.org/packages/b4/e2/f368c86186bd5eec61762672cc622f463b6a188f9684ee7cd99396f8bb98/deflate-0.8.1-cp311-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9a2abb8e08e47389e1a0bf95f41027b637021c63c1431a110d38b95eff9ea5d",
                "md5": "d569c1eb3338e8ab8af834f9067981f5",
                "sha256": "dc36ef9bb0a87145fadfa1e2392e1bf1bdb29cbc8ce0a720b2ce1fce2084dd0b"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d569c1eb3338e8ab8af834f9067981f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 55133,
            "upload_time": "2025-07-18T12:24:55",
            "upload_time_iso_8601": "2025-07-18T12:24:55.682384Z",
            "url": "https://files.pythonhosted.org/packages/e9/a2/abb8e08e47389e1a0bf95f41027b637021c63c1431a110d38b95eff9ea5d/deflate-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e896b3d1adb1fdb05b7d86861b97ec4acdb1ae4ee353bdb366a050961ac7e67",
                "md5": "bb9c8350ac268670669e4fc331509bcc",
                "sha256": "2846ebc94eafffa62ee0405eaa1786e841ca20cf7115dfcc23d255323c3e2a50"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "bb9c8350ac268670669e4fc331509bcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 43987,
            "upload_time": "2025-07-18T12:24:56",
            "upload_time_iso_8601": "2025-07-18T12:24:56.400393Z",
            "url": "https://files.pythonhosted.org/packages/4e/89/6b3d1adb1fdb05b7d86861b97ec4acdb1ae4ee353bdb366a050961ac7e67/deflate-0.8.1-cp311-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87f4ec4a84faad8c932c0aa32d49bb29e345cf240f7024adbd0154006da517af",
                "md5": "12807fbe5fc83f12e457ea73b81b5c0b",
                "sha256": "4e82a4373a8c38fc5d92ac57685c8fdee538fe1d244197cece8db5b24ff74f80"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp311-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "12807fbe5fc83f12e457ea73b81b5c0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 49977,
            "upload_time": "2025-07-18T12:24:57",
            "upload_time_iso_8601": "2025-07-18T12:24:57.106079Z",
            "url": "https://files.pythonhosted.org/packages/87/f4/ec4a84faad8c932c0aa32d49bb29e345cf240f7024adbd0154006da517af/deflate-0.8.1-cp311-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd4920d8bbcf5b6d379816a26bb693ff487119c136b1a8d1a87eca47a358bf3e",
                "md5": "388ea3495b27d81dfe2a2d1927c27944",
                "sha256": "800824282f541acfb736c14960c7093c430fe1d5155859a5621292ea0bf017a1"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "388ea3495b27d81dfe2a2d1927c27944",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 55202,
            "upload_time": "2025-07-18T12:24:58",
            "upload_time_iso_8601": "2025-07-18T12:24:58.506330Z",
            "url": "https://files.pythonhosted.org/packages/dd/49/20d8bbcf5b6d379816a26bb693ff487119c136b1a8d1a87eca47a358bf3e/deflate-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf6dd9cab7c292053e2ac2707b12c8c92438f36da2bda385999503f0f2e62efd",
                "md5": "638bcc1683bdd572b92294202448044c",
                "sha256": "248a7455a5f4be6d16ab4ee01b7d4c6154aedc76ee6810dcf1f30fb7facd08eb"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "638bcc1683bdd572b92294202448044c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 40586,
            "upload_time": "2025-07-18T12:24:59",
            "upload_time_iso_8601": "2025-07-18T12:24:59.359259Z",
            "url": "https://files.pythonhosted.org/packages/bf/6d/d9cab7c292053e2ac2707b12c8c92438f36da2bda385999503f0f2e62efd/deflate-0.8.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70032e2fa076f8ec47a0b5c5e459b18291faea9827ef0ef55d62337e59741dbb",
                "md5": "588d2cb346891b0d86fc58bb4e33f88f",
                "sha256": "50a3ef1a4363ae5a0e6ce4792d014dccc058e38c008bfdfe46a19f2341250a59"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "588d2cb346891b0d86fc58bb4e33f88f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 50244,
            "upload_time": "2025-07-18T12:25:00",
            "upload_time_iso_8601": "2025-07-18T12:25:00.081630Z",
            "url": "https://files.pythonhosted.org/packages/70/03/2e2fa076f8ec47a0b5c5e459b18291faea9827ef0ef55d62337e59741dbb/deflate-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "496eb6c7d71977ffe2c6a652c61204aa2ef8fa661d5af4a9d339d6ea40d95f59",
                "md5": "836e6a08c2cd8e688cad98fc9ec619e7",
                "sha256": "cbf3f1bde8de7b7b292552d199ee75cc18c2ff5859cbb56f3f0de3459bf6d60a"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "836e6a08c2cd8e688cad98fc9ec619e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 51821,
            "upload_time": "2025-07-18T12:25:00",
            "upload_time_iso_8601": "2025-07-18T12:25:00.913129Z",
            "url": "https://files.pythonhosted.org/packages/49/6e/b6c7d71977ffe2c6a652c61204aa2ef8fa661d5af4a9d339d6ea40d95f59/deflate-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf06f1202c3be1259082631afe93708cd4bb27edf7e225eafe5b5c7390ef736c",
                "md5": "97cdf232f82332320e2ff5126a8a752f",
                "sha256": "9d7c684fdeaa633a8e2219aa9a632f8cbeff42c14e4ea3827b5ed39a2e45fd18"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "97cdf232f82332320e2ff5126a8a752f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 54697,
            "upload_time": "2025-07-18T12:25:01",
            "upload_time_iso_8601": "2025-07-18T12:25:01.689568Z",
            "url": "https://files.pythonhosted.org/packages/cf/06/f1202c3be1259082631afe93708cd4bb27edf7e225eafe5b5c7390ef736c/deflate-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0d44a417c195fa07c9ba3a5c1793553be8c0addede4928101cb272b26ba8b24",
                "md5": "145ab7d4c7e9f8ce50f410b3e2951d83",
                "sha256": "ce01abbd82728f324ef52ab1bfeb3981fe93432df1fdc8dd3e62d64a1d1150ca"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "145ab7d4c7e9f8ce50f410b3e2951d83",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 51342,
            "upload_time": "2025-07-18T12:25:02",
            "upload_time_iso_8601": "2025-07-18T12:25:02.502518Z",
            "url": "https://files.pythonhosted.org/packages/f0/d4/4a417c195fa07c9ba3a5c1793553be8c0addede4928101cb272b26ba8b24/deflate-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04a9a6f0b045e3c33446e508bcd7367fe8cce1b017819acf88b0253b89d30be1",
                "md5": "2bef0a95281b730638f9e1f37436782d",
                "sha256": "913089fb87855bac68c09da791d3c619a9cd675db590ce1aa87715faebb6a43d"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2bef0a95281b730638f9e1f37436782d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 57246,
            "upload_time": "2025-07-18T12:25:03",
            "upload_time_iso_8601": "2025-07-18T12:25:03.625641Z",
            "url": "https://files.pythonhosted.org/packages/04/a9/a6f0b045e3c33446e508bcd7367fe8cce1b017819acf88b0253b89d30be1/deflate-0.8.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6b78fab02292f9342474147ee64d6984b7a4d7ddf08918ca1f9dbffd5055678",
                "md5": "1096e3c20b25cb6a6bf888fc01e290e9",
                "sha256": "a30f2c06418204bbe9ef605924c6aaf01b253303676fe2705c725ed24606ddfd"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1096e3c20b25cb6a6bf888fc01e290e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 55200,
            "upload_time": "2025-07-18T12:25:04",
            "upload_time_iso_8601": "2025-07-18T12:25:04.754352Z",
            "url": "https://files.pythonhosted.org/packages/f6/b7/8fab02292f9342474147ee64d6984b7a4d7ddf08918ca1f9dbffd5055678/deflate-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe4014fe791871ef0719860c19af8c23a5cc3dec815e20cd0b9ec0ad6f4e8d85",
                "md5": "44eb1ff5fa930576643990b65950658e",
                "sha256": "2f3d807aec77c1c1045511aa81d4b26175931a37e04a5ffd683bb355778961e1"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "44eb1ff5fa930576643990b65950658e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 44032,
            "upload_time": "2025-07-18T12:25:05",
            "upload_time_iso_8601": "2025-07-18T12:25:05.850908Z",
            "url": "https://files.pythonhosted.org/packages/fe/40/14fe791871ef0719860c19af8c23a5cc3dec815e20cd0b9ec0ad6f4e8d85/deflate-0.8.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8817a486a2cd75ec452516a776ec1185d73dc147804812357e74966ddaa255b6",
                "md5": "4b97ec5be9425c08b4142d8f359340f3",
                "sha256": "28c6110fcdc616bd85f601edf54c9e7547ee77e8a3f3758f45453a386bfeedc7"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4b97ec5be9425c08b4142d8f359340f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 50051,
            "upload_time": "2025-07-18T12:25:07",
            "upload_time_iso_8601": "2025-07-18T12:25:07.106284Z",
            "url": "https://files.pythonhosted.org/packages/88/17/a486a2cd75ec452516a776ec1185d73dc147804812357e74966ddaa255b6/deflate-0.8.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ff54bce17d2f1dfa283d7f1a22acefa962bb7f17d6c137b3ca803f57a1da730",
                "md5": "12066123cdf1c1aa5b95e62c17e74492",
                "sha256": "d92492ffb25324ad7190d8e8417177a8224804f70f1d9b310cd49c84a247d26e"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12066123cdf1c1aa5b95e62c17e74492",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 54849,
            "upload_time": "2025-07-18T12:25:08",
            "upload_time_iso_8601": "2025-07-18T12:25:08.141494Z",
            "url": "https://files.pythonhosted.org/packages/8f/f5/4bce17d2f1dfa283d7f1a22acefa962bb7f17d6c137b3ca803f57a1da730/deflate-0.8.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec19d8385987d69b12d2169af9686cddb62a09b48b9db6a8846f9040d9f23e5d",
                "md5": "8a83aa6931627d84bb63f20dded68bcf",
                "sha256": "2b1d3ddf2f9068576e4e2e7daaf3d94a4a36c987c18997909b930bf9fe7bcacc"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8a83aa6931627d84bb63f20dded68bcf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 40596,
            "upload_time": "2025-07-18T12:25:08",
            "upload_time_iso_8601": "2025-07-18T12:25:08.859410Z",
            "url": "https://files.pythonhosted.org/packages/ec/19/d8385987d69b12d2169af9686cddb62a09b48b9db6a8846f9040d9f23e5d/deflate-0.8.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26eef3e3eba1e8cbd47e075628a7e55dce310f5d4b1ec6edb8b1322a23656e9b",
                "md5": "256fff250f5b0241370df78f73ea8693",
                "sha256": "acd214d60829f0b60e96bc0edc2d9f66343217ddf5266e5abc199956dc1e9c19"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "256fff250f5b0241370df78f73ea8693",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 50289,
            "upload_time": "2025-07-18T12:25:09",
            "upload_time_iso_8601": "2025-07-18T12:25:09.592434Z",
            "url": "https://files.pythonhosted.org/packages/26/ee/f3e3eba1e8cbd47e075628a7e55dce310f5d4b1ec6edb8b1322a23656e9b/deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bf447665a145372718c388d46f63b3bba313557cad1cabc4a4796f94d2044bd",
                "md5": "9061db3b38a2c37847694340e7695f73",
                "sha256": "2a5f8f421f13a053a99ae96e7b99c7df05e5ad9befc8e8943d25ca30252cb000"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9061db3b38a2c37847694340e7695f73",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 51865,
            "upload_time": "2025-07-18T12:25:10",
            "upload_time_iso_8601": "2025-07-18T12:25:10.325993Z",
            "url": "https://files.pythonhosted.org/packages/2b/f4/47665a145372718c388d46f63b3bba313557cad1cabc4a4796f94d2044bd/deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f8e9dc19a1b83d4172c40c9dff9402e37ea4286944b8329eacb43f0ced7d109",
                "md5": "0a35e46b86d0f4e83aea466fb808302c",
                "sha256": "3574ced95a23dcf5cc9db5b7563fa776fac44cda3e2b38942b0f08fcef324809"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0a35e46b86d0f4e83aea466fb808302c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 54765,
            "upload_time": "2025-07-18T12:25:11",
            "upload_time_iso_8601": "2025-07-18T12:25:11.019788Z",
            "url": "https://files.pythonhosted.org/packages/2f/8e/9dc19a1b83d4172c40c9dff9402e37ea4286944b8329eacb43f0ced7d109/deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49ad2cd0ff3c32016137410199a2e78da639789add1da57885c60e91b44879e9",
                "md5": "7adb29a6e32d8bdfabfd212f4355bb93",
                "sha256": "350c247238eb806b5f091aa15cb84298bf8adb740a64d4e07da752317a1653a7"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7adb29a6e32d8bdfabfd212f4355bb93",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.9",
            "size": 50168,
            "upload_time": "2025-07-18T12:25:11",
            "upload_time_iso_8601": "2025-07-18T12:25:11.822977Z",
            "url": "https://files.pythonhosted.org/packages/49/ad/2cd0ff3c32016137410199a2e78da639789add1da57885c60e91b44879e9/deflate-0.8.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ea557d22ef8b2ddc32290097442722bfa2fc69061b8c1354150026e31279712",
                "md5": "e8727f172baef014cb022a767fa4ac47",
                "sha256": "a46fcc7450930aa3a46e8a3a2555ea3eef10ad8aaf7af7d65754e592c435adef"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8727f172baef014cb022a767fa4ac47",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 54851,
            "upload_time": "2025-07-18T12:25:12",
            "upload_time_iso_8601": "2025-07-18T12:25:12.533884Z",
            "url": "https://files.pythonhosted.org/packages/6e/a5/57d22ef8b2ddc32290097442722bfa2fc69061b8c1354150026e31279712/deflate-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7353ba79cc151838bc45de61c08693e2d5b2b477859df3854bdf3d641722e9c9",
                "md5": "036a5c3b9c28ddfba188a55fc84be8c7",
                "sha256": "4f9a3b1c585b5bc3b0c6060d7b050353b394599133238d980bf36f5f45c5f9aa"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "036a5c3b9c28ddfba188a55fc84be8c7",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 40596,
            "upload_time": "2025-07-18T12:25:13",
            "upload_time_iso_8601": "2025-07-18T12:25:13.354548Z",
            "url": "https://files.pythonhosted.org/packages/73/53/ba79cc151838bc45de61c08693e2d5b2b477859df3854bdf3d641722e9c9/deflate-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "152ef6e2db74896cd5253a4dd08e2822f4e71ce75ab13e40e48d331da78cee3c",
                "md5": "237d27c75ad4da642904898238362dc6",
                "sha256": "799ab54aeddd7fe6d70d168cd5b57560d102bf992f2bccd7a5909fd41f285f32"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "237d27c75ad4da642904898238362dc6",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 50293,
            "upload_time": "2025-07-18T12:25:14",
            "upload_time_iso_8601": "2025-07-18T12:25:14.066448Z",
            "url": "https://files.pythonhosted.org/packages/15/2e/f6e2db74896cd5253a4dd08e2822f4e71ce75ab13e40e48d331da78cee3c/deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "949b74aac4f62e24dab9df907f0299049f5bac36bf47321ac33040e5e9359cff",
                "md5": "b03706bd9a3a1d03932c14b4fbd4d023",
                "sha256": "635d4e6112ff1726accd64fe3bc9d55a2b520af4f2df60955659651f562fc02c"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b03706bd9a3a1d03932c14b4fbd4d023",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 51859,
            "upload_time": "2025-07-18T12:25:14",
            "upload_time_iso_8601": "2025-07-18T12:25:14.822313Z",
            "url": "https://files.pythonhosted.org/packages/94/9b/74aac4f62e24dab9df907f0299049f5bac36bf47321ac33040e5e9359cff/deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c6e44af2655f2b0564c74518c4a52a6eb53aaf194e9dbd35ed6af817d939fb3",
                "md5": "4bca2eeca603a693f6f8a9f3cb4131ac",
                "sha256": "dba1b76a3e47e997367cc3c3b243b56b9335202e633c8990695ad18ab9d7b5f6"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4bca2eeca603a693f6f8a9f3cb4131ac",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 54766,
            "upload_time": "2025-07-18T12:25:15",
            "upload_time_iso_8601": "2025-07-18T12:25:15.529841Z",
            "url": "https://files.pythonhosted.org/packages/2c/6e/44af2655f2b0564c74518c4a52a6eb53aaf194e9dbd35ed6af817d939fb3/deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "442d2b7c0605f964a5608a2ff2500055882cb899d077012d7a2fb9f180559d83",
                "md5": "232e2b1afc4c80723576f0f17b193098",
                "sha256": "dea02536a4786fa32f0a109d2ec758694304222ce2c94dfea0094e53f016b38e"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp311-pypy311_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "232e2b1afc4c80723576f0f17b193098",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": ">=3.9",
            "size": 50163,
            "upload_time": "2025-07-18T12:25:16",
            "upload_time_iso_8601": "2025-07-18T12:25:16.400651Z",
            "url": "https://files.pythonhosted.org/packages/44/2d/2b7c0605f964a5608a2ff2500055882cb899d077012d7a2fb9f180559d83/deflate-0.8.1-pp311-pypy311_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b1e5d73c67e76e5abf38e565247aa8a12eb9b702c90a378b0eec593a3ff14f5",
                "md5": "5a78d0b01e9c01dc6fc8908f5c1db4a3",
                "sha256": "3c87c514fd32cb04600de2fe9ec8003d37db6fa50d628b7b169a7bfba2670697"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a78d0b01e9c01dc6fc8908f5c1db4a3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 54844,
            "upload_time": "2025-07-18T12:25:17",
            "upload_time_iso_8601": "2025-07-18T12:25:17.850601Z",
            "url": "https://files.pythonhosted.org/packages/5b/1e/5d73c67e76e5abf38e565247aa8a12eb9b702c90a378b0eec593a3ff14f5/deflate-0.8.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "129f5dcd99ae8eab1945819efe5bce397f2cb1900db74a67a60119eca3b18b4a",
                "md5": "76bce5d67440bfa5e133ea0dd5c73f3b",
                "sha256": "0eef28c2a75cfa7a55332f4fe5d0307009c63e2a700e0014611b609040578e1e"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "76bce5d67440bfa5e133ea0dd5c73f3b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 40592,
            "upload_time": "2025-07-18T12:25:18",
            "upload_time_iso_8601": "2025-07-18T12:25:18.937745Z",
            "url": "https://files.pythonhosted.org/packages/12/9f/5dcd99ae8eab1945819efe5bce397f2cb1900db74a67a60119eca3b18b4a/deflate-0.8.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8341b2bd8ae2708b7c6bee4333312b3db0b85ef73e7541b483887092969edb53",
                "md5": "88dfb4b6b7956f2e3fee365f0493ef9b",
                "sha256": "01d71ca47b4f9cecee3c68bf25dcce5e556d97373074214f9b9953d69bd8c4a5"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "88dfb4b6b7956f2e3fee365f0493ef9b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 50284,
            "upload_time": "2025-07-18T12:25:19",
            "upload_time_iso_8601": "2025-07-18T12:25:19.698487Z",
            "url": "https://files.pythonhosted.org/packages/83/41/b2bd8ae2708b7c6bee4333312b3db0b85ef73e7541b483887092969edb53/deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98f430941e478205409600a277c9b1bf0611c64de2e1d77b7fd1f1e6b330bc0e",
                "md5": "6b83dda38aa1e6c7a8dd5a420ad6c0cc",
                "sha256": "f4f83c74be7fb7b0524956122d98e71b79c23428421ae489c50a3ff28b266390"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b83dda38aa1e6c7a8dd5a420ad6c0cc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 51858,
            "upload_time": "2025-07-18T12:25:20",
            "upload_time_iso_8601": "2025-07-18T12:25:20.521144Z",
            "url": "https://files.pythonhosted.org/packages/98/f4/30941e478205409600a277c9b1bf0611c64de2e1d77b7fd1f1e6b330bc0e/deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53634f2611f376e9554244d98ab7ef417ca237349e832a49d2640c152ff66a1e",
                "md5": "30fd128672f422b75f1521340b7232f1",
                "sha256": "4d691a68af3110171d00ab938d3ce96e67ba6cd01fd7affe9a9ace238f183d7e"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "30fd128672f422b75f1521340b7232f1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 54759,
            "upload_time": "2025-07-18T12:25:21",
            "upload_time_iso_8601": "2025-07-18T12:25:21.341174Z",
            "url": "https://files.pythonhosted.org/packages/53/63/4f2611f376e9554244d98ab7ef417ca237349e832a49d2640c152ff66a1e/deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de96fa8670cdad6e64a3ee283280704c19df6dfa740ef79f50d9a5388f23dda0",
                "md5": "917f75b89c001439b8f7d6a759c62910",
                "sha256": "c4a006268d053efef11c464c1804f925b93fb1cfe54aa009e0997998a86ed606"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "917f75b89c001439b8f7d6a759c62910",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.9",
            "size": 50164,
            "upload_time": "2025-07-18T12:25:22",
            "upload_time_iso_8601": "2025-07-18T12:25:22.561873Z",
            "url": "https://files.pythonhosted.org/packages/de/96/fa8670cdad6e64a3ee283280704c19df6dfa740ef79f50d9a5388f23dda0/deflate-0.8.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25f54999436aed92db2ce6f2a78d494fd82e72b028c97d9ef64bd6ff127570ef",
                "md5": "8c12b87e8d9896323aa11a2a96650040",
                "sha256": "1bba0e70d3885f5135f00c17a42aef98d9dc817daf9a56df7dcc92174f4d2cda"
            },
            "downloads": -1,
            "filename": "deflate-0.8.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8c12b87e8d9896323aa11a2a96650040",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 217643,
            "upload_time": "2025-07-18T12:25:23",
            "upload_time_iso_8601": "2025-07-18T12:25:23.660401Z",
            "url": "https://files.pythonhosted.org/packages/25/f5/4999436aed92db2ce6f2a78d494fd82e72b028c97d9ef64bd6ff127570ef/deflate-0.8.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-18 12:25:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "dcwatson",
    "github_project": "deflate",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "deflate"
}
        
Elapsed time: 2.58387s