imagequant


Nameimagequant JSON
Version 1.1.3 PyPI version JSON
download
home_pagehttps://github.com/wanadev/imagequant-python
SummaryImage Quantization Library
upload_time2024-11-22 15:08:03
maintainerFabien LOISON
docs_urlNone
authorWanadev
requires_pythonNone
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.3:**

  * misc(deps): Fixed PyPy builds on Windows platform (@flozz)

* **v1.1.2:**

  * misc: Removed PyPy wheels for Windows AMD64 as they won't build (@flozz)
  * misc: Fixed libimagequant build on newer GCC versions (@flozz)
  * misc: Added Python 3.13 support (@flozz)
  * misc!: Removed Python 3.8 support (@flozz)

* **v1.1.1:**

  * dist: Build and publish arm64 wheels for Linux and Windows (@laggykiller, #9, #10)

* **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": null,
    "maintainer_email": null,
    "keywords": "image libimagequant pngquant cffi",
    "author": "Wanadev",
    "author_email": "contact@wanadev.fr",
    "download_url": "https://files.pythonhosted.org/packages/93/7b/7a4da644165385961812eba1b45d0836fdb0b7ac8feb56c19ef207acbff1/imagequant-1.1.3.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.3:**\n\n  * misc(deps): Fixed PyPy builds on Windows platform (@flozz)\n\n* **v1.1.2:**\n\n  * misc: Removed PyPy wheels for Windows AMD64 as they won't build (@flozz)\n  * misc: Fixed libimagequant build on newer GCC versions (@flozz)\n  * misc: Added Python 3.13 support (@flozz)\n  * misc!: Removed Python 3.8 support (@flozz)\n\n* **v1.1.1:**\n\n  * dist: Build and publish arm64 wheels for Linux and Windows (@laggykiller, #9, #10)\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.3",
    "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": "4e67ffc7627f9f7881c777d22b6d775fca8fb28468a316e66bccbe756aff2186",
                "md5": "cba3f76ec0a264cf9123ae567d558c00",
                "sha256": "54dd2018311b032c5c3e190e7f0cce36654ef531cdfebf311ff1bd75643223be"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "cba3f76ec0a264cf9123ae567d558c00",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 109017,
            "upload_time": "2024-11-22T15:05:29",
            "upload_time_iso_8601": "2024-11-22T15:05:29.120118Z",
            "url": "https://files.pythonhosted.org/packages/4e/67/ffc7627f9f7881c777d22b6d775fca8fb28468a316e66bccbe756aff2186/imagequant-1.1.3-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d908363f3b778fea9baa202d7b2fb5a4b773999209c48db04fa52ed1e3928c7",
                "md5": "b1172e0ac28379b16b09e43d71a7c958",
                "sha256": "b724980cfba6180c69353d1677187eecf9bb6e669c3e6067aa6f7056a73201de"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1172e0ac28379b16b09e43d71a7c958",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 60572,
            "upload_time": "2024-11-22T15:05:30",
            "upload_time_iso_8601": "2024-11-22T15:05:30.909732Z",
            "url": "https://files.pythonhosted.org/packages/4d/90/8363f3b778fea9baa202d7b2fb5a4b773999209c48db04fa52ed1e3928c7/imagequant-1.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33d6a80cfd0a3a7ff1657d963075e1a8d45c1a36e64e283e9555b415c01afe93",
                "md5": "2d0b270a7dda30b7cc37e5f941edeb67",
                "sha256": "fd5f46369a0714cb66b68fc499e9a218d10bd91f9db3af241004caf8539db741"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2d0b270a7dda30b7cc37e5f941edeb67",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 55603,
            "upload_time": "2024-11-22T15:05:32",
            "upload_time_iso_8601": "2024-11-22T15:05:32.571260Z",
            "url": "https://files.pythonhosted.org/packages/33/d6/a80cfd0a3a7ff1657d963075e1a8d45c1a36e64e283e9555b415c01afe93/imagequant-1.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e98d65c3753989074ac4a5ec089e5c3abd3e68509f2b47fd59f36fdbfce99f3e",
                "md5": "f4ff571fc0135d53ed860f88973688f6",
                "sha256": "6b462eb64a415a3765e66265d73995640d4c7f5dfef2dfb02cd0a5885f023869"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f4ff571fc0135d53ed860f88973688f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 188240,
            "upload_time": "2024-11-22T15:05:34",
            "upload_time_iso_8601": "2024-11-22T15:05:34.167202Z",
            "url": "https://files.pythonhosted.org/packages/e9/8d/65c3753989074ac4a5ec089e5c3abd3e68509f2b47fd59f36fdbfce99f3e/imagequant-1.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4802f5d2fbe5f2cc0fb5ef8b3f762666d88a369952aef3a26f77567c96d3a455",
                "md5": "4b085926657799eacdf15c3009dc41be",
                "sha256": "5bc346f3afb0b12b0e581dd4277ed28ea064c3d0427f4f7d7f0ad81e4449d9d0"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b085926657799eacdf15c3009dc41be",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 198897,
            "upload_time": "2024-11-22T15:05:35",
            "upload_time_iso_8601": "2024-11-22T15:05:35.247430Z",
            "url": "https://files.pythonhosted.org/packages/48/02/f5d2fbe5f2cc0fb5ef8b3f762666d88a369952aef3a26f77567c96d3a455/imagequant-1.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24d37af8b985ae430db53b5fd4bd23442501f35c836d0a6326695def21d2d67e",
                "md5": "cbc1762c36e1a585e696bbed72a107e2",
                "sha256": "7a07f04a6ac1cc170d82e5f048b7f7d400c77ad40e6a23290a7f29d2b1894981"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cbc1762c36e1a585e696bbed72a107e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 177449,
            "upload_time": "2024-11-22T15:05:36",
            "upload_time_iso_8601": "2024-11-22T15:05:36.843676Z",
            "url": "https://files.pythonhosted.org/packages/24/d3/7af8b985ae430db53b5fd4bd23442501f35c836d0a6326695def21d2d67e/imagequant-1.1.3-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": "d9e4f84913683d0a1e981265d959d464bfb41c0d5abe3b3a9162cf40cd88a08b",
                "md5": "15afe06ace130bf57079e23d161612f4",
                "sha256": "f24e1b6239b0563bcc620a188724deb02baaa6a898c1e728bdeafe1d7661f72d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "15afe06ace130bf57079e23d161612f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 190043,
            "upload_time": "2024-11-22T15:05:38",
            "upload_time_iso_8601": "2024-11-22T15:05:38.625225Z",
            "url": "https://files.pythonhosted.org/packages/d9/e4/f84913683d0a1e981265d959d464bfb41c0d5abe3b3a9162cf40cd88a08b/imagequant-1.1.3-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4dcb9a62cd64ece8e3f975e70e7ef3d38832ce1e1168a9c5cd702d875003e018",
                "md5": "cd428c2f0407d880757e4e598e1da536",
                "sha256": "3e3dc183b86a68c2fa4c457749ee00694b3ac7c679958518e3b600fb70087555"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "cd428c2f0407d880757e4e598e1da536",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 182265,
            "upload_time": "2024-11-22T15:05:40",
            "upload_time_iso_8601": "2024-11-22T15:05:40.437179Z",
            "url": "https://files.pythonhosted.org/packages/4d/cb/9a62cd64ece8e3f975e70e7ef3d38832ce1e1168a9c5cd702d875003e018/imagequant-1.1.3-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14099031982d539ee8ba2bb504e05eb6918384f0c85ec2899ad4fd9fa7976855",
                "md5": "b32e55ade5da85a3dd2ce94338430df9",
                "sha256": "5304c99f4baaea332f645e7cda92aba82f0d6bf166c0f0cb0cf6489caaabfc94"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b32e55ade5da85a3dd2ce94338430df9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 197934,
            "upload_time": "2024-11-22T15:05:42",
            "upload_time_iso_8601": "2024-11-22T15:05:42.543069Z",
            "url": "https://files.pythonhosted.org/packages/14/09/9031982d539ee8ba2bb504e05eb6918384f0c85ec2899ad4fd9fa7976855/imagequant-1.1.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "807822b04ffdbe4d2b6d458db4f28c49dbd2911da2bc99bf120262b1ca647d61",
                "md5": "cb5c39d21fd01733939057494628842b",
                "sha256": "edf6cac6b46722a6db57c767aba5ff25ae7dc71c9988bbbda61ef0fd0dd9286e"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "cb5c39d21fd01733939057494628842b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 40680,
            "upload_time": "2024-11-22T15:05:44",
            "upload_time_iso_8601": "2024-11-22T15:05:44.322762Z",
            "url": "https://files.pythonhosted.org/packages/80/78/22b04ffdbe4d2b6d458db4f28c49dbd2911da2bc99bf120262b1ca647d61/imagequant-1.1.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d246a4c7b16209af6ecbb39d32c14d19f166b8a179dd840ee6f585157d0c2c71",
                "md5": "ea08091356db76e6739c58fcb568376a",
                "sha256": "3bc2ec7ef8e8cc8c63c0af256ce9e1e1a380bee97264b5753de75cb4a2cfbf22"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ea08091356db76e6739c58fcb568376a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 51981,
            "upload_time": "2024-11-22T15:05:45",
            "upload_time_iso_8601": "2024-11-22T15:05:45.833258Z",
            "url": "https://files.pythonhosted.org/packages/d2/46/a4c7b16209af6ecbb39d32c14d19f166b8a179dd840ee6f585157d0c2c71/imagequant-1.1.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a550fdb5b2a689a2f4964ae2b742f4fd81565ca7bb629598a6c14e2d5fc9029",
                "md5": "345f8907e5d62ab3e0d130097a93c343",
                "sha256": "51d4dadf8f03744fab33f93dcd850ce2b4f434f3399ea83194183f9d5bd4ddbe"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "345f8907e5d62ab3e0d130097a93c343",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 41427,
            "upload_time": "2024-11-22T15:05:47",
            "upload_time_iso_8601": "2024-11-22T15:05:47.548932Z",
            "url": "https://files.pythonhosted.org/packages/4a/55/0fdb5b2a689a2f4964ae2b742f4fd81565ca7bb629598a6c14e2d5fc9029/imagequant-1.1.3-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d30bcf122e827b1932460bf6e9225a6a545edf9bc90cf530271d9f4af116bcd",
                "md5": "6e46d283156018b8ba26537fedf07e26",
                "sha256": "52adb628a247c92b9db5af41e643dabd43abcbea5093025bb0ec7c7dbedfb7aa"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "6e46d283156018b8ba26537fedf07e26",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 109019,
            "upload_time": "2024-11-22T15:05:49",
            "upload_time_iso_8601": "2024-11-22T15:05:49.078256Z",
            "url": "https://files.pythonhosted.org/packages/9d/30/bcf122e827b1932460bf6e9225a6a545edf9bc90cf530271d9f4af116bcd/imagequant-1.1.3-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92add7fe89ab987bbe8e7bde8e9a8cfe5e7929e1f05624ec7139e5d17bab6347",
                "md5": "88cfb5147a13a67154063c8f59986978",
                "sha256": "0315f032468fcc2698bf0bf6dd50c63d1a7296619c293330e25c9fbb38826fec"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88cfb5147a13a67154063c8f59986978",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 60573,
            "upload_time": "2024-11-22T15:05:50",
            "upload_time_iso_8601": "2024-11-22T15:05:50.177196Z",
            "url": "https://files.pythonhosted.org/packages/92/ad/d7fe89ab987bbe8e7bde8e9a8cfe5e7929e1f05624ec7139e5d17bab6347/imagequant-1.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a69746076792c59e1fc09649301eca906db4b1938de243f5567c619f042c132",
                "md5": "a26a5264659bc5e2166f832f90e04894",
                "sha256": "ddc78d55f7e4f9edac03d5fb771d4adf63e852ecec13027a1c67528a8e5c0f1f"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a26a5264659bc5e2166f832f90e04894",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 55603,
            "upload_time": "2024-11-22T15:05:51",
            "upload_time_iso_8601": "2024-11-22T15:05:51.085404Z",
            "url": "https://files.pythonhosted.org/packages/2a/69/746076792c59e1fc09649301eca906db4b1938de243f5567c619f042c132/imagequant-1.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5d2dd83b5d349c4515696071d9f4b702b7fd5e982eb4ee2a917cd3ab62ba259",
                "md5": "49e0ebba6682101d2c5bc0850dc0e66f",
                "sha256": "11b255dea35650913cb48a7ef523bd7d2d067afea45dcceaa3831f3df477d06c"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "49e0ebba6682101d2c5bc0850dc0e66f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 188244,
            "upload_time": "2024-11-22T15:05:52",
            "upload_time_iso_8601": "2024-11-22T15:05:52.834169Z",
            "url": "https://files.pythonhosted.org/packages/a5/d2/dd83b5d349c4515696071d9f4b702b7fd5e982eb4ee2a917cd3ab62ba259/imagequant-1.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "011ecab3d62357fc997ae1f56b3b2eef0873490acc6af8c165c69c779612d690",
                "md5": "5ad5f09824c3b5f9a1ec345d7116fe54",
                "sha256": "0c43c0d2b06a2d4be8db924043baf3a8ecc33cd92c076cdc851692562e159ad2"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ad5f09824c3b5f9a1ec345d7116fe54",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 198918,
            "upload_time": "2024-11-22T15:05:53",
            "upload_time_iso_8601": "2024-11-22T15:05:53.935191Z",
            "url": "https://files.pythonhosted.org/packages/01/1e/cab3d62357fc997ae1f56b3b2eef0873490acc6af8c165c69c779612d690/imagequant-1.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89e68386d93a9c14d2f029a53cdc4e7f6d40e55e1a630083c1a6244760a0c767",
                "md5": "1fadc305e252c5e4f35d8ca0a2afe9c7",
                "sha256": "f033b9c84099a5bf61301285d5f9268bddc861efeb7ddfd24e976aec76c97662"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1fadc305e252c5e4f35d8ca0a2afe9c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 177493,
            "upload_time": "2024-11-22T15:05:55",
            "upload_time_iso_8601": "2024-11-22T15:05:55.991114Z",
            "url": "https://files.pythonhosted.org/packages/89/e6/8386d93a9c14d2f029a53cdc4e7f6d40e55e1a630083c1a6244760a0c767/imagequant-1.1.3-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": "6578dd0975d89489d209823ff827f75f1b95ea9471bba57fb37d9b442eb8be72",
                "md5": "2965ecbbda1af8d042a081475ff5c5db",
                "sha256": "11f2cf4ce8e0dcc6ec80cd6f932708bb3d54800c6d2fefeb20ce9cad56bee4d8"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2965ecbbda1af8d042a081475ff5c5db",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 190050,
            "upload_time": "2024-11-22T15:05:58",
            "upload_time_iso_8601": "2024-11-22T15:05:58.916158Z",
            "url": "https://files.pythonhosted.org/packages/65/78/dd0975d89489d209823ff827f75f1b95ea9471bba57fb37d9b442eb8be72/imagequant-1.1.3-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6d4fc52e3bab183ccb45550d20725573d6c1dfd8465218ffd7e2f821b83c79c",
                "md5": "0d481460a2fd68d6c9259bfc0dfd455c",
                "sha256": "99ab30f8cf39a4d4870c83f9d4bd726fc0852dcbc3c5bdeb56117d748c856626"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0d481460a2fd68d6c9259bfc0dfd455c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 182248,
            "upload_time": "2024-11-22T15:06:00",
            "upload_time_iso_8601": "2024-11-22T15:06:00.029997Z",
            "url": "https://files.pythonhosted.org/packages/d6/d4/fc52e3bab183ccb45550d20725573d6c1dfd8465218ffd7e2f821b83c79c/imagequant-1.1.3-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e331c24588bb697492d14aae3c3f282543e7919cded5beefd68f9cf0783152d4",
                "md5": "fc112ed7f0af6606926e57da1318e539",
                "sha256": "670ba6f0bfc0c22fc00afd02854a3773855a986bdf0ad884a9b9d10009decf73"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc112ed7f0af6606926e57da1318e539",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 197936,
            "upload_time": "2024-11-22T15:06:01",
            "upload_time_iso_8601": "2024-11-22T15:06:01.043670Z",
            "url": "https://files.pythonhosted.org/packages/e3/31/c24588bb697492d14aae3c3f282543e7919cded5beefd68f9cf0783152d4/imagequant-1.1.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "872d0803d91f4f6cbdf83bddc40220edb19a56e9b8a7e31500c033352e3dce84",
                "md5": "c184bbda239311c2b3b52ece96565d4e",
                "sha256": "be8f7c8db6c3737d2e80b8543bfbaa3ef9f9318261129fc8bc680f759771b480"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "c184bbda239311c2b3b52ece96565d4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 40674,
            "upload_time": "2024-11-22T15:06:02",
            "upload_time_iso_8601": "2024-11-22T15:06:02.173581Z",
            "url": "https://files.pythonhosted.org/packages/87/2d/0803d91f4f6cbdf83bddc40220edb19a56e9b8a7e31500c033352e3dce84/imagequant-1.1.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "388914f0122e4d5fa09b513ec3c19944a6917b180508838b8b6f9592b698d22f",
                "md5": "e04f5e79f49d112a361de1fea5eee38f",
                "sha256": "72ea861559d1d7d38a1cc2f03a7a4fb4954071768ed5e0061d36bffbdf2dfd11"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e04f5e79f49d112a361de1fea5eee38f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 51977,
            "upload_time": "2024-11-22T15:06:03",
            "upload_time_iso_8601": "2024-11-22T15:06:03.739298Z",
            "url": "https://files.pythonhosted.org/packages/38/89/14f0122e4d5fa09b513ec3c19944a6917b180508838b8b6f9592b698d22f/imagequant-1.1.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e37c893b8518d9d96878bce106390ff3b1c56db107686bcf32f7ec95343950e",
                "md5": "f5778ee9c288de7a2d0e510209e1c6c0",
                "sha256": "b49a633a30b344bb3e4bec7afd0e52b4f46ceed059bc4f3f052e0f10324754a7"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "f5778ee9c288de7a2d0e510209e1c6c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 41427,
            "upload_time": "2024-11-22T15:06:04",
            "upload_time_iso_8601": "2024-11-22T15:06:04.723610Z",
            "url": "https://files.pythonhosted.org/packages/5e/37/c893b8518d9d96878bce106390ff3b1c56db107686bcf32f7ec95343950e/imagequant-1.1.3-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5845b60f705ee214551bb84652e786915ceb1c7fba5c120f64046504ee147ad5",
                "md5": "a44e92bb43037ba9cdad337b91eba6b0",
                "sha256": "f1c04a672de96457cfab1c41813bfcb4ce97431febdfbbab6e940d558fc8ac09"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "a44e92bb43037ba9cdad337b91eba6b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 109073,
            "upload_time": "2024-11-22T15:06:05",
            "upload_time_iso_8601": "2024-11-22T15:06:05.682775Z",
            "url": "https://files.pythonhosted.org/packages/58/45/b60f705ee214551bb84652e786915ceb1c7fba5c120f64046504ee147ad5/imagequant-1.1.3-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42f3f362879354805881b573194806c0bc8fd7cb18ffa70c5b3a10d46a22f9f2",
                "md5": "acc1bcf60ec3ade410e8e08ba2cfea92",
                "sha256": "094e6384aaed44fea24da053c38abc6499fd6aff3201698a70ae9661a0f44b9d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acc1bcf60ec3ade410e8e08ba2cfea92",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 60628,
            "upload_time": "2024-11-22T15:06:07",
            "upload_time_iso_8601": "2024-11-22T15:06:07.384781Z",
            "url": "https://files.pythonhosted.org/packages/42/f3/f362879354805881b573194806c0bc8fd7cb18ffa70c5b3a10d46a22f9f2/imagequant-1.1.3-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ba6c90270585642252193ed3de094fbd1609ebb5ccdd537385a9ba86d1d6525",
                "md5": "2a7d842ebf3282275679259e6a0ec221",
                "sha256": "10f5393613b4eb3fd40d1e1ef6d26b42b4bd663544a278f7daaab1faca9e1746"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2a7d842ebf3282275679259e6a0ec221",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 55596,
            "upload_time": "2024-11-22T15:06:09",
            "upload_time_iso_8601": "2024-11-22T15:06:09.090081Z",
            "url": "https://files.pythonhosted.org/packages/6b/a6/c90270585642252193ed3de094fbd1609ebb5ccdd537385a9ba86d1d6525/imagequant-1.1.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ad3fbad1091c593b17a398438524ede435d848955d77f3c4666b8c27cc800c8",
                "md5": "b855ef498b58bc81a03e036d38bc831e",
                "sha256": "63da5d9039b26770d13a2adff9ee37354f7c34915b4a5bade341f0c26499fc2a"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b855ef498b58bc81a03e036d38bc831e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 188648,
            "upload_time": "2024-11-22T15:06:10",
            "upload_time_iso_8601": "2024-11-22T15:06:10.645351Z",
            "url": "https://files.pythonhosted.org/packages/5a/d3/fbad1091c593b17a398438524ede435d848955d77f3c4666b8c27cc800c8/imagequant-1.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17ab350325c5dfd4f8204d8d75407f3185d221a6bc016d1e516b9711a25a76c4",
                "md5": "2f2764de34cc6569df60c8661fe691cd",
                "sha256": "6a306c681a68147cc4ef9332907d3b3645546e9ab68940cc7c0cdb5ec26a284e"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f2764de34cc6569df60c8661fe691cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 199210,
            "upload_time": "2024-11-22T15:06:11",
            "upload_time_iso_8601": "2024-11-22T15:06:11.757769Z",
            "url": "https://files.pythonhosted.org/packages/17/ab/350325c5dfd4f8204d8d75407f3185d221a6bc016d1e516b9711a25a76c4/imagequant-1.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "128a34c27da8ee38af94ce96e2f7178acf4efae8bf402161e651d3fdb77c6837",
                "md5": "fe99ab1889555e0594e4dba2a913b5e2",
                "sha256": "87eb4a6bcf6f904e5a4f13d7c5432a0d2297e0d8ebdd3433f63dd2f5b16d7048"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fe99ab1889555e0594e4dba2a913b5e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 177387,
            "upload_time": "2024-11-22T15:06:12",
            "upload_time_iso_8601": "2024-11-22T15:06:12.847096Z",
            "url": "https://files.pythonhosted.org/packages/12/8a/34c27da8ee38af94ce96e2f7178acf4efae8bf402161e651d3fdb77c6837/imagequant-1.1.3-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": "19bf83a04d9362d17dd4bfbcdad70d33837329c19f2eb1509ef8691b916745ce",
                "md5": "b3f5fe91ee2eae047528fc4987811adf",
                "sha256": "b1ca568e090769a54628b7ac5739feb570b37fc7f4bc85077604bb65a79e92ca"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b3f5fe91ee2eae047528fc4987811adf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 190169,
            "upload_time": "2024-11-22T15:06:14",
            "upload_time_iso_8601": "2024-11-22T15:06:14.616926Z",
            "url": "https://files.pythonhosted.org/packages/19/bf/83a04d9362d17dd4bfbcdad70d33837329c19f2eb1509ef8691b916745ce/imagequant-1.1.3-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "544f63fd68b63ee94efebef16790938326d8a7ce3cb19813e460217cf2fd4601",
                "md5": "e6a80d02c692962f56af4b59e3c5c0fc",
                "sha256": "18b474a49d25718163c29ffaaa88c105bab844e2ddb4785f213de95b566f82d2"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e6a80d02c692962f56af4b59e3c5c0fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 181979,
            "upload_time": "2024-11-22T15:06:15",
            "upload_time_iso_8601": "2024-11-22T15:06:15.645776Z",
            "url": "https://files.pythonhosted.org/packages/54/4f/63fd68b63ee94efebef16790938326d8a7ce3cb19813e460217cf2fd4601/imagequant-1.1.3-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e85f4dca1206a503842a1cfc960004be5dc645616e18d31dab505555f465a906",
                "md5": "5965e7c776123f70db4a4294766b38fd",
                "sha256": "46c4e72950f807ba77a1f75cc881ae4c570d4f3aff4f2ced319bbd8e8dfe0ce5"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5965e7c776123f70db4a4294766b38fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 198251,
            "upload_time": "2024-11-22T15:06:16",
            "upload_time_iso_8601": "2024-11-22T15:06:16.865606Z",
            "url": "https://files.pythonhosted.org/packages/e8/5f/4dca1206a503842a1cfc960004be5dc645616e18d31dab505555f465a906/imagequant-1.1.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a11e30642d31b741b22ad8be0216410d69bd5e009cfd17b7b7014e2784289e4",
                "md5": "011cdeaa53da04f75bd466fce40375ef",
                "sha256": "8ae7b7e8aebb9fd38ca95faaf1465bab44cd6ebe408ad6715b56e2d92de96076"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "011cdeaa53da04f75bd466fce40375ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 40719,
            "upload_time": "2024-11-22T15:06:18",
            "upload_time_iso_8601": "2024-11-22T15:06:18.755993Z",
            "url": "https://files.pythonhosted.org/packages/4a/11/e30642d31b741b22ad8be0216410d69bd5e009cfd17b7b7014e2784289e4/imagequant-1.1.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43394c8a0f4e30bc27d66e08c835f5d011709dd68be8400587ad1c0c9bfccc58",
                "md5": "8116f950a4847a10ff166b8c77603969",
                "sha256": "2d101cd716f12205be259278ba796512ef848d428838a0bc6d93062641be723c"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8116f950a4847a10ff166b8c77603969",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 52000,
            "upload_time": "2024-11-22T15:06:20",
            "upload_time_iso_8601": "2024-11-22T15:06:20.136290Z",
            "url": "https://files.pythonhosted.org/packages/43/39/4c8a0f4e30bc27d66e08c835f5d011709dd68be8400587ad1c0c9bfccc58/imagequant-1.1.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a641bd1d982b359b76d9eda52ba1415416ecfd1cc9d2e73934bda26774df25c2",
                "md5": "0202b5f7d0e4022021521aa07e34b8cc",
                "sha256": "4b4831fb0469bffda280d81d288057f99349b8d55e9eef2ce1311a452fe0bb2d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "0202b5f7d0e4022021521aa07e34b8cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 41441,
            "upload_time": "2024-11-22T15:06:21",
            "upload_time_iso_8601": "2024-11-22T15:06:21.586154Z",
            "url": "https://files.pythonhosted.org/packages/a6/41/bd1d982b359b76d9eda52ba1415416ecfd1cc9d2e73934bda26774df25c2/imagequant-1.1.3-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59d8cd76567e4d0b2f96a2258bf3c535ef763ffeb4f527308321c0c0a87c9a3c",
                "md5": "0d2a5c6735f1a482e19974c52291da6c",
                "sha256": "8fc6d3574446c07c7f44ffa25a891dd1a158381e8381a282798b4336504c135f"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "0d2a5c6735f1a482e19974c52291da6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 109071,
            "upload_time": "2024-11-22T15:06:22",
            "upload_time_iso_8601": "2024-11-22T15:06:22.511944Z",
            "url": "https://files.pythonhosted.org/packages/59/d8/cd76567e4d0b2f96a2258bf3c535ef763ffeb4f527308321c0c0a87c9a3c/imagequant-1.1.3-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c2458b7fdbfe7ed73023402ea3e55987a9c1bb3cc03adbbf751bdcd0ce81628",
                "md5": "905154cb08bc0361512f82a9c82b69cc",
                "sha256": "c83b01db54703925504390eccad47a660b475ab91d6b1b17b4a10c695dc734d8"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "905154cb08bc0361512f82a9c82b69cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 60626,
            "upload_time": "2024-11-22T15:06:23",
            "upload_time_iso_8601": "2024-11-22T15:06:23.457711Z",
            "url": "https://files.pythonhosted.org/packages/1c/24/58b7fdbfe7ed73023402ea3e55987a9c1bb3cc03adbbf751bdcd0ce81628/imagequant-1.1.3-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11bb22fdbd2e4494cbefbe68356b51cae045641c99035b0416e50b213e3d4666",
                "md5": "bc75729c1831b545f91ba8d2aa43bfad",
                "sha256": "634893cb5e67f9da2afc4bbadb048badaecf37fda1e3b161387332a357df09bd"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bc75729c1831b545f91ba8d2aa43bfad",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 55600,
            "upload_time": "2024-11-22T15:06:24",
            "upload_time_iso_8601": "2024-11-22T15:06:24.596162Z",
            "url": "https://files.pythonhosted.org/packages/11/bb/22fdbd2e4494cbefbe68356b51cae045641c99035b0416e50b213e3d4666/imagequant-1.1.3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "496aa58583df67eae1767ebd1634b549b87f64f778f6dfe8306a86a91d480eef",
                "md5": "b84d504c86f387ffdf8a902a914f0f1f",
                "sha256": "9a66524a48a3dffeb2b56b0f7c022afb8150d200adb262e133e39ec8b8992c1d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b84d504c86f387ffdf8a902a914f0f1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 188589,
            "upload_time": "2024-11-22T15:06:25",
            "upload_time_iso_8601": "2024-11-22T15:06:25.566327Z",
            "url": "https://files.pythonhosted.org/packages/49/6a/a58583df67eae1767ebd1634b549b87f64f778f6dfe8306a86a91d480eef/imagequant-1.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbf38911170d6ab0746a0ccbe535dff1ed636fd45ae66d9ea0663af94f839a78",
                "md5": "ae3c4c25cfa0cc395b5217966c7f53b1",
                "sha256": "321174fb79a0ccca96efa61e54bcb237faf1cbb860db1ea5c79ab84f09b35e60"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae3c4c25cfa0cc395b5217966c7f53b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 199172,
            "upload_time": "2024-11-22T15:06:27",
            "upload_time_iso_8601": "2024-11-22T15:06:27.526207Z",
            "url": "https://files.pythonhosted.org/packages/cb/f3/8911170d6ab0746a0ccbe535dff1ed636fd45ae66d9ea0663af94f839a78/imagequant-1.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c65764432ce9594935252db387ac802e12d44d74a05bd4d61cd0f4cf44aa393e",
                "md5": "526b10696431ba07a20d68f404114a76",
                "sha256": "8fb2d80f8dcc28d05c98ba82ac772058f270a82cbb5c0cef5a5d5dce352f9f4a"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "526b10696431ba07a20d68f404114a76",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 177333,
            "upload_time": "2024-11-22T15:06:29",
            "upload_time_iso_8601": "2024-11-22T15:06:29.398665Z",
            "url": "https://files.pythonhosted.org/packages/c6/57/64432ce9594935252db387ac802e12d44d74a05bd4d61cd0f4cf44aa393e/imagequant-1.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a106802017802754afbd7499bafe652efbed08815f426bafd9677fbc1b5b6a2",
                "md5": "369802033057aecae613017b2e294291",
                "sha256": "e18936d032b1ff1a89733889ed5d346f2cfc177f6b7a157c82c877b88ba1cf2a"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "369802033057aecae613017b2e294291",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 190161,
            "upload_time": "2024-11-22T15:06:30",
            "upload_time_iso_8601": "2024-11-22T15:06:30.430361Z",
            "url": "https://files.pythonhosted.org/packages/6a/10/6802017802754afbd7499bafe652efbed08815f426bafd9677fbc1b5b6a2/imagequant-1.1.3-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f70c183886af9124f6a39cfb41a259406c269cd2b0a1e81ec09f8bd0cf60498b",
                "md5": "0b05c6f191ed87d780787a1cb6aecd63",
                "sha256": "a7c07bcbd271f0a35f84a39c3c6c2aa59f8f0df5bece292a66f82632cbb6c148"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0b05c6f191ed87d780787a1cb6aecd63",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 181931,
            "upload_time": "2024-11-22T15:06:31",
            "upload_time_iso_8601": "2024-11-22T15:06:31.649902Z",
            "url": "https://files.pythonhosted.org/packages/f7/0c/183886af9124f6a39cfb41a259406c269cd2b0a1e81ec09f8bd0cf60498b/imagequant-1.1.3-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca373739f05fa96264c7dbffdc719c9eea0e5f6a0161685275821597229ab01b",
                "md5": "4111e1b3ffebf06019bb0fb1a5c0e4f9",
                "sha256": "36740921da2204d0f4a1b31c748549fd70374dd75392aa704201e971966b95de"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4111e1b3ffebf06019bb0fb1a5c0e4f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 198262,
            "upload_time": "2024-11-22T15:06:32",
            "upload_time_iso_8601": "2024-11-22T15:06:32.967352Z",
            "url": "https://files.pythonhosted.org/packages/ca/37/3739f05fa96264c7dbffdc719c9eea0e5f6a0161685275821597229ab01b/imagequant-1.1.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e75ba3e351672af64c71998d6741696c6a4f5e954599bff2c18f623e815faa87",
                "md5": "28ce6f6a23e223ced7e787ab506a305d",
                "sha256": "08f32412ef2505aab5975d633466312b103ac55e50434279c36a7f56f08acaf0"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "28ce6f6a23e223ced7e787ab506a305d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 40719,
            "upload_time": "2024-11-22T15:06:33",
            "upload_time_iso_8601": "2024-11-22T15:06:33.990236Z",
            "url": "https://files.pythonhosted.org/packages/e7/5b/a3e351672af64c71998d6741696c6a4f5e954599bff2c18f623e815faa87/imagequant-1.1.3-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9736524b52c355fd07ad3f9594f0eb40374acb225439848c9c079f0a16b1ce30",
                "md5": "f5bbf04276e2ffc818dd59dd7fc38834",
                "sha256": "e611b7e02df8bc19358a518d921efe4c831b85011be22a162d006c6fa508002c"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5bbf04276e2ffc818dd59dd7fc38834",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 51998,
            "upload_time": "2024-11-22T15:06:34",
            "upload_time_iso_8601": "2024-11-22T15:06:34.898328Z",
            "url": "https://files.pythonhosted.org/packages/97/36/524b52c355fd07ad3f9594f0eb40374acb225439848c9c079f0a16b1ce30/imagequant-1.1.3-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ce7298721a870466e5f304e621a8b16b167bb4194b1fcb1a9637a469a3c3bc3",
                "md5": "b85f66044e0a64b9c298b3f583e5726f",
                "sha256": "bdbdedfe449835f97dd5f34cf2a8c5f65d372dbceeecf55089d71525ca5e4ce3"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "b85f66044e0a64b9c298b3f583e5726f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 41440,
            "upload_time": "2024-11-22T15:06:35",
            "upload_time_iso_8601": "2024-11-22T15:06:35.877033Z",
            "url": "https://files.pythonhosted.org/packages/8c/e7/298721a870466e5f304e621a8b16b167bb4194b1fcb1a9637a469a3c3bc3/imagequant-1.1.3-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51d659a12f338f5ded127868c66cef87bde6db6f47300c54f18f08796a2c2b10",
                "md5": "2505c7be4fddd84553cdb58bb48019c3",
                "sha256": "0ef6cfc5dbed5ad635f3206237746f7d72a3d4cc6f64b943c0cc9f075fa19960"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2505c7be4fddd84553cdb58bb48019c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 60351,
            "upload_time": "2024-11-22T15:06:36",
            "upload_time_iso_8601": "2024-11-22T15:06:36.815408Z",
            "url": "https://files.pythonhosted.org/packages/51/d6/59a12f338f5ded127868c66cef87bde6db6f47300c54f18f08796a2c2b10/imagequant-1.1.3-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de06ae488e70edeac28a78960359672580eadcfbc65b554eb6dca96f11a18f3e",
                "md5": "adce3a4bcfeafe443d1c1371b821dbe8",
                "sha256": "a58b55331fad0493e0d0f680b2aa80524f194c2a4e46ae8326f0454eaf4c193b"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "adce3a4bcfeafe443d1c1371b821dbe8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 187690,
            "upload_time": "2024-11-22T15:06:37",
            "upload_time_iso_8601": "2024-11-22T15:06:37.801098Z",
            "url": "https://files.pythonhosted.org/packages/de/06/ae488e70edeac28a78960359672580eadcfbc65b554eb6dca96f11a18f3e/imagequant-1.1.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fab39451255af39df34af76d0c6e84cee5bf81dba978fadfa3ab64dc32dfd92",
                "md5": "1d22cdaa6507fd78eac41c17c998f778",
                "sha256": "492713d0a41a629da982f3db86e73c61fe65be285afc11e46ab2d8c2888f6bfa"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d22cdaa6507fd78eac41c17c998f778",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 198647,
            "upload_time": "2024-11-22T15:06:38",
            "upload_time_iso_8601": "2024-11-22T15:06:38.962101Z",
            "url": "https://files.pythonhosted.org/packages/5f/ab/39451255af39df34af76d0c6e84cee5bf81dba978fadfa3ab64dc32dfd92/imagequant-1.1.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a74a43c2a26a08c8422211844e645a6d1c3ae03184921209ad94b540e17347b2",
                "md5": "5c0d0e0848572dcbcdd2d3002e206c7d",
                "sha256": "395c09fa05c887e0b72938fd2821455f55e4b34c0aec52b27207dd2a37ed1d74"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5c0d0e0848572dcbcdd2d3002e206c7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 177075,
            "upload_time": "2024-11-22T15:06:40",
            "upload_time_iso_8601": "2024-11-22T15:06:40.063285Z",
            "url": "https://files.pythonhosted.org/packages/a7/4a/43c2a26a08c8422211844e645a6d1c3ae03184921209ad94b540e17347b2/imagequant-1.1.3-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": "e264d769a9812c7dbe6e264e27f86265a59895259bb1cb87e09913d9d2fbedd3",
                "md5": "6850fdc400525a92ef0c1572cb382881",
                "sha256": "b2706cf7f8d889649d6f9b7b6bc609a8a406827cd5e69cd685d00413743b13e1"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6850fdc400525a92ef0c1572cb382881",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 189541,
            "upload_time": "2024-11-22T15:06:41",
            "upload_time_iso_8601": "2024-11-22T15:06:41.137898Z",
            "url": "https://files.pythonhosted.org/packages/e2/64/d769a9812c7dbe6e264e27f86265a59895259bb1cb87e09913d9d2fbedd3/imagequant-1.1.3-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bc7459f426bedc780fd09f012b8fdcf396dae7a2733a61c29ff54b8eaf663a3",
                "md5": "3cf64962eebdf68bfe4ac8a9952c5711",
                "sha256": "a9135f1cda1f92e4a3557a73637b76fc6180370c6258499eb2e2c29827c4b2c6"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp36-cp36m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3cf64962eebdf68bfe4ac8a9952c5711",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 181848,
            "upload_time": "2024-11-22T15:06:43",
            "upload_time_iso_8601": "2024-11-22T15:06:43.330515Z",
            "url": "https://files.pythonhosted.org/packages/6b/c7/459f426bedc780fd09f012b8fdcf396dae7a2733a61c29ff54b8eaf663a3/imagequant-1.1.3-cp36-cp36m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17ce8c95e81c5e8c496f03d97cf5f193d3dc913ba525112c9956eb54fcd209a9",
                "md5": "46a4e051154854ac4504b29e35b11bd7",
                "sha256": "5cb1650382a4e2d6517f5b5334969129f0725750619da4b6398b0ce43150ee86"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46a4e051154854ac4504b29e35b11bd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 197674,
            "upload_time": "2024-11-22T15:06:44",
            "upload_time_iso_8601": "2024-11-22T15:06:44.454324Z",
            "url": "https://files.pythonhosted.org/packages/17/ce/8c95e81c5e8c496f03d97cf5f193d3dc913ba525112c9956eb54fcd209a9/imagequant-1.1.3-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6fc96412b4385b65222e607c52c16120685d2878726d7f8c41324457f42cd49",
                "md5": "ee5e09a63b3705d58e20f76e0ced95a4",
                "sha256": "fc5ee496e3d33b72755a3a589d3641a2c1a31c4f1188351013f7c6634c54f0b4"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "ee5e09a63b3705d58e20f76e0ced95a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 43947,
            "upload_time": "2024-11-22T15:06:45",
            "upload_time_iso_8601": "2024-11-22T15:06:45.574682Z",
            "url": "https://files.pythonhosted.org/packages/b6/fc/96412b4385b65222e607c52c16120685d2878726d7f8c41324457f42cd49/imagequant-1.1.3-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "312da3dcea68e8c9f6fcc5c71451b64acc1784a5dc1c05a304b35eb5dc8ecaee",
                "md5": "b85a5ad6b996bf712ed04e1ebfed7fb6",
                "sha256": "05e7d3f335b003c112bfce13ec03e8e1e7ec0f624fbddf5150593eaf85c0b48f"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b85a5ad6b996bf712ed04e1ebfed7fb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 56578,
            "upload_time": "2024-11-22T15:06:46",
            "upload_time_iso_8601": "2024-11-22T15:06:46.850366Z",
            "url": "https://files.pythonhosted.org/packages/31/2d/a3dcea68e8c9f6fcc5c71451b64acc1784a5dc1c05a304b35eb5dc8ecaee/imagequant-1.1.3-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "677a33f30b55f5647b3e44001212317d3f836ada3f26ef77e673673f805ddbbc",
                "md5": "fda36e2291e22f1d7d393638f3753f90",
                "sha256": "22143235ab032f50fbacc8f3d866d3f54ce022a74c4b13380f8f7bcbb8368ae8"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fda36e2291e22f1d7d393638f3753f90",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 60571,
            "upload_time": "2024-11-22T15:06:47",
            "upload_time_iso_8601": "2024-11-22T15:06:47.849626Z",
            "url": "https://files.pythonhosted.org/packages/67/7a/33f30b55f5647b3e44001212317d3f836ada3f26ef77e673673f805ddbbc/imagequant-1.1.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f231f1d4bdb6733f88040263da2b1763ca21d52b3a6320330a20726e5793cf14",
                "md5": "2564f91da866eca92d78938f3a97fdb5",
                "sha256": "85c456cbe2e56159f7b0e5aaa4dcf268d4dd02268197240e8b9b124a9e66455f"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2564f91da866eca92d78938f3a97fdb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 187696,
            "upload_time": "2024-11-22T15:06:48",
            "upload_time_iso_8601": "2024-11-22T15:06:48.930474Z",
            "url": "https://files.pythonhosted.org/packages/f2/31/f1d4bdb6733f88040263da2b1763ca21d52b3a6320330a20726e5793cf14/imagequant-1.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d71beaccc46e0e6cd9ce7d0561e3c0f0cf6e887cd1ebf53c2ca7574b9008a1e",
                "md5": "6fbc423416cc5d79cf0922da108fdb30",
                "sha256": "e32d1d093736cd22623708f82dea6e05789815c2540b7addd81ddef12e2549c7"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6fbc423416cc5d79cf0922da108fdb30",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 198644,
            "upload_time": "2024-11-22T15:06:50",
            "upload_time_iso_8601": "2024-11-22T15:06:50.042569Z",
            "url": "https://files.pythonhosted.org/packages/2d/71/beaccc46e0e6cd9ce7d0561e3c0f0cf6e887cd1ebf53c2ca7574b9008a1e/imagequant-1.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbc1c344e84bd45120adfc2a75696b295c3082b5488ef3dff15d014434594b4c",
                "md5": "f62c994ad1ac137b4529726cc5a2f34d",
                "sha256": "f7ee999611e6b76baf9de9afcf49242d72f105a4d3d963d5a24252ab5e9c4350"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f62c994ad1ac137b4529726cc5a2f34d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 177092,
            "upload_time": "2024-11-22T15:06:51",
            "upload_time_iso_8601": "2024-11-22T15:06:51.468726Z",
            "url": "https://files.pythonhosted.org/packages/cb/c1/c344e84bd45120adfc2a75696b295c3082b5488ef3dff15d014434594b4c/imagequant-1.1.3-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": "9554f2b5b3786484fa382b4565158723aafabaf5e58d1f71312390f24a16f7e1",
                "md5": "51a24865d561865622b976c92ed0999c",
                "sha256": "9788127d5e1ea8c4c3a5e3a732c905cab4bd7aa9ae110d844d7f42bb432ae91f"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "51a24865d561865622b976c92ed0999c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 189514,
            "upload_time": "2024-11-22T15:06:52",
            "upload_time_iso_8601": "2024-11-22T15:06:52.559085Z",
            "url": "https://files.pythonhosted.org/packages/95/54/f2b5b3786484fa382b4565158723aafabaf5e58d1f71312390f24a16f7e1/imagequant-1.1.3-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7914f4509b4e7b7c7acbaba24408963ddaedaf5ead477b40ad97b78489d53043",
                "md5": "5850c08fa316ac5b7cdcc7a4da246440",
                "sha256": "9923c4a6a582250dae402723efc8b74afd61acdc9ead4d7bea5139aa03712860"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5850c08fa316ac5b7cdcc7a4da246440",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 181825,
            "upload_time": "2024-11-22T15:06:53",
            "upload_time_iso_8601": "2024-11-22T15:06:53.747736Z",
            "url": "https://files.pythonhosted.org/packages/79/14/f4509b4e7b7c7acbaba24408963ddaedaf5ead477b40ad97b78489d53043/imagequant-1.1.3-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c30bf263b1f826347f93c1f73ebd32653f347d89b14840ab1384fd9804747588",
                "md5": "64623873134f6552bc56d3e7ddad555f",
                "sha256": "d144ec18b5631ee19e98a24597f95ba631ee3e1510bd5576d64eccf12126b042"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64623873134f6552bc56d3e7ddad555f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 197646,
            "upload_time": "2024-11-22T15:06:54",
            "upload_time_iso_8601": "2024-11-22T15:06:54.966962Z",
            "url": "https://files.pythonhosted.org/packages/c3/0b/f263b1f826347f93c1f73ebd32653f347d89b14840ab1384fd9804747588/imagequant-1.1.3-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fff3a7ce58bebf5cc4010f4d1a1de8389649fd310ea0db3c82eb2a194eccbb20",
                "md5": "4fc2b181ed8743c28e938e07014422bb",
                "sha256": "cb47fa69584c81eacf3306789acd8d802a3cbc75e4d48123ea83a34c38c404e0"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "4fc2b181ed8743c28e938e07014422bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 40683,
            "upload_time": "2024-11-22T15:06:56",
            "upload_time_iso_8601": "2024-11-22T15:06:56.200986Z",
            "url": "https://files.pythonhosted.org/packages/ff/f3/a7ce58bebf5cc4010f4d1a1de8389649fd310ea0db3c82eb2a194eccbb20/imagequant-1.1.3-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ede60d1d6a955aacc5b62cd294bd6cd4ce5ec2db872cc68b7c67aec8ac644b4",
                "md5": "0e43360b896b9c60e77ceca11edd2128",
                "sha256": "c0fad5c578f17b23db43cf959e9e9c1cbab8b52a51e23f54f06d873a8f43fc76"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0e43360b896b9c60e77ceca11edd2128",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 51984,
            "upload_time": "2024-11-22T15:06:57",
            "upload_time_iso_8601": "2024-11-22T15:06:57.477278Z",
            "url": "https://files.pythonhosted.org/packages/6e/de/60d1d6a955aacc5b62cd294bd6cd4ce5ec2db872cc68b7c67aec8ac644b4/imagequant-1.1.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70242d3399b7bab74f9b65906ca8ccd0a847706bd3119a754d978c453c7e2311",
                "md5": "01aa1e86f846b0178ebd6595ec0edc8b",
                "sha256": "25f300b776ce8da0a4f4886cb70aa44e804edd2298fc6f94dc87e7ae40d0ebdd"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "01aa1e86f846b0178ebd6595ec0edc8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 109013,
            "upload_time": "2024-11-22T15:06:59",
            "upload_time_iso_8601": "2024-11-22T15:06:59.349630Z",
            "url": "https://files.pythonhosted.org/packages/70/24/2d3399b7bab74f9b65906ca8ccd0a847706bd3119a754d978c453c7e2311/imagequant-1.1.3-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ac09ea9420d45e8166c42f9908b2189a6f7f3e5916c48d9bfd7c992fe35bcf2",
                "md5": "b59d7c378193210f053b2124d88e65f1",
                "sha256": "9f117bc17970628799d5d85910e6e058f0d7aa0a45baac89707f6156bdd50888"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b59d7c378193210f053b2124d88e65f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 60572,
            "upload_time": "2024-11-22T15:07:00",
            "upload_time_iso_8601": "2024-11-22T15:07:00.547385Z",
            "url": "https://files.pythonhosted.org/packages/6a/c0/9ea9420d45e8166c42f9908b2189a6f7f3e5916c48d9bfd7c992fe35bcf2/imagequant-1.1.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d050c0332a95b5bb474112ddd2a7a40c1796729083141e07a12aa5ad677bd07",
                "md5": "a38b8d50ac403c3282f8e422abc51f38",
                "sha256": "0c6f58b1a996291844782c327edad084602ddb56bf24dd7876e4a57953aaba4e"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a38b8d50ac403c3282f8e422abc51f38",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 55604,
            "upload_time": "2024-11-22T15:07:01",
            "upload_time_iso_8601": "2024-11-22T15:07:01.592483Z",
            "url": "https://files.pythonhosted.org/packages/7d/05/0c0332a95b5bb474112ddd2a7a40c1796729083141e07a12aa5ad677bd07/imagequant-1.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b5eecaa28b77e2b6d17f06054b43b44235efce7bdbe599dc5a1882dfe2995a1",
                "md5": "2450bb21282983ab0e8e8945537762d5",
                "sha256": "ac71bdee85a57f8a6681a6de76e37dcfa828d28ebf80dd156a11cf4e8a73c5cc"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2450bb21282983ab0e8e8945537762d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 188407,
            "upload_time": "2024-11-22T15:07:03",
            "upload_time_iso_8601": "2024-11-22T15:07:03.551537Z",
            "url": "https://files.pythonhosted.org/packages/6b/5e/ecaa28b77e2b6d17f06054b43b44235efce7bdbe599dc5a1882dfe2995a1/imagequant-1.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "930d359d04a08329bbd3f0e61c8780362890bee84dead4743bef7aef33c3ae1c",
                "md5": "febd0ec4d3e1ca7f6bd25d17a479fb43",
                "sha256": "ac8feb118114265ec78c9e14f9d9a72419f1d76b78072fbebad77f0747a65a4b"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "febd0ec4d3e1ca7f6bd25d17a479fb43",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 199074,
            "upload_time": "2024-11-22T15:07:05",
            "upload_time_iso_8601": "2024-11-22T15:07:05.911237Z",
            "url": "https://files.pythonhosted.org/packages/93/0d/359d04a08329bbd3f0e61c8780362890bee84dead4743bef7aef33c3ae1c/imagequant-1.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "deecdcfbf583205555730d7e2f84c1f9504cbaf15c7f09ec82648f79673e0da9",
                "md5": "7d015bfbaf5e197fcf50a15601d85270",
                "sha256": "b267ef3eb614640c35128cda690b298551b5c8c2d8b48376720712fcda7a4a5e"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7d015bfbaf5e197fcf50a15601d85270",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 177526,
            "upload_time": "2024-11-22T15:07:07",
            "upload_time_iso_8601": "2024-11-22T15:07:07.288067Z",
            "url": "https://files.pythonhosted.org/packages/de/ec/dcfbf583205555730d7e2f84c1f9504cbaf15c7f09ec82648f79673e0da9/imagequant-1.1.3-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": "cf03e0c5f654fc11a29253c3165d9a2cbed7c35ef594169b0eda4128ed8386bb",
                "md5": "eba217745b535ea72fe6c8c3d9b55bcc",
                "sha256": "2720d8842d25c24cfb4fef00f53271f3e696155229ed7c55ffa9169a801b6396"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eba217745b535ea72fe6c8c3d9b55bcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 190233,
            "upload_time": "2024-11-22T15:07:08",
            "upload_time_iso_8601": "2024-11-22T15:07:08.600964Z",
            "url": "https://files.pythonhosted.org/packages/cf/03/e0c5f654fc11a29253c3165d9a2cbed7c35ef594169b0eda4128ed8386bb/imagequant-1.1.3-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4743d99eecbdd44db7c4c6e84587c48da1dd29903922e6b4481ceb8c81026fc1",
                "md5": "31af56cc6b8cc1070eca47f5018356cc",
                "sha256": "39ab63e1c4da057cdb925ec1c22e6c169516427bb5752d7492fbf4ac42d76be3"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "31af56cc6b8cc1070eca47f5018356cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 182517,
            "upload_time": "2024-11-22T15:07:12",
            "upload_time_iso_8601": "2024-11-22T15:07:12.006832Z",
            "url": "https://files.pythonhosted.org/packages/47/43/d99eecbdd44db7c4c6e84587c48da1dd29903922e6b4481ceb8c81026fc1/imagequant-1.1.3-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb4aa4a67d7a1303aee14aec4aced89cde86bf6863686d417d5877bfc59a3926",
                "md5": "aec4b6df6480931da3bd6681a3ade9f7",
                "sha256": "9d7c65fb885475ce14a843fda76e12e7f78e9cf0b67231f9f89427f25c8f3f8e"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aec4b6df6480931da3bd6681a3ade9f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 198168,
            "upload_time": "2024-11-22T15:07:14",
            "upload_time_iso_8601": "2024-11-22T15:07:14.640578Z",
            "url": "https://files.pythonhosted.org/packages/bb/4a/a4a67d7a1303aee14aec4aced89cde86bf6863686d417d5877bfc59a3926/imagequant-1.1.3-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c4e7f8034f4ecc16995b6c8b19212f9987bed30b2b4655b7a9193b346a070fd",
                "md5": "a274085a539da9b94aa513532bb627e7",
                "sha256": "1ce546f398b43d6ea1498071e44f0c0bfd721c7be3a33c5c404febb1980e2cd9"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "a274085a539da9b94aa513532bb627e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 40681,
            "upload_time": "2024-11-22T15:07:15",
            "upload_time_iso_8601": "2024-11-22T15:07:15.765926Z",
            "url": "https://files.pythonhosted.org/packages/1c/4e/7f8034f4ecc16995b6c8b19212f9987bed30b2b4655b7a9193b346a070fd/imagequant-1.1.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5e0cb7dde0c6eb38ab01a709c1fc53489e27ca7dfe15243834a8c49041e12ae",
                "md5": "de274180387efcb5c5fe729d1e45881d",
                "sha256": "bcd3db53d5fcb3942e4d550761bf347e483ce0cb2ffdbf69cd1d22c6eb6ac791"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "de274180387efcb5c5fe729d1e45881d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 51984,
            "upload_time": "2024-11-22T15:07:17",
            "upload_time_iso_8601": "2024-11-22T15:07:17.510938Z",
            "url": "https://files.pythonhosted.org/packages/a5/e0/cb7dde0c6eb38ab01a709c1fc53489e27ca7dfe15243834a8c49041e12ae/imagequant-1.1.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a430a46c19cc45e2b36a06293dbc2b231c46a4ae353e42f3dd4b8acf4011fb99",
                "md5": "3419fd1704b7bd023ff13ab7bf16d0cc",
                "sha256": "26d881d1259bb40bd6c291d0d28bde11c21efb68a52595dd412546cb7b3bd46d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3419fd1704b7bd023ff13ab7bf16d0cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 109014,
            "upload_time": "2024-11-22T15:07:19",
            "upload_time_iso_8601": "2024-11-22T15:07:19.302539Z",
            "url": "https://files.pythonhosted.org/packages/a4/30/a46c19cc45e2b36a06293dbc2b231c46a4ae353e42f3dd4b8acf4011fb99/imagequant-1.1.3-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2bb261f932db9792317e97f8becdbeb55bf9f13d658bc786f29c00938847fcf",
                "md5": "c38bbb08e509f39a9eaa30c43e921126",
                "sha256": "a61ef4d8bf086fe32a2346193f28d08c30a4d9dd79782843c9218288eb29f903"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c38bbb08e509f39a9eaa30c43e921126",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 60568,
            "upload_time": "2024-11-22T15:07:20",
            "upload_time_iso_8601": "2024-11-22T15:07:20.743300Z",
            "url": "https://files.pythonhosted.org/packages/c2/bb/261f932db9792317e97f8becdbeb55bf9f13d658bc786f29c00938847fcf/imagequant-1.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9459ccf4856a01808e53cdfe9c73a7b2917ef0f488f71bdc264db3ecbc42d87a",
                "md5": "1d555766f3335269a32c4da8f2665bc1",
                "sha256": "872fd35e38e761f51f2276ea5e8a38584b6627238c7c4b66eef327275aeb3644"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1d555766f3335269a32c4da8f2665bc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 55599,
            "upload_time": "2024-11-22T15:07:21",
            "upload_time_iso_8601": "2024-11-22T15:07:21.783573Z",
            "url": "https://files.pythonhosted.org/packages/94/59/ccf4856a01808e53cdfe9c73a7b2917ef0f488f71bdc264db3ecbc42d87a/imagequant-1.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7a4c92b560b4284853947bbd78b897c609eda6236eaf7f76e3ecb6fbfaba755",
                "md5": "7a562d1a4a58ddddf5d813af7b4823d0",
                "sha256": "fc056aebc95d5f3ab744228a26399715263ba49c1f64cb24ed7dca6a2a253e2b"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7a562d1a4a58ddddf5d813af7b4823d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 188260,
            "upload_time": "2024-11-22T15:07:22",
            "upload_time_iso_8601": "2024-11-22T15:07:22.914021Z",
            "url": "https://files.pythonhosted.org/packages/d7/a4/c92b560b4284853947bbd78b897c609eda6236eaf7f76e3ecb6fbfaba755/imagequant-1.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "458531331d380ddcb1d7c16dff305de704a5b4d3bf2a7ee5274879e32f89149f",
                "md5": "97fc394f060ca4d46976b1189f99553a",
                "sha256": "ed01af8472dc0bc62b5ecbf6fc64b7f73ee88d383be35bcfa7c587641e045006"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97fc394f060ca4d46976b1189f99553a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 198907,
            "upload_time": "2024-11-22T15:07:24",
            "upload_time_iso_8601": "2024-11-22T15:07:24.305389Z",
            "url": "https://files.pythonhosted.org/packages/45/85/31331d380ddcb1d7c16dff305de704a5b4d3bf2a7ee5274879e32f89149f/imagequant-1.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1138cd93a21fa610320d6a1ca43594ee5e2e8d9c3bdcd5cc9eabf740208300ab",
                "md5": "dfa60c8f094e374d900299a7b7a4a758",
                "sha256": "dbe26562e232f845e3124bf1d1134fd39a635794f745f30d13302ab478331201"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dfa60c8f094e374d900299a7b7a4a758",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 177445,
            "upload_time": "2024-11-22T15:07:25",
            "upload_time_iso_8601": "2024-11-22T15:07:25.498158Z",
            "url": "https://files.pythonhosted.org/packages/11/38/cd93a21fa610320d6a1ca43594ee5e2e8d9c3bdcd5cc9eabf740208300ab/imagequant-1.1.3-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": "4a9e94997d02bafda5575e0c2395c065c18acd9d298a8f0bfaae8212d0009bf7",
                "md5": "0f5008fbbe04b50add19fa811bf532a2",
                "sha256": "b56391138e9069d4dc1693122f283c0b8eaa9d98c605c5366c71c6eee370ec46"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0f5008fbbe04b50add19fa811bf532a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 190044,
            "upload_time": "2024-11-22T15:07:26",
            "upload_time_iso_8601": "2024-11-22T15:07:26.739012Z",
            "url": "https://files.pythonhosted.org/packages/4a/9e/94997d02bafda5575e0c2395c065c18acd9d298a8f0bfaae8212d0009bf7/imagequant-1.1.3-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4233a0040502165b85219d77ffc6ef4b0091b2da68a6778db5bc81a99bc89581",
                "md5": "5182005b55fe86777cf54cb091386ba0",
                "sha256": "f4f26547fb885661e6dab263e3c469b1d3b23a5cb0e51bc57403917ec4ecc532"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5182005b55fe86777cf54cb091386ba0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 182265,
            "upload_time": "2024-11-22T15:07:27",
            "upload_time_iso_8601": "2024-11-22T15:07:27.981220Z",
            "url": "https://files.pythonhosted.org/packages/42/33/a0040502165b85219d77ffc6ef4b0091b2da68a6778db5bc81a99bc89581/imagequant-1.1.3-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3aab9babfde93a43cba6252fee1bc141d42eca30dbc6324485324a0cd6aa609",
                "md5": "9f4321b7c2367e41f97fb7bc2509abe4",
                "sha256": "dcb72c13cfde4d4c0dbfd0acc60abb616955b76c2c6f0bac5ca32f432047b568"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f4321b7c2367e41f97fb7bc2509abe4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 197931,
            "upload_time": "2024-11-22T15:07:30",
            "upload_time_iso_8601": "2024-11-22T15:07:30.036705Z",
            "url": "https://files.pythonhosted.org/packages/c3/aa/b9babfde93a43cba6252fee1bc141d42eca30dbc6324485324a0cd6aa609/imagequant-1.1.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f7de9d2599e4c0a9092abd8d9071ab43b60dfa479cbdd0234374c57aace9542",
                "md5": "e81ef2be61daf6ee3fc4264f1a257fc5",
                "sha256": "df1604729d299a1f54efffb857616471a8fe128d8add7269310c6de836d98541"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "e81ef2be61daf6ee3fc4264f1a257fc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 40673,
            "upload_time": "2024-11-22T15:07:31",
            "upload_time_iso_8601": "2024-11-22T15:07:31.320453Z",
            "url": "https://files.pythonhosted.org/packages/3f/7d/e9d2599e4c0a9092abd8d9071ab43b60dfa479cbdd0234374c57aace9542/imagequant-1.1.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "079f4e3ab275f47e9773952dbdc9aba5ba2cc657531e9f3c6c3fae087dbafc2f",
                "md5": "fcb5d6537901b3c37d6536930bd63a87",
                "sha256": "5bbc0a7bc590718f679faecdc32690d7efd0b577e031598080a8b748862a36d6"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fcb5d6537901b3c37d6536930bd63a87",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 51978,
            "upload_time": "2024-11-22T15:07:32",
            "upload_time_iso_8601": "2024-11-22T15:07:32.530846Z",
            "url": "https://files.pythonhosted.org/packages/07/9f/4e3ab275f47e9773952dbdc9aba5ba2cc657531e9f3c6c3fae087dbafc2f/imagequant-1.1.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e9a69db83bc19f6b631f77eaaf3398573414b3579d3ef580ef8a581da520ff0",
                "md5": "42d97479ad31624d0ed3d9428ff6911a",
                "sha256": "cb19f0d081ff947b32bc9a67143f04c4a79766f40cc374019ef5ed812ec9aa16"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "42d97479ad31624d0ed3d9428ff6911a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 41426,
            "upload_time": "2024-11-22T15:07:33",
            "upload_time_iso_8601": "2024-11-22T15:07:33.690801Z",
            "url": "https://files.pythonhosted.org/packages/7e/9a/69db83bc19f6b631f77eaaf3398573414b3579d3ef580ef8a581da520ff0/imagequant-1.1.3-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffa5f853ef03c3f1fccaa7efd34ffced1dc4fa8b6a9303b51cbf74c3eff273a4",
                "md5": "371d4740302b68712721025b3deb89e1",
                "sha256": "290ed0e6d77fabbcf55f50299c3adff49a691cb9c0d31be6e8de4523f2b726eb"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "371d4740302b68712721025b3deb89e1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 44586,
            "upload_time": "2024-11-22T15:07:34",
            "upload_time_iso_8601": "2024-11-22T15:07:34.850501Z",
            "url": "https://files.pythonhosted.org/packages/ff/a5/f853ef03c3f1fccaa7efd34ffced1dc4fa8b6a9303b51cbf74c3eff273a4/imagequant-1.1.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1301efdfe2efef5a2b64dc3d514672c0a8766ee4f16f78ad2a15299b1070524f",
                "md5": "ec45d9d432e232c9c9bccddd6d03f259",
                "sha256": "1919369877bd2990dc3303ab2ddce5d65564ab17a5c759f36ed74a4253f3ea97"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ec45d9d432e232c9c9bccddd6d03f259",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 41150,
            "upload_time": "2024-11-22T15:07:37",
            "upload_time_iso_8601": "2024-11-22T15:07:37.081008Z",
            "url": "https://files.pythonhosted.org/packages/13/01/efdfe2efef5a2b64dc3d514672c0a8766ee4f16f78ad2a15299b1070524f/imagequant-1.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab7f88c70c7e61d1b91fa585945ce7ecc91e8b816ee48e0aabcf3a3327a8c01e",
                "md5": "46da7ad4a10699f22b572aa4dee943c5",
                "sha256": "a983862084097a512987dba054357adfe23e7df32fc3d781d855f6625995fa8d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46da7ad4a10699f22b572aa4dee943c5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 40527,
            "upload_time": "2024-11-22T15:07:38",
            "upload_time_iso_8601": "2024-11-22T15:07:38.268382Z",
            "url": "https://files.pythonhosted.org/packages/ab/7f/88c70c7e61d1b91fa585945ce7ecc91e8b816ee48e0aabcf3a3327a8c01e/imagequant-1.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25558d3cd6ecd20b6b92479a7f40c2bdebbbfc97f8e55774ca7163c385252078",
                "md5": "bbcd2fdf5036d5528f68c7b5529257bb",
                "sha256": "8eb95f9857084ae65482c8d654d7af174738a52224d9d63e25949fd5d6f07b4d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bbcd2fdf5036d5528f68c7b5529257bb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 42859,
            "upload_time": "2024-11-22T15:07:39",
            "upload_time_iso_8601": "2024-11-22T15:07:39.407183Z",
            "url": "https://files.pythonhosted.org/packages/25/55/8d3cd6ecd20b6b92479a7f40c2bdebbbfc97f8e55774ca7163c385252078/imagequant-1.1.3-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": "5df9064e21a7fa6f58a16ee7e876a3955df4c7283f8a07f3276a32859c24707d",
                "md5": "748cfed60701e0ea6e3e5d5d8eed1f0d",
                "sha256": "27bc5a06f5b83145e18679517c8a038b08a14fc7d9e9933d3c521bb3d8995fce"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "748cfed60701e0ea6e3e5d5d8eed1f0d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 43003,
            "upload_time": "2024-11-22T15:07:40",
            "upload_time_iso_8601": "2024-11-22T15:07:40.803839Z",
            "url": "https://files.pythonhosted.org/packages/5d/f9/064e21a7fa6f58a16ee7e876a3955df4c7283f8a07f3276a32859c24707d/imagequant-1.1.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71071864dc01569d15b51c651cd8eb661b4e7601f0de50811a254be0869cc570",
                "md5": "41f0bb01b936e75b4aa2aa4485cb6503",
                "sha256": "ed0b19e3108b457d07dcd48ea8fd7114cc5ab0a4aa6e018e72fae1a7296fd1bd"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41f0bb01b936e75b4aa2aa4485cb6503",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 44404,
            "upload_time": "2024-11-22T15:07:42",
            "upload_time_iso_8601": "2024-11-22T15:07:42.711402Z",
            "url": "https://files.pythonhosted.org/packages/71/07/1864dc01569d15b51c651cd8eb661b4e7601f0de50811a254be0869cc570/imagequant-1.1.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db81af35bc7712c2b6994c44eba69fac31dd18500211f1378d1031c05eb8cef1",
                "md5": "24ab18e74e07d2b6ee89dac535f5716f",
                "sha256": "bf9b367d476a97b9d208d57002a001b0ed88d365a3696e1445db276ae2b56ae3"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "24ab18e74e07d2b6ee89dac535f5716f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 41735,
            "upload_time": "2024-11-22T15:07:44",
            "upload_time_iso_8601": "2024-11-22T15:07:44.315514Z",
            "url": "https://files.pythonhosted.org/packages/db/81/af35bc7712c2b6994c44eba69fac31dd18500211f1378d1031c05eb8cef1/imagequant-1.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "948b0cfcd19cbfc4cc44ecd840a31b239b5f65a0ae9344ab20456ac7cd2d89c3",
                "md5": "ce0427549a278191f31e412754f6fa1e",
                "sha256": "15ef98843014d8a60557609226b6c5339c10afc19cca3a58a618f93bcb0c374a"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce0427549a278191f31e412754f6fa1e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 41416,
            "upload_time": "2024-11-22T15:07:45",
            "upload_time_iso_8601": "2024-11-22T15:07:45.558010Z",
            "url": "https://files.pythonhosted.org/packages/94/8b/0cfcd19cbfc4cc44ecd840a31b239b5f65a0ae9344ab20456ac7cd2d89c3/imagequant-1.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dba8f2f38683dc53ef31ba5d012bf752c17881b37592b9f25b550e135f9a3dc1",
                "md5": "e6d37070a9863e42422ae20189c072a7",
                "sha256": "de69069d0826fc1d57e4e92ad104c040f53e9ab0275a6e47434ef3aa8825f454"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e6d37070a9863e42422ae20189c072a7",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 43635,
            "upload_time": "2024-11-22T15:07:46",
            "upload_time_iso_8601": "2024-11-22T15:07:46.786390Z",
            "url": "https://files.pythonhosted.org/packages/db/a8/f2f38683dc53ef31ba5d012bf752c17881b37592b9f25b550e135f9a3dc1/imagequant-1.1.3-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": "de291f2cfa77c8eaaa0ff4cd5b590b7c8969b5fcd118864e8d5bd3fcc239cf17",
                "md5": "da42bebb8a206162a9d26191b87b9cce",
                "sha256": "29be1c573bfb009d1ce2bad789ff7e2840287e5a3413322eec0bc6690b3112da"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "da42bebb8a206162a9d26191b87b9cce",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 43002,
            "upload_time": "2024-11-22T15:07:48",
            "upload_time_iso_8601": "2024-11-22T15:07:48.041847Z",
            "url": "https://files.pythonhosted.org/packages/de/29/1f2cfa77c8eaaa0ff4cd5b590b7c8969b5fcd118864e8d5bd3fcc239cf17/imagequant-1.1.3-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "524650ac2ccb2328fe6123255c3e67d87f9249a6f1afc1c85a8796e76fc39978",
                "md5": "42ad91a2696c296c6cbc32b044855efe",
                "sha256": "2cad56d914bf0d4388a2af954b1195182814b92c1bdbca0e4b90c141dab743b3"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "42ad91a2696c296c6cbc32b044855efe",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 44404,
            "upload_time": "2024-11-22T15:07:49",
            "upload_time_iso_8601": "2024-11-22T15:07:49.849295Z",
            "url": "https://files.pythonhosted.org/packages/52/46/50ac2ccb2328fe6123255c3e67d87f9249a6f1afc1c85a8796e76fc39978/imagequant-1.1.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "776516f889b99ff4eda7a8f441f45f0cb577932af07ea6d37a27bc318599dabb",
                "md5": "314b61ff0f45b2e776e2679f48924176",
                "sha256": "6f299e4f43bd34a215832a165b4cc64dea6525aaff3ee266359ff2adecaf6594"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "314b61ff0f45b2e776e2679f48924176",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 41147,
            "upload_time": "2024-11-22T15:07:51",
            "upload_time_iso_8601": "2024-11-22T15:07:51.122766Z",
            "url": "https://files.pythonhosted.org/packages/77/65/16f889b99ff4eda7a8f441f45f0cb577932af07ea6d37a27bc318599dabb/imagequant-1.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d67d0692c8f5922fdc63818b574e055860a9144485dd89cb6ec86c59ad838c4",
                "md5": "0db76d042608edb7ce7e2222ad4b368b",
                "sha256": "10731cd773098882ced01b58b92588252c899e193e9d9bccb5883bd9d757241a"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0db76d042608edb7ce7e2222ad4b368b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 40521,
            "upload_time": "2024-11-22T15:07:52",
            "upload_time_iso_8601": "2024-11-22T15:07:52.338311Z",
            "url": "https://files.pythonhosted.org/packages/9d/67/d0692c8f5922fdc63818b574e055860a9144485dd89cb6ec86c59ad838c4/imagequant-1.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfdf8bcd5514dc400a8fa623566b0d0d4bc6cb05ff78374302618eb7ff1f878a",
                "md5": "fa6b3a3ab651645acdfe791c4c113a83",
                "sha256": "af352a583110e6b3759af4443c5845d43e5244d3c416b49ee86fff8dcbda3e0a"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fa6b3a3ab651645acdfe791c4c113a83",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 42852,
            "upload_time": "2024-11-22T15:07:53",
            "upload_time_iso_8601": "2024-11-22T15:07:53.907418Z",
            "url": "https://files.pythonhosted.org/packages/cf/df/8bcd5514dc400a8fa623566b0d0d4bc6cb05ff78374302618eb7ff1f878a/imagequant-1.1.3-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": "a2add949c88982133ac66d971f329af126151dba85d11ed1cd0cbdd1ab37d67a",
                "md5": "b68e7a98346292c75172d5940b4643d0",
                "sha256": "5e8328d7e8e36b63f530721f254e8bf55f92429b04f7cd31fd9286c619244150"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b68e7a98346292c75172d5940b4643d0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 42998,
            "upload_time": "2024-11-22T15:07:55",
            "upload_time_iso_8601": "2024-11-22T15:07:55.449737Z",
            "url": "https://files.pythonhosted.org/packages/a2/ad/d949c88982133ac66d971f329af126151dba85d11ed1cd0cbdd1ab37d67a/imagequant-1.1.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "788fde947c3e20dcedf822e3ed4c4b585ac6ae137c420678e01ef4aff7cc54eb",
                "md5": "64b8e07a4730b03c8b522861faa1f71b",
                "sha256": "2d45419c8ad9a41a0243a7ad1328ee24c47bead05b18748631d867881c34dca5"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64b8e07a4730b03c8b522861faa1f71b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 44580,
            "upload_time": "2024-11-22T15:07:56",
            "upload_time_iso_8601": "2024-11-22T15:07:56.885324Z",
            "url": "https://files.pythonhosted.org/packages/78/8f/de947c3e20dcedf822e3ed4c4b585ac6ae137c420678e01ef4aff7cc54eb/imagequant-1.1.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50fa9e0f58f1a4e7a22a968300b29a2e9e40c9337fb7dfbcd306211f225215bd",
                "md5": "9ed8219471347421f6458de4658506ee",
                "sha256": "bf431cbc8987153e35a4666bf3055257203a788c451c4f9570db6409606899ad"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9ed8219471347421f6458de4658506ee",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 41148,
            "upload_time": "2024-11-22T15:07:58",
            "upload_time_iso_8601": "2024-11-22T15:07:58.154882Z",
            "url": "https://files.pythonhosted.org/packages/50/fa/9e0f58f1a4e7a22a968300b29a2e9e40c9337fb7dfbcd306211f225215bd/imagequant-1.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b21b20f04292d76671e0f7e335f48851fcc97cdd69f0cee14932a28e25b5d54",
                "md5": "4cd05f047f66e91b7e2ff2e4f16f107f",
                "sha256": "7712060ca9c50bc59c1e278b1f561099ed97851520c865050b5c14e8114ea017"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cd05f047f66e91b7e2ff2e4f16f107f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 40522,
            "upload_time": "2024-11-22T15:07:59",
            "upload_time_iso_8601": "2024-11-22T15:07:59.719554Z",
            "url": "https://files.pythonhosted.org/packages/6b/21/b20f04292d76671e0f7e335f48851fcc97cdd69f0cee14932a28e25b5d54/imagequant-1.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b07e5eb7a78709553e961fc24ca31003ed455c5fde2097e076b9fbc7db39c036",
                "md5": "ef40cc87986328f45d1796e1b811c0c4",
                "sha256": "e34bb6626811efe109455a1e8378b19accc236e0728317661bf0b103dd08c91d"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ef40cc87986328f45d1796e1b811c0c4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 42855,
            "upload_time": "2024-11-22T15:08:01",
            "upload_time_iso_8601": "2024-11-22T15:08:01.031319Z",
            "url": "https://files.pythonhosted.org/packages/b0/7e/5eb7a78709553e961fc24ca31003ed455c5fde2097e076b9fbc7db39c036/imagequant-1.1.3-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": "3a48d6143c9ccf661e028709df7d78366bd0facc98d7797966bb6a1f09924578",
                "md5": "4e759650add8b5912d5cd0819ad153bb",
                "sha256": "92faa62e436e714740c8cd6adb0494a2ba5cd654b76a96dfe7f3ba7a8169719b"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e759650add8b5912d5cd0819ad153bb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 43000,
            "upload_time": "2024-11-22T15:08:02",
            "upload_time_iso_8601": "2024-11-22T15:08:02.334641Z",
            "url": "https://files.pythonhosted.org/packages/3a/48/d6143c9ccf661e028709df7d78366bd0facc98d7797966bb6a1f09924578/imagequant-1.1.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "937b7a4da644165385961812eba1b45d0836fdb0b7ac8feb56c19ef207acbff1",
                "md5": "272d62cf4f41fb2a9e5e1c735d2baed4",
                "sha256": "e81e022780905002904e43e939a83938aa4a8c88e5b5deaffbc0140bc209d160"
            },
            "downloads": -1,
            "filename": "imagequant-1.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "272d62cf4f41fb2a9e5e1c735d2baed4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 64764,
            "upload_time": "2024-11-22T15:08:03",
            "upload_time_iso_8601": "2024-11-22T15:08:03.767164Z",
            "url": "https://files.pythonhosted.org/packages/93/7b/7a4da644165385961812eba1b45d0836fdb0b7ac8feb56c19ef207acbff1/imagequant-1.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-22 15:08:03",
    "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.72068s