inflate64


Nameinflate64 JSON
Version 1.0.0 PyPI version JSON
download
home_page
Summarydeflate64 compression/decompression library
upload_time2023-11-05 09:06:04
maintainer
docs_urlNone
author
requires_python>=3.8
licenseLGPL-2.1-or-later
keywords deflate64 compression
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            inflate64
=========

.. image:: https://dev.azure.com/miurahr/CodeBerg/_apis/build/status/CodeBerg-inflate64-CI?branchName=main
   :alt: Build status
   :target: https://dev.azure.com/miurahr/CodeBerg/_build?definitionId=18&_a=summary

.. image:: https://badge.fury.io/py/inflate64.svg
    :target: https://badge.fury.io/py/inflate64

The ``inflate64`` is a python package to provide ``Deflater`` and ``Inflater`` class to compress and
decompress with Enhanced Deflate compression algorithm.

The project is in ``Production/Stable`` status.

How to use
----------

You can install it with ``pip`` command as usual.

.. code-block::

  pip install inflate64


You can extract compressed data by instantiating ``Inflater`` class and call ``inflate`` method.

.. code-block:: python

  import inflate64
  decompressor = inflate64.Inflater()
  extracted = decompressor.inflate(data)


You can also compress data by instantiating ``Deflater`` class and call ``deflate`` method.

.. code-block:: python

  import inflate64
  compressor = inflate64.Deflater()
  compressed = compressor.deflate(data)
  compressed += compressor.flush()


License
-------

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

