deflate


Namedeflate JSON
Version 0.7.0 PyPI version JSON
download
home_pageNone
SummaryPython wrapper for libdeflate.
upload_time2024-05-09 18:48:46
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
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

`pip install deflate`

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

```
LIBDEFLATE_PREFIX=/opt/homebrew/Cellar/libdeflate/1.20 python -m build
```

# Testing

```
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.8",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Dan Watson <dcwatson@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/7e/47/b86dcaffc1010a728495fafc97f38b665c806fecb34f2ae43da94413725d/deflate-0.7.0.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`pip install deflate`\n\nBy default, `deflate` will compile and statically link the bundled `libdeflate` when you\nbuild from source. To link to a system-installed `libdeflate`, set the\n`LIBDEFLATE_PREFIX` environment variable:\n\n```\nLIBDEFLATE_PREFIX=/opt/homebrew/Cellar/libdeflate/1.20 python -m build\n```\n\n# Testing\n\n```\npip install -r requirements-dev.lock\npython -m pytest\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python wrapper for libdeflate.",
    "version": "0.7.0",
    "project_urls": {
        "Homepage": "https://github.com/dcwatson/deflate"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4903dd4b1ba876bae55f6357e754e3c800b7cf110ab56dbf35850b938c144c7",
                "md5": "de7ac97a995702b8e59a086b221284a2",
                "sha256": "cc3dc3be209fdd795d0457011cc1fb9bbf03d86f9a31777a949bde103f103ce5"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de7ac97a995702b8e59a086b221284a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 54158,
            "upload_time": "2024-05-09T18:48:38",
            "upload_time_iso_8601": "2024-05-09T18:48:38.619809Z",
            "url": "https://files.pythonhosted.org/packages/d4/90/3dd4b1ba876bae55f6357e754e3c800b7cf110ab56dbf35850b938c144c7/deflate-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "146eaaec4a4164fb73696bc8dd1cb86c3e3dbad886d838d08984e587d4bb9757",
                "md5": "c16d00b6cbe2097bb9b29900ca0bf0b9",
                "sha256": "ccc09c18ccc14d4ecee9232d79e51ff139f03fb730677de6441ed56fd029ef34"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c16d00b6cbe2097bb9b29900ca0bf0b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 39196,
            "upload_time": "2024-05-09T18:48:01",
            "upload_time_iso_8601": "2024-05-09T18:48:01.431968Z",
            "url": "https://files.pythonhosted.org/packages/14/6e/aaec4a4164fb73696bc8dd1cb86c3e3dbad886d838d08984e587d4bb9757/deflate-0.7.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "382e8ce6640145d986ef723a22787ca15c4123e6c8648e1093bc6c2dab6844c8",
                "md5": "30653d9c0b5c512485fe5753cd45a182",
                "sha256": "07c68ec5a40f067f743184c9b4af7d77a980d34682ca7ed6603b60f751203536"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30653d9c0b5c512485fe5753cd45a182",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 50652,
            "upload_time": "2024-05-09T18:48:34",
            "upload_time_iso_8601": "2024-05-09T18:48:34.258011Z",
            "url": "https://files.pythonhosted.org/packages/38/2e/8ce6640145d986ef723a22787ca15c4123e6c8648e1093bc6c2dab6844c8/deflate-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d35883cb765320e7b48e9f130a7ec093321363a994f3ea16317d3f774bb13d2",
                "md5": "bea62e402f6a3b2eaa30c195764a12af",
                "sha256": "b630363ca9abd9a611173e14ad0821decf13a6aafbe4e256cdc3dc6d6bacba35"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bea62e402f6a3b2eaa30c195764a12af",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 53476,
            "upload_time": "2024-05-09T18:48:02",
            "upload_time_iso_8601": "2024-05-09T18:48:02.531516Z",
            "url": "https://files.pythonhosted.org/packages/1d/35/883cb765320e7b48e9f130a7ec093321363a994f3ea16317d3f774bb13d2/deflate-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d242ba045b49b890dc026bacbe696fb6018273fa566b54b93fa02e9cdef6d370",
                "md5": "88e9ce467101e5430fb51493592e2ac5",
                "sha256": "4a521655976e70c893f4c8bd31d40239c2d3317e18395dee048160688b81390f"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "88e9ce467101e5430fb51493592e2ac5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 53428,
            "upload_time": "2024-05-09T18:48:18",
            "upload_time_iso_8601": "2024-05-09T18:48:18.761116Z",
            "url": "https://files.pythonhosted.org/packages/d2/42/ba045b49b890dc026bacbe696fb6018273fa566b54b93fa02e9cdef6d370/deflate-0.7.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e127c2a0ef5a54c1eb83d843441ef74f4dc517c070c6dcfa3c18045506cec25c",
                "md5": "f9f12a45f894499b6e966357b9095f28",
                "sha256": "d3bdcbd45cf531f9c6012e2b5111e8a234fafdc12f5ac95851a2b8a0ec3433f8"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9f12a45f894499b6e966357b9095f28",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 50825,
            "upload_time": "2024-05-09T18:48:43",
            "upload_time_iso_8601": "2024-05-09T18:48:43.915461Z",
            "url": "https://files.pythonhosted.org/packages/e1/27/c2a0ef5a54c1eb83d843441ef74f4dc517c070c6dcfa3c18045506cec25c/deflate-0.7.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "348b8c3da116aa545555ae7a1c7a4ef3c811f6f3abb015bede8c7b629419a972",
                "md5": "a5ed873c7213cfc10713532659a30e95",
                "sha256": "5beb23b987ae21e2561e420a0bc19e99487ca13b0a80098bcf20c95ba37cb4e5"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "a5ed873c7213cfc10713532659a30e95",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 43048,
            "upload_time": "2024-05-09T18:48:21",
            "upload_time_iso_8601": "2024-05-09T18:48:21.642701Z",
            "url": "https://files.pythonhosted.org/packages/34/8b/8c3da116aa545555ae7a1c7a4ef3c811f6f3abb015bede8c7b629419a972/deflate-0.7.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "761ed4e73626979211c3a86a1b3061119d45eb3e11525c6761b1fde2f56ffc60",
                "md5": "0926bdf3b4353ec3ac046c63efdacde3",
                "sha256": "6039a6bf37fdfcca84acee5f8ddbdb6dca3f009f69e4aeea7400d5f254954719"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0926bdf3b4353ec3ac046c63efdacde3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 49485,
            "upload_time": "2024-05-09T18:48:25",
            "upload_time_iso_8601": "2024-05-09T18:48:25.258369Z",
            "url": "https://files.pythonhosted.org/packages/76/1e/d4e73626979211c3a86a1b3061119d45eb3e11525c6761b1fde2f56ffc60/deflate-0.7.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed8608221987382d98305365bcc26df07479cae8d67584f926d7e48808e6e97c",
                "md5": "1bdf9553bee7870089321eb482bf8a72",
                "sha256": "c86314cfa96e1e898b4946b48081aa1230664519318aaadd65731ab3d8979af9"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1bdf9553bee7870089321eb482bf8a72",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 54160,
            "upload_time": "2024-05-09T18:48:12",
            "upload_time_iso_8601": "2024-05-09T18:48:12.366194Z",
            "url": "https://files.pythonhosted.org/packages/ed/86/08221987382d98305365bcc26df07479cae8d67584f926d7e48808e6e97c/deflate-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1686ba60d33565ca77fda37fcc2b0905ed0d8b7263ff0a1fee3472a6f47253e8",
                "md5": "7ef7cc4a5582d2a6b5b21da8ec6c811e",
                "sha256": "cbb2053fda99ee760f50ac5d16281dd1da174e6cabff043f1f7566446484d62d"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7ef7cc4a5582d2a6b5b21da8ec6c811e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 39197,
            "upload_time": "2024-05-09T18:48:37",
            "upload_time_iso_8601": "2024-05-09T18:48:37.696550Z",
            "url": "https://files.pythonhosted.org/packages/16/86/ba60d33565ca77fda37fcc2b0905ed0d8b7263ff0a1fee3472a6f47253e8/deflate-0.7.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f33982f1105bd5d3c4067d37dba399bb851544a1e115e1e1daa9a5cfb1a727d",
                "md5": "6bb040819f8f0287699d432fd180684a",
                "sha256": "dc80e18459a3d578b86e1f121128ad1e2a81e847fe357beb00c2de1c0753791b"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6bb040819f8f0287699d432fd180684a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 50654,
            "upload_time": "2024-05-09T18:48:41",
            "upload_time_iso_8601": "2024-05-09T18:48:41.994363Z",
            "url": "https://files.pythonhosted.org/packages/3f/33/982f1105bd5d3c4067d37dba399bb851544a1e115e1e1daa9a5cfb1a727d/deflate-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6ad37860f47cca74faae86dddb7bd43eadf4f80c2878a25727991d2c5bc74ae",
                "md5": "8a4d02644a47862d51d5ff6cc13b76dc",
                "sha256": "7f3e64c2acb85c6501864e07992ea045b306a676f1c8117abae2c9420c0514e3"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8a4d02644a47862d51d5ff6cc13b76dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 53475,
            "upload_time": "2024-05-09T18:48:20",
            "upload_time_iso_8601": "2024-05-09T18:48:20.668845Z",
            "url": "https://files.pythonhosted.org/packages/d6/ad/37860f47cca74faae86dddb7bd43eadf4f80c2878a25727991d2c5bc74ae/deflate-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58430597cae045f678f85f49226bcb548b1fb694e1a543a8066e4b6c8a95d1ca",
                "md5": "bdde5c9438d0abfbd5b9918fd89f8538",
                "sha256": "7ed5ba096877aafdc3c667ff35ee6f63ca9ff5ba70459c925f53a99b32fd0783"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "bdde5c9438d0abfbd5b9918fd89f8538",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 53428,
            "upload_time": "2024-05-09T18:47:58",
            "upload_time_iso_8601": "2024-05-09T18:47:58.402209Z",
            "url": "https://files.pythonhosted.org/packages/58/43/0597cae045f678f85f49226bcb548b1fb694e1a543a8066e4b6c8a95d1ca/deflate-0.7.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16b27842a98aadd265babf0bf3036a314306a51080a1c45fe57767ac6d2b32ac",
                "md5": "074c3296ed3bce3765e9c6358bbceaba",
                "sha256": "8c4d343112c22e84d428cd65752729f08aad0394d16f755a841aadb7e65c01da"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "074c3296ed3bce3765e9c6358bbceaba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 50824,
            "upload_time": "2024-05-09T18:48:36",
            "upload_time_iso_8601": "2024-05-09T18:48:36.712394Z",
            "url": "https://files.pythonhosted.org/packages/16/b2/7842a98aadd265babf0bf3036a314306a51080a1c45fe57767ac6d2b32ac/deflate-0.7.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8cec5c47e5cce1f9cc755d63cb22f6e036b110c8e535c00ec1ad1e343652ebbc",
                "md5": "33698eedbb004b40dacc0d0459b67bb2",
                "sha256": "e52f632e23be1dbaae76da7ef50dd4d556bb48a1b9cded2242ed5d1bb5feefbe"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "33698eedbb004b40dacc0d0459b67bb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 43054,
            "upload_time": "2024-05-09T18:48:15",
            "upload_time_iso_8601": "2024-05-09T18:48:15.523681Z",
            "url": "https://files.pythonhosted.org/packages/8c/ec/5c47e5cce1f9cc755d63cb22f6e036b110c8e535c00ec1ad1e343652ebbc/deflate-0.7.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef64bd264433386fc7cd8f54c377ba6e4fbc91e9ba1df3de9d7dd513ec90af18",
                "md5": "6472a7dc724840a2c914cd609b9a3685",
                "sha256": "0cad885fae8d26625e67f415b9e2a6fb769ba84588eeef223eb63365271ddaf2"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6472a7dc724840a2c914cd609b9a3685",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 49494,
            "upload_time": "2024-05-09T18:48:04",
            "upload_time_iso_8601": "2024-05-09T18:48:04.313998Z",
            "url": "https://files.pythonhosted.org/packages/ef/64/bd264433386fc7cd8f54c377ba6e4fbc91e9ba1df3de9d7dd513ec90af18/deflate-0.7.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf28e73d3f585f2608f248d18289a3917598c93fca13b366fcf134625e427dce",
                "md5": "cf4d9dec58a600843394c0b54f9fb6b4",
                "sha256": "0b8c8cb91a82b16e2effab66960229ecfb6420e1cb3723e92302979350c2f993"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf4d9dec58a600843394c0b54f9fb6b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 54161,
            "upload_time": "2024-05-09T18:48:10",
            "upload_time_iso_8601": "2024-05-09T18:48:10.966805Z",
            "url": "https://files.pythonhosted.org/packages/bf/28/e73d3f585f2608f248d18289a3917598c93fca13b366fcf134625e427dce/deflate-0.7.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4dee3892498c11829ee7ddbeb349eb4ab30fb081c34e8218ec38d9010044abb9",
                "md5": "8613ec03177c342174c387153901d610",
                "sha256": "b3c3b95f92ec0beb910428203cd4e4c77fcfd9efaa0a0dd4fd26db698384bf57"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8613ec03177c342174c387153901d610",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 39198,
            "upload_time": "2024-05-09T18:48:24",
            "upload_time_iso_8601": "2024-05-09T18:48:24.243938Z",
            "url": "https://files.pythonhosted.org/packages/4d/ee/3892498c11829ee7ddbeb349eb4ab30fb081c34e8218ec38d9010044abb9/deflate-0.7.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bed3058fb8f253bdb2171da20ecd1a75e0eb897eafdcbb19aaaf642123bd3d38",
                "md5": "0f7eb6b80770a43096b5e57379ac7d61",
                "sha256": "16c1b4875c7e0166748eb026d20aeb639d081b85d7a23ce0f3513a89bb91823b"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f7eb6b80770a43096b5e57379ac7d61",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 50652,
            "upload_time": "2024-05-09T18:48:29",
            "upload_time_iso_8601": "2024-05-09T18:48:29.063483Z",
            "url": "https://files.pythonhosted.org/packages/be/d3/058fb8f253bdb2171da20ecd1a75e0eb897eafdcbb19aaaf642123bd3d38/deflate-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "270474e60efa0fb662dbb6599efbd5bc22ec984cd9e6b23ede63657bc150e643",
                "md5": "d765e224807d6dd8bf3ad589af1e7f01",
                "sha256": "ae173c09956c923c3a20751c1b01272d274e721f180fa5d6e0d773ab84bf9288"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d765e224807d6dd8bf3ad589af1e7f01",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 53476,
            "upload_time": "2024-05-09T18:48:23",
            "upload_time_iso_8601": "2024-05-09T18:48:23.162712Z",
            "url": "https://files.pythonhosted.org/packages/27/04/74e60efa0fb662dbb6599efbd5bc22ec984cd9e6b23ede63657bc150e643/deflate-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30de5a9a6494fc63e4704893ff53f0b9d8a69771b06426181e0a30a978946eea",
                "md5": "c0cf447a88ec1ad963e2a5943d8fbbab",
                "sha256": "dd58cb2348918b22d627f0341099bc11782389359d523852cf9a4fd3deb825b3"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c0cf447a88ec1ad963e2a5943d8fbbab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 53428,
            "upload_time": "2024-05-09T18:47:59",
            "upload_time_iso_8601": "2024-05-09T18:47:59.573317Z",
            "url": "https://files.pythonhosted.org/packages/30/de/5a9a6494fc63e4704893ff53f0b9d8a69771b06426181e0a30a978946eea/deflate-0.7.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "184969ed5eae22ca0bc24473be68f79fd7c56ad3a526269c75482fe6678e7485",
                "md5": "1140bff0707d3cbdb0ad9f2fdc68138f",
                "sha256": "10b5d1d9ecea31f933227af16471443eec28ac0c645d2e14f6f4214060f97969"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1140bff0707d3cbdb0ad9f2fdc68138f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 50825,
            "upload_time": "2024-05-09T18:48:30",
            "upload_time_iso_8601": "2024-05-09T18:48:30.029764Z",
            "url": "https://files.pythonhosted.org/packages/18/49/69ed5eae22ca0bc24473be68f79fd7c56ad3a526269c75482fe6678e7485/deflate-0.7.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ca0f415fdb3f22877d673396c30f0bd616be542139397681abe830be9dfc156",
                "md5": "082ad0d39a0322f5e26cea896de416d7",
                "sha256": "5141c4f8614ea59113f411d7634a1508b09ddf4900e24517932c886e8b910a0b"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "082ad0d39a0322f5e26cea896de416d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 43051,
            "upload_time": "2024-05-09T18:48:39",
            "upload_time_iso_8601": "2024-05-09T18:48:39.757957Z",
            "url": "https://files.pythonhosted.org/packages/0c/a0/f415fdb3f22877d673396c30f0bd616be542139397681abe830be9dfc156/deflate-0.7.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03063bef0929e279040ed5fe05e08503c5395f327617bed215f8e67e3b1fe54a",
                "md5": "b16956f75e7990f49138092d258b711d",
                "sha256": "251a7a48359ba6ad1a821dd06510dabb4060512705fd462d62708a82e7472713"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b16956f75e7990f49138092d258b711d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 49493,
            "upload_time": "2024-05-09T18:48:13",
            "upload_time_iso_8601": "2024-05-09T18:48:13.407120Z",
            "url": "https://files.pythonhosted.org/packages/03/06/3bef0929e279040ed5fe05e08503c5395f327617bed215f8e67e3b1fe54a/deflate-0.7.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec1c44cda8c47ec9c8503908ef5d9043ddcdc5281e7bb301e75169a17ecb7b0c",
                "md5": "b7106c45e5792e1a7c6e0c0657f1d8e1",
                "sha256": "302fad4c1167e471e597c7bed181fcf543a89871e9efe1360c946080d0cba969"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7106c45e5792e1a7c6e0c0657f1d8e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 54159,
            "upload_time": "2024-05-09T18:48:32",
            "upload_time_iso_8601": "2024-05-09T18:48:32.670360Z",
            "url": "https://files.pythonhosted.org/packages/ec/1c/44cda8c47ec9c8503908ef5d9043ddcdc5281e7bb301e75169a17ecb7b0c/deflate-0.7.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b2976c7d85a44c706e3243f2f85c187813a04a55c132396a890e73c0d6a4d04",
                "md5": "fbfca6a307701c0e4fe52662f5f47d53",
                "sha256": "b5cd6c9e67fe267c4a22038395fd57ef84440d601c7b173404eaceef740b5f23"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fbfca6a307701c0e4fe52662f5f47d53",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 39196,
            "upload_time": "2024-05-09T18:48:17",
            "upload_time_iso_8601": "2024-05-09T18:48:17.888768Z",
            "url": "https://files.pythonhosted.org/packages/0b/29/76c7d85a44c706e3243f2f85c187813a04a55c132396a890e73c0d6a4d04/deflate-0.7.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baf2bd10f3ce7fc8887189a13ab6aefcf65415645e00e8405827dc4b44f762b5",
                "md5": "8eb7a57b89f844d114a31ba559acc36f",
                "sha256": "2596d8122d5149fbceac59887f69cab11b61f24459dc3017fb8e0acea1274a73"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8eb7a57b89f844d114a31ba559acc36f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 50652,
            "upload_time": "2024-05-09T18:48:09",
            "upload_time_iso_8601": "2024-05-09T18:48:09.894541Z",
            "url": "https://files.pythonhosted.org/packages/ba/f2/bd10f3ce7fc8887189a13ab6aefcf65415645e00e8405827dc4b44f762b5/deflate-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "748b3257d2fdc44d40fbdc349b1e00137fdf45bbbf2a39ab735f59c3c586cc32",
                "md5": "1ed7c1bdfa3f111db48ee6a125d1bd4f",
                "sha256": "8bb07dd8af09b6207f206ce6faa95b1976390618e607c35ac18f1cd15109e085"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1ed7c1bdfa3f111db48ee6a125d1bd4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 53477,
            "upload_time": "2024-05-09T18:48:27",
            "upload_time_iso_8601": "2024-05-09T18:48:27.988002Z",
            "url": "https://files.pythonhosted.org/packages/74/8b/3257d2fdc44d40fbdc349b1e00137fdf45bbbf2a39ab735f59c3c586cc32/deflate-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0839fd53d1eb5bf5e906da7ce85eac5ebdf5a7e29d09e172fe6ff4c45135ef75",
                "md5": "1445ba97ac9e3c8868ac9b4b8c7ad44d",
                "sha256": "63fd7a1848d3734081e44244ee362ef498c6e21383e4fcfb2141bee8aee485d2"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1445ba97ac9e3c8868ac9b4b8c7ad44d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 53427,
            "upload_time": "2024-05-09T18:48:26",
            "upload_time_iso_8601": "2024-05-09T18:48:26.370938Z",
            "url": "https://files.pythonhosted.org/packages/08/39/fd53d1eb5bf5e906da7ce85eac5ebdf5a7e29d09e172fe6ff4c45135ef75/deflate-0.7.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ecf624e533cd3e5d2e21658562b3e46754de4477f7363693cc36ecece5f5307c",
                "md5": "86beab3ac847565b4e2cbde409b17252",
                "sha256": "8146da0133ceb1d49bd1dc97bbc964ffb2132eaf5fe139af413e726dfd15f97b"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86beab3ac847565b4e2cbde409b17252",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 50820,
            "upload_time": "2024-05-09T18:48:43",
            "upload_time_iso_8601": "2024-05-09T18:48:43.008296Z",
            "url": "https://files.pythonhosted.org/packages/ec/f6/24e533cd3e5d2e21658562b3e46754de4477f7363693cc36ecece5f5307c/deflate-0.7.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26a6333944934de432ff0a8f298d0f0531608ba03ab73548347337055379c218",
                "md5": "0dbbf1511a26ed75cab1f1fb37736efd",
                "sha256": "ccc8bacdd6297b78fefec141d97a168c37bcc8165df11beecdb525cf08e27327"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "0dbbf1511a26ed75cab1f1fb37736efd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 43050,
            "upload_time": "2024-05-09T18:48:44",
            "upload_time_iso_8601": "2024-05-09T18:48:44.874616Z",
            "url": "https://files.pythonhosted.org/packages/26/a6/333944934de432ff0a8f298d0f0531608ba03ab73548347337055379c218/deflate-0.7.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6517973bd8aa947fe1a5c85806f7c599f685b61875f7536dda5abf22a209d50",
                "md5": "6061da616f6af38645c1d4bcee7a37e8",
                "sha256": "ecef99839c1e1eff7b3946456e6f9f592eb2347168f7a57cfd1be15e768df291"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6061da616f6af38645c1d4bcee7a37e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 49493,
            "upload_time": "2024-05-09T18:48:08",
            "upload_time_iso_8601": "2024-05-09T18:48:08.830373Z",
            "url": "https://files.pythonhosted.org/packages/e6/51/7973bd8aa947fe1a5c85806f7c599f685b61875f7536dda5abf22a209d50/deflate-0.7.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad3107e2685d40cd34dde2b07621f2a88913003dcabb57e6bb7e13f0ac08255a",
                "md5": "b91a635fd8413cdf6bc4cc6616880c2a",
                "sha256": "55ffaf644f479fb6976be99d33ef5eeefa471704dde33824a1255b4399a1e584"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b91a635fd8413cdf6bc4cc6616880c2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 54159,
            "upload_time": "2024-05-09T18:48:40",
            "upload_time_iso_8601": "2024-05-09T18:48:40.914826Z",
            "url": "https://files.pythonhosted.org/packages/ad/31/07e2685d40cd34dde2b07621f2a88913003dcabb57e6bb7e13f0ac08255a/deflate-0.7.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3e93dc39a11871a6b8e78a67872d6d42d095fd102a00516abad882e3100b0b8",
                "md5": "3e0fc9480ee67bd9b4cc8b6791e4d536",
                "sha256": "58bb3b42b7956da9807e69ce9c1602f5bc0dc881b7196b8ec0efed72b21b2aab"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3e0fc9480ee67bd9b4cc8b6791e4d536",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 39195,
            "upload_time": "2024-05-09T18:48:06",
            "upload_time_iso_8601": "2024-05-09T18:48:06.279777Z",
            "url": "https://files.pythonhosted.org/packages/c3/e9/3dc39a11871a6b8e78a67872d6d42d095fd102a00516abad882e3100b0b8/deflate-0.7.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2dafa7bc614b586eb54afcc239254a529fc7a40b0326d3ece1d2d4af65f54c18",
                "md5": "a01b8c4f9083fa83b63ffa7c231e86b7",
                "sha256": "db04153dbe7d6a9e516396ec93e699386800316fb27079fe934845d2ab59ec7c"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a01b8c4f9083fa83b63ffa7c231e86b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 50653,
            "upload_time": "2024-05-09T18:48:16",
            "upload_time_iso_8601": "2024-05-09T18:48:16.396148Z",
            "url": "https://files.pythonhosted.org/packages/2d/af/a7bc614b586eb54afcc239254a529fc7a40b0326d3ece1d2d4af65f54c18/deflate-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7df3ad85108940992a67d509c0cd8717fdef6bf900438997c47b65ece843d947",
                "md5": "c40d2eb71f7b985730963ef1c68e45e7",
                "sha256": "8ac891635fa2ee488dfffed06ae9aa9483e172bda9da6e1a57249ac3af6baa26"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c40d2eb71f7b985730963ef1c68e45e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 53478,
            "upload_time": "2024-05-09T18:48:35",
            "upload_time_iso_8601": "2024-05-09T18:48:35.767658Z",
            "url": "https://files.pythonhosted.org/packages/7d/f3/ad85108940992a67d509c0cd8717fdef6bf900438997c47b65ece843d947/deflate-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "648b6785249125b679a089051aba2229cc5282248de344f1d12e57a302cab80f",
                "md5": "1d58c58de8bbf07f17f04d2716e93f7d",
                "sha256": "938465010a0eec0c203df7708fe999db3c99e9c66780cb9f20011bfa28fdc7c1"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1d58c58de8bbf07f17f04d2716e93f7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 53427,
            "upload_time": "2024-05-09T18:48:19",
            "upload_time_iso_8601": "2024-05-09T18:48:19.736789Z",
            "url": "https://files.pythonhosted.org/packages/64/8b/6785249125b679a089051aba2229cc5282248de344f1d12e57a302cab80f/deflate-0.7.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30bd9636b7d986650bd27ce285d578b7031e2838f46eab39523a00343ea1c099",
                "md5": "cab377673f741010e8652614918fa7d9",
                "sha256": "e35a58f0d3e411611782df8222b184100be12e1ad06b5a379bb14f6cbd9ec21c"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cab377673f741010e8652614918fa7d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 50820,
            "upload_time": "2024-05-09T18:48:31",
            "upload_time_iso_8601": "2024-05-09T18:48:31.051942Z",
            "url": "https://files.pythonhosted.org/packages/30/bd/9636b7d986650bd27ce285d578b7031e2838f46eab39523a00343ea1c099/deflate-0.7.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1af00b8262e99fbbebf993f8a3d02fa2e1201e5675d5ea8bb74df60dfa99c806",
                "md5": "2ab86f6885ee1c70049a928af2ca5692",
                "sha256": "1a8e1a7481fe0935fbf5b9deb3af420d19f0127a010e7345f8345929505974dc"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "2ab86f6885ee1c70049a928af2ca5692",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 43045,
            "upload_time": "2024-05-09T18:48:14",
            "upload_time_iso_8601": "2024-05-09T18:48:14.559926Z",
            "url": "https://files.pythonhosted.org/packages/1a/f0/0b8262e99fbbebf993f8a3d02fa2e1201e5675d5ea8bb74df60dfa99c806/deflate-0.7.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d2b11423ab1529e7e24ffda9ce0c4cb30b6658ce244097683b364f951bf584a",
                "md5": "9faeea94df1f83327a58e3d3b35071a2",
                "sha256": "e8eacb96f2d81da219b729c5c925c2ed7a980780f5cb356a10d5789ff865fb2b"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9faeea94df1f83327a58e3d3b35071a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 49493,
            "upload_time": "2024-05-09T18:48:07",
            "upload_time_iso_8601": "2024-05-09T18:48:07.820058Z",
            "url": "https://files.pythonhosted.org/packages/8d/2b/11423ab1529e7e24ffda9ce0c4cb30b6658ce244097683b364f951bf584a/deflate-0.7.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e47b86dcaffc1010a728495fafc97f38b665c806fecb34f2ae43da94413725d",
                "md5": "fa3d6f5c81cb56e7adc14a9550f356ae",
                "sha256": "d0b5eeff9612791f55b181cd5f0eeaadffa06a49943d23b179e3e082e9f7dcee"
            },
            "downloads": -1,
            "filename": "deflate-0.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fa3d6f5c81cb56e7adc14a9550f356ae",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 233615,
            "upload_time": "2024-05-09T18:48:46",
            "upload_time_iso_8601": "2024-05-09T18:48:46.433430Z",
            "url": "https://files.pythonhosted.org/packages/7e/47/b86dcaffc1010a728495fafc97f38b665c806fecb34f2ae43da94413725d/deflate-0.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-09 18:48:46",
    "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: 1.50830s