imagequant


Nameimagequant JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/wanadev/imagequant-python
SummaryImage Quantization Library
upload_time2023-11-09 15:55:20
maintainerFabien LOISON
docs_urlNone
authorWanadev
requires_python
licenseBSD-3-Clause
keywords image libimagequant pngquant cffi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Imagequant Python - Python Bindings for libimagequant
=====================================================

|Github| |Discord| |PYPI Version| |Build Status| |Black| |License|

**Imagequant Python** are bindings to allow using libimagequant_ from Python.

**Libimagequant** is a small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images.

.. _libimagequant: https://github.com/ImageOptim/libimagequant


Install
-------

From PyPI::

    pip3 install imagequant

NOTE: you may require compilation tools to build the library if you system is not suitable for the precompiled wheels. On Debian / Ubuntu you can install the build dependencies with the following command::

    sudo apt install build-essential python3-dev


Usage
-----

With PIL / Pillow
~~~~~~~~~~~~~~~~~

.. code-block:: python

    from PIL import Image
    import imagequant

    input_image = Image.open("./example.png")
    output_image = imagequant.quantize_pil_image(
        input_image,
        dithering_level=1.0,  # from 0.0 to 1.0
        max_colors=256,       # from 1 to 256
        min_quality=0,        # from 0 to 100
        max_quality=100,      # from 0 to 100
    )
    output_image.save("./out.png", format="PNG")

|input_image| → |output_image|

.. |input_image| image:: ./example.png
.. |output_image| image:: ./example_out.png


With Raw Data
~~~~~~~~~~~~~

.. code-block:: python

    import imagequant

    # 2×2px image
    IMAGE_DATA = (
        # | R | G | B | A |
        b"\xFF\x00\x00\xFF"  # red
        b"\x00\xFF\x00\xFF"  # lime
        b"\x00\x00\xFF\xFF"  # blue
        b"\xFF\xFF\xFF\xFF"  # white
    )

    output_image_data, output_palette = imagequant.quantize_raw_rgba_bytes(
        IMAGE_DATA,           # RGBA image data
        2, 2,                 # width, height
        dithering_level=1.0,  # from 0.0 to 1.0
        max_colors=256,       # from 1 to 256
        min_quality=0,        # from 0 to 100
        max_quality=100,      # from 0 to 100
    )

    # you can now encode image data and the palette in any image format...

Example ``output_image_data``:

.. code-block:: python

    b'\x02\x03\x00\x01'

Example ``output_palette``:

.. code-block:: python

    [0, 0, 255, 255, 255, 255, 255, 255, 255, 0, 0, 255, 0, 255, 0, 255, 0, 0, 0, 0, ...]
    # color 0      | color 1           | color 2       | color 3       | color 4   | ...


Development of the Bindings
---------------------------

Clone the repository and get the submodules::

    git clone https://github.com/wanadev/imagequant-python.git
    cd imagequant-python
    git submodule init
    git submodule update

Install some dependencies (preferably in a virtualenv)::

    pip3 install nox cffi pillow

Build the binary part of the lib::

    python imagequant/libimagequant_build.py