.. note::
   Please note that Enhanced Deflate algorithm is also known as `DEFLATE64` :sup:`TM`
   that is a registered trademark of `PKWARE, Inc.`

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "inflate64",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "deflate64,compression",
    "author": "",
    "author_email": "Hiroshi Miura <miurahr@linux.com>",
    "download_url": "https://files.pythonhosted.org/packages/8c/99/18f9940d4a3f2cabc4396a587ddf1bd93236bdb372d9e78e2b0365e40990/inflate64-1.0.0.tar.gz",
    "platform": null,
    "description": "inflate64\n=========\n\n.. image:: https://dev.azure.com/miurahr/CodeBerg/_apis/build/status/CodeBerg-inflate64-CI?branchName=main\n   :alt: Build status\n   :target: https://dev.azure.com/miurahr/CodeBerg/_build?definitionId=18&_a=summary\n\n.. image:: https://badge.fury.io/py/inflate64.svg\n    :target: https://badge.fury.io/py/inflate64\n\nThe ``inflate64`` is a python package to provide ``Deflater`` and ``Inflater`` class to compress and\ndecompress with Enhanced Deflate compression algorithm.\n\nThe project is in ``Production/Stable`` status.\n\nHow to use\n----------\n\nYou can install it with ``pip`` command as usual.\n\n.. code-block::\n\n  pip install inflate64\n\n\nYou can extract compressed data by instantiating ``Inflater`` class and call ``inflate`` method.\n\n.. code-block:: python\n\n  import inflate64\n  decompressor = inflate64.Inflater()\n  extracted = decompressor.inflate(data)\n\n\nYou can also compress data by instantiating ``Deflater`` class and call ``deflate`` method.\n\n.. code-block:: python\n\n  import inflate64\n  compressor = inflate64.Deflater()\n  compressed = compressor.deflate(data)\n  compressed += compressor.flush()\n\n\nLicense\n-------\n\nThis library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA\n\n.. note::\n   Please note that Enhanced Deflate algorithm is also known as `DEFLATE64` :sup:`TM`\n   that is a registered trademark of `PKWARE, Inc.`\n",
    "bugtrack_url": null,
    "license": "LGPL-2.1-or-later",
    "summary": "deflate64 compression/decompression library",
    "version": "1.0.0",
    "project_urls": null,
    "split_keywords": [
        "deflate64",
        "compression"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71cf06af80e81dd4bbb7e883291cf1726035d526f066a37c4ed4d4cd88a7a49d",
                "md5": "dc85dc0f8ff6cfa11892bd34d8180ba1",
                "sha256": "a90c0bdf4a7ecddd8a64cc977181810036e35807f56b0bcacee9abb0fcfd18dc"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "dc85dc0f8ff6cfa11892bd34d8180ba1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 59418,
            "upload_time": "2023-11-05T09:04:26",
            "upload_time_iso_8601": "2023-11-05T09:04:26.354161Z",
            "url": "https://files.pythonhosted.org/packages/71/cf/06af80e81dd4bbb7e883291cf1726035d526f066a37c4ed4d4cd88a7a49d/inflate64-1.0.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c94b6f18918220b1a8e935121cece1dc917e62fa593fc637a621470f9b9a601a",
                "md5": "cdb2fde3e97d540c9f408f3b6ecfbd5e",
                "sha256": "57fe7c14aebf1c5a74fc3b70d355be1280a011521a76aa3895486e62454f4242"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cdb2fde3e97d540c9f408f3b6ecfbd5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 36231,
            "upload_time": "2023-11-05T09:04:28",
            "upload_time_iso_8601": "2023-11-05T09:04:28.504746Z",
            "url": "https://files.pythonhosted.org/packages/c9/4b/6f18918220b1a8e935121cece1dc917e62fa593fc637a621470f9b9a601a/inflate64-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aaf4f4b5dbd78dd5af66b6ca32778ebaa9c14d67b68ea84e96592ccf40786a41",
                "md5": "80f9ba2589d54a388a26958c401f6602",
                "sha256": "d90730165f471d61a1a694a5e354f3ffa938227e8dcecb62d5d728e8069cee94"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "80f9ba2589d54a388a26958c401f6602",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 35738,
            "upload_time": "2023-11-05T09:04:30",
            "upload_time_iso_8601": "2023-11-05T09:04:30.182555Z",
            "url": "https://files.pythonhosted.org/packages/aa/f4/f4b5dbd78dd5af66b6ca32778ebaa9c14d67b68ea84e96592ccf40786a41/inflate64-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "102326289a700550767cf5eb7550f78ad826529706287393f224bbaee3c1b1e2",
                "md5": "6debbde8261d232b2f5f4d175dcf1cd5",
                "sha256": "543f400201f5c101141af3c79c82059e1aa6ef4f1584a7f1fa035fb2e465097f"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6debbde8261d232b2f5f4d175dcf1cd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 92855,
            "upload_time": "2023-11-05T09:04:32",
            "upload_time_iso_8601": "2023-11-05T09:04:32.402925Z",
            "url": "https://files.pythonhosted.org/packages/10/23/26289a700550767cf5eb7550f78ad826529706287393f224bbaee3c1b1e2/inflate64-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8f4e387a50f5027194eac4f9712d57b97e3e1a012402eaae98bcf1ebe8a97d1",
                "md5": "b728a9fd5158a8d399900432501d2060",
                "sha256": "6ceca14f7ec19fb44b047f56c50efb7521b389d222bba2b0a10286a0caeb03fa"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b728a9fd5158a8d399900432501d2060",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 93141,
            "upload_time": "2023-11-05T09:04:34",
            "upload_time_iso_8601": "2023-11-05T09:04:34.886122Z",
            "url": "https://files.pythonhosted.org/packages/b8/f4/e387a50f5027194eac4f9712d57b97e3e1a012402eaae98bcf1ebe8a97d1/inflate64-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33c8e516aecd9ed0dc75d8df041ed4ef80f2e2be39d0e516c7269b7f274e760a",
                "md5": "d3eeb3a9bd7b7ac3229250260b12e2fa",
                "sha256": "b559937a42f0c175b4d2dfc7eb53b97bdc87efa9add15ed5549c6abc1e89d02f"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d3eeb3a9bd7b7ac3229250260b12e2fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 95262,
            "upload_time": "2023-11-05T09:04:36",
            "upload_time_iso_8601": "2023-11-05T09:04:36.987343Z",
            "url": "https://files.pythonhosted.org/packages/33/c8/e516aecd9ed0dc75d8df041ed4ef80f2e2be39d0e516c7269b7f274e760a/inflate64-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0baaed3ab5f8c13afc432fb382edf97cede7a6f9be73ecf98bfe64b686c8d223",
                "md5": "baf03e5b8190e9069d930c287e59cf71",
                "sha256": "5ff8bd2a562343fcbc4eea26fdc368904a3b5f6bb8262344274d3d74a1de15bb"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "baf03e5b8190e9069d930c287e59cf71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 95912,
            "upload_time": "2023-11-05T09:04:39",
            "upload_time_iso_8601": "2023-11-05T09:04:39.401379Z",
            "url": "https://files.pythonhosted.org/packages/0b/aa/ed3ab5f8c13afc432fb382edf97cede7a6f9be73ecf98bfe64b686c8d223/inflate64-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0645637c4f67ed15518c0765b85b528ed79536caaf8ba167a9f7173e334d4a8",
                "md5": "cc571a87cc5b8227885954a9ad2f102b",
                "sha256": "0fe481f31695d35a433c3044ac8fd5d9f5069aaad03a0c04b570eb258ce655aa"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cc571a87cc5b8227885954a9ad2f102b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 35166,
            "upload_time": "2023-11-05T09:04:41",
            "upload_time_iso_8601": "2023-11-05T09:04:41.819711Z",
            "url": "https://files.pythonhosted.org/packages/e0/64/5637c4f67ed15518c0765b85b528ed79536caaf8ba167a9f7173e334d4a8/inflate64-1.0.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af92701b3c76b1cf244026c3e78dff8487955cf6960c1d9f350e2820a0d1a5d9",
                "md5": "f95ff25d391de07ae398d2092e6e526f",
                "sha256": "35a45f6979ad5874d4d4898c2fc770b136e61b96b850118fdaec5a5af1b9123a"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f95ff25d391de07ae398d2092e6e526f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 59450,
            "upload_time": "2023-11-05T09:04:43",
            "upload_time_iso_8601": "2023-11-05T09:04:43.941805Z",
            "url": "https://files.pythonhosted.org/packages/af/92/701b3c76b1cf244026c3e78dff8487955cf6960c1d9f350e2820a0d1a5d9/inflate64-1.0.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb1daf0253fafc27cadd29e3b111ebb3011b8c913a3554b403c90c7595f5933e",
                "md5": "da2523b0b1f639c0c0824790b8a5e547",
                "sha256": "022ca1cc928e7365a05f7371ff06af143c6c667144965e2cf9a9236a2ae1c291"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "da2523b0b1f639c0c0824790b8a5e547",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 36267,
            "upload_time": "2023-11-05T09:04:45",
            "upload_time_iso_8601": "2023-11-05T09:04:45.497293Z",
            "url": "https://files.pythonhosted.org/packages/bb/1d/af0253fafc27cadd29e3b111ebb3011b8c913a3554b403c90c7595f5933e/inflate64-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6227949030be11f4754bd6ed7067e9bebdf614013b89ccd4638330a85821b51",
                "md5": "d10a90b6c185e4367dcfc6aab654bedf",
                "sha256": "46792ecf3565d64fd2c519b0a780c03a57e195613c9954ef94e739a057b3fd06"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d10a90b6c185e4367dcfc6aab654bedf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 35740,
            "upload_time": "2023-11-05T09:04:46",
            "upload_time_iso_8601": "2023-11-05T09:04:46.983990Z",
            "url": "https://files.pythonhosted.org/packages/b6/22/7949030be11f4754bd6ed7067e9bebdf614013b89ccd4638330a85821b51/inflate64-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e487c6ce0093a345c04811f6171a367665dec17dcc4617ca150dd37e9ae7bd33",
                "md5": "c63c24a47c54eb77a17642d4aeafa8e8",
                "sha256": "3a70ea2e456c15f7aa7c74b8ab8f20b4f8940ec657604c9f0a9de3342f280fff"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c63c24a47c54eb77a17642d4aeafa8e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 95896,
            "upload_time": "2023-11-05T09:04:48",
            "upload_time_iso_8601": "2023-11-05T09:04:48.913031Z",
            "url": "https://files.pythonhosted.org/packages/e4/87/c6ce0093a345c04811f6171a367665dec17dcc4617ca150dd37e9ae7bd33/inflate64-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62d6fe113b12773cad2c093d381c2b1629f9cfa240c9ad86a7f9f9079e7a51b5",
                "md5": "9133eff805d3324db5848233b4669074",
                "sha256": "3e243ea9bd36a035059f2365bd6d156ff59717fbafb0255cb0c75bf151bf6904"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9133eff805d3324db5848233b4669074",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 96007,
            "upload_time": "2023-11-05T09:04:50",
            "upload_time_iso_8601": "2023-11-05T09:04:50.688328Z",
            "url": "https://files.pythonhosted.org/packages/62/d6/fe113b12773cad2c093d381c2b1629f9cfa240c9ad86a7f9f9079e7a51b5/inflate64-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0a69165bee4b7fc5af949fec12a2cea7ad73bf9ee97dfb96a0276274c48e709",
                "md5": "74c9296aa62c507f2699e41a95224e2e",
                "sha256": "4dc392dec1cd11cacda3d2637214ca45e38202e8a4f31d4a4e566d6e90625fc4"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74c9296aa62c507f2699e41a95224e2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 98297,
            "upload_time": "2023-11-05T09:04:52",
            "upload_time_iso_8601": "2023-11-05T09:04:52.516210Z",
            "url": "https://files.pythonhosted.org/packages/f0/a6/9165bee4b7fc5af949fec12a2cea7ad73bf9ee97dfb96a0276274c48e709/inflate64-1.0.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee720aeb360101eeed32696fc6c623bc1780fac895a9fc2e93b582cb1e22ca54",
                "md5": "a3daa0e6302bfd62b58a015887656664",
                "sha256": "8b402a50eda7ee75f342fc346d33a41bca58edc222a4b17f9be0db1daed459fa"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a3daa0e6302bfd62b58a015887656664",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 98858,
            "upload_time": "2023-11-05T09:04:54",
            "upload_time_iso_8601": "2023-11-05T09:04:54.786305Z",
            "url": "https://files.pythonhosted.org/packages/ee/72/0aeb360101eeed32696fc6c623bc1780fac895a9fc2e93b582cb1e22ca54/inflate64-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "944a8301ad59b57d9de504b0fdce22bf980dfb231753e6d7aed12af938f7f9fd",
                "md5": "1ef3fe93846b8d32e791f182be39a041",
                "sha256": "f5924499dc8800928c0ee4580fa8eb4ffa880b2cce4431537d0390e503a9c9ee"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1ef3fe93846b8d32e791f182be39a041",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 35167,
            "upload_time": "2023-11-05T09:04:56",
            "upload_time_iso_8601": "2023-11-05T09:04:56.885841Z",
            "url": "https://files.pythonhosted.org/packages/94/4a/8301ad59b57d9de504b0fdce22bf980dfb231753e6d7aed12af938f7f9fd/inflate64-1.0.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "188247021b8919c1dc276d0502296f15ffac1cd648b94b35cadb14cb812b6199",
                "md5": "c9db07d8acab3d75d5342e299ed746c6",
                "sha256": "0c644bf7208e20825ca3bbb5fb1f7f495cfcb49eb01a5f67338796d44a42f2bf"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c9db07d8acab3d75d5342e299ed746c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 59509,
            "upload_time": "2023-11-05T09:04:58",
            "upload_time_iso_8601": "2023-11-05T09:04:58.521823Z",
            "url": "https://files.pythonhosted.org/packages/18/82/47021b8919c1dc276d0502296f15ffac1cd648b94b35cadb14cb812b6199/inflate64-1.0.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0c900701be8e48dc9c9b9488001d9c66d6cb6f6bb0c48af9abf33a69726d130",
                "md5": "2211e8540f97b58f7f0ec05cf75eeda5",
                "sha256": "9964a4eaf26a9d36f82a1d9b12c28e35800dd3d99eb340453ed12ac90c2976a8"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2211e8540f97b58f7f0ec05cf75eeda5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 36305,
            "upload_time": "2023-11-05T09:05:00",
            "upload_time_iso_8601": "2023-11-05T09:05:00.337965Z",
            "url": "https://files.pythonhosted.org/packages/e0/c9/00701be8e48dc9c9b9488001d9c66d6cb6f6bb0c48af9abf33a69726d130/inflate64-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25c011dea5e298b2e7d61f0fbd1005553e8796e35536751980b676547fcc57ef",
                "md5": "2498897b01bea593e1d3d27ddf190ada",
                "sha256": "2cccded63865640d03253897be7232b2bbac295fe43914c61f86a57aa23bb61d"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2498897b01bea593e1d3d27ddf190ada",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 35756,
            "upload_time": "2023-11-05T09:05:02",
            "upload_time_iso_8601": "2023-11-05T09:05:02.596717Z",
            "url": "https://files.pythonhosted.org/packages/25/c0/11dea5e298b2e7d61f0fbd1005553e8796e35536751980b676547fcc57ef/inflate64-1.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86ba4debdaaafdc21853621caf463a498a754ee4352893454c596dbd65294e9f",
                "md5": "f29c518979c18c9440c34b7f74820a69",
                "sha256": "d491f104fb3701926ebd82b8c9250dfba0ddcab584504e26f1e4adb26730378d"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f29c518979c18c9440c34b7f74820a69",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 96127,
            "upload_time": "2023-11-05T09:05:04",
            "upload_time_iso_8601": "2023-11-05T09:05:04.575539Z",
            "url": "https://files.pythonhosted.org/packages/86/ba/4debdaaafdc21853621caf463a498a754ee4352893454c596dbd65294e9f/inflate64-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89818f559c199ec13d0b70d0dc46811490b2976873c96c564941583777e9b343",
                "md5": "62186eb8dd60842c9fc2552994d03d8d",
                "sha256": "5ebad4a6cd2a2c1d81be0b09d4006479f3b258803c49a9224ef8ca0b649072fa"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62186eb8dd60842c9fc2552994d03d8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 96903,
            "upload_time": "2023-11-05T09:05:06",
            "upload_time_iso_8601": "2023-11-05T09:05:06.361734Z",
            "url": "https://files.pythonhosted.org/packages/89/81/8f559c199ec13d0b70d0dc46811490b2976873c96c564941583777e9b343/inflate64-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "464139ac4c7e17d0690578b716a0ff34e00600616994795b0645fd61fc600c0f",
                "md5": "716e2fd8701a053fa1ccc02bef5d9903",
                "sha256": "6823b2c0cff3a8159140f3b17ec64fb8ec0e663b45a6593618ecdde8aeecb5b2"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "716e2fd8701a053fa1ccc02bef5d9903",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 98855,
            "upload_time": "2023-11-05T09:05:08",
            "upload_time_iso_8601": "2023-11-05T09:05:08.895146Z",
            "url": "https://files.pythonhosted.org/packages/46/41/39ac4c7e17d0690578b716a0ff34e00600616994795b0645fd61fc600c0f/inflate64-1.0.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44ddbe5d69492c180f94a6af8a15564ce365bdcb84bd1a6fb32949d6913959aa",
                "md5": "1a636db698171efa844e35e804737b10",
                "sha256": "228d504239d27958e71fc77e3119a6ac4528127df38468a0c95a5bd3927204b8"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a636db698171efa844e35e804737b10",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 99884,
            "upload_time": "2023-11-05T09:05:10",
            "upload_time_iso_8601": "2023-11-05T09:05:10.695465Z",
            "url": "https://files.pythonhosted.org/packages/44/dd/be5d69492c180f94a6af8a15564ce365bdcb84bd1a6fb32949d6913959aa/inflate64-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c0da5266bd4f2cdb7fad1eae3ffe4dcc16f9769323660a0a6cfbe9cc1d2cf03",
                "md5": "b5fc6feb0e62164eb584972f3108bcf7",
                "sha256": "ae2572e06bcfe15e3bbf77d4e4a6d6c55e2a70d6abceaaf60c5c3653ddb96dfd"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5fc6feb0e62164eb584972f3108bcf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 35334,
            "upload_time": "2023-11-05T09:05:12",
            "upload_time_iso_8601": "2023-11-05T09:05:12.162630Z",
            "url": "https://files.pythonhosted.org/packages/8c/0d/a5266bd4f2cdb7fad1eae3ffe4dcc16f9769323660a0a6cfbe9cc1d2cf03/inflate64-1.0.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8785bf5c033ad0624cebdc667c6a1617f0025f070f2536f604e2147be34b2ab6",
                "md5": "1e45695c4266c360910dca5efa533d67",
                "sha256": "c10ca61212a753bbce6d341e7cfa779c161b839281f1f9fdc15cf1f324ce7c5b"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1e45695c4266c360910dca5efa533d67",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 59409,
            "upload_time": "2023-11-05T09:05:13",
            "upload_time_iso_8601": "2023-11-05T09:05:13.731300Z",
            "url": "https://files.pythonhosted.org/packages/87/85/bf5c033ad0624cebdc667c6a1617f0025f070f2536f604e2147be34b2ab6/inflate64-1.0.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "825f0df227fd20a56f5e9a2ab01cd7c7c0e7dd0ee52e800711de69e7bc3476f7",
                "md5": "162cb7d3d9c8d0133112a4e60bbacc0b",
                "sha256": "a982dc93920f9450da4d4f25c5e5c1288ef053b1d618cedc91adb67e035e35f5"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "162cb7d3d9c8d0133112a4e60bbacc0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 36228,
            "upload_time": "2023-11-05T09:05:15",
            "upload_time_iso_8601": "2023-11-05T09:05:15.562613Z",
            "url": "https://files.pythonhosted.org/packages/82/5f/0df227fd20a56f5e9a2ab01cd7c7c0e7dd0ee52e800711de69e7bc3476f7/inflate64-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e44011c041a3ddbf4b51715fa8aa645214d82c978b4c424abdd2b166436f0f24",
                "md5": "6ad670e82ca4672b06bf177d382f3fa8",
                "sha256": "ca0310b2c55bc40394c5371db2a22f705fd594226cc09432e1eb04d3aed83930"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6ad670e82ca4672b06bf177d382f3fa8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 35735,
            "upload_time": "2023-11-05T09:05:17",
            "upload_time_iso_8601": "2023-11-05T09:05:17.160571Z",
            "url": "https://files.pythonhosted.org/packages/e4/40/11c041a3ddbf4b51715fa8aa645214d82c978b4c424abdd2b166436f0f24/inflate64-1.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2498acc4e47e52f15baebc87bff9d62cd1a3816692696d4b025485fab981df4e",
                "md5": "9e2f387d4ac37524942104eaf154b7a9",
                "sha256": "e95044ae55a161144445527a2efad550851fecc699066423d24b2634a6a83710"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e2f387d4ac37524942104eaf154b7a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 94259,
            "upload_time": "2023-11-05T09:05:18",
            "upload_time_iso_8601": "2023-11-05T09:05:18.966020Z",
            "url": "https://files.pythonhosted.org/packages/24/98/acc4e47e52f15baebc87bff9d62cd1a3816692696d4b025485fab981df4e/inflate64-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a04f882d1ada759e5d9f63178080f7744bebd8932dab449b18bbd3b2eb7c652d",
                "md5": "dc76e2e7d8e24fe8e5bf643ac8537cc5",
                "sha256": "34de6902c39d9225459583d5034182d371fc694bc3cfd6c0fc89aa62e9809faf"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc76e2e7d8e24fe8e5bf643ac8537cc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 94482,
            "upload_time": "2023-11-05T09:05:20",
            "upload_time_iso_8601": "2023-11-05T09:05:20.658587Z",
            "url": "https://files.pythonhosted.org/packages/a0/4f/882d1ada759e5d9f63178080f7744bebd8932dab449b18bbd3b2eb7c652d/inflate64-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72cf39606e6d3dd3e015ac6ce1277ce60ec4cdb8c5c30c7be726b377c744f597",
                "md5": "df577764cc5c76f69ea3b9b7590f0ba4",
                "sha256": "ebafbd813213dc470719cd0a2bcb53aab89d9059f4e75386048b4c4dcdb2fd99"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df577764cc5c76f69ea3b9b7590f0ba4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 96458,
            "upload_time": "2023-11-05T09:05:22",
            "upload_time_iso_8601": "2023-11-05T09:05:22.386776Z",
            "url": "https://files.pythonhosted.org/packages/72/cf/39606e6d3dd3e015ac6ce1277ce60ec4cdb8c5c30c7be726b377c744f597/inflate64-1.0.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c56bbb6212e96b67f4e33e5917fe017cc41629feeafed42b9787ff80cce0d1c2",
                "md5": "165c6b9d0f006b8aed614d47a51ff897",
                "sha256": "75448c7b414dadaeeb11dab9f75e022aa1e0ee19b00f570e9f58e933603d71ac"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "165c6b9d0f006b8aed614d47a51ff897",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 97020,
            "upload_time": "2023-11-05T09:05:24",
            "upload_time_iso_8601": "2023-11-05T09:05:24.044597Z",
            "url": "https://files.pythonhosted.org/packages/c5/6b/bb6212e96b67f4e33e5917fe017cc41629feeafed42b9787ff80cce0d1c2/inflate64-1.0.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cda9d51b01a2838231f6824e4f9bc306189d83373475cf2c9e09797cdccb8c88",
                "md5": "737a9bfb1d0e2ad39a82da23fe96aba2",
                "sha256": "2be4e01c1b04761874cb44b35b6103ca5846bc36c18fc3ff5e8cbcd8bfc15e9f"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "737a9bfb1d0e2ad39a82da23fe96aba2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 35163,
            "upload_time": "2023-11-05T09:05:25",
            "upload_time_iso_8601": "2023-11-05T09:05:25.723110Z",
            "url": "https://files.pythonhosted.org/packages/cd/a9/d51b01a2838231f6824e4f9bc306189d83373475cf2c9e09797cdccb8c88/inflate64-1.0.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "041c47f9c93df339c381f3f3e7b983d7abf0756f8bd227bf9fb5a2e8b09ea9e5",
                "md5": "164a6d7105b859802e252ff1af9ebdd9",
                "sha256": "bf2981b95c1f26242bb084d9a07f3feb0cfe3d6d0a8d90f42389803bc1252c4a"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "164a6d7105b859802e252ff1af9ebdd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 59410,
            "upload_time": "2023-11-05T09:05:27",
            "upload_time_iso_8601": "2023-11-05T09:05:27.416565Z",
            "url": "https://files.pythonhosted.org/packages/04/1c/47f9c93df339c381f3f3e7b983d7abf0756f8bd227bf9fb5a2e8b09ea9e5/inflate64-1.0.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b928bde1595cae0379c521ae74f698f7da1345d990d2df7558df59470ced639b",
                "md5": "5aec81192dfa21aa7696c3fbd9850812",
                "sha256": "9373ccf0661cc72ac84a0ad622634144da5ce7d57c9572ed0723d67a149feed2"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5aec81192dfa21aa7696c3fbd9850812",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 36230,
            "upload_time": "2023-11-05T09:05:29",
            "upload_time_iso_8601": "2023-11-05T09:05:29.164581Z",
            "url": "https://files.pythonhosted.org/packages/b9/28/bde1595cae0379c521ae74f698f7da1345d990d2df7558df59470ced639b/inflate64-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13644350547de7c8a3ac27c1a0ab5807ac2fcbcde121c44190f87da1039421eb",
                "md5": "dbe0b95cdc3afe3b39e06bbe3effcf32",
                "sha256": "e4650c6f65011ec57cf5cd96b92d5b7c6f59e502930c86eb8227c93cf02dc270"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dbe0b95cdc3afe3b39e06bbe3effcf32",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 35739,
            "upload_time": "2023-11-05T09:05:31",
            "upload_time_iso_8601": "2023-11-05T09:05:31.242828Z",
            "url": "https://files.pythonhosted.org/packages/13/64/4350547de7c8a3ac27c1a0ab5807ac2fcbcde121c44190f87da1039421eb/inflate64-1.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ad6b55e43c3503d7780aabe3d1d5493c983a99947dff228d9b622d49c58af68",
                "md5": "1ab96b64da641fbc4b6c363dfa87fb1d",
                "sha256": "a475e8822f1a74c873e60b8f270773757ade024097ca39e43402d47c049c67d4"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1ab96b64da641fbc4b6c363dfa87fb1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 92655,
            "upload_time": "2023-11-05T09:05:33",
            "upload_time_iso_8601": "2023-11-05T09:05:33.507635Z",
            "url": "https://files.pythonhosted.org/packages/1a/d6/b55e43c3503d7780aabe3d1d5493c983a99947dff228d9b622d49c58af68/inflate64-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0c0417e5183543445818930b3fe181d718e519d26a227b5b77871d8f0c8502d",
                "md5": "98960ac4a8ec04b3fec2b7867684e25b",
                "sha256": "d4367480733ac8daf368f6fc704b7c9db85521ee745eb5bd443f4b97d2051acc"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "98960ac4a8ec04b3fec2b7867684e25b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 92966,
            "upload_time": "2023-11-05T09:05:35",
            "upload_time_iso_8601": "2023-11-05T09:05:35.168199Z",
            "url": "https://files.pythonhosted.org/packages/c0/c0/417e5183543445818930b3fe181d718e519d26a227b5b77871d8f0c8502d/inflate64-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d8eada659c83abb78222c666bb8d35b4791cca25a8a4a750f4bc457402d2430",
                "md5": "56aa94561e8d57915885d06498a0f7b5",
                "sha256": "6c5775c91f94f5eced9160fb0af12a09f3e030194f91a6a46e706a79350bd056"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "56aa94561e8d57915885d06498a0f7b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 95075,
            "upload_time": "2023-11-05T09:05:37",
            "upload_time_iso_8601": "2023-11-05T09:05:37.112948Z",
            "url": "https://files.pythonhosted.org/packages/6d/8e/ada659c83abb78222c666bb8d35b4791cca25a8a4a750f4bc457402d2430/inflate64-1.0.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f1559c0e45e091599a05a098374166ff74d3da5f9c0ffa72e8c78b7f0fcaa2b",
                "md5": "55ae05be13084ec67dec51a8632953bb",
                "sha256": "d76d205b844d78ce04768060084ef20e64dcc63a3e9166674f857acaf4d140ed"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55ae05be13084ec67dec51a8632953bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 95751,
            "upload_time": "2023-11-05T09:05:39",
            "upload_time_iso_8601": "2023-11-05T09:05:39.181695Z",
            "url": "https://files.pythonhosted.org/packages/7f/15/59c0e45e091599a05a098374166ff74d3da5f9c0ffa72e8c78b7f0fcaa2b/inflate64-1.0.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8021a90d085b9ea67729d5cef57566c69fd4dec8205c22415cde4be62b7adc64",
                "md5": "d5e3143e0060f588cdd9114e4768f379",
                "sha256": "92f0dc6af0e8e97324981178dc442956cbff1247a56d1e201af8d865244653f8"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d5e3143e0060f588cdd9114e4768f379",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 35164,
            "upload_time": "2023-11-05T09:05:40",
            "upload_time_iso_8601": "2023-11-05T09:05:40.741200Z",
            "url": "https://files.pythonhosted.org/packages/80/21/a90d085b9ea67729d5cef57566c69fd4dec8205c22415cde4be62b7adc64/inflate64-1.0.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "539143238dd8a7e5bab71abae872c09931db4b31aebf672afccb305f79aacb3e",
                "md5": "e65bd5b899e3adc9aade4d0ecba9ee83",
                "sha256": "f79542478e49e471e8b23556700e6f688a40dc93e9a746f77a546c13251b59b1"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e65bd5b899e3adc9aade4d0ecba9ee83",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 34648,
            "upload_time": "2023-11-05T09:05:42",
            "upload_time_iso_8601": "2023-11-05T09:05:42.207639Z",
            "url": "https://files.pythonhosted.org/packages/53/91/43238dd8a7e5bab71abae872c09931db4b31aebf672afccb305f79aacb3e/inflate64-1.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef6fce090934a80c1fd0b5b07c125ed6eb2845f11a78af344d69c0f051dcab97",
                "md5": "3332d8392cc1f594d0da5781f95b2134",
                "sha256": "9a270be6b10cde01258c0097a663a307c62d12c78eb8f62f8e29f205335942c9"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3332d8392cc1f594d0da5781f95b2134",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 36473,
            "upload_time": "2023-11-05T09:05:43",
            "upload_time_iso_8601": "2023-11-05T09:05:43.548098Z",
            "url": "https://files.pythonhosted.org/packages/ef/6f/ce090934a80c1fd0b5b07c125ed6eb2845f11a78af344d69c0f051dcab97/inflate64-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4fe2cd4bf78696213b807860002c182dd1751ba52c1559143b1b8daa7904733",
                "md5": "afa60c6dd84f505d0f4db15559d90c80",
                "sha256": "1616a87ff04f583e9558cc247ec0b72a30d540ee0c17cc77823be175c0ec92f0"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afa60c6dd84f505d0f4db15559d90c80",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 36478,
            "upload_time": "2023-11-05T09:05:44",
            "upload_time_iso_8601": "2023-11-05T09:05:44.917480Z",
            "url": "https://files.pythonhosted.org/packages/b4/fe/2cd4bf78696213b807860002c182dd1751ba52c1559143b1b8daa7904733/inflate64-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43dde62444c0ef7d1228b622e6d3dacf9ea237d8807a78619a83832a3b4a5adf",
                "md5": "90362d2a31894754d264213fb314cb69",
                "sha256": "137ca6b315f0157a786c3a755a09395ca69aed8bcf42ad3437cb349f5ebc86d2"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "90362d2a31894754d264213fb314cb69",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 35630,
            "upload_time": "2023-11-05T09:05:46",
            "upload_time_iso_8601": "2023-11-05T09:05:46.988690Z",
            "url": "https://files.pythonhosted.org/packages/43/dd/e62444c0ef7d1228b622e6d3dacf9ea237d8807a78619a83832a3b4a5adf/inflate64-1.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "804cdbe060a21a3258604ca01f221deaa0cc55cda4965c002756a4486de67d35",
                "md5": "6328cfb5f08d09f940705f1460ff4dba",
                "sha256": "8140942d1614bdeb5a9ddd7559348c5c77f884a42424aef7ccf149ccfb93aa08"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6328cfb5f08d09f940705f1460ff4dba",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 34684,
            "upload_time": "2023-11-05T09:05:49",
            "upload_time_iso_8601": "2023-11-05T09:05:49.151302Z",
            "url": "https://files.pythonhosted.org/packages/80/4c/dbe060a21a3258604ca01f221deaa0cc55cda4965c002756a4486de67d35/inflate64-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f7e4aaa48e95a6d528d7ea4ca72daca2f5ca35d38f0f1f378fcc3344304904c",
                "md5": "02c896d2584e3c92873b1d895c36f127",
                "sha256": "9fe3f9051338bb7d07b5e7d88420d666b5109f33ae39aa55ecd1a053c0f22b1b"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "02c896d2584e3c92873b1d895c36f127",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 36429,
            "upload_time": "2023-11-05T09:05:50",
            "upload_time_iso_8601": "2023-11-05T09:05:50.818787Z",
            "url": "https://files.pythonhosted.org/packages/3f/7e/4aaa48e95a6d528d7ea4ca72daca2f5ca35d38f0f1f378fcc3344304904c/inflate64-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e900247ec4c706c76e8c62499f371058b8343e9ed974182de52613e444123faa",
                "md5": "0bbfb05d80d1e3cbe30989f81b924404",
                "sha256": "36342338e957c790fc630d4afcdcc3926beb2ecaea0b302336079e8fa37e57a0"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0bbfb05d80d1e3cbe30989f81b924404",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 36491,
            "upload_time": "2023-11-05T09:05:52",
            "upload_time_iso_8601": "2023-11-05T09:05:52.544988Z",
            "url": "https://files.pythonhosted.org/packages/e9/00/247ec4c706c76e8c62499f371058b8343e9ed974182de52613e444123faa/inflate64-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "deabb45ba95c980e577b612b1db1a8e8131eece5eb1f95e34e2cb440677a5e8b",
                "md5": "b197d905f6e0e14f5aa702ec219e939e",
                "sha256": "9b65cc701ef33ab20dbfd1d64088ffd89a8c265b356d2c21ba0ec565661645ef"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b197d905f6e0e14f5aa702ec219e939e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 35633,
            "upload_time": "2023-11-05T09:05:54",
            "upload_time_iso_8601": "2023-11-05T09:05:54.791607Z",
            "url": "https://files.pythonhosted.org/packages/de/ab/b45ba95c980e577b612b1db1a8e8131eece5eb1f95e34e2cb440677a5e8b/inflate64-1.0.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b1e0e346cb5eced6f2f30bb110e6d7c7ee7ab70ad1ff44b743d4cf314f60f7d",
                "md5": "e522b83c35e2081b0ba168edacb9e658",
                "sha256": "dd6d3e7d47df43210a995fd1f5989602b64de3f2a17cf4cbff553518b3577fd4"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e522b83c35e2081b0ba168edacb9e658",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 34644,
            "upload_time": "2023-11-05T09:05:57",
            "upload_time_iso_8601": "2023-11-05T09:05:57.154874Z",
            "url": "https://files.pythonhosted.org/packages/2b/1e/0e346cb5eced6f2f30bb110e6d7c7ee7ab70ad1ff44b743d4cf314f60f7d/inflate64-1.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4f77ac502391ea56af23661a707e9c94efc01376a27c1b06f7a0cfb553c0f17",
                "md5": "aa3528953bc3bb34ca3a23e142755a6e",
                "sha256": "8f033b2879696b855200cde5ca4e293132c7499df790acb2c0dacb336d5e83b1"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aa3528953bc3bb34ca3a23e142755a6e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 36467,
            "upload_time": "2023-11-05T09:05:58",
            "upload_time_iso_8601": "2023-11-05T09:05:58.746773Z",
            "url": "https://files.pythonhosted.org/packages/d4/f7/7ac502391ea56af23661a707e9c94efc01376a27c1b06f7a0cfb553c0f17/inflate64-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09ea7c3e7c856f42bee178a9fea816e259b02bd4198873cf07b5a839b96d9696",
                "md5": "5c8caca8eec4285b7e05ab6c2c1791ed",
                "sha256": "5f816d1c8a0593375c289e285c96deaee9c2d8742cb0edbd26ee05588a9ae657"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5c8caca8eec4285b7e05ab6c2c1791ed",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 36475,
            "upload_time": "2023-11-05T09:06:00",
            "upload_time_iso_8601": "2023-11-05T09:06:00.492274Z",
            "url": "https://files.pythonhosted.org/packages/09/ea/7c3e7c856f42bee178a9fea816e259b02bd4198873cf07b5a839b96d9696/inflate64-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aeb1954207a9bd259a57c8c71ba0a26739a32f0d6227529abc9412751f3a87d2",
                "md5": "ea502d0dad53fd08cb0e813a30f2651c",
                "sha256": "1facd35319b6a391ee4c3d709c7c650bcada8cd7141d86cd8c2257287f45e6e6"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ea502d0dad53fd08cb0e813a30f2651c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 35626,
            "upload_time": "2023-11-05T09:06:02",
            "upload_time_iso_8601": "2023-11-05T09:06:02.431468Z",
            "url": "https://files.pythonhosted.org/packages/ae/b1/954207a9bd259a57c8c71ba0a26739a32f0d6227529abc9412751f3a87d2/inflate64-1.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c9918f9940d4a3f2cabc4396a587ddf1bd93236bdb372d9e78e2b0365e40990",
                "md5": "31391c70d0541665c8d0abe281945e62",
                "sha256": "3278827b803cf006a1df251f3e13374c7d26db779e5a33329cc11789b804bc2d"
            },
            "downloads": -1,
            "filename": "inflate64-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "31391c70d0541665c8d0abe281945e62",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 895853,
            "upload_time": "2023-11-05T09:06:04",
            "upload_time_iso_8601": "2023-11-05T09:06:04.917093Z",
            "url": "https://files.pythonhosted.org/packages/8c/99/18f9940d4a3f2cabc4396a587ddf1bd93236bdb372d9e78e2b0365e40990/inflate64-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-05 09:06:04",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "inflate64"
}
        
Elapsed time: 0.13490s