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.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/3b/90/6b25fdbdb80f8e8e776fa8da5aa7d93f3184d6fc49fb7153f08a4ac0b348/imagequant-1.1.2.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.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.2",
"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": "b2840a0170054f52ea192fb87471f876d11a869be35a16202224b01366809f09",
"md5": "d1e311f4680773504b7aa437e733d016",
"sha256": "6f536c66152f7974421e89fa42dbab5df30bbef0dde9ec4c4b9017e0a973c153"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "d1e311f4680773504b7aa437e733d016",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 105872,
"upload_time": "2024-10-30T10:51:16",
"upload_time_iso_8601": "2024-10-30T10:51:16.233623Z",
"url": "https://files.pythonhosted.org/packages/b2/84/0a0170054f52ea192fb87471f876d11a869be35a16202224b01366809f09/imagequant-1.1.2-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b775d973aac8812d6704fdea11323b5ae27a28781356ae19cc2da48b5636024a",
"md5": "fce70dd24a4ec91ff445e57b29960182",
"sha256": "3fe3c4baf25507bf10a8f804d53c4af76de14eb44af7019ea2ab9db48c12b590"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "fce70dd24a4ec91ff445e57b29960182",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 57911,
"upload_time": "2024-10-30T10:51:18",
"upload_time_iso_8601": "2024-10-30T10:51:18.257398Z",
"url": "https://files.pythonhosted.org/packages/b7/75/d973aac8812d6704fdea11323b5ae27a28781356ae19cc2da48b5636024a/imagequant-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "747e5f213fea9e59927d21d2514ccbe0c870cdb7b64d1113f323956495cb53ac",
"md5": "8691dc0653ee8b0b1ac5b68331afb1d6",
"sha256": "c5c5d9b353ee190f1ff804b8c3f1bee01992f2b01b4b232ac82b3f4966c6b02b"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8691dc0653ee8b0b1ac5b68331afb1d6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 55053,
"upload_time": "2024-10-30T10:51:19",
"upload_time_iso_8601": "2024-10-30T10:51:19.818645Z",
"url": "https://files.pythonhosted.org/packages/74/7e/5f213fea9e59927d21d2514ccbe0c870cdb7b64d1113f323956495cb53ac/imagequant-1.1.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6e6bb00e344afdbae30f5dd5dd8df2410b9f4ec2ac7208023f487e88ca45cef4",
"md5": "4f2877eb121f607edf2daa41df2966a3",
"sha256": "e754912e0abe00b42f1fcd3ed6ad1ca96cce799fb89b285e7f6db875a318a39e"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4f2877eb121f607edf2daa41df2966a3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 188214,
"upload_time": "2024-10-30T10:51:21",
"upload_time_iso_8601": "2024-10-30T10:51:21.120654Z",
"url": "https://files.pythonhosted.org/packages/6e/6b/b00e344afdbae30f5dd5dd8df2410b9f4ec2ac7208023f487e88ca45cef4/imagequant-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d6860ba7c984435cbed3d62549788bb87423578dd3fda38d9ca6efa45ab983e",
"md5": "79d7f1a951159c72c02df08d88e94221",
"sha256": "696f247e2c9c73494f0e4fd90777b0f5e7678dcc1f0d94418f2771d928f32921"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "79d7f1a951159c72c02df08d88e94221",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 198874,
"upload_time": "2024-10-30T10:51:22",
"upload_time_iso_8601": "2024-10-30T10:51:22.514517Z",
"url": "https://files.pythonhosted.org/packages/8d/68/60ba7c984435cbed3d62549788bb87423578dd3fda38d9ca6efa45ab983e/imagequant-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da99bc4aa988c514ee1dd5d88f391cca52cfd04592a45f8eb0c7f17846cb7791",
"md5": "def3b9ffccf81cbd78441fb2508348d6",
"sha256": "d4034fbd62c52bbf8a76fba109b0c3c9acad66d48e9b53fc4609a6ea9e8ccd74"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "def3b9ffccf81cbd78441fb2508348d6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 177421,
"upload_time": "2024-10-30T10:51:23",
"upload_time_iso_8601": "2024-10-30T10:51:23.949957Z",
"url": "https://files.pythonhosted.org/packages/da/99/bc4aa988c514ee1dd5d88f391cca52cfd04592a45f8eb0c7f17846cb7791/imagequant-1.1.2-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": "b121fb95ff76c25c7c68cc9b92ecffdb93d08d515615e425df6ff5a12ad20f8f",
"md5": "963b41f4679c3f5f7e4e547a143ca21a",
"sha256": "cc9e78c9d41901a9696f8e0c3a42c56739256bdef9a7dfe28d6a8db86c96fba2"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "963b41f4679c3f5f7e4e547a143ca21a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 190021,
"upload_time": "2024-10-30T10:51:25",
"upload_time_iso_8601": "2024-10-30T10:51:25.703288Z",
"url": "https://files.pythonhosted.org/packages/b1/21/fb95ff76c25c7c68cc9b92ecffdb93d08d515615e425df6ff5a12ad20f8f/imagequant-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22dae4778676302241cff0cb6966b0a8556021d38a9e95f20ac1b6503e967de3",
"md5": "f61396455a5260f60a12f7e5c02f8799",
"sha256": "2831304fd12c158f9a38c5ae91fdbf7287596af13fa5151b061ee1d0dfd1bb03"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f61396455a5260f60a12f7e5c02f8799",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 182243,
"upload_time": "2024-10-30T10:51:26",
"upload_time_iso_8601": "2024-10-30T10:51:26.958162Z",
"url": "https://files.pythonhosted.org/packages/22/da/e4778676302241cff0cb6966b0a8556021d38a9e95f20ac1b6503e967de3/imagequant-1.1.2-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3df6e868a24c722f7187c437109523fa8d32fb95c11b2c5821a3e4806969247",
"md5": "a9ba24912b9fdd979e0c000aa6deb72b",
"sha256": "1abd88035fb5b58157acce8892398d5fd8a5854af36d589a62f5f7f643ae9676"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a9ba24912b9fdd979e0c000aa6deb72b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 197910,
"upload_time": "2024-10-30T10:51:28",
"upload_time_iso_8601": "2024-10-30T10:51:28.507195Z",
"url": "https://files.pythonhosted.org/packages/c3/df/6e868a24c722f7187c437109523fa8d32fb95c11b2c5821a3e4806969247/imagequant-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "316864bbb8dbbfcc5fd2c84b8dc31615c38cf713d959098536d983cf2b8397c3",
"md5": "de6353c44629b69a8230193c0d66ef10",
"sha256": "8f37f40c3ae578e4235ade45476fb4e0514f94edd35e38246fa643d5af8042f1"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "de6353c44629b69a8230193c0d66ef10",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 39762,
"upload_time": "2024-10-30T10:51:29",
"upload_time_iso_8601": "2024-10-30T10:51:29.888922Z",
"url": "https://files.pythonhosted.org/packages/31/68/64bbb8dbbfcc5fd2c84b8dc31615c38cf713d959098536d983cf2b8397c3/imagequant-1.1.2-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e0b45e6829a6004e7822016313f61545a6442ff9f0fb53e4ef898dd3447a2e3",
"md5": "75a44c96a513b923005e220ea3c468eb",
"sha256": "e821a016a1909a1d62d7122c58c24088eeb7cfc9e208ca2125b8e3d3700b449c"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "75a44c96a513b923005e220ea3c468eb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 51195,
"upload_time": "2024-10-30T10:51:31",
"upload_time_iso_8601": "2024-10-30T10:51:31.137455Z",
"url": "https://files.pythonhosted.org/packages/2e/0b/45e6829a6004e7822016313f61545a6442ff9f0fb53e4ef898dd3447a2e3/imagequant-1.1.2-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68d2d6b9520eea8cabcd00d516d9b099624e89cdc703b188a962260813c496f4",
"md5": "88bed54545faa66959c111671141100c",
"sha256": "d184a37739179fd31d3e32f7f95ac324f01b6c2ac56180e0b1d3f98d94c44024"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp310-cp310-win_arm64.whl",
"has_sig": false,
"md5_digest": "88bed54545faa66959c111671141100c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 41184,
"upload_time": "2024-10-30T10:51:32",
"upload_time_iso_8601": "2024-10-30T10:51:32.642528Z",
"url": "https://files.pythonhosted.org/packages/68/d2/d6b9520eea8cabcd00d516d9b099624e89cdc703b188a962260813c496f4/imagequant-1.1.2-cp310-cp310-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e48fe01d38f3ebc29d1e36be53aef122dba7927306168f9f2b8be168c9159d5d",
"md5": "531298052338e756284fa784fe41fd47",
"sha256": "b02d377754d89cff0d6831a86d4e5997b7f532b5ef46832fad5832f9fbf0b204"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "531298052338e756284fa784fe41fd47",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 105873,
"upload_time": "2024-10-30T10:51:34",
"upload_time_iso_8601": "2024-10-30T10:51:34.322409Z",
"url": "https://files.pythonhosted.org/packages/e4/8f/e01d38f3ebc29d1e36be53aef122dba7927306168f9f2b8be168c9159d5d/imagequant-1.1.2-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca63aa2bbc5bc321417d2c70f17f56c6d53393fd08e0018228fe223d1151329a",
"md5": "92057eea33d46312ac6f7877547e8a24",
"sha256": "c004a83b8ff44db091be5c3be5fbf01a17f9884f8e1b0ef9fdc6e3c8b71697d3"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "92057eea33d46312ac6f7877547e8a24",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 57910,
"upload_time": "2024-10-30T10:51:35",
"upload_time_iso_8601": "2024-10-30T10:51:35.763827Z",
"url": "https://files.pythonhosted.org/packages/ca/63/aa2bbc5bc321417d2c70f17f56c6d53393fd08e0018228fe223d1151329a/imagequant-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abbe991db5b87150fe1550def84de930c4a418d2d1795739e97c9b3e8f8431fd",
"md5": "5563ee39e375f2cb7abeea25249af6dc",
"sha256": "db3ca6ed2a0de93d689168efff3e800212fa284b7ace4638fb51e1f741c1ec37"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5563ee39e375f2cb7abeea25249af6dc",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 55056,
"upload_time": "2024-10-30T10:51:37",
"upload_time_iso_8601": "2024-10-30T10:51:37.098670Z",
"url": "https://files.pythonhosted.org/packages/ab/be/991db5b87150fe1550def84de930c4a418d2d1795739e97c9b3e8f8431fd/imagequant-1.1.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7eabc87bfb9cde0b8f9a9f06acbbeb72ff2323639177c1d7db498079bbf78e6a",
"md5": "34fb33292b1a57d3898fbaad66644377",
"sha256": "be8c5fdf9ecf1609bc2e1b81cc6ddb425ce28a4e63afda18b30227e75c5af2e1"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "34fb33292b1a57d3898fbaad66644377",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 188218,
"upload_time": "2024-10-30T10:51:38",
"upload_time_iso_8601": "2024-10-30T10:51:38.214137Z",
"url": "https://files.pythonhosted.org/packages/7e/ab/c87bfb9cde0b8f9a9f06acbbeb72ff2323639177c1d7db498079bbf78e6a/imagequant-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2db625fc793e11a3f0ce278ae40340641bfea16c7ef7fe75b9e853c1bd4e9976",
"md5": "9279ecfe8abd7e33064e9e80eb93e990",
"sha256": "2150186a998a522023bc62dda4de1a958f023d1d13e54548128a395e9104ecf9"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9279ecfe8abd7e33064e9e80eb93e990",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 198896,
"upload_time": "2024-10-30T10:51:39",
"upload_time_iso_8601": "2024-10-30T10:51:39.484433Z",
"url": "https://files.pythonhosted.org/packages/2d/b6/25fc793e11a3f0ce278ae40340641bfea16c7ef7fe75b9e853c1bd4e9976/imagequant-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09658a54ca007f4084b3af00a59c7800b0a91b295bc5fc498c478bdedc45ccc5",
"md5": "31713d5ca0232374aeae7ad9e8c94510",
"sha256": "cf25827babb1ef7ffc5387eaf6219ac65ae857759687da07981a7ea5e0068da2"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "31713d5ca0232374aeae7ad9e8c94510",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 177466,
"upload_time": "2024-10-30T10:51:40",
"upload_time_iso_8601": "2024-10-30T10:51:40.964327Z",
"url": "https://files.pythonhosted.org/packages/09/65/8a54ca007f4084b3af00a59c7800b0a91b295bc5fc498c478bdedc45ccc5/imagequant-1.1.2-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": "d0607d7f8e87140d2cfb93f4cfdbb4770af81b4e2eb5b10f63764b7e867fe929",
"md5": "3717f4587b86f968a386094ba778a91c",
"sha256": "1981bca3986e71927a4e86591e338df1afb611ee623337e44c18cdd78b1b9220"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3717f4587b86f968a386094ba778a91c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 190026,
"upload_time": "2024-10-30T10:51:42",
"upload_time_iso_8601": "2024-10-30T10:51:42.636691Z",
"url": "https://files.pythonhosted.org/packages/d0/60/7d7f8e87140d2cfb93f4cfdbb4770af81b4e2eb5b10f63764b7e867fe929/imagequant-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6511643a943262f6ec875617142ae9d065a3840bd5ee6e520f23a8ccd79bcf1e",
"md5": "558896bf95b1b61e3378a327bf036337",
"sha256": "573dc0c103271848a11a9aeb79777e2cb644f1e010e1270d9f12248d9a07d6c3"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "558896bf95b1b61e3378a327bf036337",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 182223,
"upload_time": "2024-10-30T10:51:43",
"upload_time_iso_8601": "2024-10-30T10:51:43.904919Z",
"url": "https://files.pythonhosted.org/packages/65/11/643a943262f6ec875617142ae9d065a3840bd5ee6e520f23a8ccd79bcf1e/imagequant-1.1.2-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e7bbf94cae783043e94836614dc4b06e7ed44b907401ff630ee69c7499b5e02f",
"md5": "060f54187ab1bda0cfecd03897e616e9",
"sha256": "db3d8e0b6d4aa2e0bba4d27714dd04ea732b131967187f14b4c0323c6e8b3e3b"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "060f54187ab1bda0cfecd03897e616e9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 197914,
"upload_time": "2024-10-30T10:51:45",
"upload_time_iso_8601": "2024-10-30T10:51:45.594708Z",
"url": "https://files.pythonhosted.org/packages/e7/bb/f94cae783043e94836614dc4b06e7ed44b907401ff630ee69c7499b5e02f/imagequant-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ea00e2e2d3c43d87f280596b0c2e297a5d8420f30417dad9a7169d3e8a25c846",
"md5": "08b13a35bffda439f2dc1944de261a64",
"sha256": "ba02b979c9a31fa7d680a50e8594627286436ba1f81329b948957b202ac289f9"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "08b13a35bffda439f2dc1944de261a64",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 39763,
"upload_time": "2024-10-30T10:51:46",
"upload_time_iso_8601": "2024-10-30T10:51:46.666057Z",
"url": "https://files.pythonhosted.org/packages/ea/00/e2e2d3c43d87f280596b0c2e297a5d8420f30417dad9a7169d3e8a25c846/imagequant-1.1.2-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16e841d2702633103c1f4b612d69d258eefb183b6b1762d622390703d3ab2437",
"md5": "440b7777a9007243dca1194633c78cc9",
"sha256": "80fa9485261f2f1f24bf0a0994e30a9fddc7491a0e1d11de3833ca4d730f6b58"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "440b7777a9007243dca1194633c78cc9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 51197,
"upload_time": "2024-10-30T10:51:48",
"upload_time_iso_8601": "2024-10-30T10:51:48.973085Z",
"url": "https://files.pythonhosted.org/packages/16/e8/41d2702633103c1f4b612d69d258eefb183b6b1762d622390703d3ab2437/imagequant-1.1.2-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5f7040d32f33c70ad5150d40d484d14c4768c3f81024ca206c444c91fa0e1979",
"md5": "aa307b502640e468cdae12ff746cfe88",
"sha256": "927f09b9ff80a06336c1d9fe7d88074144db9424e97c97fe446356f16fbd200e"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "aa307b502640e468cdae12ff746cfe88",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 41186,
"upload_time": "2024-10-30T10:51:50",
"upload_time_iso_8601": "2024-10-30T10:51:50.376646Z",
"url": "https://files.pythonhosted.org/packages/5f/70/40d32f33c70ad5150d40d484d14c4768c3f81024ca206c444c91fa0e1979/imagequant-1.1.2-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "566437e36d2c3d3321b2538ca9b4bbee77b11f91c939dfe1335698722587bce6",
"md5": "3256dea413de8cac5141d7661bb60baf",
"sha256": "57a5d318a94d57d4ea537b5573853d126a64d1492609c67c161c95e7b451318c"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "3256dea413de8cac5141d7661bb60baf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 105802,
"upload_time": "2024-10-30T10:51:51",
"upload_time_iso_8601": "2024-10-30T10:51:51.626435Z",
"url": "https://files.pythonhosted.org/packages/56/64/37e36d2c3d3321b2538ca9b4bbee77b11f91c939dfe1335698722587bce6/imagequant-1.1.2-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4244ac39e07ae06f62f313797e9eebc8c8c57eec2b1516f8019c9645c70ca544",
"md5": "629e8d8756cd4063231dd7000697c633",
"sha256": "2e4b9ede49c15f6c9a15603e28e3a7f18d80d36b8ef67d7f19b7036198fdf823"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "629e8d8756cd4063231dd7000697c633",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 57787,
"upload_time": "2024-10-30T10:51:53",
"upload_time_iso_8601": "2024-10-30T10:51:53.450711Z",
"url": "https://files.pythonhosted.org/packages/42/44/ac39e07ae06f62f313797e9eebc8c8c57eec2b1516f8019c9645c70ca544/imagequant-1.1.2-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f411fab8e9804921c6b37045ce19471562f52d69e75a9affdf3086535366998a",
"md5": "833f0ae00e5ca09fc20a9b764bf7d935",
"sha256": "2ad815b435222d9f42ebed25b178d88fc05e7426ef4c621fd0b8a5892c527f24"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "833f0ae00e5ca09fc20a9b764bf7d935",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 55078,
"upload_time": "2024-10-30T10:51:54",
"upload_time_iso_8601": "2024-10-30T10:51:54.519753Z",
"url": "https://files.pythonhosted.org/packages/f4/11/fab8e9804921c6b37045ce19471562f52d69e75a9affdf3086535366998a/imagequant-1.1.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fe012a65f6f6e96bd5bb4c17c5a63f9305e59d07ef3d0448350bd5e268f1b43",
"md5": "d206c817c8e417607c6848004ac82bdb",
"sha256": "88b3e83a61745a1dedff47d156ef172ed0fdc6a320c17dd49e454d8f0ab8d219"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d206c817c8e417607c6848004ac82bdb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 188621,
"upload_time": "2024-10-30T10:51:55",
"upload_time_iso_8601": "2024-10-30T10:51:55.655454Z",
"url": "https://files.pythonhosted.org/packages/2f/e0/12a65f6f6e96bd5bb4c17c5a63f9305e59d07ef3d0448350bd5e268f1b43/imagequant-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d8240c6e35c18b612841d9d471faac29b28f59d3125418a96f8a6b348b8379b8",
"md5": "0453a4e41298f1abb962372ce0fb32d8",
"sha256": "8aa497b6e73be82ff29411bf72aa8551b77e9a445ac81eda10f2be4f72e5b175"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0453a4e41298f1abb962372ce0fb32d8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 199186,
"upload_time": "2024-10-30T10:51:57",
"upload_time_iso_8601": "2024-10-30T10:51:57.811841Z",
"url": "https://files.pythonhosted.org/packages/d8/24/0c6e35c18b612841d9d471faac29b28f59d3125418a96f8a6b348b8379b8/imagequant-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4516a19a4253a38d132b7e1b1b1b9c58f20c81e59306b7809ce5b5719bbebf80",
"md5": "d16945adfd87f04b209e374dfe724390",
"sha256": "36de19c5952968d6de9b3373f37059fd2eb4e14db4b541279dd5c62901d6092e"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d16945adfd87f04b209e374dfe724390",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 177361,
"upload_time": "2024-10-30T10:51:59",
"upload_time_iso_8601": "2024-10-30T10:51:59.027906Z",
"url": "https://files.pythonhosted.org/packages/45/16/a19a4253a38d132b7e1b1b1b9c58f20c81e59306b7809ce5b5719bbebf80/imagequant-1.1.2-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": "ce35ebb9a06dff999c18af611908263eeec6da6fc7cbbb81298b6adbccac2a81",
"md5": "2927ff7bbc882102de33ce7f785073cf",
"sha256": "8601deb84c837ba1bf8efb88ffb0f68de391e259c865be86f9c8cc5e47aeb7a6"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2927ff7bbc882102de33ce7f785073cf",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 190148,
"upload_time": "2024-10-30T10:52:00",
"upload_time_iso_8601": "2024-10-30T10:52:00.340445Z",
"url": "https://files.pythonhosted.org/packages/ce/35/ebb9a06dff999c18af611908263eeec6da6fc7cbbb81298b6adbccac2a81/imagequant-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "808a62b8082f238d1c9c269669f66468c1214f4bc5115c13b53a2af7e5254b7b",
"md5": "21cee4150ae769efd5916115e88e56d0",
"sha256": "c4eb0ad526f1049670e0f48c5d2be9d88b8785bdbcc86461787ddd49ed55ecdf"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "21cee4150ae769efd5916115e88e56d0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 181952,
"upload_time": "2024-10-30T10:52:02",
"upload_time_iso_8601": "2024-10-30T10:52:02.392888Z",
"url": "https://files.pythonhosted.org/packages/80/8a/62b8082f238d1c9c269669f66468c1214f4bc5115c13b53a2af7e5254b7b/imagequant-1.1.2-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b4b5f7e1a655cfd470113cf78c6c79e2936c0ccc21be1ec1b2814c4e6a4dc66",
"md5": "671a9794d8dbd426b896edebcdcb7c85",
"sha256": "cbf75fbea8e7fa377406f44c8e905de196f5f3391711079afde16a5ba1f1ddb9"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "671a9794d8dbd426b896edebcdcb7c85",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 198227,
"upload_time": "2024-10-30T10:52:03",
"upload_time_iso_8601": "2024-10-30T10:52:03.615778Z",
"url": "https://files.pythonhosted.org/packages/7b/4b/5f7e1a655cfd470113cf78c6c79e2936c0ccc21be1ec1b2814c4e6a4dc66/imagequant-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1188bac94ac8b7370bca0ed12f96c5236fe38b8cde863de1425d4fc10f44baa0",
"md5": "9f27c4e103ad1180463959837aaa2ed9",
"sha256": "4045f20adfe004a3c50860b8189e5ab30aec488258b12ad4fe088339cce04f9d"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "9f27c4e103ad1180463959837aaa2ed9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 39787,
"upload_time": "2024-10-30T10:52:05",
"upload_time_iso_8601": "2024-10-30T10:52:05.253074Z",
"url": "https://files.pythonhosted.org/packages/11/88/bac94ac8b7370bca0ed12f96c5236fe38b8cde863de1425d4fc10f44baa0/imagequant-1.1.2-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f251143e7dba8ed13da59b92ae9416aaebc820e3d26f931f801965075d22d118",
"md5": "b3e30068aa68092ead0bef4ebfa2b8f3",
"sha256": "c319e7379c40bd9fdd702a285722131ecef262364bc75921594fa8bf3cae8933"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b3e30068aa68092ead0bef4ebfa2b8f3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 51209,
"upload_time": "2024-10-30T10:52:06",
"upload_time_iso_8601": "2024-10-30T10:52:06.292249Z",
"url": "https://files.pythonhosted.org/packages/f2/51/143e7dba8ed13da59b92ae9416aaebc820e3d26f931f801965075d22d118/imagequant-1.1.2-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "27b266b1988dd2abd514c8d38d345be11342f063f5561a44951f961b44f80b94",
"md5": "8b007ce1b5228b0d41a7e345d1cf97f3",
"sha256": "8d305273a0e1c4f72c66142e67c28f03ec9fe24169410d6c383fa65ab40a86b8"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "8b007ce1b5228b0d41a7e345d1cf97f3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 41198,
"upload_time": "2024-10-30T10:52:07",
"upload_time_iso_8601": "2024-10-30T10:52:07.467933Z",
"url": "https://files.pythonhosted.org/packages/27/b2/66b1988dd2abd514c8d38d345be11342f063f5561a44951f961b44f80b94/imagequant-1.1.2-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ce78c9244339865ac3bf1373c6f7caa546cfddbd59f4f15cc37eafbd4eb3063",
"md5": "9f25eba36de09f579fa68020e90404fe",
"sha256": "80a35cd385b3d6006aa23ff4140b4ef8dc36b63f84a9838ece349ba774858a65"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "9f25eba36de09f579fa68020e90404fe",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 105798,
"upload_time": "2024-10-30T10:52:09",
"upload_time_iso_8601": "2024-10-30T10:52:09.086927Z",
"url": "https://files.pythonhosted.org/packages/3c/e7/8c9244339865ac3bf1373c6f7caa546cfddbd59f4f15cc37eafbd4eb3063/imagequant-1.1.2-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe5a5fc3fb99873ccf4989133ab02fac204bb3ff1950eacd64be8062d634102c",
"md5": "149517eabefe5cd051b75b9f8818785c",
"sha256": "9176afea5ecf7899d810c229e47cf84336c716fd701d725130ddc935a7c743a6"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "149517eabefe5cd051b75b9f8818785c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 57787,
"upload_time": "2024-10-30T10:52:10",
"upload_time_iso_8601": "2024-10-30T10:52:10.498899Z",
"url": "https://files.pythonhosted.org/packages/fe/5a/5fc3fb99873ccf4989133ab02fac204bb3ff1950eacd64be8062d634102c/imagequant-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b02462d986287b03ba42b4cfe7e99c1f378bf1834a82adb2adc398600a5691b6",
"md5": "79a7435c5b40132102806f137a766539",
"sha256": "09fa36e41bf4cfb96eeb7077245d01cc6be194575fc766cbb55ecd76b39718b6"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "79a7435c5b40132102806f137a766539",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 55077,
"upload_time": "2024-10-30T10:52:11",
"upload_time_iso_8601": "2024-10-30T10:52:11.613176Z",
"url": "https://files.pythonhosted.org/packages/b0/24/62d986287b03ba42b4cfe7e99c1f378bf1834a82adb2adc398600a5691b6/imagequant-1.1.2-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c96963a6035262749e1bc6df4eacd7e369e5546fd8e03fab89f20c905dab420",
"md5": "c1e41b7fe5ffa4bcd63a307eefe6c18e",
"sha256": "12c81ff42a1656f1af5661fe6d41a05fae5b3d1fd1339cc5f78a43c030bf1ac8"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c1e41b7fe5ffa4bcd63a307eefe6c18e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 188569,
"upload_time": "2024-10-30T10:52:13",
"upload_time_iso_8601": "2024-10-30T10:52:13.001087Z",
"url": "https://files.pythonhosted.org/packages/9c/96/963a6035262749e1bc6df4eacd7e369e5546fd8e03fab89f20c905dab420/imagequant-1.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54f642b4f4ece1a13954ddd904d250e6534b4fc91c6cdf29b331b24db213ebc8",
"md5": "3723a30358cf771e524158fac9d1eb7d",
"sha256": "df3fa0458f94711361c520bbe95aa5c28cf295e0deb53d010b519098be685f46"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3723a30358cf771e524158fac9d1eb7d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 199151,
"upload_time": "2024-10-30T10:52:14",
"upload_time_iso_8601": "2024-10-30T10:52:14.919002Z",
"url": "https://files.pythonhosted.org/packages/54/f6/42b4f4ece1a13954ddd904d250e6534b4fc91c6cdf29b331b24db213ebc8/imagequant-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6baced04098a00a176495cfa3b4f01341b6087b6f2de1cd0ea726c45754cd62",
"md5": "9426322799083da7564910aa31f040d3",
"sha256": "0c6ed787b3a7d042e32232391c8ff501ae389605acaeae079c9df9201a0e767a"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "9426322799083da7564910aa31f040d3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 177311,
"upload_time": "2024-10-30T10:52:16",
"upload_time_iso_8601": "2024-10-30T10:52:16.126464Z",
"url": "https://files.pythonhosted.org/packages/c6/ba/ced04098a00a176495cfa3b4f01341b6087b6f2de1cd0ea726c45754cd62/imagequant-1.1.2-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": "576b1d9a7b56dea5e8b2c646d8bc4f1b37f11f99604f21f3e641163c7c7e97c0",
"md5": "235e4b07e3bdaaaeca301acbc9f21bbf",
"sha256": "67f74153593801f7a5b9d07292bdd63070de54a71883a6336f8a7af6bd12cc50"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "235e4b07e3bdaaaeca301acbc9f21bbf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 190139,
"upload_time": "2024-10-30T10:52:17",
"upload_time_iso_8601": "2024-10-30T10:52:17.485597Z",
"url": "https://files.pythonhosted.org/packages/57/6b/1d9a7b56dea5e8b2c646d8bc4f1b37f11f99604f21f3e641163c7c7e97c0/imagequant-1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "45a7b46f558a225dd299bd86a667ef028719ef4e441108ceb1501dfc4ebaa3aa",
"md5": "46d979e11e8c3f9919988986f2012942",
"sha256": "77bc871ded5aaa1000f2fd958884d4a8208515dbd3654c72c2b07a752bdb7cdb"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "46d979e11e8c3f9919988986f2012942",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 181911,
"upload_time": "2024-10-30T10:52:18",
"upload_time_iso_8601": "2024-10-30T10:52:18.751780Z",
"url": "https://files.pythonhosted.org/packages/45/a7/b46f558a225dd299bd86a667ef028719ef4e441108ceb1501dfc4ebaa3aa/imagequant-1.1.2-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b5c3689c6b075a399203d1534ed3497167f4a3d8bf6d105e155da00e1b8de100",
"md5": "e104ce76d11660c5c76cb8d8fbb24a9e",
"sha256": "79638e0c1a21b7af0ff15ecf6beacfdc90abcb0197df0ae14f95c5045a082a3b"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e104ce76d11660c5c76cb8d8fbb24a9e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 198243,
"upload_time": "2024-10-30T10:52:19",
"upload_time_iso_8601": "2024-10-30T10:52:19.944047Z",
"url": "https://files.pythonhosted.org/packages/b5/c3/689c6b075a399203d1534ed3497167f4a3d8bf6d105e155da00e1b8de100/imagequant-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d1c940d62b85d9c7f4cae1b972441403d43dde5aa4991ecd597464ab7216df47",
"md5": "7de4762709d40671643998a6f864db78",
"sha256": "08ce5965242f011ea1c98c0f09f03f1a78a967eb182372b601b6734bef2dd2c3"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "7de4762709d40671643998a6f864db78",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 39788,
"upload_time": "2024-10-30T10:52:21",
"upload_time_iso_8601": "2024-10-30T10:52:21.088045Z",
"url": "https://files.pythonhosted.org/packages/d1/c9/40d62b85d9c7f4cae1b972441403d43dde5aa4991ecd597464ab7216df47/imagequant-1.1.2-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2867865fe0ca612132b677fb2618ba1db9f2477108f49f795f12a00c0515e52",
"md5": "288de0d30913a8c4386f31057e486e79",
"sha256": "282419c8cbae69cf00834848673f2076c1f1e2bb9f36dd25051bff1fc774072f"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "288de0d30913a8c4386f31057e486e79",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 51209,
"upload_time": "2024-10-30T10:52:22",
"upload_time_iso_8601": "2024-10-30T10:52:22.467641Z",
"url": "https://files.pythonhosted.org/packages/e2/86/7865fe0ca612132b677fb2618ba1db9f2477108f49f795f12a00c0515e52/imagequant-1.1.2-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ef5b110f86ba6192a7c1f04e674edf6adf6b1098cdcf22f6de06fb264dd16aa",
"md5": "bc09ef147b606e4a9d9e9ac8628aa89c",
"sha256": "c5e4a2f31b894bf82c361f247ebc5b1025596d34664f9107cfdb0dbc93f75046"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "bc09ef147b606e4a9d9e9ac8628aa89c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 41199,
"upload_time": "2024-10-30T10:52:23",
"upload_time_iso_8601": "2024-10-30T10:52:23.582358Z",
"url": "https://files.pythonhosted.org/packages/9e/f5/b110f86ba6192a7c1f04e674edf6adf6b1098cdcf22f6de06fb264dd16aa/imagequant-1.1.2-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc605e71ec28dedcd70481609358a724de25ad5c51839e82302888368bbc03c7",
"md5": "b9dd613bf2ae2606a77e9f345f493d57",
"sha256": "8e7a01694eb787dbc90c2b4bc40d69fd52f13535a236b2db94dfb4e71f93eea0"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b9dd613bf2ae2606a77e9f345f493d57",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 57622,
"upload_time": "2024-10-30T10:52:24",
"upload_time_iso_8601": "2024-10-30T10:52:24.878487Z",
"url": "https://files.pythonhosted.org/packages/dc/60/5e71ec28dedcd70481609358a724de25ad5c51839e82302888368bbc03c7/imagequant-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dbb4d731043ea02d7ceb6ce6ca924489540f330865f043c923bc1add1607a6dc",
"md5": "0c8fbf4be80f603be493d72ebb005060",
"sha256": "12ed4de78a25ed474cb4dadb0092acd94382749d67ad7eef386d1133ebd6b162"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0c8fbf4be80f603be493d72ebb005060",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 187666,
"upload_time": "2024-10-30T10:52:26",
"upload_time_iso_8601": "2024-10-30T10:52:26.323371Z",
"url": "https://files.pythonhosted.org/packages/db/b4/d731043ea02d7ceb6ce6ca924489540f330865f043c923bc1add1607a6dc/imagequant-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0191237e74dfc0213cf4f012341ccbe1d9a718b3cd0508cc361d4230ff86944b",
"md5": "f81438f34d3a9fc1480c4fecd2e8c541",
"sha256": "c1a482d435145e496973ae53d219614b2c17713c4d339f4fd3af03acb2882903"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f81438f34d3a9fc1480c4fecd2e8c541",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 198623,
"upload_time": "2024-10-30T10:52:27",
"upload_time_iso_8601": "2024-10-30T10:52:27.952613Z",
"url": "https://files.pythonhosted.org/packages/01/91/237e74dfc0213cf4f012341ccbe1d9a718b3cd0508cc361d4230ff86944b/imagequant-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b63cad02f5bff5a571f87fa666bf39b103513ecca4e002fbfc0968e0243df562",
"md5": "d0085644d0b5e6d033225dc288f53b1b",
"sha256": "3825ffd080fd6ecc5f2388170089adc60ac0e94f3f1e89ba3b1563d04fd3420f"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d0085644d0b5e6d033225dc288f53b1b",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 177052,
"upload_time": "2024-10-30T10:52:29",
"upload_time_iso_8601": "2024-10-30T10:52:29.993215Z",
"url": "https://files.pythonhosted.org/packages/b6/3c/ad02f5bff5a571f87fa666bf39b103513ecca4e002fbfc0968e0243df562/imagequant-1.1.2-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": "004f4d5709ed4d0f860c8babed57a25f9b536f95cdbda292b6286fdc91925d3e",
"md5": "d53d33f02a372f838b702b1f70e36a1f",
"sha256": "c8ecd6358723aa040326c8bb1193e380ec07431f3fa6d44b83a2c7e4a7bab270"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp36-cp36m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "d53d33f02a372f838b702b1f70e36a1f",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 189519,
"upload_time": "2024-10-30T10:52:31",
"upload_time_iso_8601": "2024-10-30T10:52:31.346052Z",
"url": "https://files.pythonhosted.org/packages/00/4f/4d5709ed4d0f860c8babed57a25f9b536f95cdbda292b6286fdc91925d3e/imagequant-1.1.2-cp36-cp36m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39c2d310cbd8c2db6b29c62f815a744cbeeba5f90d5bae3b20f654151c4c34c8",
"md5": "a6e2dad83e92bf94ced091f37b23275d",
"sha256": "f90910a239f39b0d5e7337cc0cf246faa96aa1bd63231524636792525c2c5ffe"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp36-cp36m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a6e2dad83e92bf94ced091f37b23275d",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 181826,
"upload_time": "2024-10-30T10:52:32",
"upload_time_iso_8601": "2024-10-30T10:52:32.610345Z",
"url": "https://files.pythonhosted.org/packages/39/c2/d310cbd8c2db6b29c62f815a744cbeeba5f90d5bae3b20f654151c4c34c8/imagequant-1.1.2-cp36-cp36m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "695e8f298b5b790d646b786f9ae71b5b9ec3478325d18ef18355cbf6d6938b33",
"md5": "99127ec74850a999dee01cb9d7c54fae",
"sha256": "f960a8d1189a36daa61b371159b7930def1a2b2400ab7f4419b70fbc2c8941d6"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp36-cp36m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "99127ec74850a999dee01cb9d7c54fae",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 197652,
"upload_time": "2024-10-30T10:52:34",
"upload_time_iso_8601": "2024-10-30T10:52:34.160824Z",
"url": "https://files.pythonhosted.org/packages/69/5e/8f298b5b790d646b786f9ae71b5b9ec3478325d18ef18355cbf6d6938b33/imagequant-1.1.2-cp36-cp36m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1d02730257a5fc84f1eee03ef6311d6296778344bf567a7e369dccf302734bd",
"md5": "47d907aa9168d4652d1094543a1af0e7",
"sha256": "e5a64f80c2cd1ec50b94931c998fa218384a326448349ac3d38d59d6242be4fa"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp36-cp36m-win32.whl",
"has_sig": false,
"md5_digest": "47d907aa9168d4652d1094543a1af0e7",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 43430,
"upload_time": "2024-10-30T10:52:35",
"upload_time_iso_8601": "2024-10-30T10:52:35.318638Z",
"url": "https://files.pythonhosted.org/packages/c1/d0/2730257a5fc84f1eee03ef6311d6296778344bf567a7e369dccf302734bd/imagequant-1.1.2-cp36-cp36m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6de3c24f0fd7db12c6d923dbda09481c59ce7229ffb2147e149c12e0d7ec4b5a",
"md5": "d68d6105e17d171cca7f4a144c22b003",
"sha256": "8dd92f411baccb1bec97897796aec691deae38da6315efb8ca65b5b41f72bafa"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "d68d6105e17d171cca7f4a144c22b003",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 55607,
"upload_time": "2024-10-30T10:52:36",
"upload_time_iso_8601": "2024-10-30T10:52:36.956862Z",
"url": "https://files.pythonhosted.org/packages/6d/e3/c24f0fd7db12c6d923dbda09481c59ce7229ffb2147e149c12e0d7ec4b5a/imagequant-1.1.2-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8a512e75e32c7d09eadf59292e04af7f6536c0908c7d7beebd2ff51d1879dfc",
"md5": "375ab20c1665f94afc43bb8341a0c347",
"sha256": "5208fc0ae4414474e71f66e1eec01fe622ac5abe5c75dec9f46f38cf8d0a41af"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "375ab20c1665f94afc43bb8341a0c347",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 57847,
"upload_time": "2024-10-30T10:52:38",
"upload_time_iso_8601": "2024-10-30T10:52:38.080278Z",
"url": "https://files.pythonhosted.org/packages/c8/a5/12e75e32c7d09eadf59292e04af7f6536c0908c7d7beebd2ff51d1879dfc/imagequant-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2fd998bcb23abc9a716136902aac633d47041dbf3db9bdb4520f85f518e3aba6",
"md5": "2c47518676d17da9b1694c1a0a8afbae",
"sha256": "9d19d70f31a7a776d345a986c06f69c77df4d37e19075759bed209a6ccd6a95f"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2c47518676d17da9b1694c1a0a8afbae",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 187674,
"upload_time": "2024-10-30T10:52:39",
"upload_time_iso_8601": "2024-10-30T10:52:39.285262Z",
"url": "https://files.pythonhosted.org/packages/2f/d9/98bcb23abc9a716136902aac633d47041dbf3db9bdb4520f85f518e3aba6/imagequant-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "627d7d589177595e3fa0310c423ba53ed6ca9734eae6e983f1450c7927971352",
"md5": "5678dfc963c016aaeccfc37506b612a1",
"sha256": "2c7b15e6ea4a520f3d19c10a18bbd7a2f0d2c9cc9a45e10afb771a4daf53fdd3"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5678dfc963c016aaeccfc37506b612a1",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 198618,
"upload_time": "2024-10-30T10:52:41",
"upload_time_iso_8601": "2024-10-30T10:52:41.413082Z",
"url": "https://files.pythonhosted.org/packages/62/7d/7d589177595e3fa0310c423ba53ed6ca9734eae6e983f1450c7927971352/imagequant-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7107ad9c48d85dd6113c6bbbb669a71d257dc53603a538761ca8170ab255bd0b",
"md5": "572f8dec208faea7cc0e3ea0271ab352",
"sha256": "05648719b5e9f043771b737ad1437f145646c41e2226a4cb97c8ff53c7c63d29"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "572f8dec208faea7cc0e3ea0271ab352",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 177068,
"upload_time": "2024-10-30T10:52:42",
"upload_time_iso_8601": "2024-10-30T10:52:42.635652Z",
"url": "https://files.pythonhosted.org/packages/71/07/ad9c48d85dd6113c6bbbb669a71d257dc53603a538761ca8170ab255bd0b/imagequant-1.1.2-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": "1a22d16da8cc92f449d21c4a59d0c74d197dcd9745bd367306567f5e41e70f2b",
"md5": "ebc9e999f445bc45cb41683ff67e344f",
"sha256": "11558075596d45897d7623f2eff7d67e3ff1eb69df74e6783db057c213700d0d"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp37-cp37m-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ebc9e999f445bc45cb41683ff67e344f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 189494,
"upload_time": "2024-10-30T10:52:44",
"upload_time_iso_8601": "2024-10-30T10:52:44.364769Z",
"url": "https://files.pythonhosted.org/packages/1a/22/d16da8cc92f449d21c4a59d0c74d197dcd9745bd367306567f5e41e70f2b/imagequant-1.1.2-cp37-cp37m-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7f317323e7146caabbf772bf54ae400acfd50e7033fa9b0205feae4dbcf0b8a",
"md5": "3f51f84e1f62b2edfe0b30dd34d021a9",
"sha256": "34e3f80180ac509e704e012a64df150bcf795592275492603c8265982822188a"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "3f51f84e1f62b2edfe0b30dd34d021a9",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 181804,
"upload_time": "2024-10-30T10:52:45",
"upload_time_iso_8601": "2024-10-30T10:52:45.837452Z",
"url": "https://files.pythonhosted.org/packages/d7/f3/17323e7146caabbf772bf54ae400acfd50e7033fa9b0205feae4dbcf0b8a/imagequant-1.1.2-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "627e7b9e06368e4feddc84ce36d3ea46a0ee211bf172459d29d9c5dde231097c",
"md5": "45615e28b248f6d62b3f2cffa3bc7ef5",
"sha256": "c629b0fe43250dcd6918d20b9592bd9335bbe18b3fcc94b5508bb319c56ed60e"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "45615e28b248f6d62b3f2cffa3bc7ef5",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 197627,
"upload_time": "2024-10-30T10:52:47",
"upload_time_iso_8601": "2024-10-30T10:52:47.112401Z",
"url": "https://files.pythonhosted.org/packages/62/7e/7b9e06368e4feddc84ce36d3ea46a0ee211bf172459d29d9c5dde231097c/imagequant-1.1.2-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "94abe192f97b822c5c1546465cb31d1a298f1ea5436210dc9e184c738dc43e30",
"md5": "4614021d0d2cdd7395f494123a162391",
"sha256": "cdfcfc70f4f51b514aba92df57efcd5f00ba51a1eb9e0c16210ffac9c838d0af"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp37-cp37m-win32.whl",
"has_sig": false,
"md5_digest": "4614021d0d2cdd7395f494123a162391",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 39767,
"upload_time": "2024-10-30T10:52:48",
"upload_time_iso_8601": "2024-10-30T10:52:48.544998Z",
"url": "https://files.pythonhosted.org/packages/94/ab/e192f97b822c5c1546465cb31d1a298f1ea5436210dc9e184c738dc43e30/imagequant-1.1.2-cp37-cp37m-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff2980e364752059be2fefa50c39abad2ee0c35fc632ee4e8a1db9b2098fbc10",
"md5": "a1b9ccc56423caf289b2b95390974a95",
"sha256": "2549d1f5dc97e94c65f9ced49c81e4e813708ee128826d9def9ce7ba992c49e8"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "a1b9ccc56423caf289b2b95390974a95",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 51198,
"upload_time": "2024-10-30T10:52:49",
"upload_time_iso_8601": "2024-10-30T10:52:49.695865Z",
"url": "https://files.pythonhosted.org/packages/ff/29/80e364752059be2fefa50c39abad2ee0c35fc632ee4e8a1db9b2098fbc10/imagequant-1.1.2-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79e18b0a12596e468c3493cb32ce0f9cb7bbc8e85daf01e62517587203d6a857",
"md5": "71f110d2915b66d546d95b016a21fdab",
"sha256": "c84da31d7b6a7a729a22bda96f7e860296d1d3087910a0f48690e5b8c710f7da"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "71f110d2915b66d546d95b016a21fdab",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 105862,
"upload_time": "2024-10-30T10:52:50",
"upload_time_iso_8601": "2024-10-30T10:52:50.980597Z",
"url": "https://files.pythonhosted.org/packages/79/e1/8b0a12596e468c3493cb32ce0f9cb7bbc8e85daf01e62517587203d6a857/imagequant-1.1.2-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c728b4751d6cd6e3ce733d58d93f09e089b5722806dab89cd14d0759ef684cff",
"md5": "dc310e914399781fa5832bb0fe507211",
"sha256": "5baf52241bd5a7367ad14e344ddb690c8b99fe1d5a3d13bbee450b59f5edba1e"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "dc310e914399781fa5832bb0fe507211",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 57913,
"upload_time": "2024-10-30T10:52:52",
"upload_time_iso_8601": "2024-10-30T10:52:52.218013Z",
"url": "https://files.pythonhosted.org/packages/c7/28/b4751d6cd6e3ce733d58d93f09e089b5722806dab89cd14d0759ef684cff/imagequant-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "409b90f0ebceba26fba4b7d0e107437591fcf93e01626f32dd22bdf7620cf8eb",
"md5": "d3803d1f0fbf96e28c692fd46bd4825d",
"sha256": "c25b09bb556a4014fac09e456650b4f59b6d15cab951b3770fde8083d9a00ceb"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d3803d1f0fbf96e28c692fd46bd4825d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 55050,
"upload_time": "2024-10-30T10:52:53",
"upload_time_iso_8601": "2024-10-30T10:52:53.894701Z",
"url": "https://files.pythonhosted.org/packages/40/9b/90f0ebceba26fba4b7d0e107437591fcf93e01626f32dd22bdf7620cf8eb/imagequant-1.1.2-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e8c291e525396ef55c9e73c077eeed7dce0a345e6e3fab64d193de7675cc7cd",
"md5": "2dfa074325766cc75d485df4e466e17c",
"sha256": "af554978c035409612be53c0f14af5294008d19aa546ca43154ff8040a78c974"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2dfa074325766cc75d485df4e466e17c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 188380,
"upload_time": "2024-10-30T10:52:56",
"upload_time_iso_8601": "2024-10-30T10:52:56.419151Z",
"url": "https://files.pythonhosted.org/packages/8e/8c/291e525396ef55c9e73c077eeed7dce0a345e6e3fab64d193de7675cc7cd/imagequant-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9c04bd8be7c0286630833b09af14bba903a54c5be7db55d2ab6973d861b9f97",
"md5": "c14a2f6af67e0826b50c1a82b3bb6619",
"sha256": "076834ee959f8e7d647090c47e4bd88898aeed4dd49c6f1d8236a552f07395c2"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c14a2f6af67e0826b50c1a82b3bb6619",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 199050,
"upload_time": "2024-10-30T10:52:57",
"upload_time_iso_8601": "2024-10-30T10:52:57.967805Z",
"url": "https://files.pythonhosted.org/packages/b9/c0/4bd8be7c0286630833b09af14bba903a54c5be7db55d2ab6973d861b9f97/imagequant-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "91c7bcfa75d8dc2a5e5367df878dcd5f05dda677f35c32e37fb73e2ccbebcbad",
"md5": "8b0cba84b9bbd48ee65d952777e888b1",
"sha256": "11aed4772d9d8912319b438e09e0145735dcd5ca54fa3c8abf196a40963c0521"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8b0cba84b9bbd48ee65d952777e888b1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 177502,
"upload_time": "2024-10-30T10:53:00",
"upload_time_iso_8601": "2024-10-30T10:53:00.721967Z",
"url": "https://files.pythonhosted.org/packages/91/c7/bcfa75d8dc2a5e5367df878dcd5f05dda677f35c32e37fb73e2ccbebcbad/imagequant-1.1.2-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": "52098f491464e20d62835a816e9b2e18d77088b8fed3d3bcbfc717e492b7c051",
"md5": "dda862d65237556b1cc5c2aecf5fb02f",
"sha256": "13c4a712b05fab0bddd09a4d96399b60f498405c8d981e5dcf42d9b007954d2f"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "dda862d65237556b1cc5c2aecf5fb02f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 190210,
"upload_time": "2024-10-30T10:53:02",
"upload_time_iso_8601": "2024-10-30T10:53:02.106134Z",
"url": "https://files.pythonhosted.org/packages/52/09/8f491464e20d62835a816e9b2e18d77088b8fed3d3bcbfc717e492b7c051/imagequant-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9ad1bbb511b30d6343d5011503eab503de53f09d6f605c20b4b3486b9e940946",
"md5": "9260275d4216ab7821a924e547a4520b",
"sha256": "c3228a2572d59cbfa3bc8a52cf195a24e9c052be16a2f5e9ab62921307544ef6"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9260275d4216ab7821a924e547a4520b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 182490,
"upload_time": "2024-10-30T10:53:03",
"upload_time_iso_8601": "2024-10-30T10:53:03.697607Z",
"url": "https://files.pythonhosted.org/packages/9a/d1/bbb511b30d6343d5011503eab503de53f09d6f605c20b4b3486b9e940946/imagequant-1.1.2-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "707de63cd3bc4f2e409294fc021200b428866297ac6427f7371ff9d4d480fc0c",
"md5": "e2af29e719518303da07b427a75a1902",
"sha256": "6d92930765fcca9a64c512d17d5d6ed6ed183157aac8069aeb885ef3b5adc768"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e2af29e719518303da07b427a75a1902",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 198143,
"upload_time": "2024-10-30T10:53:05",
"upload_time_iso_8601": "2024-10-30T10:53:05.658633Z",
"url": "https://files.pythonhosted.org/packages/70/7d/e63cd3bc4f2e409294fc021200b428866297ac6427f7371ff9d4d480fc0c/imagequant-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85ca5f52e53103b9ee40c1c667e2d173e6511a51c0608570637c8c6b7ecd8507",
"md5": "22b92e73e1eb08a8c9712ba18d03593b",
"sha256": "9f8a85de4c1a885b767fe2bff14a688f151c221bcfbd472c48f0c73673c18f92"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "22b92e73e1eb08a8c9712ba18d03593b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 39763,
"upload_time": "2024-10-30T10:53:07",
"upload_time_iso_8601": "2024-10-30T10:53:07.227678Z",
"url": "https://files.pythonhosted.org/packages/85/ca/5f52e53103b9ee40c1c667e2d173e6511a51c0608570637c8c6b7ecd8507/imagequant-1.1.2-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c3b794012d1b252f157e616d1baf4a7571d7ec4341ed065ddc59b154d062d38",
"md5": "b93a564fb76a7b25113058b0f9216f62",
"sha256": "ad5837c9ae00f15a028087ed026917ec0dac8f94c7fba90339aca8ca9d2d99ce"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "b93a564fb76a7b25113058b0f9216f62",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 51195,
"upload_time": "2024-10-30T10:53:08",
"upload_time_iso_8601": "2024-10-30T10:53:08.381148Z",
"url": "https://files.pythonhosted.org/packages/9c/3b/794012d1b252f157e616d1baf4a7571d7ec4341ed065ddc59b154d062d38/imagequant-1.1.2-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f141bd64d75423dcc49111098fa98067d3e46c9756c94db44d69dfc941d1d91f",
"md5": "0be6e92e6c05933249e2744b9e1211ed",
"sha256": "835db7de960daa6c87fd1e5e246d28e91d5d4f7a69da0b98391b9131af2eeb0b"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "0be6e92e6c05933249e2744b9e1211ed",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 105865,
"upload_time": "2024-10-30T10:53:10",
"upload_time_iso_8601": "2024-10-30T10:53:10.305806Z",
"url": "https://files.pythonhosted.org/packages/f1/41/bd64d75423dcc49111098fa98067d3e46c9756c94db44d69dfc941d1d91f/imagequant-1.1.2-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bbec5a1fa020b3ad76dc8ccf67e71e400f55eb91a43a2f8e248f5663b9110579",
"md5": "b8c573e6704132f22e628c0ab386eef5",
"sha256": "e8d8939a78decd4b48d7b17498c380ada22ac72fde924c2d2bcf1ca476900254"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "b8c573e6704132f22e628c0ab386eef5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 57911,
"upload_time": "2024-10-30T10:53:11",
"upload_time_iso_8601": "2024-10-30T10:53:11.534053Z",
"url": "https://files.pythonhosted.org/packages/bb/ec/5a1fa020b3ad76dc8ccf67e71e400f55eb91a43a2f8e248f5663b9110579/imagequant-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9bb543e963a762e6309b587fe83138d004249b7c2de1a59e0626b44124ffc045",
"md5": "d64cb9608e324e3d8ea25e6fab3e4982",
"sha256": "23e14383f3ed8df9354459ccda6078d56acadbdf2ae80c20c09e2c7abc178fbb"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d64cb9608e324e3d8ea25e6fab3e4982",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 55051,
"upload_time": "2024-10-30T10:53:12",
"upload_time_iso_8601": "2024-10-30T10:53:12.709134Z",
"url": "https://files.pythonhosted.org/packages/9b/b5/43e963a762e6309b587fe83138d004249b7c2de1a59e0626b44124ffc045/imagequant-1.1.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9e23d3ca61d27ca6c0082fa831a20ae008f62f9f42d6944bb5eb1f8655bef803",
"md5": "3f2aa5b4b68b793274c9af635ab8deac",
"sha256": "0b2c370dac3e7dcfd96a1772e0803e709f886aa3df7a06705bbdbe88f9a261af"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3f2aa5b4b68b793274c9af635ab8deac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 188232,
"upload_time": "2024-10-30T10:53:13",
"upload_time_iso_8601": "2024-10-30T10:53:13.939696Z",
"url": "https://files.pythonhosted.org/packages/9e/23/d3ca61d27ca6c0082fa831a20ae008f62f9f42d6944bb5eb1f8655bef803/imagequant-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8df26ac859c21dfef6b9367ed4a896b1de6c0f40e54d1f518caa691d7370d656",
"md5": "dd5225ccf34098ad7a5f2e9aec232112",
"sha256": "6abb4e442380791f67215bc8ab2f4061758340309335773dfd6f3fcb6e366b09"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dd5225ccf34098ad7a5f2e9aec232112",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 198879,
"upload_time": "2024-10-30T10:53:16",
"upload_time_iso_8601": "2024-10-30T10:53:16.627640Z",
"url": "https://files.pythonhosted.org/packages/8d/f2/6ac859c21dfef6b9367ed4a896b1de6c0f40e54d1f518caa691d7370d656/imagequant-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7a834e943f75b575dba7d36c68299947b217c91572ba4e5be63f336d9c3979a7",
"md5": "2ae1d28bb248502922287074f97a3203",
"sha256": "e813df4a90133401534b356724bdeb14b0ff2cd3c62d0b1543da716154903241"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2ae1d28bb248502922287074f97a3203",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 177420,
"upload_time": "2024-10-30T10:53:18",
"upload_time_iso_8601": "2024-10-30T10:53:18.673869Z",
"url": "https://files.pythonhosted.org/packages/7a/83/4e943f75b575dba7d36c68299947b217c91572ba4e5be63f336d9c3979a7/imagequant-1.1.2-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": "e179677af9c33bd9f407a39c54c0d7c84c9fac92379f5fa8113b1b7a878c7e30",
"md5": "2a360dfe3952407ee59810af3d942e3a",
"sha256": "104a38854bfa83e7fad4ae2d2d86da6e30efc546d5eb23e3163dc8b734bbc87f"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2a360dfe3952407ee59810af3d942e3a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 190022,
"upload_time": "2024-10-30T10:53:20",
"upload_time_iso_8601": "2024-10-30T10:53:20.608200Z",
"url": "https://files.pythonhosted.org/packages/e1/79/677af9c33bd9f407a39c54c0d7c84c9fac92379f5fa8113b1b7a878c7e30/imagequant-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d492c416f91e8e5baacbf0fb3d339531e85e6c6b9bbe84fcd89005f035706b3f",
"md5": "760c9384f937cb4b49ce79abad8fa5bc",
"sha256": "b33ae258ef13a8661b886e23257433fb5d440faa4ffc22108f2a08d56730ece0"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "760c9384f937cb4b49ce79abad8fa5bc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 182240,
"upload_time": "2024-10-30T10:53:21",
"upload_time_iso_8601": "2024-10-30T10:53:21.971625Z",
"url": "https://files.pythonhosted.org/packages/d4/92/c416f91e8e5baacbf0fb3d339531e85e6c6b9bbe84fcd89005f035706b3f/imagequant-1.1.2-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "31c1e9c5103dac572305bec8cd19946af2209ac4807cdb20e37daea81fc31946",
"md5": "fb256c9cb118904f9242ebbbc503fe7e",
"sha256": "a8bf02c436b7d1af3dc7e8ff6b658950cd2ef25254f6a8f5e7daf8e1ccbb9378"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fb256c9cb118904f9242ebbbc503fe7e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 197910,
"upload_time": "2024-10-30T10:53:23",
"upload_time_iso_8601": "2024-10-30T10:53:23.324729Z",
"url": "https://files.pythonhosted.org/packages/31/c1/e9c5103dac572305bec8cd19946af2209ac4807cdb20e37daea81fc31946/imagequant-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59edcf93590b3bd26ba0e03da407d522bf00ff850a6e1eed6f86fcfcfc61de6d",
"md5": "8c3f50c516ec369e086f45957ec4f90e",
"sha256": "7241c1083c9c2385b9f02a28f7eb91e67527a69a9e7895082992cf9b10e0b198"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "8c3f50c516ec369e086f45957ec4f90e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 39759,
"upload_time": "2024-10-30T10:53:24",
"upload_time_iso_8601": "2024-10-30T10:53:24.698405Z",
"url": "https://files.pythonhosted.org/packages/59/ed/cf93590b3bd26ba0e03da407d522bf00ff850a6e1eed6f86fcfcfc61de6d/imagequant-1.1.2-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "70d70b497f084e0ab417e62d483e6b6e8fa8465106f7ee0e62abea5671980bf1",
"md5": "cb1b578a1f74d4afc1eab7ee009a5a18",
"sha256": "2bd2f37a4fba5f651cf5a3af512c14e4ad0599f23716a951c385bd8913538edb"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "cb1b578a1f74d4afc1eab7ee009a5a18",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 51197,
"upload_time": "2024-10-30T10:53:26",
"upload_time_iso_8601": "2024-10-30T10:53:26.383044Z",
"url": "https://files.pythonhosted.org/packages/70/d7/0b497f084e0ab417e62d483e6b6e8fa8465106f7ee0e62abea5671980bf1/imagequant-1.1.2-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8395ab8c11c413d778541d30e755ba177aba1f53fd0e997b6fe4217ad204a45c",
"md5": "735045041272ef26e5e192dc0a6d5f6a",
"sha256": "eab142ba9bcc9276b92158119f22a0fb70479a819e18188a6c68bd4906c5c176"
},
"downloads": -1,
"filename": "imagequant-1.1.2-cp39-cp39-win_arm64.whl",
"has_sig": false,
"md5_digest": "735045041272ef26e5e192dc0a6d5f6a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 41184,
"upload_time": "2024-10-30T10:53:27",
"upload_time_iso_8601": "2024-10-30T10:53:27.676014Z",
"url": "https://files.pythonhosted.org/packages/83/95/ab8c11c413d778541d30e755ba177aba1f53fd0e997b6fe4217ad204a45c/imagequant-1.1.2-cp39-cp39-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "282c5e9665c861a62b4d8dbcddb85ca839f4f784b12d7748cebeee47548b1217",
"md5": "03c5b4eb6891a319e9504afb5bd69b3f",
"sha256": "461ec263515a3702829c8d306a71f716630651d9a2fb50a2198e2b24b486badf"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "03c5b4eb6891a319e9504afb5bd69b3f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 40781,
"upload_time": "2024-10-30T10:53:28",
"upload_time_iso_8601": "2024-10-30T10:53:28.821500Z",
"url": "https://files.pythonhosted.org/packages/28/2c/5e9665c861a62b4d8dbcddb85ca839f4f784b12d7748cebeee47548b1217/imagequant-1.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc2db2c072caa90552b31de46a9e399c1c4b115fe289f42bedefff114d70ffe4",
"md5": "e580a0b60ae3f82a2b2533aca95654a5",
"sha256": "721ce2d0946b59dd864d2ec1b839edc0ed8d562a84204ca0ccd3f2f441c3d3ac"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e580a0b60ae3f82a2b2533aca95654a5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 41125,
"upload_time": "2024-10-30T10:53:30",
"upload_time_iso_8601": "2024-10-30T10:53:30.164390Z",
"url": "https://files.pythonhosted.org/packages/cc/2d/b2c072caa90552b31de46a9e399c1c4b115fe289f42bedefff114d70ffe4/imagequant-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fdb4da681fd773d7367dcba8dc18f1b8c7b0ce142758402ffcd898f7d5398552",
"md5": "1464f1278cd787dbc3d04fd426ec2e6d",
"sha256": "0e2e98ceddd3258a0756d29799d02d215e94f765cb49d500f21b2035529dd229"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1464f1278cd787dbc3d04fd426ec2e6d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 40503,
"upload_time": "2024-10-30T10:53:31",
"upload_time_iso_8601": "2024-10-30T10:53:31.299540Z",
"url": "https://files.pythonhosted.org/packages/fd/b4/da681fd773d7367dcba8dc18f1b8c7b0ce142758402ffcd898f7d5398552/imagequant-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47ae2af0c0a4d803d758562ae1951e40e4cdb4da6de33ab7f781edd9b06b914d",
"md5": "069bf19217404290b1643ccf0dc0f461",
"sha256": "da5c4b7b7a531bc3502d876bbdd4ac7e5548f2dddece722ec0cb0c2f1ed245a6"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "069bf19217404290b1643ccf0dc0f461",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 42835,
"upload_time": "2024-10-30T10:53:32",
"upload_time_iso_8601": "2024-10-30T10:53:32.944363Z",
"url": "https://files.pythonhosted.org/packages/47/ae/2af0c0a4d803d758562ae1951e40e4cdb4da6de33ab7f781edd9b06b914d/imagequant-1.1.2-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": "49e0f623257e6c39a5965e58a9b4b80448fae1f116d1079345f6534d9b6bd5c4",
"md5": "10fcf7070fef0029ee77622b77709efe",
"sha256": "4ab90dcd19b801e114c6519d39bb3e593899f6fa9246a1802cc72cdcd99818c4"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "10fcf7070fef0029ee77622b77709efe",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 40126,
"upload_time": "2024-10-30T10:53:34",
"upload_time_iso_8601": "2024-10-30T10:53:34.454026Z",
"url": "https://files.pythonhosted.org/packages/49/e0/f623257e6c39a5965e58a9b4b80448fae1f116d1079345f6534d9b6bd5c4/imagequant-1.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "364188eeef9eba86c2ddc8f2c7249ba5a6dfbe7a60c8e6948943b61d17c8f42d",
"md5": "872590700ff4ed69f7c03cf0ea9a1846",
"sha256": "d5f443d6971112c34c1dd16dbb98b2af79e8006cef6046960511cdbdb519155a"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "872590700ff4ed69f7c03cf0ea9a1846",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 41711,
"upload_time": "2024-10-30T10:53:35",
"upload_time_iso_8601": "2024-10-30T10:53:35.630474Z",
"url": "https://files.pythonhosted.org/packages/36/41/88eeef9eba86c2ddc8f2c7249ba5a6dfbe7a60c8e6948943b61d17c8f42d/imagequant-1.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "783d649b7c18888e46a4361833fcf8abc51c5f6a4613f11b9851e9998ddadd80",
"md5": "2b38286588c63bdc2eac2ad1f4886ea4",
"sha256": "362d9f1139c735a288b0a03392f8722b64b0f25fe06ee5459dfce635e5afadcc"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2b38286588c63bdc2eac2ad1f4886ea4",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 41394,
"upload_time": "2024-10-30T10:53:37",
"upload_time_iso_8601": "2024-10-30T10:53:37.294710Z",
"url": "https://files.pythonhosted.org/packages/78/3d/649b7c18888e46a4361833fcf8abc51c5f6a4613f11b9851e9998ddadd80/imagequant-1.1.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21735a383fc82e1fd015bdb0fe691cf43f9b4eae7d1776dbcd1f8d6ffe394da9",
"md5": "2e8a5778191101bf3e57d8bf6c02ca9d",
"sha256": "c2afd27e5c398bc44b0177fe906c03fed1e77fd30804262a10d97cd99da0889f"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2e8a5778191101bf3e57d8bf6c02ca9d",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 43615,
"upload_time": "2024-10-30T10:53:38",
"upload_time_iso_8601": "2024-10-30T10:53:38.448324Z",
"url": "https://files.pythonhosted.org/packages/21/73/5a383fc82e1fd015bdb0fe691cf43f9b4eae7d1776dbcd1f8d6ffe394da9/imagequant-1.1.2-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": "46eaac0c9afd9d8b0c2267774c83ec1524bf750c1e027f84bdbe7b8aa7e14456",
"md5": "ab484fe1d5740d4df5824c909ef678f9",
"sha256": "17fb1fa84fed4c187a2f1250f8caf3a1611e42a0f931da12fa617be0d4a06e07"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ab484fe1d5740d4df5824c909ef678f9",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 40124,
"upload_time": "2024-10-30T10:53:39",
"upload_time_iso_8601": "2024-10-30T10:53:39.883327Z",
"url": "https://files.pythonhosted.org/packages/46/ea/ac0c9afd9d8b0c2267774c83ec1524bf750c1e027f84bdbe7b8aa7e14456/imagequant-1.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12261f6719f1821011d144078117bcfdd9c5ed59f796ec41c45dd3210d1932dc",
"md5": "434088d2aa1a0d1ac208936e6cf9997c",
"sha256": "d900c132bfc1c63cce4292bcd20e65ad00ff9ee092fac78265a1ca9bfd7a8296"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "434088d2aa1a0d1ac208936e6cf9997c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 41122,
"upload_time": "2024-10-30T10:53:41",
"upload_time_iso_8601": "2024-10-30T10:53:41.541235Z",
"url": "https://files.pythonhosted.org/packages/12/26/1f6719f1821011d144078117bcfdd9c5ed59f796ec41c45dd3210d1932dc/imagequant-1.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79d8451a30dead0ad382603162ae6cc67c90b834dd81683361deaf24de5952ee",
"md5": "69faed26b76470ef222962f2a7132715",
"sha256": "b2817e7a8ff8d44081a6dd3b34e6f31ef2b41e7df660fa8529de4220db2d03fe"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "69faed26b76470ef222962f2a7132715",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 40499,
"upload_time": "2024-10-30T10:53:42",
"upload_time_iso_8601": "2024-10-30T10:53:42.794554Z",
"url": "https://files.pythonhosted.org/packages/79/d8/451a30dead0ad382603162ae6cc67c90b834dd81683361deaf24de5952ee/imagequant-1.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1fc0980cd3a2195dadc6063fbc5e62b53af7c60cb9f806e8fba74480f80f79f",
"md5": "44826bbc1fdd8d54bf8b2a84f7cbbe24",
"sha256": "f5866ab35bb33ed3b13144ea09e37f8fe056a5e50e249f57df4d16cc051ebe88"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "44826bbc1fdd8d54bf8b2a84f7cbbe24",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 42831,
"upload_time": "2024-10-30T10:53:43",
"upload_time_iso_8601": "2024-10-30T10:53:43.963242Z",
"url": "https://files.pythonhosted.org/packages/a1/fc/0980cd3a2195dadc6063fbc5e62b53af7c60cb9f806e8fba74480f80f79f/imagequant-1.1.2-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": "91af117b8c1b5a870ca2896e06d9605fa140dd9d969aeebda90002b34e9fafe5",
"md5": "670825ffe75c6ee4e79c6031895f717b",
"sha256": "19cf2ccd9a988079e4b2c413258d0984097a7675831e8ee83f0d57a074a49b91"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "670825ffe75c6ee4e79c6031895f717b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 40774,
"upload_time": "2024-10-30T10:53:45",
"upload_time_iso_8601": "2024-10-30T10:53:45.149976Z",
"url": "https://files.pythonhosted.org/packages/91/af/117b8c1b5a870ca2896e06d9605fa140dd9d969aeebda90002b34e9fafe5/imagequant-1.1.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "281d32b8d69fcc676bda69853d20392f1f22eaf295c53e881336e51d417e6c78",
"md5": "07d4410de14d82e41e80ba4d5327a8cb",
"sha256": "c4ec6601c05375d66cfc55fbbada361d008926c684af4c2bccee9c6b426330db"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "07d4410de14d82e41e80ba4d5327a8cb",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 41123,
"upload_time": "2024-10-30T10:53:46",
"upload_time_iso_8601": "2024-10-30T10:53:46.341893Z",
"url": "https://files.pythonhosted.org/packages/28/1d/32b8d69fcc676bda69853d20392f1f22eaf295c53e881336e51d417e6c78/imagequant-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bcbdfb27ecf17bc8ce4b46ea4d75b1a799c601c6d101e52fb6110cafd94324e2",
"md5": "39f66e430e5511b74fbc3234c01adf7f",
"sha256": "67bac6c08c7ccc0800c830b644cf580a82107e56d5401134a0ffe5493b0adcbc"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "39f66e430e5511b74fbc3234c01adf7f",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 40499,
"upload_time": "2024-10-30T10:53:47",
"upload_time_iso_8601": "2024-10-30T10:53:47.586337Z",
"url": "https://files.pythonhosted.org/packages/bc/bd/fb27ecf17bc8ce4b46ea4d75b1a799c601c6d101e52fb6110cafd94324e2/imagequant-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07a993dbb69b9a984b02d0d1ba3d424a6ae731f382a0a5ff44d0d32de58d4b9e",
"md5": "51b1d867071ddb76cc792455eca5c875",
"sha256": "5d073fbd00e520cdb52f55f692f4d69ce27bce7092afbff40917dd1bfee33ad6"
},
"downloads": -1,
"filename": "imagequant-1.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "51b1d867071ddb76cc792455eca5c875",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 42832,
"upload_time": "2024-10-30T10:53:48",
"upload_time_iso_8601": "2024-10-30T10:53:48.801148Z",
"url": "https://files.pythonhosted.org/packages/07/a9/93dbb69b9a984b02d0d1ba3d424a6ae731f382a0a5ff44d0d32de58d4b9e/imagequant-1.1.2-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": "3b906b25fdbdb80f8e8e776fa8da5aa7d93f3184d6fc49fb7153f08a4ac0b348",
"md5": "51eba9be3d38842ebab86b5172eee067",
"sha256": "8b2678457461658cedc49e30be3865401469b9ff0dd8507f33e788725ffc549f"
},
"downloads": -1,
"filename": "imagequant-1.1.2.tar.gz",
"has_sig": false,
"md5_digest": "51eba9be3d38842ebab86b5172eee067",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 64607,
"upload_time": "2024-10-30T10:53:50",
"upload_time_iso_8601": "2024-10-30T10:53:50.234849Z",
"url": "https://files.pythonhosted.org/packages/3b/90/6b25fdbdb80f8e8e776fa8da5aa7d93f3184d6fc49fb7153f08a4ac0b348/imagequant-1.1.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-30 10:53:50",
"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"
}