A ``.so`` file (or a ``.pyd`` file on Windows, or a ``.dylib`` file on MacOS) shoud now be present in the ``imagequant/`` folder. You will not need to run this command again until you change something in ``imagequant/libimagequant.h`` or in ``libimagequant/*.{c,h}``.

To check the coding style, you can run the lint with the following command::

    nox -s lint

To run the tests, use the following command::

    nox -s test


License
-------

**Imagequant Python** is licensed under the BSD 3 Clause. See the LICENSE_ file for more information.

**Libimagequant** is dual-licensed:

* For Free/Libre Open Source Software it's available under GPL v3 or later with additional copyright notices for older parts of the code.

* For use in closed-source software, AppStore distribution, and other non-GPL uses, you can obtain a commercial license.

Read its `license terms <https://github.com/ImageOptim/libimagequant#license>`_ for more information.

.. _LICENSE: https://github.com/wanadev/imagequant-python/blob/master/LICENSE


Changelog
---------

* **[NEXT]** (changes on ``master`` that have not been released yet):

  * Nothing yet ;)

* **v1.1.0:**

  * Added options to set minimal and target (maximal) quality (@injet-zhou, #4)

* **v1.0.5:**

  * Added Python 3.12 support (@flozz)
  * Removed Python 3.7 support (@flozz)

* **v1.0.4:**

  * Added Python 3.11 support

* **v1.0.3:**

  * ``arm64`` and ``universal2`` wheels for macOS M1
  * ``x86`` and ``x68_64`` wheels for musl-based Linux distro (Alpine,...)
  * ``x86`` wheels for Windows (``x86_64`` were already available)

* **v1.0.2:** Python 3.10 support and wheels
* **v1.0.1:** Fix encoding while reading the README in setup.py
* **v1.0.0:** Initial release with a minimal API.



.. |Github| image:: https://img.shields.io/github/stars/wanadev/imagequant-python?label=Github&logo=github
   :target: https://github.com/wanadev/imagequant-python
.. |Discord| image:: https://img.shields.io/badge/chat-Discord-8c9eff?logo=discord&logoColor=ffffff
   :target: https://discord.gg/BmUkEdMuFp
.. |PYPI Version| image:: https://img.shields.io/pypi/v/imagequant.svg
   :target: https://pypi.python.org/pypi/imagequant
.. |Build Status| image:: https://github.com/wanadev/imagequant-python/actions/workflows/python-ci.yml/badge.svg
   :target: https://github.com/wanadev/imagequant-python/actions
.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
   :target: https://black.readthedocs.io/en/stable/
.. |License| image:: https://img.shields.io/pypi/l/imagequant.svg
   :target: https://github.com/wanadev/imagequant-python/blob/master/LICENSE

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/wanadev/imagequant-python",
    "name": "imagequant",
    "maintainer": "Fabien LOISON",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "image libimagequant pngquant cffi",
    "author": "Wanadev",
    "author_email": "contact@wanadev.fr",
    "download_url": "https://files.pythonhosted.org/packages/1b/a5/cda149a6e1b4c7da35bed764ef5f87955814e7990586bc9ad5b8216ee408/imagequant-1.1.0.tar.gz",
    "platform": null,
    "description": "Imagequant Python - Python Bindings for libimagequant\n=====================================================\n\n|Github| |Discord| |PYPI Version| |Build Status| |Black| |License|\n\n**Imagequant Python** are bindings to allow using libimagequant_ from Python.\n\n**Libimagequant** is a small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images.\n\n.. _libimagequant: https://github.com/ImageOptim/libimagequant\n\n\nInstall\n-------\n\nFrom PyPI::\n\n    pip3 install imagequant\n\nNOTE: you may require compilation tools to build the library if you system is not suitable for the precompiled wheels. On Debian\u00a0/ Ubuntu you can install the build dependencies with the following command::\n\n    sudo apt install build-essential python3-dev\n\n\nUsage\n-----\n\nWith PIL\u00a0/ Pillow\n~~~~~~~~~~~~~~~~~\n\n.. code-block:: python\n\n    from PIL import Image\n    import imagequant\n\n    input_image = Image.open(\"./example.png\")\n    output_image = imagequant.quantize_pil_image(\n        input_image,\n        dithering_level=1.0,  # from 0.0 to 1.0\n        max_colors=256,       # from 1 to 256\n        min_quality=0,        # from 0 to 100\n        max_quality=100,      # from 0 to 100\n    )\n    output_image.save(\"./out.png\", format=\"PNG\")\n\n|input_image| \u2192 |output_image|\n\n.. |input_image| image:: ./example.png\n.. |output_image| image:: ./example_out.png\n\n\nWith Raw Data\n~~~~~~~~~~~~~\n\n.. code-block:: python\n\n    import imagequant\n\n    # 2\u00d72px image\n    IMAGE_DATA = (\n        # | R | G | B | A |\n        b\"\\xFF\\x00\\x00\\xFF\"  # red\n        b\"\\x00\\xFF\\x00\\xFF\"  # lime\n        b\"\\x00\\x00\\xFF\\xFF\"  # blue\n        b\"\\xFF\\xFF\\xFF\\xFF\"  # white\n    )\n\n    output_image_data, output_palette = imagequant.quantize_raw_rgba_bytes(\n        IMAGE_DATA,           # RGBA image data\n        2, 2,                 # width, height\n        dithering_level=1.0,  # from 0.0 to 1.0\n        max_colors=256,       # from 1 to 256\n        min_quality=0,        # from 0 to 100\n        max_quality=100,      # from 0 to 100\n    )\n\n    # you can now encode image data and the palette in any image format...\n\nExample ``output_image_data``:\n\n.. code-block:: python\n\n    b'\\x02\\x03\\x00\\x01'\n\nExample ``output_palette``:\n\n.. code-block:: python\n\n    [0, 0, 255, 255, 255, 255, 255, 255, 255, 0, 0, 255, 0, 255, 0, 255, 0, 0, 0, 0, ...]\n    # color 0      | color 1           | color 2       | color 3       | color 4   | ...\n\n\nDevelopment of the Bindings\n---------------------------\n\nClone the repository and get the submodules::\n\n    git clone https://github.com/wanadev/imagequant-python.git\n    cd imagequant-python\n    git submodule init\n    git submodule update\n\nInstall some dependencies (preferably in a virtualenv)::\n\n    pip3 install nox cffi pillow\n\nBuild the binary part of the lib::\n\n    python imagequant/libimagequant_build.py\n\nA ``.so`` file (or a ``.pyd`` file on Windows, or a ``.dylib`` file on MacOS) shoud now be present in the ``imagequant/`` folder. You will not need to run this command again until you change something in ``imagequant/libimagequant.h`` or in ``libimagequant/*.{c,h}``.\n\nTo check the coding style, you can run the lint with the following command::\n\n    nox -s lint\n\nTo run the tests, use the following command::\n\n    nox -s test\n\n\nLicense\n-------\n\n**Imagequant Python** is licensed under the BSD 3 Clause. See the LICENSE_ file for more information.\n\n**Libimagequant** is dual-licensed:\n\n* For Free/Libre Open Source Software it's available under GPL v3 or later with additional copyright notices for older parts of the code.\n\n* For use in closed-source software, AppStore distribution, and other non-GPL uses, you can obtain a commercial license.\n\nRead its `license terms <https://github.com/ImageOptim/libimagequant#license>`_ for more information.\n\n.. _LICENSE: https://github.com/wanadev/imagequant-python/blob/master/LICENSE\n\n\nChangelog\n---------\n\n* **[NEXT]** (changes on ``master`` that have not been released yet):\n\n  * Nothing yet ;)\n\n* **v1.1.0:**\n\n  * Added options to set minimal and target (maximal) quality (@injet-zhou, #4)\n\n* **v1.0.5:**\n\n  * Added Python 3.12 support (@flozz)\n  * Removed Python 3.7 support (@flozz)\n\n* **v1.0.4:**\n\n  * Added Python 3.11 support\n\n* **v1.0.3:**\n\n  * ``arm64`` and ``universal2`` wheels for macOS M1\n  * ``x86`` and ``x68_64`` wheels for musl-based Linux distro (Alpine,...)\n  * ``x86`` wheels for Windows (``x86_64`` were already available)\n\n* **v1.0.2:** Python 3.10 support and wheels\n* **v1.0.1:** Fix encoding while reading the README in setup.py\n* **v1.0.0:** Initial release with a minimal API.\n\n\n\n.. |Github| image:: https://img.shields.io/github/stars/wanadev/imagequant-python?label=Github&logo=github\n   :target: https://github.com/wanadev/imagequant-python\n.. |Discord| image:: https://img.shields.io/badge/chat-Discord-8c9eff?logo=discord&logoColor=ffffff\n   :target: https://discord.gg/BmUkEdMuFp\n.. |PYPI Version| image:: https://img.shields.io/pypi/v/imagequant.svg\n   :target: https://pypi.python.org/pypi/imagequant\n.. |Build Status| image:: https://github.com/wanadev/imagequant-python/actions/workflows/python-ci.yml/badge.svg\n   :target: https://github.com/wanadev/imagequant-python/actions\n.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://black.readthedocs.io/en/stable/\n.. |License| image:: https://img.shields.io/pypi/l/imagequant.svg\n   :target: https://github.com/wanadev/imagequant-python/blob/master/LICENSE\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Image Quantization Library",
    "version": "1.1.0",
    "project_urls": {
        "Changelog": "https://github.com/wanadev/imagequant-python#changelog",
        "Chat": "https://discord.gg/BmUkEdMuFp",
        "Documentation": "https://github.com/wanadev/imagequant-python#usage",
        "Homepage": "https://github.com/wanadev/imagequant-python",
        "Issues": "https://github.com/wanadev/imagequant-python/issues",
        "Source Code": "https://github.com/wanadev/imagequant-python"
    },
    "split_keywords": [
        "image",
        "libimagequant",
        "pngquant",
        "cffi"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73ddb3b26e0cb290fe91a581e44dcc4f191ce8d3c6733ff3e2c3841e55541db0",
                "md5": "db61d75cecacdbf3939a24417b11ac06",
                "sha256": "abc1e8fbe0abd8bce4c2aacfe789f689b90cbb8b38e154132d9f8b4425e95b7c"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "db61d75cecacdbf3939a24417b11ac06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 102449,
            "upload_time": "2023-11-09T15:53:35",
            "upload_time_iso_8601": "2023-11-09T15:53:35.183482Z",
            "url": "https://files.pythonhosted.org/packages/73/dd/b3b26e0cb290fe91a581e44dcc4f191ce8d3c6733ff3e2c3841e55541db0/imagequant-1.1.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c569a0a53d640ecedc0999f52128905d42ccd0ea204c647d73f36c599aca5c14",
                "md5": "aaf8db8387ce2f65fd717dff5f1a2ce9",
                "sha256": "93e8787f2093c1dadab06f26dbdd96f328c8888f608f045a680135d83062f9b0"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aaf8db8387ce2f65fd717dff5f1a2ce9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 56109,
            "upload_time": "2023-11-09T15:53:36",
            "upload_time_iso_8601": "2023-11-09T15:53:36.713279Z",
            "url": "https://files.pythonhosted.org/packages/c5/69/a0a53d640ecedc0999f52128905d42ccd0ea204c647d73f36c599aca5c14/imagequant-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fd71a76e0d2a15206aeb098c7e42a9105d55fd39bd5235d01e8dd67c5b91fd8",
                "md5": "86606a721a288afae7e117ffc83ec6e0",
                "sha256": "3938aab9b9f81ad4c7a94037f26ffee29de37d2f486c946611a29f2293c6d004"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "86606a721a288afae7e117ffc83ec6e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 52847,
            "upload_time": "2023-11-09T15:53:38",
            "upload_time_iso_8601": "2023-11-09T15:53:38.339172Z",
            "url": "https://files.pythonhosted.org/packages/9f/d7/1a76e0d2a15206aeb098c7e42a9105d55fd39bd5235d01e8dd67c5b91fd8/imagequant-1.1.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bda84afa505708f1798e7c9dfc687d92d1d06128d58a6bfaf29ff1d547907a8d",
                "md5": "f6aad8b20c711be3c1942fc708d9dd5e",
                "sha256": "a2df63ebb57bf153bf6b791e8f0f724ca6b7c57154bd66ab99bad2a2d4bb81c3"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f6aad8b20c711be3c1942fc708d9dd5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 198771,
            "upload_time": "2023-11-09T15:53:40",
            "upload_time_iso_8601": "2023-11-09T15:53:40.015677Z",
            "url": "https://files.pythonhosted.org/packages/bd/a8/4afa505708f1798e7c9dfc687d92d1d06128d58a6bfaf29ff1d547907a8d/imagequant-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02748b37bf221b36fc90b0083c33401b3d5e20d09b4ab7abebd89d6639b83376",
                "md5": "1e5805c6bd1437b11169ffabbe9b0c5c",
                "sha256": "49e3f4461f4811f7ebcb0936b789bef1a9d4b16b3c34d5867d89775ec15c5ecd"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1e5805c6bd1437b11169ffabbe9b0c5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 177318,
            "upload_time": "2023-11-09T15:53:41",
            "upload_time_iso_8601": "2023-11-09T15:53:41.729314Z",
            "url": "https://files.pythonhosted.org/packages/02/74/8b37bf221b36fc90b0083c33401b3d5e20d09b4ab7abebd89d6639b83376/imagequant-1.1.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": "3899fd3d7267ba63a012d061e9995d7cf6f308e5e78e376cb76ab46ccc16a35b",
                "md5": "785492be55e42e886f9d286ec0960568",
                "sha256": "0acca28215ff43b3514eac275c97bde4bd2eeac2f3e451cee25c5a43c29b0f65"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "785492be55e42e886f9d286ec0960568",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 173655,
            "upload_time": "2023-11-09T15:53:43",
            "upload_time_iso_8601": "2023-11-09T15:53:43.238631Z",
            "url": "https://files.pythonhosted.org/packages/38/99/fd3d7267ba63a012d061e9995d7cf6f308e5e78e376cb76ab46ccc16a35b/imagequant-1.1.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fd676541513ade572cb946c52b2fe790d247f6acd78e7af8c42620d99723dfb",
                "md5": "772e1daecc8147b9fa4af9af1dc95679",
                "sha256": "0922714be0cdfef1ecc97984cdd5c3fe971e564962c80804a7f06377a48b5e69"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "772e1daecc8147b9fa4af9af1dc95679",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 199607,
            "upload_time": "2023-11-09T15:53:44",
            "upload_time_iso_8601": "2023-11-09T15:53:44.607466Z",
            "url": "https://files.pythonhosted.org/packages/0f/d6/76541513ade572cb946c52b2fe790d247f6acd78e7af8c42620d99723dfb/imagequant-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "425054ad65ba908027ab8cca7d3d3d1ae9188248b0f2f557f7e48b0fab730e7d",
                "md5": "8f6ec19c70a0dacd309e48eaecf13102",
                "sha256": "df5ca219de32587080b75d4682df8c2c33c106f64de9c257607814a62063c779"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "8f6ec19c70a0dacd309e48eaecf13102",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 39543,
            "upload_time": "2023-11-09T15:53:45",
            "upload_time_iso_8601": "2023-11-09T15:53:45.971566Z",
            "url": "https://files.pythonhosted.org/packages/42/50/54ad65ba908027ab8cca7d3d3d1ae9188248b0f2f557f7e48b0fab730e7d/imagequant-1.1.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2a97c55b8918f586a52b9359de7e3490ff82eceb02d57489a2df1ff501da184",
                "md5": "29ba77f51dc31222790e0f8f9ff34206",
                "sha256": "0b19eb20668f430dc8c2aad499ea5182f5c43092226c6cf117cda21e0b6bef0d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "29ba77f51dc31222790e0f8f9ff34206",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 50976,
            "upload_time": "2023-11-09T15:53:47",
            "upload_time_iso_8601": "2023-11-09T15:53:47.323678Z",
            "url": "https://files.pythonhosted.org/packages/d2/a9/7c55b8918f586a52b9359de7e3490ff82eceb02d57489a2df1ff501da184/imagequant-1.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ed241d6648eb0d26274e0b5ca9c8b78da0571cc00e1e27ad97d9c7a4cb8d37f",
                "md5": "fd04b89af09eeb79d51b69b85e776ba1",
                "sha256": "c57a6e67d92ab2c0f478f39a4d4a56553af15962e28248dff038eb17f69090ea"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "fd04b89af09eeb79d51b69b85e776ba1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 102451,
            "upload_time": "2023-11-09T15:53:48",
            "upload_time_iso_8601": "2023-11-09T15:53:48.808652Z",
            "url": "https://files.pythonhosted.org/packages/1e/d2/41d6648eb0d26274e0b5ca9c8b78da0571cc00e1e27ad97d9c7a4cb8d37f/imagequant-1.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f030576664dadde69d1939bfcb2c8af68c9e2ec5cf4b8f4925adc2887e80de24",
                "md5": "de3457546a1712ca0aff9e3c763d2008",
                "sha256": "22e23664e322c007a53df18beb60dbc0dd5a0492886593eb27459a8b7091194c"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de3457546a1712ca0aff9e3c763d2008",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 56109,
            "upload_time": "2023-11-09T15:53:50",
            "upload_time_iso_8601": "2023-11-09T15:53:50.138071Z",
            "url": "https://files.pythonhosted.org/packages/f0/30/576664dadde69d1939bfcb2c8af68c9e2ec5cf4b8f4925adc2887e80de24/imagequant-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "580b91a4f0e29911224d472cbd0665a727fb0da2420793252bf0a6fe1edfe879",
                "md5": "01e3820280cea75861f4a12016d2a609",
                "sha256": "7a6b52494188b3349f4210b71c7f39c5a036dabb4c289a674cf7ec3701500bc7"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "01e3820280cea75861f4a12016d2a609",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 52848,
            "upload_time": "2023-11-09T15:53:51",
            "upload_time_iso_8601": "2023-11-09T15:53:51.483405Z",
            "url": "https://files.pythonhosted.org/packages/58/0b/91a4f0e29911224d472cbd0665a727fb0da2420793252bf0a6fe1edfe879/imagequant-1.1.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e0f466fab2fd79d09764f77e1fa097d4711b85c056df10cd5f34068091b2523",
                "md5": "f0d890582b16313ba8510dbf13f71232",
                "sha256": "0990ae4b678dd037cc2b76a0ce58a3262d38aa141cd97b6b42e5345436ab1c39"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0d890582b16313ba8510dbf13f71232",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 198787,
            "upload_time": "2023-11-09T15:53:52",
            "upload_time_iso_8601": "2023-11-09T15:53:52.779912Z",
            "url": "https://files.pythonhosted.org/packages/7e/0f/466fab2fd79d09764f77e1fa097d4711b85c056df10cd5f34068091b2523/imagequant-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "376f2900cd77eb91fa42cd1605d05d8b4ffdd96a7b23291aff885a163035c1a0",
                "md5": "e43b521c41f0c20943af1ea9a8859847",
                "sha256": "065cb3d5a746e9eb4900c4b13c77f5f6531a4371f5ebd96e514a6f3ab91e02b8"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e43b521c41f0c20943af1ea9a8859847",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 177358,
            "upload_time": "2023-11-09T15:53:54",
            "upload_time_iso_8601": "2023-11-09T15:53:54.559132Z",
            "url": "https://files.pythonhosted.org/packages/37/6f/2900cd77eb91fa42cd1605d05d8b4ffdd96a7b23291aff885a163035c1a0/imagequant-1.1.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": "813f0f35d365685ffe813f91bcf8ef8a24f78c245b61c95e2eaf0d888590e157",
                "md5": "5daf108dec1f81ba4496d83f3c324eb6",
                "sha256": "4dbdad5fcda6cd41a819e34eabf7a9da61b063d3447df785ed48c014907b0b56"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5daf108dec1f81ba4496d83f3c324eb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 173668,
            "upload_time": "2023-11-09T15:53:56",
            "upload_time_iso_8601": "2023-11-09T15:53:56.129542Z",
            "url": "https://files.pythonhosted.org/packages/81/3f/0f35d365685ffe813f91bcf8ef8a24f78c245b61c95e2eaf0d888590e157/imagequant-1.1.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9ca9493022e823cef9e0b77795f88a588f6a800878c1ba81b0252c824514202",
                "md5": "ba5fa8e4d1c8b9b6ea141f1dc598409a",
                "sha256": "ed47e5470a2e34fc79ffff112e3ce5d609861cc626a1c792c0588591e6663e47"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba5fa8e4d1c8b9b6ea141f1dc598409a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 199640,
            "upload_time": "2023-11-09T15:53:57",
            "upload_time_iso_8601": "2023-11-09T15:53:57.915450Z",
            "url": "https://files.pythonhosted.org/packages/e9/ca/9493022e823cef9e0b77795f88a588f6a800878c1ba81b0252c824514202/imagequant-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8196b019c1da3a3065ce3b3a9ff0aae1bc337b0f2a3fa72445229eb19e39c072",
                "md5": "4bfdb04e134ec3f5703865c656c1339d",
                "sha256": "9a33728586c755ca7274ac5943cfc4b1b4d864ec35eb1c98aecffc2562c38083"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "4bfdb04e134ec3f5703865c656c1339d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 39544,
            "upload_time": "2023-11-09T15:53:59",
            "upload_time_iso_8601": "2023-11-09T15:53:59.144638Z",
            "url": "https://files.pythonhosted.org/packages/81/96/b019c1da3a3065ce3b3a9ff0aae1bc337b0f2a3fa72445229eb19e39c072/imagequant-1.1.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cde87128d2af76a2a3bc35c790cc3e07e7c00940bfe9b57a2da19cba086b73ee",
                "md5": "d47afca791002c0f4f2949c688a209c1",
                "sha256": "282f50c2aa48961a0b5e1df88c0a467976a8a3dfd67a6ff2fcbc2d5a55064278"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d47afca791002c0f4f2949c688a209c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 50975,
            "upload_time": "2023-11-09T15:54:00",
            "upload_time_iso_8601": "2023-11-09T15:54:00.532405Z",
            "url": "https://files.pythonhosted.org/packages/cd/e8/7128d2af76a2a3bc35c790cc3e07e7c00940bfe9b57a2da19cba086b73ee/imagequant-1.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b04a8791542fb930b441d14f3b5bc13bad59f9dc2b6194d1b0febd5aefc9ffd",
                "md5": "790c7851dde9efcbb3725e6ab7e1c634",
                "sha256": "f394b7d21c1477e70f00837a7b3de83ea7cd77a5a88260fbae5bdb1c093ee990"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "790c7851dde9efcbb3725e6ab7e1c634",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 102458,
            "upload_time": "2023-11-09T15:54:02",
            "upload_time_iso_8601": "2023-11-09T15:54:02.201574Z",
            "url": "https://files.pythonhosted.org/packages/0b/04/a8791542fb930b441d14f3b5bc13bad59f9dc2b6194d1b0febd5aefc9ffd/imagequant-1.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb04c138e5e68b19117e3eb0244ff001ee501da26f6a7750d2c36523259137fc",
                "md5": "d7fc84dcf6537ace4e8baf515807ad12",
                "sha256": "cf14289030535fe15da38fd0e7ee1453df943f6bfd0793591609bd4f65463ad0"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7fc84dcf6537ace4e8baf515807ad12",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 56117,
            "upload_time": "2023-11-09T15:54:03",
            "upload_time_iso_8601": "2023-11-09T15:54:03.454709Z",
            "url": "https://files.pythonhosted.org/packages/bb/04/c138e5e68b19117e3eb0244ff001ee501da26f6a7750d2c36523259137fc/imagequant-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b86079be3523459739c06bd429cb86237edcf9c8d7bdd271a9091be34721532",
                "md5": "cd98d80455fcb8d811035a4f4c98052c",
                "sha256": "d3ed0b61f65fd4e8e51d9641a0ed2865704f16a1b8ae094ab892af520147b0c1"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd98d80455fcb8d811035a4f4c98052c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 52846,
            "upload_time": "2023-11-09T15:54:05",
            "upload_time_iso_8601": "2023-11-09T15:54:05.082271Z",
            "url": "https://files.pythonhosted.org/packages/0b/86/079be3523459739c06bd429cb86237edcf9c8d7bdd271a9091be34721532/imagequant-1.1.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6a207dae11c77194bbf3c2a0104fe2ced7e420e212e566b1861e72c15b1eb02",
                "md5": "feddf7fe20cd76f3678615f36663a344",
                "sha256": "066a8cc6cc238e9fb6b0b62a671c7783ea648a6341b9e0b5aabe73d6816789df"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "feddf7fe20cd76f3678615f36663a344",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 199083,
            "upload_time": "2023-11-09T15:54:06",
            "upload_time_iso_8601": "2023-11-09T15:54:06.258396Z",
            "url": "https://files.pythonhosted.org/packages/d6/a2/07dae11c77194bbf3c2a0104fe2ced7e420e212e566b1861e72c15b1eb02/imagequant-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f8413d56ae18ac2ab87602f957caa70ae0c564d1820db1cbfac612721fe1c48",
                "md5": "4a4ad4e139fecffaca0a8a0537c041be",
                "sha256": "286a8d36de292e2abb58aa99a5825474bfb7b0821bb0297591b22db435bacb2c"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4a4ad4e139fecffaca0a8a0537c041be",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 177248,
            "upload_time": "2023-11-09T15:54:07",
            "upload_time_iso_8601": "2023-11-09T15:54:07.908975Z",
            "url": "https://files.pythonhosted.org/packages/1f/84/13d56ae18ac2ab87602f957caa70ae0c564d1820db1cbfac612721fe1c48/imagequant-1.1.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": "1c799c0ab8c4f6579c013f4b544b1b8b42a593868c88531d78ce5f65af98d5d8",
                "md5": "16dca3e3f23e2ab70a1f8fddcb258fea",
                "sha256": "95f7b110dcf3ecf3b9ad89634696eba740a2785a1dee179a52a010f847af9bc9"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "16dca3e3f23e2ab70a1f8fddcb258fea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 173850,
            "upload_time": "2023-11-09T15:54:09",
            "upload_time_iso_8601": "2023-11-09T15:54:09.818731Z",
            "url": "https://files.pythonhosted.org/packages/1c/79/9c0ab8c4f6579c013f4b544b1b8b42a593868c88531d78ce5f65af98d5d8/imagequant-1.1.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7367cd2d507f14c74c1732fd131d8030c8727489f6e83c1083966805075d0ce",
                "md5": "02c46aefb4628e491d65452f2e84ee4a",
                "sha256": "5185bd289ad2cbb9fbea355692465832fdb6968822de1a1fe9c3a42fe697b8d0"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02c46aefb4628e491d65452f2e84ee4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 199976,
            "upload_time": "2023-11-09T15:54:11",
            "upload_time_iso_8601": "2023-11-09T15:54:11.339117Z",
            "url": "https://files.pythonhosted.org/packages/b7/36/7cd2d507f14c74c1732fd131d8030c8727489f6e83c1083966805075d0ce/imagequant-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40ca82976242256bdda3237cc9ba07d8c21bfcaf0291a08d3172dc9a2c9d3bae",
                "md5": "513a47c61203e012fcb7f13ecdfa54f8",
                "sha256": "ad9d398ec721226d72483a51e3bc6c3659c1882dae8ef52abbe16ba23be397fc"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "513a47c61203e012fcb7f13ecdfa54f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 39569,
            "upload_time": "2023-11-09T15:54:12",
            "upload_time_iso_8601": "2023-11-09T15:54:12.677197Z",
            "url": "https://files.pythonhosted.org/packages/40/ca/82976242256bdda3237cc9ba07d8c21bfcaf0291a08d3172dc9a2c9d3bae/imagequant-1.1.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31d8cfa69a8ae581a6914baa91d6489fe055030d2220020631c759a86d90ac54",
                "md5": "9cac0ec5a3dd47567bc45effd0d07d32",
                "sha256": "ddcbdf33faf265c4c031051647f208c4d6170f4edaf4b71820293dd0247b7cf4"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9cac0ec5a3dd47567bc45effd0d07d32",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 50987,
            "upload_time": "2023-11-09T15:54:14",
            "upload_time_iso_8601": "2023-11-09T15:54:14.109425Z",
            "url": "https://files.pythonhosted.org/packages/31/d8/cfa69a8ae581a6914baa91d6489fe055030d2220020631c759a86d90ac54/imagequant-1.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc44ff537833037be21c63be67c653c582c7bc281c29153d2a9fa84186b787f4",
                "md5": "4360daea3a7a45ddd3ecac738133c24d",
                "sha256": "6c94020cdc8036337939891765f5e1aa0aae863cdddccf44fa51c4de53332bba"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4360daea3a7a45ddd3ecac738133c24d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 56061,
            "upload_time": "2023-11-09T15:54:15",
            "upload_time_iso_8601": "2023-11-09T15:54:15.205793Z",
            "url": "https://files.pythonhosted.org/packages/cc/44/ff537833037be21c63be67c653c582c7bc281c29153d2a9fa84186b787f4/imagequant-1.1.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd7f98504356f0d57582f7557369bbd059a0f8c577a539cad8f446d22f961019",
                "md5": "b830b88b2eea4854fab513729fa856dd",
                "sha256": "29772dc2bd9a5ece5fd3117535feec294156235abc6d48526185096fc5c7da9e"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b830b88b2eea4854fab513729fa856dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 198514,
            "upload_time": "2023-11-09T15:54:16",
            "upload_time_iso_8601": "2023-11-09T15:54:16.344162Z",
            "url": "https://files.pythonhosted.org/packages/dd/7f/98504356f0d57582f7557369bbd059a0f8c577a539cad8f446d22f961019/imagequant-1.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b296921420b49c2103a57fca3ae4cf21237012cdca30bb61325beead6ddec5ca",
                "md5": "750458b7cd8691f788c7bbdaf580e585",
                "sha256": "caafb6db04390cad5e185fa4b1ade8a160a89f9b5591cbff06b9b970091904ae"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "750458b7cd8691f788c7bbdaf580e585",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 176942,
            "upload_time": "2023-11-09T15:54:17",
            "upload_time_iso_8601": "2023-11-09T15:54:17.831184Z",
            "url": "https://files.pythonhosted.org/packages/b2/96/921420b49c2103a57fca3ae4cf21237012cdca30bb61325beead6ddec5ca/imagequant-1.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad23e2434230ea26f5f5e25c787808442942b4fb734b386641f93cefff300800",
                "md5": "4381a88228fff9c5264d917d645fa4ca",
                "sha256": "4c31eb2eb6e6ad235d890e923698441b95d8241d69e0f949489a1497af0aeca4"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "4381a88228fff9c5264d917d645fa4ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 173200,
            "upload_time": "2023-11-09T15:54:19",
            "upload_time_iso_8601": "2023-11-09T15:54:19.534029Z",
            "url": "https://files.pythonhosted.org/packages/ad/23/e2434230ea26f5f5e25c787808442942b4fb734b386641f93cefff300800/imagequant-1.1.0-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f45be33980a0fd36ea72d5d27707be33859b71982b6d197503294380e0292c3",
                "md5": "58a6781f69c8ad06a5d148e5c86d7c1f",
                "sha256": "e665757c9f28fa49ffb5ac3e97f52706c52d739613058c9b5611a21e525aafc7"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58a6781f69c8ad06a5d148e5c86d7c1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 199422,
            "upload_time": "2023-11-09T15:54:20",
            "upload_time_iso_8601": "2023-11-09T15:54:20.913144Z",
            "url": "https://files.pythonhosted.org/packages/4f/45/be33980a0fd36ea72d5d27707be33859b71982b6d197503294380e0292c3/imagequant-1.1.0-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "386e85605d9a3c57bc8d93831de1eb105ce62c456e30487741007b8bc2927afc",
                "md5": "e2a58e9e63708df8217e07e4f022597f",
                "sha256": "319d1da4676e3cc69daae89fdbf6675429c6cfa927d659fc5d894766d8494abd"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "e2a58e9e63708df8217e07e4f022597f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 43212,
            "upload_time": "2023-11-09T15:54:22",
            "upload_time_iso_8601": "2023-11-09T15:54:22.263669Z",
            "url": "https://files.pythonhosted.org/packages/38/6e/85605d9a3c57bc8d93831de1eb105ce62c456e30487741007b8bc2927afc/imagequant-1.1.0-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30d38f832c9c0c05070e4b596a62ee34c2029052bb304cf857a7cc4f2ee21e9f",
                "md5": "603af722e9c1e2807ccc09322b3b17c8",
                "sha256": "d92fb2c8b90c139de2f8a3d3dc9a79f1a6222fa3b967b185c2aae12512a05b9b"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "603af722e9c1e2807ccc09322b3b17c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 55385,
            "upload_time": "2023-11-09T15:54:23",
            "upload_time_iso_8601": "2023-11-09T15:54:23.679465Z",
            "url": "https://files.pythonhosted.org/packages/30/d3/8f832c9c0c05070e4b596a62ee34c2029052bb304cf857a7cc4f2ee21e9f/imagequant-1.1.0-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43a881a283ca605c7a1c3c2e7456c325143157d88977cacf118615a5403641ae",
                "md5": "d0386e49f0fc3a5075e698a9631f9ab0",
                "sha256": "32c219cd24ffdc89d5cdb924f1124aa5feb63a4bf409aa7b42c8d403383ba796"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d0386e49f0fc3a5075e698a9631f9ab0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 56047,
            "upload_time": "2023-11-09T15:54:25",
            "upload_time_iso_8601": "2023-11-09T15:54:25.194411Z",
            "url": "https://files.pythonhosted.org/packages/43/a8/81a283ca605c7a1c3c2e7456c325143157d88977cacf118615a5403641ae/imagequant-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51cfaef804ad589b711d2b43dad34a44fad8be34b629b88ef7836be3050198e4",
                "md5": "b5b2d8e0a16748c31cd18013ae76fadf",
                "sha256": "cda52066ed161fdd3268e2cda4d924deabc2348a759806824978a3d084bcdd0c"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5b2d8e0a16748c31cd18013ae76fadf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 198513,
            "upload_time": "2023-11-09T15:54:26",
            "upload_time_iso_8601": "2023-11-09T15:54:26.560083Z",
            "url": "https://files.pythonhosted.org/packages/51/cf/aef804ad589b711d2b43dad34a44fad8be34b629b88ef7836be3050198e4/imagequant-1.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b61d27cbb222e78908982474d42f07e1615689624354970328baee400aa5a15c",
                "md5": "2e1810d11bdcabe6b7519dc5e3a287d3",
                "sha256": "1850f008509f2db5bfb795afc2195aa06fba49715db678a58b2fc5043a5b3838"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2e1810d11bdcabe6b7519dc5e3a287d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 176962,
            "upload_time": "2023-11-09T15:54:28",
            "upload_time_iso_8601": "2023-11-09T15:54:28.390216Z",
            "url": "https://files.pythonhosted.org/packages/b6/1d/27cbb222e78908982474d42f07e1615689624354970328baee400aa5a15c/imagequant-1.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09ebcc3ed610985b70b9560dcc915b5bacf40dcd4bce5db90a8f8d73df29e671",
                "md5": "62de23b23ed9a61dd057dab94dbee279",
                "sha256": "3f1bbb38eaa970334e74f51421f81c50edefb3b15a8c188a084e7794549365c6"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "62de23b23ed9a61dd057dab94dbee279",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 173184,
            "upload_time": "2023-11-09T15:54:29",
            "upload_time_iso_8601": "2023-11-09T15:54:29.655474Z",
            "url": "https://files.pythonhosted.org/packages/09/eb/cc3ed610985b70b9560dcc915b5bacf40dcd4bce5db90a8f8d73df29e671/imagequant-1.1.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "428347dd847cd4e0410bd3a5935aa9c7c95d9feef1d21b728257ccd052ade1ef",
                "md5": "1003e3b5dc04dc71cefe257c5156a208",
                "sha256": "e86970f6c2d4a2d119aeeb10b2b760eac6ad377b38158afda9b5c9191adb1fc7"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1003e3b5dc04dc71cefe257c5156a208",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 199411,
            "upload_time": "2023-11-09T15:54:31",
            "upload_time_iso_8601": "2023-11-09T15:54:31.179043Z",
            "url": "https://files.pythonhosted.org/packages/42/83/47dd847cd4e0410bd3a5935aa9c7c95d9feef1d21b728257ccd052ade1ef/imagequant-1.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a34b1f61c0b9e00d80434be432a34869846ae20c6cad836e2bc9f8d153538274",
                "md5": "3f90d0fcfb15bea0a6667b17b6e515ab",
                "sha256": "3b2557e0669408a7a2a631f2f19b678a98b728d09325e1842cfc94d9f2db05ff"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "3f90d0fcfb15bea0a6667b17b6e515ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 39546,
            "upload_time": "2023-11-09T15:54:32",
            "upload_time_iso_8601": "2023-11-09T15:54:32.469268Z",
            "url": "https://files.pythonhosted.org/packages/a3/4b/1f61c0b9e00d80434be432a34869846ae20c6cad836e2bc9f8d153538274/imagequant-1.1.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bdeb6b44a6d55d1f653dd054dae91d22a30ca570df6f54361eea6b5362ca9e7",
                "md5": "d9f6188ea12a6aa4d1d533d9315daa33",
                "sha256": "0be748e4d9dcbd370eaeaf43bdb605ff451abd62c2c81de2f7a96a11c671930d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d9f6188ea12a6aa4d1d533d9315daa33",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 50973,
            "upload_time": "2023-11-09T15:54:33",
            "upload_time_iso_8601": "2023-11-09T15:54:33.644489Z",
            "url": "https://files.pythonhosted.org/packages/5b/de/b6b44a6d55d1f653dd054dae91d22a30ca570df6f54361eea6b5362ca9e7/imagequant-1.1.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fef3ddf7f7675f7ba247bc6ffa6c89498d6bdd77cdeac6c2ecaedfaa52982635",
                "md5": "c021ff4656cbca3582cd585f527b88f5",
                "sha256": "7b64654c03e2c9a6270a49e09c0f4792796196bbfe83c7bf637e99f4900dd1d6"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "c021ff4656cbca3582cd585f527b88f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 102447,
            "upload_time": "2023-11-09T15:54:34",
            "upload_time_iso_8601": "2023-11-09T15:54:34.937373Z",
            "url": "https://files.pythonhosted.org/packages/fe/f3/ddf7f7675f7ba247bc6ffa6c89498d6bdd77cdeac6c2ecaedfaa52982635/imagequant-1.1.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c416a1db97a7a973816bdb3ef816a77829992d63c05622b1f5853640efb7cbc",
                "md5": "458d4e1cfda4cdc0b150074c9af9d401",
                "sha256": "91331c05950bc77b68ffcd844bd7d3f91f9646a909c4be3f914dd7284c28f0cf"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "458d4e1cfda4cdc0b150074c9af9d401",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 56111,
            "upload_time": "2023-11-09T15:54:36",
            "upload_time_iso_8601": "2023-11-09T15:54:36.059103Z",
            "url": "https://files.pythonhosted.org/packages/1c/41/6a1db97a7a973816bdb3ef816a77829992d63c05622b1f5853640efb7cbc/imagequant-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb5ab849a87f2c6242d74cd024b69c5fbcc94d55002ae735a971f54ae58a1b68",
                "md5": "8ea7a082dbff9681f035d5c35564b832",
                "sha256": "eb5db5697e279f11d9b0d9b1954358ce11dc3223ff982dd0af829608d3c5dea5"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8ea7a082dbff9681f035d5c35564b832",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 52844,
            "upload_time": "2023-11-09T15:54:37",
            "upload_time_iso_8601": "2023-11-09T15:54:37.127763Z",
            "url": "https://files.pythonhosted.org/packages/bb/5a/b849a87f2c6242d74cd024b69c5fbcc94d55002ae735a971f54ae58a1b68/imagequant-1.1.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c5e9c95f40e14b9120e61a3496f0ae2ea2a20615003eddfe86f337ff1c6d08b",
                "md5": "e0c40cf4b31b74e731fc6c2ea28eae8c",
                "sha256": "edb549bdb559b9237ad9508377457fe83cec5c11dada2d7ef5f76ce194ffb620"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e0c40cf4b31b74e731fc6c2ea28eae8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 198942,
            "upload_time": "2023-11-09T15:54:38",
            "upload_time_iso_8601": "2023-11-09T15:54:38.585569Z",
            "url": "https://files.pythonhosted.org/packages/1c/5e/9c95f40e14b9120e61a3496f0ae2ea2a20615003eddfe86f337ff1c6d08b/imagequant-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "035f6a2f9fb6d328bbb956ecb0e7998ca3411325b2ef98aaa497521d69edcd1c",
                "md5": "b9718d470b1602f44a78e43524123324",
                "sha256": "50c94d414328a5bc4b8d561d5ae3b91bab3f48018c95b5dc114f99a9871ea3a1"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b9718d470b1602f44a78e43524123324",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 177392,
            "upload_time": "2023-11-09T15:54:40",
            "upload_time_iso_8601": "2023-11-09T15:54:40.167277Z",
            "url": "https://files.pythonhosted.org/packages/03/5f/6a2f9fb6d328bbb956ecb0e7998ca3411325b2ef98aaa497521d69edcd1c/imagequant-1.1.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": "f306205e8b6ddb9c35216fc0886bf59c8e02696a30e51dd969e2bfa3bdac074d",
                "md5": "989451f2725ed67a7faa70825906e485",
                "sha256": "981eb2e9afc1da5d2cbbfd2f8747a6a5e25e3727226065286493bf7abf927a4b"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "989451f2725ed67a7faa70825906e485",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 174090,
            "upload_time": "2023-11-09T15:54:41",
            "upload_time_iso_8601": "2023-11-09T15:54:41.659530Z",
            "url": "https://files.pythonhosted.org/packages/f3/06/205e8b6ddb9c35216fc0886bf59c8e02696a30e51dd969e2bfa3bdac074d/imagequant-1.1.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50e90d873a19f12e0684262feebe0809e5b7d45b67a0e511304fa70dcc50fe92",
                "md5": "f59cd7da35f23194260606af4885d3fd",
                "sha256": "f23d2fc45e4dabfc99fe00da8258c74f263646be5de97acee1d322e82a374f11"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f59cd7da35f23194260606af4885d3fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 200005,
            "upload_time": "2023-11-09T15:54:43",
            "upload_time_iso_8601": "2023-11-09T15:54:43.024184Z",
            "url": "https://files.pythonhosted.org/packages/50/e9/0d873a19f12e0684262feebe0809e5b7d45b67a0e511304fa70dcc50fe92/imagequant-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9086e7ef984929c6baa1e90b3d39e971c1c62fe6f5c384f0769e6378d2b19feb",
                "md5": "73ec7d78cd3a8b9b95a64bc2d747b3f1",
                "sha256": "c5fef1a3f9df8e397b81671de48d08bfdafbeb3e3019f082b9f2c2b4d6a64403"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "73ec7d78cd3a8b9b95a64bc2d747b3f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 39544,
            "upload_time": "2023-11-09T15:54:44",
            "upload_time_iso_8601": "2023-11-09T15:54:44.276306Z",
            "url": "https://files.pythonhosted.org/packages/90/86/e7ef984929c6baa1e90b3d39e971c1c62fe6f5c384f0769e6378d2b19feb/imagequant-1.1.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32bee1716f994bbb6d8dfeb3e54bb19220ea67861b3ad39f09ad39a7c9fa498d",
                "md5": "7bb818da25225d7cec5f4bc92dbc71d0",
                "sha256": "d0d69a3a98feac6f920ffb81f009342705a8c4d9d3ff75d20e8eb1fcd9424bd0"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7bb818da25225d7cec5f4bc92dbc71d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 50976,
            "upload_time": "2023-11-09T15:54:45",
            "upload_time_iso_8601": "2023-11-09T15:54:45.706429Z",
            "url": "https://files.pythonhosted.org/packages/32/be/e1716f994bbb6d8dfeb3e54bb19220ea67861b3ad39f09ad39a7c9fa498d/imagequant-1.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72e3a58e9dd819fa4c472145b9ba0735edb4f52cde0813971809e5b2a93cbb17",
                "md5": "082d2beef2ad51ffde03d7d47272b7ad",
                "sha256": "d83deadfc48462a4f0209faaeffc059af37286e0a2b4daf6c405942513b03cc6"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "082d2beef2ad51ffde03d7d47272b7ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 102451,
            "upload_time": "2023-11-09T15:54:46",
            "upload_time_iso_8601": "2023-11-09T15:54:46.880509Z",
            "url": "https://files.pythonhosted.org/packages/72/e3/a58e9dd819fa4c472145b9ba0735edb4f52cde0813971809e5b2a93cbb17/imagequant-1.1.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c0a5d79d132ab8baeb9a2304817bcf44c20f2f3816091ae6cad88ada687e642",
                "md5": "6eff2a48f04d434300d04159f4bbad60",
                "sha256": "164de8fb45beab6f86dd7a569f2765d4729b5659435b93682bd1755f8defbe8a"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6eff2a48f04d434300d04159f4bbad60",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 56109,
            "upload_time": "2023-11-09T15:54:48",
            "upload_time_iso_8601": "2023-11-09T15:54:48.415500Z",
            "url": "https://files.pythonhosted.org/packages/0c/0a/5d79d132ab8baeb9a2304817bcf44c20f2f3816091ae6cad88ada687e642/imagequant-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "794529afd2b514b77f0925b9c01f35c74ebf8521feec2ab5bb1206bac8f2378e",
                "md5": "66abcee949e3867a767de12f66abfbb7",
                "sha256": "caf766ae0aa51cf62af469e989732e356a056c70ebdc62b8e4e0fb16f3c0ee22"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "66abcee949e3867a767de12f66abfbb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 52843,
            "upload_time": "2023-11-09T15:54:49",
            "upload_time_iso_8601": "2023-11-09T15:54:49.532204Z",
            "url": "https://files.pythonhosted.org/packages/79/45/29afd2b514b77f0925b9c01f35c74ebf8521feec2ab5bb1206bac8f2378e/imagequant-1.1.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b950755b57dad48cf38d54f33a40ef461a8287280948e824334d1bcdc9dba77a",
                "md5": "30ae428345f5598b1f78a9bb6451be22",
                "sha256": "003662a4f57e6a7b70c56ab0190ac17d2c4995a45a53a93eca9f51dcddc0f02c"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30ae428345f5598b1f78a9bb6451be22",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 198778,
            "upload_time": "2023-11-09T15:54:50",
            "upload_time_iso_8601": "2023-11-09T15:54:50.743415Z",
            "url": "https://files.pythonhosted.org/packages/b9/50/755b57dad48cf38d54f33a40ef461a8287280948e824334d1bcdc9dba77a/imagequant-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8155ea6da7e824e136e5c7848c44451d045d2bd153d5824fb59be8947bce6c54",
                "md5": "5f2072024e20f6409a556828fd403ac3",
                "sha256": "d22081077b1eebf3e02406238b77274f47bb0a07589a22839edfe7ca3238522d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5f2072024e20f6409a556828fd403ac3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 177317,
            "upload_time": "2023-11-09T15:54:52",
            "upload_time_iso_8601": "2023-11-09T15:54:52.152945Z",
            "url": "https://files.pythonhosted.org/packages/81/55/ea6da7e824e136e5c7848c44451d045d2bd153d5824fb59be8947bce6c54/imagequant-1.1.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": "f5e3899ac550c249e4ba5cc64d647b31b18c1c52c03a7ee72988ddbe2074cc73",
                "md5": "1ec3e3930a618b722e44350f9be3b989",
                "sha256": "234ffa148f18f36b593b68f08878deba472fd6834dff04a62e068b2bae30ee20"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1ec3e3930a618b722e44350f9be3b989",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 173677,
            "upload_time": "2023-11-09T15:54:53",
            "upload_time_iso_8601": "2023-11-09T15:54:53.394188Z",
            "url": "https://files.pythonhosted.org/packages/f5/e3/899ac550c249e4ba5cc64d647b31b18c1c52c03a7ee72988ddbe2074cc73/imagequant-1.1.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "618e373ae872772c676ea13c79f6ca01a6a53738fc1a27da8c896bcd6bf18a94",
                "md5": "eaf62a43aa13063a6f3a9a7568087fef",
                "sha256": "6335601f2478136035c9458fe4935c31708e574f77927b8012141a889760e7b4"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eaf62a43aa13063a6f3a9a7568087fef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 199675,
            "upload_time": "2023-11-09T15:54:54",
            "upload_time_iso_8601": "2023-11-09T15:54:54.884253Z",
            "url": "https://files.pythonhosted.org/packages/61/8e/373ae872772c676ea13c79f6ca01a6a53738fc1a27da8c896bcd6bf18a94/imagequant-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c21a23cd81316993c5f8a7849195390f21e63b0483db681cf640e2e5db89b226",
                "md5": "0cfd7359447b72d99dd0e3a38387f98a",
                "sha256": "b4b57b5aa41ad9264e954723e924d16b7eeb3b4d3af5062485d73146f363df88"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "0cfd7359447b72d99dd0e3a38387f98a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 39536,
            "upload_time": "2023-11-09T15:54:56",
            "upload_time_iso_8601": "2023-11-09T15:54:56.163214Z",
            "url": "https://files.pythonhosted.org/packages/c2/1a/23cd81316993c5f8a7849195390f21e63b0483db681cf640e2e5db89b226/imagequant-1.1.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c69637f239011493ea08bde5b24bc3601fed4b45e43a11195af83c2be4ccc09",
                "md5": "f66e6ca8cb5c4f9267231da57c9e7d03",
                "sha256": "907023f477900184e6392ca995a5606cb241e886e2f4bfd4bcdba50cbe24df61"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f66e6ca8cb5c4f9267231da57c9e7d03",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 50974,
            "upload_time": "2023-11-09T15:54:57",
            "upload_time_iso_8601": "2023-11-09T15:54:57.232711Z",
            "url": "https://files.pythonhosted.org/packages/1c/69/637f239011493ea08bde5b24bc3601fed4b45e43a11195af83c2be4ccc09/imagequant-1.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4eb61fcef4022b6a982920b221b5e192a3efc9c33d9c929d45adc1b9a490a49",
                "md5": "a5f36f72271db819051a5d8604d24615",
                "sha256": "38e0237f8f6c8d624171d82f59fcbf32dcdb21eec4cb8d847d65618b42b0abfc"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5f36f72271db819051a5d8604d24615",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 39676,
            "upload_time": "2023-11-09T15:54:58",
            "upload_time_iso_8601": "2023-11-09T15:54:58.531542Z",
            "url": "https://files.pythonhosted.org/packages/e4/eb/61fcef4022b6a982920b221b5e192a3efc9c33d9c929d45adc1b9a490a49/imagequant-1.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "376c6745c67de6622fd61d4a0900f74ba5b50d4ee7d499e2cc40eb241d0abb4c",
                "md5": "ad29a453e2c179d6b579747eb9fd02b9",
                "sha256": "2c512d4fb40a283d62401001806ee707287be6d978a7d0351293b4bca1bcb1d9"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad29a453e2c179d6b579747eb9fd02b9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 40398,
            "upload_time": "2023-11-09T15:54:59",
            "upload_time_iso_8601": "2023-11-09T15:54:59.713703Z",
            "url": "https://files.pythonhosted.org/packages/37/6c/6745c67de6622fd61d4a0900f74ba5b50d4ee7d499e2cc40eb241d0abb4c/imagequant-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa92d056ab6c60fc469e02033aabce60a992ad12db83f71463acae78e3fe5b2e",
                "md5": "2ec50a0a97339ad1120f778a583793d2",
                "sha256": "ccec1d70bde664c5d34c8d982bfaa669960bb286371e22eec1034a9cb17fdc44"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2ec50a0a97339ad1120f778a583793d2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 42731,
            "upload_time": "2023-11-09T15:55:01",
            "upload_time_iso_8601": "2023-11-09T15:55:01.492928Z",
            "url": "https://files.pythonhosted.org/packages/aa/92/d056ab6c60fc469e02033aabce60a992ad12db83f71463acae78e3fe5b2e/imagequant-1.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b51ea83c4bfef9125cc5b0e7e0122fb915910a33006df384f1bbe10111fbbca",
                "md5": "df6196242409c170235778397593f143",
                "sha256": "619fd7287394bb5129a180071b8a6e0d65aa1831536b0a8baeece71f6b7a206f"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "df6196242409c170235778397593f143",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 41966,
            "upload_time": "2023-11-09T15:55:03",
            "upload_time_iso_8601": "2023-11-09T15:55:03.149989Z",
            "url": "https://files.pythonhosted.org/packages/3b/51/ea83c4bfef9125cc5b0e7e0122fb915910a33006df384f1bbe10111fbbca/imagequant-1.1.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f731c504e5c8208c6f6994f99219f88694001a900c4853cb708109e6e3aa6ca8",
                "md5": "9e51eecac583b345cdc571da81f96156",
                "sha256": "61204e58e7cbaa3b368fb9376980082946b3631a59408979b0302737673b0161"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e51eecac583b345cdc571da81f96156",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 39675,
            "upload_time": "2023-11-09T15:55:04",
            "upload_time_iso_8601": "2023-11-09T15:55:04.583505Z",
            "url": "https://files.pythonhosted.org/packages/f7/31/c504e5c8208c6f6994f99219f88694001a900c4853cb708109e6e3aa6ca8/imagequant-1.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e09a202521e4322c5d831d846db6292914fd8e4ac54514907d6a1bdea715775d",
                "md5": "2c0af17f309322361fcec43b12ed980d",
                "sha256": "f74066943129cbb5a7264b83b4dfc58eef8d9a40db2fb2d8abfb6f0de1993070"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c0af17f309322361fcec43b12ed980d",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 41286,
            "upload_time": "2023-11-09T15:55:05",
            "upload_time_iso_8601": "2023-11-09T15:55:05.982709Z",
            "url": "https://files.pythonhosted.org/packages/e0/9a/202521e4322c5d831d846db6292914fd8e4ac54514907d6a1bdea715775d/imagequant-1.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a4c3552c50e75d578cf3ee51de6a62c089c742b440525cdb69438884b0819a4",
                "md5": "4254d5816e5203fb3f89f323b42e67cc",
                "sha256": "f26cbe471d41543306a0a19d79874506d4f6a238c533d63b67ec66375faa45e7"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4254d5816e5203fb3f89f323b42e67cc",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 43504,
            "upload_time": "2023-11-09T15:55:07",
            "upload_time_iso_8601": "2023-11-09T15:55:07.307271Z",
            "url": "https://files.pythonhosted.org/packages/5a/4c/3552c50e75d578cf3ee51de6a62c089c742b440525cdb69438884b0819a4/imagequant-1.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b48f121b26fe8dbd4cc9d38ebf8a1b38c357f2242fd2a2dea42397a02951bc0",
                "md5": "1f68055a5270045beb6ba2c2c46d7a15",
                "sha256": "e982725fc767e24e8ebc42a91cf1f55040f13a3ce33d89c9a0d50e362d60a58b"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f68055a5270045beb6ba2c2c46d7a15",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 41963,
            "upload_time": "2023-11-09T15:55:08",
            "upload_time_iso_8601": "2023-11-09T15:55:08.605188Z",
            "url": "https://files.pythonhosted.org/packages/5b/48/f121b26fe8dbd4cc9d38ebf8a1b38c357f2242fd2a2dea42397a02951bc0/imagequant-1.1.0-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdd50a6d13c63098d62dad05c94afd1641cee2895416e8edd859f3d102fd942b",
                "md5": "bdf3f0c1ad66965a86aac53453ee397b",
                "sha256": "696d9bf2272b6db522296900c54351e3d3da9ebe5a76123ead27e54b04c93939"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bdf3f0c1ad66965a86aac53453ee397b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 39674,
            "upload_time": "2023-11-09T15:55:10",
            "upload_time_iso_8601": "2023-11-09T15:55:10.631782Z",
            "url": "https://files.pythonhosted.org/packages/cd/d5/0a6d13c63098d62dad05c94afd1641cee2895416e8edd859f3d102fd942b/imagequant-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1ec4a0f9b1ed8c1d48044832e508c25a35b870f805577226f92789798ea00ee",
                "md5": "0fe840c726b80056fd65fdd56ee8b060",
                "sha256": "c5a550d71575057bc23186eeaeea081b4c7edc571cb8a1d642b3c43e8ec5ceca"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0fe840c726b80056fd65fdd56ee8b060",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 40394,
            "upload_time": "2023-11-09T15:55:11",
            "upload_time_iso_8601": "2023-11-09T15:55:11.759322Z",
            "url": "https://files.pythonhosted.org/packages/e1/ec/4a0f9b1ed8c1d48044832e508c25a35b870f805577226f92789798ea00ee/imagequant-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59a46c48c4e2549c26b45e7094184ff2deda79d64f76185745b053cdd13e5c6e",
                "md5": "01658868d5ca790470ca830e403ea221",
                "sha256": "724b637e1ea398d55204ebad5ec01fed2d76d3e63f67358b7ebe37b6bf722acd"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "01658868d5ca790470ca830e403ea221",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 42725,
            "upload_time": "2023-11-09T15:55:13",
            "upload_time_iso_8601": "2023-11-09T15:55:13.269020Z",
            "url": "https://files.pythonhosted.org/packages/59/a4/6c48c4e2549c26b45e7094184ff2deda79d64f76185745b053cdd13e5c6e/imagequant-1.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e785f385f3f5cc67112b3d4ab4151df8b753007eec6b39d977f0c5936b13b31",
                "md5": "649fb8f7f8affdf6703e2c940ac7325d",
                "sha256": "e000827c363ec741b476f3424b9b0bb00ca426af105520f736013f7b4cda8a1a"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "649fb8f7f8affdf6703e2c940ac7325d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 41958,
            "upload_time": "2023-11-09T15:55:14",
            "upload_time_iso_8601": "2023-11-09T15:55:14.421894Z",
            "url": "https://files.pythonhosted.org/packages/6e/78/5f385f3f5cc67112b3d4ab4151df8b753007eec6b39d977f0c5936b13b31/imagequant-1.1.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de8d22003c9c5a698b48a3ef024269f8969c553471e768ef60b3a0b87c2e04ee",
                "md5": "cf0b24e5314959df77f55945323f9312",
                "sha256": "db97100206c4bfa97f7a017b762b3ca0d9fce4995e4b6671963c98e7c9a52888"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf0b24e5314959df77f55945323f9312",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 39670,
            "upload_time": "2023-11-09T15:55:15",
            "upload_time_iso_8601": "2023-11-09T15:55:15.495329Z",
            "url": "https://files.pythonhosted.org/packages/de/8d/22003c9c5a698b48a3ef024269f8969c553471e768ef60b3a0b87c2e04ee/imagequant-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af750208ae6138d0532e101c7172af54e95da665432fce5fdf7145b51dafd0c1",
                "md5": "cbc5741e122564202dd3e46ab26c4297",
                "sha256": "1cb02b564ac5bd0d468d2c04d7dfef600d482ca431dc3456b8ade33e2e6081c6"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cbc5741e122564202dd3e46ab26c4297",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 40393,
            "upload_time": "2023-11-09T15:55:16",
            "upload_time_iso_8601": "2023-11-09T15:55:16.621227Z",
            "url": "https://files.pythonhosted.org/packages/af/75/0208ae6138d0532e101c7172af54e95da665432fce5fdf7145b51dafd0c1/imagequant-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65cdff9258478c0e7cbebfc3bd550bfe89ceca7a0204c4d8e90077ab85a2154f",
                "md5": "ef6bfd41634b8f4293bd7019ea858b2b",
                "sha256": "6e56443f09484e83b173775ebb8bf2171e2cc06f29703cda1743b41312c275ba"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ef6bfd41634b8f4293bd7019ea858b2b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 42726,
            "upload_time": "2023-11-09T15:55:17",
            "upload_time_iso_8601": "2023-11-09T15:55:17.765167Z",
            "url": "https://files.pythonhosted.org/packages/65/cd/ff9258478c0e7cbebfc3bd550bfe89ceca7a0204c4d8e90077ab85a2154f/imagequant-1.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2de1f8aa81c53139b7cdce5a04ea1eb49a65d3590ad05791bc421dd0f49be19e",
                "md5": "a043b7945af47c0f28e930169f2ece1b",
                "sha256": "445d4cee0444ddf7166347a810ccfb136077ad612468eb6d8e36a386582abc59"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a043b7945af47c0f28e930169f2ece1b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 41961,
            "upload_time": "2023-11-09T15:55:19",
            "upload_time_iso_8601": "2023-11-09T15:55:19.047463Z",
            "url": "https://files.pythonhosted.org/packages/2d/e1/f8aa81c53139b7cdce5a04ea1eb49a65d3590ad05791bc421dd0f49be19e/imagequant-1.1.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ba5cda149a6e1b4c7da35bed764ef5f87955814e7990586bc9ad5b8216ee408",
                "md5": "72a18ef1333940794aa9380c735b65cb",
                "sha256": "31f9f6f3a9444616ae298116c92a68f3d49a3dbb62376dbe965ed0d8b6eff454"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "72a18ef1333940794aa9380c735b65cb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 64350,
            "upload_time": "2023-11-09T15:55:20",
            "upload_time_iso_8601": "2023-11-09T15:55:20.227473Z",
            "url": "https://files.pythonhosted.org/packages/1b/a5/cda149a6e1b4c7da35bed764ef5f87955814e7990586bc9ad5b8216ee408/imagequant-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-09 15:55:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "wanadev",
    "github_project": "imagequant-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "imagequant"
}
        
Elapsed time: 0.15210s