pillow-jpegxl-plugin
Pillow plugin for JPEG-XL, using Rust for bindings.
Features
- JPEG-XL Plugin for Pillow
- Encoder/Decoder to work with JPEG-XL using safe wrapper
- Support EXIF metadata encoding
Install via PIP
pip install pillow-jxl-plugin
Build from source
Make sure Rust installed, then run:
git clone https://github.com/Isotr0py/pillow-jpegxl-plugin
cd pillow-jpegxl-plugin
pip install -e .[dev] -v
If you have libjxl installed and want to use dynamic link, run:
pip install -e .[dev] -v --config-settings=build-args="--features=dynamic"
Development
- Python code is formatted and linted with
ruff, while Rust code is checked withcargo fmtandcargo clippyvia pre-commit. - Install the tooling once with
pip install -e .[dev]and thenpre-commit install. - Run the suite manually with
pre-commit run --all-filesbefore opening a pull request.
Plugin Usage
Use import pillow_jxl to register the plugin in your code.
Example:
from io import BytesIO
import pillow_jxl
from PIL import Image
# Lossless encode a png image
with Image.open("example.png") as img:
img.save("example.jxl",lossless=True)
# Encode image with JPEG-Style quality
with Image.open("example.png") as img:
img.save("example.jxl", quality=98)
# Lossless construct from a jpeg image
with Image.open("example.jpg") as img:
img.save("example.jxl",lossless=True)
# Decode jxl image
with Image.open("example.jxl") as img:
display(img)
# Encode/decode jxl image to buffer
buffer = BytesIO()
with Image.open("example.png") as img:
img.save(buffer, format="JXL")
jxl_bytes = buffer.getvalue()
img = Image.open(BytesIO(jxl_bytes))
display(img)
Wheels status
| Wheels | Windows (x86/x64) | Windows (ARM) | MacOS (x64/aarch64) | manylinux (x86/x64/aarch64) | musllinux |
|---|---|---|---|---|---|
| CP3.10 | ✔ | ❌ | ✔ | ✔ | ✔ |
| CP3.11 | ✔ | ✔ | ✔ | ✔ | ✔ |
| CP3.12 | ✔ | ✔ | ✔ | ✔ | ✔ |
| CP3.13 | ✔ | ✔ | ✔ | ✔ | ✔ |
| PyPy3.11 | ✔ | ❌ | ✔ | ✔ | ✔ |
Credits
Release files for pillow-jxl-plugin 1.3.8
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pillow_jxl_plugin-1.3.8.tar.gz | 1.6 MB | Details |
Built distributions (wheels)
Total release size: 353.7 MB
Release files / pillow_jxl_plugin-1.3.8.tar.gz
| Download URL | pillow_jxl_plugin-1.3.8.tar.gz |
|---|---|
| Size | 1.6 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
4430fd7757899742079c548a7d2537d6d63cf0f1d323180095bc0f6f03d9d4fa
|
|
BLAKE2b-256 checksum How to use checksums |
0275810608d489c2d453e16a0866de5edea2bedd728e8830da22a1ec633f3b80
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 MB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
75351073d967c85c24a330f9e375b17b809bff9779cd08c8d0e90d659b39be5a
|
|
BLAKE2b-256 checksum How to use checksums |
5bd9c54bce2efd22f3d79e83fa9948fa5ca0184422c6bd9c38c4d28861ee9a50
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl |
|---|---|
| Size | 9.0 MB |
| Tags | Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
027f091b8ff8ecb26712d709847d25359994eb6a6543736d7fbc07b7b6b86fd7
|
|
BLAKE2b-256 checksum How to use checksums |
0a451e39b708d0260eb04aeb672558522bea63df4f7df3a9c27710faef0736b6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
| Download URL | pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 8.4 MB |
| Tags | Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
42f39d55dfb7ba29509cea3f0270bd0e8a2fb924d979f2caa43f445e30d709e5
|
|
BLAKE2b-256 checksum How to use checksums |
d0871ea5bb4cd84c5be48b542cbb579f43932c7977f5317d9992d674f409377b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
81864c18c03084754c4a9d673a0ec9d6161af5f7695ab1d4bb112059af2e968b
|
|
BLAKE2b-256 checksum How to use checksums |
53f61ea001b109ff39165e013e663822adba393340d1599e165dbc62f68772a8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 2.5 MB |
| Tags | Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
ab40c82ead318b058804211a7f6d6e2715f65015f73792dee63813731105f74c
|
|
BLAKE2b-256 checksum How to use checksums |
9d4f0f00dab8c1b4b026cb62909e01b26a8f12f9f536bb6b002c71a15a638004
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 2.5 MB |
| Tags | Linux glibc 2.17+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
9adee3403a29b42b203b6903923ef84cff70bb33aa6ed069775b6b8f721fe7c7
|
|
BLAKE2b-256 checksum How to use checksums |
3a6274ae963d945cf8c0da64a1a5b1a8e32b49cb1ac8cf3f81e1b63c25466250
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
66a1bbe948021af26a5550b9bccad011e1131f6e10a90821690e3c19a417f59b
|
|
BLAKE2b-256 checksum How to use checksums |
d56f295bd97058531eee2d3e3a0c73795c95aace572c918d13688201d9f45abd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
323ba7ab8fe6aceddbf571853b47c8900a293c6430649be31c3a743b12d0bcfc
|
|
BLAKE2b-256 checksum How to use checksums |
723e70b1c9c18839b7c6980edb6f4e0c4dd6b52be96df380adf2da55be8e6f7d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_10_12_x86_64.whl |
|---|---|
| Size | 2.4 MB |
| Tags | PyPy 3.11 PyPy 3.11 7.3 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
e33d2b965d4306271ca811dfbb14f8dc313e7bc6408617760fae7ae275686218
|
|
BLAKE2b-256 checksum How to use checksums |
58a62e08df50151b3a399ee18b4c8987e25dd754547060d1a368cda4edb2513d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-win_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
60c36bec3d8d4ef23cf2aed0f792213f999312dd3d8cd5225ae1494c430e16f6
|
|
BLAKE2b-256 checksum How to use checksums |
cacf2db398fb1a41c46fd382bad96ee90283589eaed0ec2c50cfe4afda3df72c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-win_amd64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
6b23c83aabf4615b92ae609293d8597ca1a8d14d01ab16c703bb3a3df359796b
|
|
BLAKE2b-256 checksum How to use checksums |
47770f0297c265f1743784b6d1df719e62e49dabd1d9ede8efb0a9ba93174293
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-win32.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-win32.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
d63d1c3566a8c9ebdd1ec6b75da816b9475d95c4f69656827d6d3957d2594ecb
|
|
BLAKE2b-256 checksum How to use checksums |
a46dd10a4426fc3b394d2222cb694774451e67ab052df2e15a488dfac22be561
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 MB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
915b8fee6a97aaf5486d0d625f26faae2e9f0d9b5892f1076f5a29b8103125a4
|
|
BLAKE2b-256 checksum How to use checksums |
92b7f606ed6fcb5fd9e177ce2b15a613a405ac22ceafc2c03bb3f58cd500ca04
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_i686.whl |
|---|---|
| Size | 9.0 MB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
845e61add39272ca8545f4a0e6ead977ebb7e89fa017014bb8e17273a7a09c6c
|
|
BLAKE2b-256 checksum How to use checksums |
05287979927eb5dc79e40b31e4e07d074057722656743d324182f4a68056c2a9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 8.4 MB |
| Tags | CPython 3.14 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
6ce20ef0887efb6dace5245f714f94b4f070ef39a1ec45161b35879c48faf30a
|
|
BLAKE2b-256 checksum How to use checksums |
c695486fc1fabd1e6cb8b520dce9898b51f2e29e991ba54e632381fe7f287300
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
d4049e48f09947a38047fc5d70817c6dffa90ffb5f14585c8c00e8b534d17c9b
|
|
BLAKE2b-256 checksum How to use checksums |
4bef77a15b2f3227854d4ef2563250ea57b03538ed962f406f1248c9caf045aa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
70b881a40737c647a24270b73cd3f506dd16d634202e5214cb492f9270bd1b02
|
|
BLAKE2b-256 checksum How to use checksums |
24250903ba5a4c8d948df9217e48182ff7d872098ddf86fe512402569f4041cc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
f65361ce18db59e8949c60599bfa46b7de187e28917fc39b5d816ab4b81cb16d
|
|
BLAKE2b-256 checksum How to use checksums |
2be07b9bdc388d89773a5f9ae74ff0be3b06080ef1a60be57b5897d929012622
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
c1d06fd4eb038f431db27f1ab2e483fd6967bafb21a7757e1bd5f76b6fd93649
|
|
BLAKE2b-256 checksum How to use checksums |
c58b89636d315a31eb805681e60e569fe38d5eef3d09f13b1b6f576574387942
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
b5bbc933487207e634802f21990c365b6e61473cea34f6621420f4eda8ffd1df
|
|
BLAKE2b-256 checksum How to use checksums |
a7be01613af0307c31e77aced40bdf9cf3d25ce1333b3e99bb85575bdcbfeca5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_10_12_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_10_12_x86_64.whl |
|---|---|
| Size | 2.4 MB |
| Tags | CPython 3.14 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
30b72accb8505a46b05f709871da40f09975aea3a6b6f3cb1d646ff0a9aaba5e
|
|
BLAKE2b-256 checksum How to use checksums |
6630c37d161345302ebda07f29d8230b15ba83b43c586f14fec98d088b18e982
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-win_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
48d13d81d1c4933e5d42dd09366a9827583808be0a2fe842abd7358653c7d92f
|
|
BLAKE2b-256 checksum How to use checksums |
3e12e04b73832d1b8af3c5c4646127949a362f9ca3d30f42b05156ca5ffc61ea
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-win_amd64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2388374b3493df9add4ef3d97cc70d6a5f51ed188dfe10d2b83ebc55e82e48d4
|
|
BLAKE2b-256 checksum How to use checksums |
0ee7823f58aaea0d969f876f593a39c85c39fefe1b8ee9ca10a6ffbafe1a254a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-win32.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-win32.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
a2716f1367ed9647da36ce15882a12b4d424892cb5a03ab4b0783039d701c7c2
|
|
BLAKE2b-256 checksum How to use checksums |
13161aa669ae22a6c36810a925bbbfb1f4521df1d0402180052331b39ef8dee0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
2be721646718af722f2ca5c1d6b06bf056a61a0db355cf944df53c3723119d4b
|
|
BLAKE2b-256 checksum How to use checksums |
ae76b3125f13c9551862ad3ae7137d86959cde159b759083f3e7b5e720525fd0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 9.0 MB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
273908ffb85f68a2374b0934700939c572f32b355c9d128d4e3b6924e72ef274
|
|
BLAKE2b-256 checksum How to use checksums |
92ee4dc11ad5a90aa6d2eeae6eb0be2376cde0c365423036a078746b3476eca2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 8.4 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
b13f860c280d9d5770f49a1909926f15c6e26e50935da52ecb78700f7c377857
|
|
BLAKE2b-256 checksum How to use checksums |
12dfd12f42d6e31bb47e2002fcba2db9d92aad19dc3db9ae7d4b2b76152e268a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
0e1550f30768a0aa3f756da10b7807f6fac7fd2e5a18991eb8e00ec5908089d8
|
|
BLAKE2b-256 checksum How to use checksums |
f4686806df96fdd625943c795beca932ac033c255a323b63b051903df96935b6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
9b39ac44cbe5a98b8a364ed98a16c8c1e197ee997e32731be4be727c55e629e4
|
|
BLAKE2b-256 checksum How to use checksums |
5929d430cd5f82c08d2950e292d195081e9dd4e2a038a7e1722d79ba7c6e7ed9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
288eb07090c91891ee0dc782786d937af8e53a117835606d7982c29e31072b90
|
|
BLAKE2b-256 checksum How to use checksums |
6e18a862b140f82be55ce62c681b63c38bf61c962f0c27e32797ebebc0d47548
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
34685b27d01e55aabb09d9436d4ddb1f446e8805da82ffd6448c07bbf563354c
|
|
BLAKE2b-256 checksum How to use checksums |
e9fee610196142343f80c98502fd204f28e901a1101db6988be6ccc40c0e8ca0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
d648ef965002bee0c98dbf144b9b3c994146856fa4d3c54008b75dda10f69915
|
|
BLAKE2b-256 checksum How to use checksums |
893e5e1156e5c5b402d84ef924153e046ba937ac46e8b14decb3ab6e01a6f40e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_10_12_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_10_12_x86_64.whl |
|---|---|
| Size | 2.4 MB |
| Tags | CPython 3.13 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
fe24e957016dcb0c2ec35f72ff3bb8ae78a9468b282f0d423485556de492975c
|
|
BLAKE2b-256 checksum How to use checksums |
b91018bb2d6ed82184e2427f7501a17c1b413eb50bdcd4ebb42bbfb187bb4290
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-win_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
230a1d086ef5b66055e0dbc9837914becf1d1ca58d45d1404660de0a11fb63c3
|
|
BLAKE2b-256 checksum How to use checksums |
dbefb3aee5725df66399f529c41d97f71893e2b38f665c9278a99519112f03f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-win_amd64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
5b1c0d7a0c7e451014b288f0504545bff0f543f2ee1581af628e01e885b75f50
|
|
BLAKE2b-256 checksum How to use checksums |
c3c901efd23cb4827f8a1731e1a7652023a06375e933f85e3169e0761d916d6f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-win32.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-win32.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3345a45a09ba3149001c3e9a1b6991be8aab72c33097c0633e414a254cd283fa
|
|
BLAKE2b-256 checksum How to use checksums |
32e3b25194909cfef9081f6a1f0e40e699e95ea96b211cae30bbf0f965d6b450
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
88b06a4e5fc0d882b188824990b6571e201ad775d22a09487c8d5ab8aed9c3b7
|
|
BLAKE2b-256 checksum How to use checksums |
ea53b9aa7c156427ad4d94d8c90bd87cb502e7d6326d2689c309aa574baf1ab7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 9.0 MB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
0392e5349b67522130ecff9d8dca4713e4c84662a310d2170291b229965e8fd1
|
|
BLAKE2b-256 checksum How to use checksums |
c74fb6ead8f5a50103e2c6b264a6d4778b8fcd08006c957b2ad0bccbbb306e97
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_armv7l.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 8.4 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
c05cf62a992f48434a6b876fe010e5cae12bd54039854ce9ae0f05c13a58c7ad
|
|
BLAKE2b-256 checksum How to use checksums |
2789a63b75d9c05deb0017ff51ddf3674cef19dbfe9c2fb74117d7e4a66b9a93
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
9b987fb202dd1c71d7f6e103363afd1128d347ffcf540d8416c257c8f1041ff3
|
|
BLAKE2b-256 checksum How to use checksums |
522c3e671c8dd84f6ed4e47d588df1dc15aae61b0df0302f4bfff7b5c743045b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
dd2afd5153e2a7ef230a3e48a679a9e1cb3e59032f79c78bb2f78010a4e9bfc1
|
|
BLAKE2b-256 checksum How to use checksums |
f013d9befae0e705474e550b16c90bb6d33c3f07837af63a0e8ce4c84fb546fb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
a9b9a546ac71757f53f0ca2b14ea8f99c33b70e298a7873477f4548e2d83f817
|
|
BLAKE2b-256 checksum How to use checksums |
26f23855e83fd1e4043bd7ab286d3f0ca434fbf935598fae57f1af2777620891
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
6459d131af2cbccab20742f6fe43a3022b021dcd1ee20b05f99b1fb54d0ec525
|
|
BLAKE2b-256 checksum How to use checksums |
741a3445d2b4f6d6e4e26f10e9ccd75b60a14295b2d8eb280f0b1bd0bd7caac3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
01b632dbca07b59f7d6e106dad3ac8391e9ffdab1f94f2068a3e8edff1bbd180
|
|
BLAKE2b-256 checksum How to use checksums |
8e9ff272fd205ab511475b135772e85bcaa71e5f3d081e6604b08e6e1d3982a6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_10_12_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_10_12_x86_64.whl |
|---|---|
| Size | 2.4 MB |
| Tags | CPython 3.12 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
7f6fd0fa12dd0d98bb55df6bbfff7ad913e4ea27306fbdf5e8543fe1fa40772c
|
|
BLAKE2b-256 checksum How to use checksums |
78bb093aced52ebaafcd050eb21ab07ddcab7efffaa687e264f64d3f0423a4ba
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-win_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-win_arm64.whl |
|---|---|
| Size | 2.3 MB |
| Tags | CPython 3.11 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
d72cbe293981677e989cf4314cb18e743e42ac84269508c0693e06c8f7e66604
|
|
BLAKE2b-256 checksum How to use checksums |
6b168c9bad406251c6a7e828641102e9bae75d2e3880b866855a699bf8b6e62b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-win_amd64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
85649ffbb6a21b2830022ce723de8625fc4d33621ed09ec4687eaf57b5044f4c
|
|
BLAKE2b-256 checksum How to use checksums |
dc57ff6381e1df975840a0af201adca7d54bb6d7cd116514527c5179f8f599f5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-win32.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-win32.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
d8ff168cbc04a5978f0a9320958e1ac2111e53ba4f7f7ae14a09f49c04b4e936
|
|
BLAKE2b-256 checksum How to use checksums |
61af15ddbdd53a96005c8f048ce1aafab2e825e6445a3565408989e9f37bc237
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
2f11b1d5d20013a8bdab06d9d3244488db0e00a5d57e5daaefa78f67eb70f474
|
|
BLAKE2b-256 checksum How to use checksums |
3435d669758c1b49b04673b95e6bb275d59ed9f901d7a8346c8f560d5b6136fa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_i686.whl |
|---|---|
| Size | 9.0 MB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
bcd116d028fe87379c934238cd3a984325bb4fde80c86526873a513a4d3c3b81
|
|
BLAKE2b-256 checksum How to use checksums |
50a6656248d1e5ce08d6154a3c904332a12093c48f22daef3779ed344a449c02
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_armv7l.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 8.4 MB |
| Tags | CPython 3.11 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
a86df5b196225d230c51e391f1005e86e136142d0fce98267df285651f3b0621
|
|
BLAKE2b-256 checksum How to use checksums |
2b51afa9751b8a397ad91e19a5e8afde925511abdf2a70fe98da13f6d77a567b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
17fd143e6fe5c2cbb8eac1862046d63ada83ed48b6cea4753b9615a6df6f4d08
|
|
BLAKE2b-256 checksum How to use checksums |
dc80a5859f365485fbc9e741d48c596f3913fa47fb2f4df77a134560d7766380
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
97a627c02fc660e6d36010c2bf57f1c346ce2a58cd7e83e43241f5ad174c3f18
|
|
BLAKE2b-256 checksum How to use checksums |
7a1e453f3268eb67190930294875628890b8eacd297364a2abadf206d715cdcf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
f9fd3a2c5d48faca23200176015e00b4004862f4fb9016fd17a0fa374019574e
|
|
BLAKE2b-256 checksum How to use checksums |
1209cd6dff8524153196150bc778bfb828f44b65e301e06c34a1c7ca39049c49
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
4c3109317d54918fe10d25d9978c2e445edefee04546f08ef47e077dc3dbe7e6
|
|
BLAKE2b-256 checksum How to use checksums |
a027018351fecb8ebf35103408484dca3072f1a0ff28247193f46377ff6341f0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
ceaca73f77fa0dc6409e85ca77da24560270d0929bdbee579714da05614c67ec
|
|
BLAKE2b-256 checksum How to use checksums |
dff71dc8ddbfa056e39307d67286f45c8300695c9a0137ed98f60775a2c37322
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_10_12_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_10_12_x86_64.whl |
|---|---|
| Size | 2.4 MB |
| Tags | CPython 3.11 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
42bfc37327ca71e9b9c4a3d569d338db6789e0966eb89dd1fffef5fcf3c2462d
|
|
BLAKE2b-256 checksum How to use checksums |
db469591ffeae92e62b70b0a297cf0de858ee69cda369a9a540b8989850f5c38
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-win_amd64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 4.9 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ec20f55bfad78d96376b7274671870311f53ef724e07d9d5af8bba36c363f77f
|
|
BLAKE2b-256 checksum How to use checksums |
7dfb339b34a676805d8949350d607bdd0247401cf887c565e8fab03ba2a019ec
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-win32.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-win32.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
812a8f0a24d1bc751bbe4119ead7d458726558b2c1af72f99e6c381cb6d48025
|
|
BLAKE2b-256 checksum How to use checksums |
bc273cfca1046155b0c8561d4f68fc12971853c9f3fd25aa9dae5a44544615d7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
0a04950cff6e0550574117512b2cf5dc3d084d2abd95c752bd7ab219f5511e79
|
|
BLAKE2b-256 checksum How to use checksums |
b8a03dcd7f6aa750ec4d01f467abb481aacca000f06f67ed1724beac6dcdfff3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_i686.whl |
|---|---|
| Size | 9.0 MB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
85d8496e35035e1a228daf52578bde6f94fcd908202324f32dfe3b7b0430efd0
|
|
BLAKE2b-256 checksum How to use checksums |
a3ab410e078dddb769bcbf238837add920a788cd063aea43c04fbff29ea9d02b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_armv7l.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 8.4 MB |
| Tags | CPython 3.10 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
537a6f702b066bd8c69ba8202f1350a3d1e05e23bbe28f0d5f1567588a5bb16e
|
|
BLAKE2b-256 checksum How to use checksums |
59bae232759c07440d07479973d753a906715000cc71dd56fe7df70fd58304df
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.7 MB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
be5ea80860966bcea91a6e91aaaa3dd510d537cdf5245c811d41cd3a5538f8f1
|
|
BLAKE2b-256 checksum How to use checksums |
a0d540f52b1892105d33510d0ff472f6743d570e750c33c37d3e9697fde99f94
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
5bd82982ff69470b6dfdfdca7f4308cb32c1c6910f95511db58dc59fc0411e59
|
|
BLAKE2b-256 checksum How to use checksums |
fbfa92212283b7fe3c71cbabb9443b8a8ed940fb73804bdebc86d08e52cf8349
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl |
|---|---|
| Size | 2.5 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-32 |
|
SHA-256 checksum How to use checksums |
06a0d4d530c8e36f098301f426611dac4c3a7693cfb3121663f1ca8f71ba4517
|
|
BLAKE2b-256 checksum How to use checksums |
53e6f72e4c8e3ea000bb9472cd83bf3a7e78f5f6ab34ed22ff6c2e1743d5bcf7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 2.8 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
4b4c60dadc9656e2d3093310c64fc8b521dfcea299913838bef9ff496e777f65
|
|
BLAKE2b-256 checksum How to use checksums |
af0cce07ec0035dce02cfc00df05900b8b2f129c170d55e62eca57470353c49b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
b1f80e18334215195eb7f5a19e20b8448778740aab6ffb058da551c1c1d95b70
|
|
BLAKE2b-256 checksum How to use checksums |
9596b9e8c5521590308a9ae441f163a593af403130ff12f6e954f9710d18d369
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_10_12_x86_64.whl
| Download URL | pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_10_12_x86_64.whl |
|---|---|
| Size | 2.4 MB |
| Tags | CPython 3.10 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
8e5917812ab609951211c771726cfc99f161238b09a9175ea1fb122c94227b22
|
|
BLAKE2b-256 checksum How to use checksums |
e62f13fcf0700d7de9e270dede2448a39f2f39764356f48b030e93aa00b378c3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|