imagequant 1.1.4
pip install imagequant
Released:
Image Quantization Library
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD-3-Clause
- Author: Wanadev
- Maintainer: Fabien LOISON
- Tags image, libimagequant, pngquant, cffi
-
Provides-Extra:
dev
,pil
Project description
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.
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
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")
→
With Raw Data
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:
b'\x02\x03\x00\x01'
Example output_palette:
[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 for more information.
Changelog
[NEXT] (changes on master that have not been released yet):
Nothing yet ;)
v1.1.4:
fix: Cleanup before throwing RuntimeError to avoid memory leak (@laggykiller, #26)
v1.1.3:
misc(deps): Fixed PyPy builds on Windows platform (@flozz)
v1.1.2:
misc: Removed PyPy wheels for Windows AMD64 as they won’t build (@flozz)
misc: Fixed libimagequant build on newer GCC versions (@flozz)
misc: Added Python 3.13 support (@flozz)
misc!: Removed Python 3.8 support (@flozz)
v1.1.1:
dist: Build and publish arm64 wheels for Linux and Windows (@laggykiller, #9, #10)
v1.1.0:
Added options to set minimal and target (maximal) quality (@injet-zhou, #4)
v1.0.5:
Added Python 3.12 support (@flozz)
Removed Python 3.7 support (@flozz)
v1.0.4:
Added Python 3.11 support
v1.0.3:
arm64 and universal2 wheels for macOS M1
x86 and x68_64 wheels for musl-based Linux distro (Alpine,…)
x86 wheels for Windows (x86_64 were already available)
v1.0.2: Python 3.10 support and wheels
v1.0.1: Fix encoding while reading the README in setup.py
v1.0.0: Initial release with a minimal API.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD-3-Clause
- Author: Wanadev
- Maintainer: Fabien LOISON
- Tags image, libimagequant, pngquant, cffi
-
Provides-Extra:
dev
,pil
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Uploaded
PyPy
Windows x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
macOS 10.15+ x86-64
Uploaded
PyPy
Windows x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
macOS 10.15+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
macOS 10.15+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
macOS 10.9+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
macOS 10.9+ x86-64
Uploaded
CPython 3.13
Windows ARM64
Uploaded
CPython 3.13
Windows x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ i686
Uploaded
CPython 3.13
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.13
macOS 11.0+ ARM64
Uploaded
CPython 3.13
macOS 10.13+ x86-64
Uploaded
CPython 3.13
macOS 10.13+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.12
Windows ARM64
Uploaded
CPython 3.12
Windows x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ i686
Uploaded
CPython 3.12
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.12
macOS 11.0+ ARM64
Uploaded
CPython 3.12
macOS 10.13+ x86-64
Uploaded
CPython 3.12
macOS 10.13+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.11
Windows ARM64
Uploaded
CPython 3.11
Windows x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ i686
Uploaded
CPython 3.11
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.11
macOS 11.0+ ARM64
Uploaded
CPython 3.11
macOS 10.9+ x86-64
Uploaded
CPython 3.11
macOS 10.9+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.10
Windows ARM64
Uploaded
CPython 3.10
Windows x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ i686
Uploaded
CPython 3.10
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.10
macOS 11.0+ ARM64
Uploaded
CPython 3.10
macOS 10.9+ x86-64
Uploaded
CPython 3.10
macOS 10.9+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.9
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ i686
Uploaded
CPython 3.9
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.9
macOS 11.0+ ARM64
Uploaded
CPython 3.9
macOS 10.9+ x86-64
Uploaded
CPython 3.9
macOS 10.9+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.8
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.2+ i686
Uploaded
CPython 3.8
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.8
macOS 11.0+ ARM64
Uploaded
CPython 3.8
macOS 10.9+ x86-64
Uploaded
CPython 3.8
macOS 10.9+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.7m
Windows x86-64
Uploaded
CPython 3.7m
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.7m
musllinux: musl 1.2+ i686
Uploaded
CPython 3.7m
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.7m
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.7m
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.7m
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.7m
macOS 10.9+ x86-64
Uploaded
CPython 3.6m
Windows x86-64
Uploaded
CPython 3.6m
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.6m
musllinux: musl 1.2+ i686
Uploaded
CPython 3.6m
musllinux: musl 1.2+ ARM64
Uploaded
CPython 3.6m
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.6m
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.6m
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.6m
macOS 10.9+ x86-64
File details
Details for the file imagequant-1.1.4.tar.gz
.
File metadata
- Download URL: imagequant-1.1.4.tar.gz
- Upload date:
- Size: 65.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49a857ca7e3ac65c2dfb5a5c8441611e000420a9502f320d49e03ff6add57995 |
|
MD5 | a46fa37070866054fda0f32903d2276c |
|
BLAKE2b-256 | f24650b85efab0e47e6ecc8e35ada114f61c45e05813be1d4d4c6a5db9b48e6c |
File details
Details for the file imagequant-1.1.4-pp311-pypy311_pp73-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 43.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3534e787b23e16ccd8ca365e3ffd44b7ee4f1186bc3f1dcaa92414734c612a1a |
|
MD5 | b0663c6118fa59d8088de0f61163abbb |
|
BLAKE2b-256 | 3bf138cb5d7ef7ad6300faa75f86fdc44b27b3e302d9d6df85c009a3466943d9 |
File details
Details for the file imagequant-1.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 40.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39570babd350e8b730c31336aadbc20c39c9660ffb4904e02c7bcfa8a9443386 |
|
MD5 | 0e2521f14b9e7252a467bf30dad40d7b |
|
BLAKE2b-256 | 71f278086d1c427332513db8869da1b017c5f55d97737e61570f9a6489e7572d |
File details
Details for the file imagequant-1.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 41.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 801c4d735e8eab7eb97c3551c0ea886b6021405b008d8d391d87a043deee6635 |
|
MD5 | cce1b3aab17476d7cac7f8c096104c6a |
|
BLAKE2b-256 | 99bbd20cb05b4158b13c883372145529f61d06c9d1613aed957e795adf157c11 |
File details
Details for the file imagequant-1.1.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 43.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f5291e516020221cb978f827360082cf7e42bb0137cb593ae0a45e8f4610371 |
|
MD5 | be2d81695358e3a0d51b58561b151977 |
|
BLAKE2b-256 | 7f7eb42388fb597dc11bd79e238fda745adb30162d09a787d4522b9496a34ca7 |
File details
Details for the file imagequant-1.1.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 44.9 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8af0dda4a32565cff4a20a8178e8b5d41256a7d63dfc9d7c1fb1ddeaecf1ec58 |
|
MD5 | c3be97d423e2e0f8ae86ce4b83bc4f1c |
|
BLAKE2b-256 | f809caad310d88b416b7e8beeff454b2c729ca10f4e163020fa89fcb3d5e0b85 |
File details
Details for the file imagequant-1.1.4-pp310-pypy310_pp73-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 43.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23259045ede443ae4b224e64521faca43c1549de228b70a31e3cf560ac279274 |
|
MD5 | f58c47ccd251680a126b8b507ea453d1 |
|
BLAKE2b-256 | 79c6e62bf8f194116f54213738627954e8d4f4c13ae2daacdbb9c508280a0eed |
File details
Details for the file imagequant-1.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 40.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a56f21eb35c2a8d83c777e79224aca6fea99599d0e2c2d59e3ba2a41966025e4 |
|
MD5 | 6ba1a8136af26e99a9b0d0f9375ffee3 |
|
BLAKE2b-256 | 6bd23c9d7566ae360b1dab11f151f9fbf0c49f8889b1c55c1ae876234f64c507 |
File details
Details for the file imagequant-1.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 41.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b2f3ae23ed584129e05e2191c98e18e98cd55e858cc5f4cdc8af4aa5ac275f9 |
|
MD5 | ceb93335e45aadb6535f76a3e15a53aa |
|
BLAKE2b-256 | ad866a2681adbed55bf1fbfd41c98d10580ec32aa756c5ae52ea25c0dc118323 |
File details
Details for the file imagequant-1.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 43.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b37b2d7626a1cf254286778811c9f8c7a2af349719da5c9c6435bba0190fbadc |
|
MD5 | a536e932e66b83a4eca83fe37b615def |
|
BLAKE2b-256 | 3d95a58172ede28c84004950c3a4ad8800ee6b5b167147bb6b07c91764b15bc8 |
File details
Details for the file imagequant-1.1.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 44.9 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b2d03a7d6c6eb06f382a699bc0df08ccd3d109b239f8727328ecd2a9c308e5c |
|
MD5 | 9ad953c9e5ef8b5e53613006f6fabca4 |
|
BLAKE2b-256 | c5813eb22bcdbc8ffe02ba4f778930a69aea254c1e958b5ecf16250bdce3fb97 |
File details
Details for the file imagequant-1.1.4-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 43.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 668b514cd4cde4032500f3747e69e85d1d267f966fc2679a8967440ca874591e |
|
MD5 | b1b9a92295946090ee2c4fb3ad0497c3 |
|
BLAKE2b-256 | b285609b92d85d89b1223306e1e4ca4406dcc339b245ddbf1a55deb35ce8f9de |
File details
Details for the file imagequant-1.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 40.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 459de1fd894959269fedfad3ede79e0bdf23e919b99359bf241b366ff9ae9180 |
|
MD5 | 17db35020a28a398a6ed83ff90071d21 |
|
BLAKE2b-256 | db6d54cf82007fd0246b19116d9199524c3cf743b605d60376125bfaf15234db |
File details
Details for the file imagequant-1.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 41.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a5b7f94f68af7199975817dd6e69865494c31e106155bac8102d3abb50b926e |
|
MD5 | 4c412e2f8144867e19ba7115176197a0 |
|
BLAKE2b-256 | ea544cf4f33ad4d1986947ee274b8ec1daafb48a06cf4c43320386da425fa24b |
File details
Details for the file imagequant-1.1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 43.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0919d9ace2313ef94cccace02aca4554c5a0ec47b0c6a2bea1be9af6f480cbf7 |
|
MD5 | 285597034c225bb57a8f45995093c303 |
|
BLAKE2b-256 | e52e982a980d57dbccbd90a183efb9ecfb0a9dc9660297f0aa2c43a469281c0d |
File details
Details for the file imagequant-1.1.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 44.9 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a28444be6e2ed9e3d95821e6441c17bcab61fab35d8db9ca20ed7203880d6d72 |
|
MD5 | 60c9e3a21302459f0abe53c4f3e2a3e5 |
|
BLAKE2b-256 | 253accaa88464aa08e30877e53f6388cb3c906d1f659f75a0841126b69714d4b |
File details
Details for the file imagequant-1.1.4-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 43.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ecec0d8af5e281ae4ea78101b7ce3c31ec31c25c5ab2f37bfab0e7d9b47865d |
|
MD5 | 7a1cc36ccd0d44a8e5718d567edbd11d |
|
BLAKE2b-256 | c637952e149f0cf0435c9300e87a5fcd1a88125ea92afeb456299806c7bc37b0 |
File details
Details for the file imagequant-1.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 40.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4852f820c9180fc8b3c5c825c21f469ef09170a4918eda38e7b4fe76ebb75c32 |
|
MD5 | 29f9ce4a735430f92c6c9a02a3852537 |
|
BLAKE2b-256 | 355863ef79da8eea7a4ab1a7dfeac25a9049631ab556a230ea0187d610b75317 |
File details
Details for the file imagequant-1.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 41.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aeaa89d45763d869b5a1e58b43a6ec5eadbfd81b47ea536c83bd4fd98a99eee1 |
|
MD5 | 473904aa9d5e7768b6f7398df8f6eb5f |
|
BLAKE2b-256 | 9f889bc578476e0f8e9e1b8ad3923a7b67129ed7c0f5b82ded965ff66608ec15 |
File details
Details for the file imagequant-1.1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 42.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d97c4971886b4df4d48d2a26ffc9f2d0bdb9288f3348e549965a3a46ecac82c4 |
|
MD5 | 76bf75964cce4989da3041d0a110b5dc |
|
BLAKE2b-256 | 866498f6357983ba027942818856bfa53db0f25f641b3d620221f9037fe74163 |
File details
Details for the file imagequant-1.1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 44.5 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d2dda294734f91b6332c51aafe58fba3288deafee20a4bc5a07576479f19e49 |
|
MD5 | e63c95d8f48047a1f86ccacad9875464 |
|
BLAKE2b-256 | 54376c5c43478cbc7f2cc637ed5358127313bc642020448f9bbffdd70b909f18 |
File details
Details for the file imagequant-1.1.4-pp37-pypy37_pp73-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp37-pypy37_pp73-win_amd64.whl
- Upload date:
- Size: 43.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ab9703e7b9d6bb36dfb382f9a8d0798b49bcfd54a3f5448e2afb9b674ed7375 |
|
MD5 | c9c127b4f5e01d0ad53a4fd83aef8941 |
|
BLAKE2b-256 | 7c8abef6f67146ff599dd591624262796a23cfffd59ec5378b8251f267ef1064 |
File details
Details for the file imagequant-1.1.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 41.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06187913cd6a2d0bb4850c2543821c0de569e6a842c56821603493e439f76609 |
|
MD5 | 58297b27a54313673ea7413c969a9e7c |
|
BLAKE2b-256 | 9a06818869fd4e8eb64af982bcd5443de82c030f1eb2b5cbbd095c44cdc16f1b |
File details
Details for the file imagequant-1.1.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 41.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bc1b2bee21ccf3bccf80b0ac8045e1e1937dde2218a9392e1bd4db5f015bef2 |
|
MD5 | 9d215f37db8b7ffcb1b7d02a85883e4b |
|
BLAKE2b-256 | f48d644b7c38c241f321c182fa9f86ebc180d47f38751de961734ce6a8efe1c1 |
File details
Details for the file imagequant-1.1.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 43.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1aa3a9d8598db41b29998b72fe7bbb62341165529e231fab69d45bea9dd230a3 |
|
MD5 | af7d3bfd48e0a394b311a9e61b33a273 |
|
BLAKE2b-256 | 3a539f88d21390c2f38ce43c45c3d11e1b2be0e5dd6b7861e7a59ac6120c4b7e |
File details
Details for the file imagequant-1.1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 44.5 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6da568dcde4454e2e3dc0f9dedddb63bb6ad5cb7ed05fe3031bd8ad9d48fc666 |
|
MD5 | ce7868e505e132f51444b3bdd810cd35 |
|
BLAKE2b-256 | d4c823908b3f60c36a8ee5624431b88b1b85a7272bb525102dfa039e229170db |
File details
Details for the file imagequant-1.1.4-cp313-cp313-win_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 41.6 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c66d8a07ea079c8ac5104acaa50786360c0a989ae12afddf616421ea62a2229f |
|
MD5 | 10e799506133299a21945da86b745189 |
|
BLAKE2b-256 | a2521f16c606c4cef73ceca22bfe1e939449ceff89a0959c7e7e66c7fbef8f82 |
File details
Details for the file imagequant-1.1.4-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 52.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab0e16f1ee2346b131f8bcf8991178693730553688a8fd867126b0849d449ecb |
|
MD5 | f066fa3d04b20b4d521699f3aa0a5237 |
|
BLAKE2b-256 | 97d68e64a05b5b9054f09fc718400152701fb81751e7cf6e0a4c0fb6b58ebb00 |
File details
Details for the file imagequant-1.1.4-cp313-cp313-win32.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-win32.whl
- Upload date:
- Size: 40.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0f2985b994ebdc413dfd5aa06cd65b4fcdc2dbd6c37e971f02560d9f22cca53 |
|
MD5 | dbc75f72cc9a8aad0662bf48335f8f9f |
|
BLAKE2b-256 | f0f5eca4d9ae4f34e93c6bb74e474ba254c8c2f5935e4f64bacc377fcfe63bd7 |
File details
Details for the file imagequant-1.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 197.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f923f61fbd99b095eab19b08cd084b03313b62fdbb2879d735b5291a50cfdbb |
|
MD5 | 992c5a54bbdafb322306f7b599213cc0 |
|
BLAKE2b-256 | 8d09d65301a3573d5e7c65f665adcf70d1329e1f33033cb3d7634245a4f5a22e |
File details
Details for the file imagequant-1.1.4-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 181.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1de1e4c2d0c5cd91280022b8c491ec960f23c6271135f278a7679947715cf6fc |
|
MD5 | d2e56248330515731d3715011604470d |
|
BLAKE2b-256 | 64bb6a271c8795bf5dbe0042c8543d50ddb18b64e476602222071800a73f2422 |
File details
Details for the file imagequant-1.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 187.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f28d6275ba787ed4c6418656873b2a798f3103cb9b4d341f6237376c7b6d164 |
|
MD5 | d01d7afc766ed8e714c9d021861c7f4e |
|
BLAKE2b-256 | b0c6de25799600590e03a6f308db3b63b2e295c327c00e122ae51752e55ad9b3 |
File details
Details for the file imagequant-1.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 199.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b4519234011eed88399f34033077b00364f8829b0eeb21e4ed24bac41c6dff5 |
|
MD5 | cad1398b78b4c4d2d69aed900e799542 |
|
BLAKE2b-256 | 16076d283b49ebb6992a686cf1cb9e500595adc9c98fb2161b63d1cad76749c2 |
File details
Details for the file imagequant-1.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 188.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e31f0782f1ae9cbe738bd181e8adbdbc58472773fb4b996ddf17663e41b7d53d |
|
MD5 | 21c704b6838b59f0e3ad8be8b9ac7f8e |
|
BLAKE2b-256 | a7097689100fc9e76000d69fd99115840a70e3a456316d7749276bb936f884c3 |
File details
Details for the file imagequant-1.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 177.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c55dec37a6b6d24893f7aab67c084d05f0e8b66a9fd13132a15e7796d9cc3893 |
|
MD5 | 56bbd68151a562d9f388cdb4db2343d3 |
|
BLAKE2b-256 | a241d8181bc807d609c0643c0671ef02889eee29bd1f786235db54b729c9628e |
File details
Details for the file imagequant-1.1.4-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 55.9 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 062076d9f0797001e53b9256c8555037ecb8d3281cb19721719c3a967a119f21 |
|
MD5 | 4e67cc22f9f488b2d6f7668d22cf0f43 |
|
BLAKE2b-256 | 075cf78dcc1117cf5ce5a94ed1d2a18e71bfa888a9bda50e2f2f4ef7e2396961 |
File details
Details for the file imagequant-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 60.9 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dd5486f1db1e91e7b33fe6aba67abc70d59fe55a05ba6306fa60820103b5f68 |
|
MD5 | d99823c802777135f95ead875c5b63d2 |
|
BLAKE2b-256 | f884c01241d6095d289af9a287d0ba61188f4128686e196810f72d2e95d854d9 |
File details
Details for the file imagequant-1.1.4-cp313-cp313-macosx_10_13_universal2.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 109.4 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa8c21722b8131106467c9a40f08082fe26dcd4744869ce4ed97bfb580568ba7 |
|
MD5 | 40297b2a805663ded047c809c26ae056 |
|
BLAKE2b-256 | b4eab6cc939ae643179662648286d9878459392478dfbadff348284170c9d7b0 |
File details
Details for the file imagequant-1.1.4-cp312-cp312-win_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 41.6 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ad1f136472c09df68c16b1c842e6ac9c55996fedc4096fa00dc805938652a23 |
|
MD5 | 494e2ff46604112647a3de0dfa48dade |
|
BLAKE2b-256 | 04f80f0d4224bbedad10b8a40fc6ec8a411387acd467d049283667e10b7f5e63 |
File details
Details for the file imagequant-1.1.4-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 52.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a9eff0ab46f60ef66bfb6f174370cfdcd87bf9747005938ed87cb0d53dd19d9 |
|
MD5 | fd1bdf8bb71fd36f5f2128c33eb5bd0c |
|
BLAKE2b-256 | b7768992a881a1ed865a43126ac07603e38eae1f796d04707c5268843157e94b |
File details
Details for the file imagequant-1.1.4-cp312-cp312-win32.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-win32.whl
- Upload date:
- Size: 40.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 641fdf2f25dd29385cb3dfdbac306d0ca83be6660db30b381c668e23260c6d09 |
|
MD5 | 6c7f22a159f2bc06ad76a3edabcc25b7 |
|
BLAKE2b-256 | 292be66c905b7094c9b5aa4715aec7597f50e79a256723a888f51f41ffbe8e3e |
File details
Details for the file imagequant-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 197.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eafa0bf9d94faaeb79b4cba0a349a5e4d63a9e86aaae898ffb67ae3d359a4e2d |
|
MD5 | 983936d77a4ce058ad9b8ffaae6b7263 |
|
BLAKE2b-256 | 4db29178a10b6860601b5ba411f4651f883748d0b12684d568ea34623c60e5ab |
File details
Details for the file imagequant-1.1.4-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 181.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38c49f1aa0900bafe035a7bc89badbb3ff9f8fc73a3ba736aa7cf4c02dbf6a93 |
|
MD5 | 44ba56f05b19cde51f204dacbac0afa7 |
|
BLAKE2b-256 | 0f4340b0da1922e00ceee6a5fa3207f33c1f8f05755dbdb9480ac5e237e14e75 |
File details
Details for the file imagequant-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 187.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b386ec6c6367de3ecd44f5f06b648de7aa55198ec8d87fdffbfa0871d692cca8 |
|
MD5 | 1225b1e4f3ca02248b4592896e9a5b3f |
|
BLAKE2b-256 | 08d897ec7ed23336fdd87b15e96fe03015029567d9a0f9a1c67255c0a86f4ecc |
File details
Details for the file imagequant-1.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 199.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa925696406248d0afebd4a87d7b9b6e49f55ae3546436796e48897cb790cf29 |
|
MD5 | e42b60af1faf2316be427de5b94ea67b |
|
BLAKE2b-256 | b03303111dc2d23d51d8770a2e626dc83a8991d228c330ce5f0e50c7e7c5deec |
File details
Details for the file imagequant-1.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 188.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49d9fc9f01b43d70413fe50012cd873f76620ba24a573d6e7600588caee339e2 |
|
MD5 | 5deaba360e2cc135a7f12f7ba67392b3 |
|
BLAKE2b-256 | 75550c97922379439e068a94d4db0a9e98572d27c81b63ab6f9096f76e9cda9d |
File details
Details for the file imagequant-1.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 177.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fa94c6759e8f1a3d682e64ccbb5cb97342a64eabaf03af82fd99447902b232f |
|
MD5 | 275648d73e07e21b721b1afb93242b03 |
|
BLAKE2b-256 | c3a3950783b49e4f8b08ac08b6e0b1c47fe5c1ad7f48db32b812eb4a2377fc7d |
File details
Details for the file imagequant-1.1.4-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 55.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 982c910127590322b212230b05f347857d51dd630c25521a2f9186699412e154 |
|
MD5 | 32fb9f73c23986a6509d4e8650dd174f |
|
BLAKE2b-256 | 0880bbb96a01ff3f2402c364f71c5b2270e129a008bf660b0c00dfecd3800b3c |
File details
Details for the file imagequant-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 60.9 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 100cef9da261fc41bf4ddcf6ce17be43c8194409b65d6d4e7101bdfdb5d7b2b3 |
|
MD5 | 1cafcdf34528cfceb42adbcd7f075c53 |
|
BLAKE2b-256 | 739e9d4ed6c3b350e1d76422f5c84b977c38c51d40293e7a3c391579daacba84 |
File details
Details for the file imagequant-1.1.4-cp312-cp312-macosx_10_13_universal2.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 109.4 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b467ce795730cade3118c8389f059c73bd2e7af8f12ab5e4932c604b6a16cdf2 |
|
MD5 | 346abb7a94d37fc95c152d3255405b86 |
|
BLAKE2b-256 | 5434ae50fff71f10024503e7c26fb3cf24d277d1001461495cdc6675c05bde64 |
File details
Details for the file imagequant-1.1.4-cp311-cp311-win_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 41.6 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ee7d624e1b6b526c345536ce9c86131b553336771a0d69af8a3f60f0268b73c |
|
MD5 | 99b21a9c5954ad9b822bad5e8e6a8b78 |
|
BLAKE2b-256 | cc98a914ec79fee8e8312f8b35977135a58f7b335879ce2932dc361557a90e8f |
File details
Details for the file imagequant-1.1.4-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 52.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | faf4b241fdcfcd53c3cb14f31c9709980adbdbc2c52529e0e3a9d7a317dee34c |
|
MD5 | ab19e135ec181faa132b1e6fc68c151e |
|
BLAKE2b-256 | 1c483aad161a8b68a78d6c27fafea005c7d390a4cb5c491545dac4cadcf0eeb3 |
File details
Details for the file imagequant-1.1.4-cp311-cp311-win32.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-win32.whl
- Upload date:
- Size: 40.7 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7342a55d5a3269bed49c76c4d1e0a1ec1de4638f016f21a282d98d727b3b551c |
|
MD5 | 3d7ff67ddbe367057d559595144ab47b |
|
BLAKE2b-256 | 063b05677f95363938b998242c9f9069bd3938b4fe60b957283704cf4e20dc62 |
File details
Details for the file imagequant-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 197.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 730784aae203c8b6298d808ee9d593b17e9e0f285acb2f3a68d71a0cc36e651f |
|
MD5 | 33e22e5fb926a20ab5e439e1faee82be |
|
BLAKE2b-256 | 4183435713e24d439e36a5506ee5c50922f43d55fb14d9e162a59f97e21f1ea2 |
File details
Details for the file imagequant-1.1.4-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 181.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 597edf9bae77150e971dd81469c41947b89f912f29954b540ed312efc963cf7a |
|
MD5 | 6a532e9e3ba07db5c8b279021f085005 |
|
BLAKE2b-256 | c7e3f572bb77b2cdf912d3c66489b40a6c296ea3a1f2251ad25f1295c4ca68da |
File details
Details for the file imagequant-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 187.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01fc74eb7790d13fd094e300245ec69f6731168ee36898b75e3b25a0aac6d1f1 |
|
MD5 | ff3fecb408174f86f483efbd69b369ec |
|
BLAKE2b-256 | 4910e038bfda74a538950a0ec9b0188eed277ff043268c944a3615a2643dcc94 |
File details
Details for the file imagequant-1.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 199.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13f522c581b19bdae3445218315fa41f746d32275e3244b8605596e35348b3b2 |
|
MD5 | b8809e06351828b0590f834504af0618 |
|
BLAKE2b-256 | 625185ed872088c6eee5a5b097f87ac698648c208db1a55f35b96ca3c323a313 |
File details
Details for the file imagequant-1.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 188.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cfa3b6c158e650094216ce7192c059a119892e162bf418871d820329606de2b |
|
MD5 | 354912c4675f949d6b124d74d17208d3 |
|
BLAKE2b-256 | 83a2b85ffbb182a7c397e37fcecace752d5083cf30a4c20c493db96fc6fa0c12 |
File details
Details for the file imagequant-1.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 177.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97422c2a7278270b97434f3fb380270360851a360eaa12ef2e9b76407dfa1afc |
|
MD5 | 4764b68edf8655f6b248b90a957ff5eb |
|
BLAKE2b-256 | 0f7b22c71854eb3dc11e8d52331bce6136826f372c76885461628c14bd3d2965 |
File details
Details for the file imagequant-1.1.4-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 55.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 018dc618e8789cf16381de11bc85866074de8b638243e7c69a7fac500a8e6fa0 |
|
MD5 | 3d8decd060f461824f21e61d9271df35 |
|
BLAKE2b-256 | 50d9efe9a9eec9852dd202858cbd277495b39c7446f1c8466121146dfff4e8a2 |
File details
Details for the file imagequant-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 60.9 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eaa0343e5536caa3918043f4cd2b9554889ce6f8b4270ccea96f599e6f42c050 |
|
MD5 | 4edfb08f111e6f201d2a383410022a66 |
|
BLAKE2b-256 | 1b69e8366579c6b642087dfde115e0d2656d456ed94bbcac191d28e368bd6edb |
File details
Details for the file imagequant-1.1.4-cp311-cp311-macosx_10_9_universal2.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 109.3 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b964219ea096089312385e5e1ba55d4b4ac2548de10de3288936dc3ed9aa734 |
|
MD5 | 0e09e67d17def751e4f139d5bad21646 |
|
BLAKE2b-256 | 710adf8363580d4dc234a9d47c8d1e0e3efe5367bbbd10dae1cce132ee1a7876 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-win_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 41.6 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b64be0ba25d1207c7535504f254de2c00a803903ac9c78e63a590d287aa50c15 |
|
MD5 | 650ed003285d78d5df74fec69f2ccffd |
|
BLAKE2b-256 | 4967f6541c82a619b91f3d3c189f5964c5dbbdf95c2ae9f8caa1b88c21f8719e |
File details
Details for the file imagequant-1.1.4-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 52.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 934c76acf075938d476a951b05bca3a3867cb735b682e0637063c56e55f24675 |
|
MD5 | 3cb1c6048de353afa87fe7b0b2ca9efd |
|
BLAKE2b-256 | b89209ba5b583e4fe5818c80249c888151c6c93a985ce12730cd3a96d45975d0 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-win32.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-win32.whl
- Upload date:
- Size: 40.7 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffe52680ff7e58ef06f74dcc2630f34ad35041d98a1a0124262a42371c82a02b |
|
MD5 | 65be1ef25224fde1664de95dbbd2ba0c |
|
BLAKE2b-256 | d69855b1020454feb16b850feceb00c03efae017f468faa22132d39a57beee9c |
File details
Details for the file imagequant-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 197.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c703d5e388fcedbfe79ab9bea12ca65eaa23acda1f324a18f901115b057f404 |
|
MD5 | 21f1703e59178ae5ed8d773861125c42 |
|
BLAKE2b-256 | 8d51d8179374031f1348e8540e5e944a857a9ee9b1297e7cf2137215a0bc44c1 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 181.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1141cdaacd3efa0e5618be1933d3881fea48ab378c96cd1d511b82df440b072 |
|
MD5 | baeb23631f950c51fca5d643bb37d2d2 |
|
BLAKE2b-256 | 88fc685bd9561ee6ddad7d469e022c191fae13a82c2ce06b67fd257d9b82d237 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 187.3 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 324b93ff96c1d45ee0e4d1acd0989862345931e427461565f19bb8872d0e5bda |
|
MD5 | b3a06a5cb6183e979ebfe753f2df8744 |
|
BLAKE2b-256 | b073d243cfaa787239b6a92acebdd5f7e215fe9bda22f7ba26a8de574f438aa7 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 199.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cae675f05e10bc8c3a6e52feb8f541ecec9540201fbd8da9167bd77eb28da593 |
|
MD5 | e57b2da738d7e17e5b90f388c2fff893 |
|
BLAKE2b-256 | 243dfd9f9be6834ee62ecba649a4e1d1370657edc0decced00023892619f5841 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 188.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e5ce8c727ca5f13a0957a244c0ae5204946e20d1cd611a151c1a0e9ca59ad39 |
|
MD5 | bf6f17b7680b6aeac7bf363896f86252 |
|
BLAKE2b-256 | 05474e90b1df28d040aba17ea84e99d04c40fd8e2e723e366cbdca5c8f9ca695 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 177.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 821eecf71815e607607416a93ec8333600251a9cbc1f269b81fbe0ec30d27b88 |
|
MD5 | ea28a2df00a690afa20b2464fc285090 |
|
BLAKE2b-256 | 2aa8d453f115ffe98705074fb36fc39ae06cf5dd50a63fe8e9333d78abdf6758 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 55.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f6f5416129ee8654614ae0d72d141896f9f764415c54c4f039542d0b99e9f6c |
|
MD5 | 481370dac4567b2a6db9bf789ccee829 |
|
BLAKE2b-256 | 7be26d22b22ee924a1e1bdb4cec336522d9a55aa4bed8cdf1a1ea22731440fd9 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 60.9 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aca36bc7d949cdedaacb90319c0412f75aa83eedbdd609914dd253d1573857c1 |
|
MD5 | 5bb41eafa7e1b0f5be823e846f2b4ba8 |
|
BLAKE2b-256 | fb7f0ecacd6ec3356999b817d044af20e8240cde3396ddac7edf5421d292ab00 |
File details
Details for the file imagequant-1.1.4-cp310-cp310-macosx_10_9_universal2.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 109.3 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f83eb458ec4d73d28381cb01f4d931d5049002c12288e6928f7fea31623bd66 |
|
MD5 | 897774cc21bc0481c3201923e8e61673 |
|
BLAKE2b-256 | daec755bb3a96e12f5d9832dd3d79a8ecae83af0cebed34b5d86aa9c335dc403 |
File details
Details for the file imagequant-1.1.4-cp39-cp39-win_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 41.6 kB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55b1d272b748c9f1cda8c94ccf794c9e6046f359ea94661503e500fd73ae9f9c |
|
MD5 | c61c92fe99f9deba31c4c4096f2d9aa6 |
|
BLAKE2b-256 | 4b959381b5a21bf54abb7dfe5402a3b65b18ca0cd0a3ad76b746991868be0bab |
File details
Details for the file imagequant-1.1.4-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 52.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa2fca85b07f51ef906cf4dc2c2a43627b2c88c72f695c8a78cae6820d083b10 |
|
MD5 | d5a42191cf7c2464e2947c3de91d4ae8 |
|
BLAKE2b-256 | d48a327e7a8f98eac349be592eb2885e5872dea258772712f71a7e21fac8b485 |
File details
Details for the file imagequant-1.1.4-cp39-cp39-win32.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-win32.whl
- Upload date:
- Size: 40.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fccef3b44dee9362577342cdc43cc51c8fd2c81a28d4ab5ef6129aacdc25501 |
|
MD5 | 3ebffd8b123bd4242a48c44dba44d37a |
|
BLAKE2b-256 | d273d8834f585de55686e6ef71fcaa1e8da40b052cece8aa8ae60a7bf19cc635 |
File details
Details for the file imagequant-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 197.1 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22d6bb6dcbf669328d63581a4a3bbd31a23bc3c0421dc93482af99071323b0bd |
|
MD5 | 6a2a4a88c99a24779b6e4635fb4023e2 |
|
BLAKE2b-256 | 28ae6bf7937badc4bc5ae509b541b0919dba50ecdbf8571fbb83054ae2a64da1 |
File details
Details for the file imagequant-1.1.4-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 181.1 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 880720a4899ece8615150cc879b89da2f05fecf94e7c3c4886dd13835b89f5ee |
|
MD5 | 09a1585f5df37a9a33d0326dbbd53432 |
|
BLAKE2b-256 | d60fd6403aa94b7961ca596cccd962eed27344d3e45932731ce47a49087ae6a3 |
File details
Details for the file imagequant-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 187.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f18b41d97ca1861b73e3464de8162c071179b745aa15a46a062fdd6325ad2d2 |
|
MD5 | 207eabe89db964964763acd9f03f8e4f |
|
BLAKE2b-256 | 4443138634b6a279e6600cafacfab43b072ba913a3d10f8ffcdcb840228f485d |
File details
Details for the file imagequant-1.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 199.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9f6c25cfd96320a14b33229a776b615c5fcbb6c5c71050da07498da339e3008 |
|
MD5 | 4af376183519f91540156c2894fb8f31 |
|
BLAKE2b-256 | 864abd1548be3a9f366cf9ef1f323f2d15a95f0a04789ea6e27993c08eef2dbe |
File details
Details for the file imagequant-1.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 188.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a6f60deb2a0f50dd9052d0e5cd2e05c0126cd4dee7a247914158ee753afc308 |
|
MD5 | a2b326b226e2a647652cca42bbab028f |
|
BLAKE2b-256 | 56ad81fc8629361856bd09ad0a898f29ce62ab1a0063ba6d0000feed84be74d0 |
File details
Details for the file imagequant-1.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 177.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc4c193464ec9fff1627fcd206315a8b268b6c016a5a8d88fcfdbae7275d9835 |
|
MD5 | 295013b89d9eec79f7959231cf217e22 |
|
BLAKE2b-256 | bf3afa0f364981ab5bc6aff8dd74089a872f716a241365469c10be286ee5b6c7 |
File details
Details for the file imagequant-1.1.4-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 55.9 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3ed3b51c64c005adbd26d4bcaa89338ce843d5e3705917d94ccee000698263a |
|
MD5 | b082d9c66922b01bd347fd7325673367 |
|
BLAKE2b-256 | e3fb4a1072d4f1cacd4661770be7c0bf0f21affca7182263956bd480b5f334e4 |
File details
Details for the file imagequant-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 60.9 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98fea59e7dfad2ac8eeaf2d5852b00677f22c58ddcae94f293cd831bea856028 |
|
MD5 | fefb7a789da82c0e53da2a515fa41b79 |
|
BLAKE2b-256 | 8decda321c0f613a39a05a560773a0247cad7ef16ba379c9b35f738ad41b23c6 |
File details
Details for the file imagequant-1.1.4-cp39-cp39-macosx_10_9_universal2.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 109.3 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86525bdb294f5b951308637326b459b451dcea42ae1891b336b9433ada5b0801 |
|
MD5 | 268c6b020a775d03b391278d186b18fb |
|
BLAKE2b-256 | 224019d18a58f2909e89876ed295efda6e6db08ada41918738df6dbe76199626 |
File details
Details for the file imagequant-1.1.4-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 52.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 378e51d80ed00d3fed2edf01571045dbc5a32d35699bf51f73fc369349191708 |
|
MD5 | eba4522f9c3f2594215007d0fb435ecf |
|
BLAKE2b-256 | 9fec8b10ca19faddd8081b668564c389dec6abc1d73f268c68ac89d6adcbc6d6 |
File details
Details for the file imagequant-1.1.4-cp38-cp38-win32.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-win32.whl
- Upload date:
- Size: 40.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85497d5e73fd13fcbfb7fc21e282a6d5917e6480086081dce0f510617959c028 |
|
MD5 | 57e5e0efd2ef486873a822d8df594e92 |
|
BLAKE2b-256 | a5ad4d664deddcda0967ae217ebe8e1658eb0b076d04f47f81fd4e715a29b886 |
File details
Details for the file imagequant-1.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 197.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bbdd8e3b6d9dfa634257386b4721639e6a34b11f8772a3d2154ff0758253ac3 |
|
MD5 | 33c69f5a18c63a76da285aeaf43a82f7 |
|
BLAKE2b-256 | 9e54243fc90d9881b433301223af2d09c23e5b4492e5d85c030dcc43e2c90691 |
File details
Details for the file imagequant-1.1.4-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 181.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a6c9a3853a8d2b7b74d3ae80a24f3558193bfab5605d9d154833341bb820de0 |
|
MD5 | 4abbcd71773c951884a272c1d834aa6d |
|
BLAKE2b-256 | 5c56716c8862ca3eb1973560740f2a42e101edb05c0548cc5179dd9eea169045 |
File details
Details for the file imagequant-1.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 187.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1dfa0c4e65a0f1f4cbf9f7d43cbe9dc0ab313aaddbec2de323c6c8c32a0a83f7 |
|
MD5 | 0d402b56a42c00f2e0855ab41c1fdf26 |
|
BLAKE2b-256 | b866b682c135a1ca8b96714692e34da39725ce0e1439eb76e94143642f0a8c28 |
File details
Details for the file imagequant-1.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 199.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd7552f43874791066516f7e0147fb1894c3c4794f39ab7130d79a875191db87 |
|
MD5 | 45ec34fbccfb4fbd97db3653ebfe02b8 |
|
BLAKE2b-256 | 0a13ad6190d02c3b6a02081ac759b40fed79e0f32a608791349f4c6a5c139c67 |
File details
Details for the file imagequant-1.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 188.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94d312e5343a48edf3aab9e662df13789edfbae7120a00d08138d142bb2ecdbf |
|
MD5 | dfd2be5d1bcc846285d04c61c170003e |
|
BLAKE2b-256 | 9d679e7fd71befbfa1c4a26a6940dc5e4a437e8e7fc15388a220855b7007dfc0 |
File details
Details for the file imagequant-1.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 177.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59602d0c5f3a4b7c80ca9f258a28c8d3590baf38215b2ee76d6598e2c3eec0bd |
|
MD5 | a2da6a0c45bbe66e63d98dd96b159857 |
|
BLAKE2b-256 | 36b9f6e3c94148271ae25d5d2c6234d34f4e1b56e0ac94a15f658c159ebf882e |
File details
Details for the file imagequant-1.1.4-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 55.7 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08cab6fa073661203b07e402dbd884fa27cdaa7d848dd7b37b20c450066fc330 |
|
MD5 | 60025652e21f6c9e148150ad4dcbedf0 |
|
BLAKE2b-256 | 69727fb3894c17e70ffc7c541c8121be087373027b5115ab1fbf8017cf63f8c0 |
File details
Details for the file imagequant-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 60.6 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d536b30e75d76e0851ead66169fa3738267b1b92a22ae3fd4c26ef5d8f9f3e1 |
|
MD5 | 99cbe3d8c21d5e13784318af22d77ab6 |
|
BLAKE2b-256 | 58e63ec02118b25acb4cbeb47800383c5219324a9560560a2c7f5719b6b8eb2c |
File details
Details for the file imagequant-1.1.4-cp38-cp38-macosx_10_9_universal2.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 109.1 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 004b71a640e2085fb58253d2cace95f7172228d2039e9fcc7106a139b14f6104 |
|
MD5 | 8ada8afd23043167ce675772b845aa7b |
|
BLAKE2b-256 | 708d8184d2000297b2c17ff16dffc498387b85fc73057e77671df8b5b9f7f955 |
File details
Details for the file imagequant-1.1.4-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 52.1 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6e9b27ea546648f1661b8eab0d536a2f9024e45b151dff4b430e046a0387f65 |
|
MD5 | 55720f8bac49cfa37b6437912dd91ded |
|
BLAKE2b-256 | 552baeccae6d4bd2006cd572b0776e39da85fee78246a1fcf1b5035c7653af62 |
File details
Details for the file imagequant-1.1.4-cp37-cp37m-win32.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp37-cp37m-win32.whl
- Upload date:
- Size: 40.6 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 926638d8e460aa4231802e24a0548020b2b17ed0a007f7bb90abcdbe92024def |
|
MD5 | 5fe5958ab670c4cf33283b998062973f |
|
BLAKE2b-256 | 40bda46165da60ebcd4fafd64c26d5a0f635b97d6b63d5fe9c38e51c96672eb7 |
File details
Details for the file imagequant-1.1.4-cp37-cp37m-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 196.4 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd8b8265b5acf6d0b931cba516b14a9da352b5701d9621c3be246717ee5b59f0 |
|
MD5 | 5dd52c2f0e71e9d8c414aae002aca768 |
|
BLAKE2b-256 | 90d9c9e4702402ee3bc34ba85c8f474e56903e27daaf6f99e258936317d96db6 |
File details
Details for the file imagequant-1.1.4-cp37-cp37m-musllinux_1_2_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp37-cp37m-musllinux_1_2_i686.whl
- Upload date:
- Size: 180.5 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96170559b6becfdd88b415697440c9dcdb6fb3ed95427f693b37a53326247c44 |
|
MD5 | 971295dce73cf9fc86f0135688a16a8c |
|
BLAKE2b-256 | fee64d0a99a50235acdec4638d71529824f55224898ca0c3b1ac80934c927df3 |
File details
Details for the file imagequant-1.1.4-cp37-cp37m-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp37-cp37m-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 186.5 kB
- Tags: CPython 3.7m, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 032f854beb081ee55f58ae823e2001393f80133f66c388e4880a19fb8d08f5fb |
|
MD5 | 8631532934070a45f2b1e245fb7fb0a7 |
|
BLAKE2b-256 | c00c55d9d1d5f468ee4902efbe10695e938ef70d8bd8961580e89363b5d465af |
File details
Details for the file imagequant-1.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 198.7 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7275dbf39b4b938e40da9ba2a8e319614bcb43f62da286cfc24a1d1a4b7f569 |
|
MD5 | 9d6bd83a771e3d0a7d2ae7b0b61015c6 |
|
BLAKE2b-256 | 5eac1c7fc1c8fa731e11a9c27c4cce6f6c7e702178997555d439424b5eae839b |
File details
Details for the file imagequant-1.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 187.8 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 682ecaa32adf5668764658cf9ad07c73581b4d7d1c298ced277dffd411a3732a |
|
MD5 | b919cecef2baee365a67a9a07242258e |
|
BLAKE2b-256 | 9c0ee4a929144764d7e815c9df0d30292d02261b0bc551bc88afa62ebbd17626 |
File details
Details for the file imagequant-1.1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 177.1 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a11af4e806a6a01985fa3289171dacb19ff47753222cdd54621536ad08fa6c40 |
|
MD5 | c0f1c5752d1d8e8f8b31865bd993425e |
|
BLAKE2b-256 | 800a2777169f764eecc0d1dc37aede8ce769e5b9417dc56e9b63855ac2d04361 |
File details
Details for the file imagequant-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 60.6 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8724cab454bc2860ebd6ba7f79c0e4b9c1c95bcb868bcc361f720fa927ccdad |
|
MD5 | e868db8beea921f57175dbfd530e5b1e |
|
BLAKE2b-256 | 40ba16d48471995e7001cff1a69d7122c25e63c2d6364d5832383be018cf1452 |
File details
Details for the file imagequant-1.1.4-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 56.7 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e2c4fb28604fb586cd91265d6595f1bca95f9b78ae4a1c4ba5bdfa449a4f3c1 |
|
MD5 | f9ba825cdbbb96277e713f31ed1dada4 |
|
BLAKE2b-256 | ed29b85981d6ca68f57105bd8231a5e8a3516ca8ba94493c67f848414d083328 |
File details
Details for the file imagequant-1.1.4-cp36-cp36m-win32.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp36-cp36m-win32.whl
- Upload date:
- Size: 43.9 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 576ad3da78f19e51d1e9d2a400d151e94e890a499bd3650d126973e12a582b1d |
|
MD5 | d17037bfeef802ee67b735fb187f2cc2 |
|
BLAKE2b-256 | b40aada60815121869c58944b43a986e171c05947c5fc155837223444eb154ed |
File details
Details for the file imagequant-1.1.4-cp36-cp36m-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp36-cp36m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 196.5 kB
- Tags: CPython 3.6m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b4c737657a1f9756e2fb959a7bd32f3b5666811c117ad89fdaff487fea3c776 |
|
MD5 | b0228e36db24263486056160c828c0f8 |
|
BLAKE2b-256 | caab8c2c6cd939112883a2d70cf2e5119edc8e2f66ba9f64f113992bdf54828c |
File details
Details for the file imagequant-1.1.4-cp36-cp36m-musllinux_1_2_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp36-cp36m-musllinux_1_2_i686.whl
- Upload date:
- Size: 180.5 kB
- Tags: CPython 3.6m, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab3fa0af722dc01f8b45f3f8606ced5ab73a98ad00706547bc40fc689bed9f49 |
|
MD5 | ca441e7b9e1bba4572304955787e63a1 |
|
BLAKE2b-256 | 857a1e4d336bd653aa7bb44597ac9e84d09e42d8342cb1b9f224564272a0d56c |
File details
Details for the file imagequant-1.1.4-cp36-cp36m-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp36-cp36m-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 186.5 kB
- Tags: CPython 3.6m, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59267a1e7513d4ded8459285954e6a854628e0ab180f348bd9978a64e91452fa |
|
MD5 | 2a5bdeab893f27eb76d3332ad6ee21a8 |
|
BLAKE2b-256 | 0ef4013855656334dfcd4aa9af00ca670f8153d98d718f1bff6c928204c76a75 |
File details
Details for the file imagequant-1.1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 198.7 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 633e9804b65e9c9c829a98285f4d1dc5179a166f0f7e71fc047e77233f21db75 |
|
MD5 | 481f587f76996a21d79969dddde3c8c6 |
|
BLAKE2b-256 | 87ca1a5e01eb44dcddc7ebb783c5468c937d40c9468d9cfbfc3295b9b989c185 |
File details
Details for the file imagequant-1.1.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 187.7 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a3e730fdb7721308bf683868009cabf5872650019ebcfe737178ec142ad5c7e |
|
MD5 | 698c33c356d2caae8303014c1e962432 |
|
BLAKE2b-256 | 0c9d53c49c2ab13ea92efde4d1c8c4b5301cc65f447d806fbaa989badde2b9a6 |
File details
Details for the file imagequant-1.1.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 177.1 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78a57cfbb2b9e056df3ac03cfe0e70418e07f2a2982d800dfdf7ad3f277fef80 |
|
MD5 | 3dcd8d22ab95be499fb53cf47c3e4d34 |
|
BLAKE2b-256 | dd3f71673a8db57bdf5cb36421b1a7f73ad622353cab2e8288d894162eb94c10 |
File details
Details for the file imagequant-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: imagequant-1.1.4-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 60.4 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4dcb4d61422256418ab40e42be31cacef3e6f4129165a585f754e5b09a5b90c |
|
MD5 | 9025ffcbcd436684a1edbb2998a566a6 |
|
BLAKE2b-256 | da2446734e0dd75d5dd1687c2a41ce6e849231b5c3fdbd6e032fdd3f532878dd |