Skip to main content

Pillow plugin for JPEG-XL, using Rust for bindings.

Project description

pillow-jpegxl-plugin

PyPI - Version CI

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 with cargo fmt and cargo clippy via pre-commit.
  • Install the tooling once with pip install -e .[dev] and then pre-commit install.
  • Run the suite manually with pre-commit run --all-files before 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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pillow_jxl_plugin-1.3.8.tar.gz (1.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (9.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl (9.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (8.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pillow_jxl_plugin-1.3.8-cp314-cp314-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows ARM64

pillow_jxl_plugin-1.3.8-cp314-cp314-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.14Windows x86-64

pillow_jxl_plugin-1.3.8-cp314-cp314-win32.whl (4.6 MB view details)

Uploaded CPython 3.14Windows x86

pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_i686.whl (9.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_armv7l.whl (8.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pillow_jxl_plugin-1.3.8-cp313-cp313-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows ARM64

pillow_jxl_plugin-1.3.8-cp313-cp313-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pillow_jxl_plugin-1.3.8-cp313-cp313-win32.whl (4.6 MB view details)

Uploaded CPython 3.13Windows x86

pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_i686.whl (9.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_armv7l.whl (8.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pillow_jxl_plugin-1.3.8-cp312-cp312-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows ARM64

pillow_jxl_plugin-1.3.8-cp312-cp312-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pillow_jxl_plugin-1.3.8-cp312-cp312-win32.whl (4.6 MB view details)

Uploaded CPython 3.12Windows x86

pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_i686.whl (9.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_armv7l.whl (8.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pillow_jxl_plugin-1.3.8-cp311-cp311-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows ARM64

pillow_jxl_plugin-1.3.8-cp311-cp311-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pillow_jxl_plugin-1.3.8-cp311-cp311-win32.whl (4.6 MB view details)

Uploaded CPython 3.11Windows x86

pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_i686.whl (9.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_armv7l.whl (8.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pillow_jxl_plugin-1.3.8-cp310-cp310-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.10Windows x86-64

pillow_jxl_plugin-1.3.8-cp310-cp310-win32.whl (4.6 MB view details)

Uploaded CPython 3.10Windows x86

pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_i686.whl (9.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_armv7l.whl (8.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_aarch64.whl (9.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file pillow_jxl_plugin-1.3.8.tar.gz.

File metadata

  • Download URL: pillow_jxl_plugin-1.3.8.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for pillow_jxl_plugin-1.3.8.tar.gz
Algorithm Hash digest
SHA256 4430fd7757899742079c548a7d2537d6d63cf0f1d323180095bc0f6f03d9d4fa
MD5 a4c95ed799d4a38cf14188bf39c31815
BLAKE2b-256 0275810608d489c2d453e16a0866de5edea2bedd728e8830da22a1ec633f3b80

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75351073d967c85c24a330f9e375b17b809bff9779cd08c8d0e90d659b39be5a
MD5 8ffed4500e80e482d9e193fea8671041
BLAKE2b-256 5bd9c54bce2efd22f3d79e83fa9948fa5ca0184422c6bd9c38c4d28861ee9a50

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 027f091b8ff8ecb26712d709847d25359994eb6a6543736d7fbc07b7b6b86fd7
MD5 dec858a8106997e5858aca5432c2b588
BLAKE2b-256 0a451e39b708d0260eb04aeb672558522bea63df4f7df3a9c27710faef0736b6

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42f39d55dfb7ba29509cea3f0270bd0e8a2fb924d979f2caa43f445e30d709e5
MD5 88d958f6a04acb432488a3440344bd2b
BLAKE2b-256 d0871ea5bb4cd84c5be48b542cbb579f43932c7977f5317d9992d674f409377b

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81864c18c03084754c4a9d673a0ec9d6161af5f7695ab1d4bb112059af2e968b
MD5 a217298237cfa3b5869e268f75f758ed
BLAKE2b-256 53f61ea001b109ff39165e013e663822adba393340d1599e165dbc62f68772a8

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab40c82ead318b058804211a7f6d6e2715f65015f73792dee63813731105f74c
MD5 11b2810950e8e380f36d0c93caf1fb4c
BLAKE2b-256 9d4f0f00dab8c1b4b026cb62909e01b26a8f12f9f536bb6b002c71a15a638004

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9adee3403a29b42b203b6903923ef84cff70bb33aa6ed069775b6b8f721fe7c7
MD5 77a5cab7edb1074a2bef11f588e71d16
BLAKE2b-256 3a6274ae963d945cf8c0da64a1a5b1a8e32b49cb1ac8cf3f81e1b63c25466250

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66a1bbe948021af26a5550b9bccad011e1131f6e10a90821690e3c19a417f59b
MD5 11f79e94369e06f82a239fec2b89c068
BLAKE2b-256 d56f295bd97058531eee2d3e3a0c73795c95aace572c918d13688201d9f45abd

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 323ba7ab8fe6aceddbf571853b47c8900a293c6430649be31c3a743b12d0bcfc
MD5 1eb657be397f1a097659de0984637ad0
BLAKE2b-256 723e70b1c9c18839b7c6980edb6f4e0c4dd6b52be96df380adf2da55be8e6f7d

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e33d2b965d4306271ca811dfbb14f8dc313e7bc6408617760fae7ae275686218
MD5 790d9c56dbe4cc6c96736336b06eb86f
BLAKE2b-256 58a62e08df50151b3a399ee18b4c8987e25dd754547060d1a368cda4edb2513d

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 60c36bec3d8d4ef23cf2aed0f792213f999312dd3d8cd5225ae1494c430e16f6
MD5 398d0f51f6785b8ed959e95f4fef0075
BLAKE2b-256 cacf2db398fb1a41c46fd382bad96ee90283589eaed0ec2c50cfe4afda3df72c

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6b23c83aabf4615b92ae609293d8597ca1a8d14d01ab16c703bb3a3df359796b
MD5 dd572275510adde84b526f750cb85caa
BLAKE2b-256 47770f0297c265f1743784b6d1df719e62e49dabd1d9ede8efb0a9ba93174293

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d63d1c3566a8c9ebdd1ec6b75da816b9475d95c4f69656827d6d3957d2594ecb
MD5 6d5c0bb088bda56e9dcd0781e922864c
BLAKE2b-256 a46dd10a4426fc3b394d2222cb694774451e67ab052df2e15a488dfac22be561

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 915b8fee6a97aaf5486d0d625f26faae2e9f0d9b5892f1076f5a29b8103125a4
MD5 daa9af0c8374a5f041635ebbe6ee1858
BLAKE2b-256 92b7f606ed6fcb5fd9e177ce2b15a613a405ac22ceafc2c03bb3f58cd500ca04

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 845e61add39272ca8545f4a0e6ead977ebb7e89fa017014bb8e17273a7a09c6c
MD5 c2aac5b08ffef6cfad221c6062553800
BLAKE2b-256 05287979927eb5dc79e40b31e4e07d074057722656743d324182f4a68056c2a9

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ce20ef0887efb6dace5245f714f94b4f070ef39a1ec45161b35879c48faf30a
MD5 209c8ec1e9f56268c3c3db4c8b7cf5e1
BLAKE2b-256 c695486fc1fabd1e6cb8b520dce9898b51f2e29e991ba54e632381fe7f287300

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4049e48f09947a38047fc5d70817c6dffa90ffb5f14585c8c00e8b534d17c9b
MD5 82b9c00f742ed57b83900f196a8430bd
BLAKE2b-256 4bef77a15b2f3227854d4ef2563250ea57b03538ed962f406f1248c9caf045aa

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70b881a40737c647a24270b73cd3f506dd16d634202e5214cb492f9270bd1b02
MD5 e3b1aac6923a5ddf4695edd082ffc966
BLAKE2b-256 24250903ba5a4c8d948df9217e48182ff7d872098ddf86fe512402569f4041cc

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f65361ce18db59e8949c60599bfa46b7de187e28917fc39b5d816ab4b81cb16d
MD5 73b60ff86c41a63288f11256e46b2459
BLAKE2b-256 2be07b9bdc388d89773a5f9ae74ff0be3b06080ef1a60be57b5897d929012622

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1d06fd4eb038f431db27f1ab2e483fd6967bafb21a7757e1bd5f76b6fd93649
MD5 e8b9448dc28c1fc322fc3791a4e89c57
BLAKE2b-256 c58b89636d315a31eb805681e60e569fe38d5eef3d09f13b1b6f576574387942

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5bbc933487207e634802f21990c365b6e61473cea34f6621420f4eda8ffd1df
MD5 f61e1bd7c2c118f9b60eb09536b21405
BLAKE2b-256 a7be01613af0307c31e77aced40bdf9cf3d25ce1333b3e99bb85575bdcbfeca5

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30b72accb8505a46b05f709871da40f09975aea3a6b6f3cb1d646ff0a9aaba5e
MD5 9ba007e48eb89ead87372e36db029ace
BLAKE2b-256 6630c37d161345302ebda07f29d8230b15ba83b43c586f14fec98d088b18e982

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 48d13d81d1c4933e5d42dd09366a9827583808be0a2fe842abd7358653c7d92f
MD5 3e56473dad21ba5d274894d880ca54a7
BLAKE2b-256 3e12e04b73832d1b8af3c5c4646127949a362f9ca3d30f42b05156ca5ffc61ea

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2388374b3493df9add4ef3d97cc70d6a5f51ed188dfe10d2b83ebc55e82e48d4
MD5 3562b6d1ef92b6d39f0b50c9b95abe82
BLAKE2b-256 0ee7823f58aaea0d969f876f593a39c85c39fefe1b8ee9ca10a6ffbafe1a254a

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a2716f1367ed9647da36ce15882a12b4d424892cb5a03ab4b0783039d701c7c2
MD5 da61f8f40c880107df1e971edb679374
BLAKE2b-256 13161aa669ae22a6c36810a925bbbfb1f4521df1d0402180052331b39ef8dee0

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2be721646718af722f2ca5c1d6b06bf056a61a0db355cf944df53c3723119d4b
MD5 e2f5fb4f17e9eaeede198734f02ac118
BLAKE2b-256 ae76b3125f13c9551862ad3ae7137d86959cde159b759083f3e7b5e720525fd0

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 273908ffb85f68a2374b0934700939c572f32b355c9d128d4e3b6924e72ef274
MD5 42f74d167806e1c8333eaec00e33aac3
BLAKE2b-256 92ee4dc11ad5a90aa6d2eeae6eb0be2376cde0c365423036a078746b3476eca2

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b13f860c280d9d5770f49a1909926f15c6e26e50935da52ecb78700f7c377857
MD5 922ce46c9d9b051b93c4af800c5a2d77
BLAKE2b-256 12dfd12f42d6e31bb47e2002fcba2db9d92aad19dc3db9ae7d4b2b76152e268a

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e1550f30768a0aa3f756da10b7807f6fac7fd2e5a18991eb8e00ec5908089d8
MD5 0777fce0888e6b8fbb4efe26e2a93c6c
BLAKE2b-256 f4686806df96fdd625943c795beca932ac033c255a323b63b051903df96935b6

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b39ac44cbe5a98b8a364ed98a16c8c1e197ee997e32731be4be727c55e629e4
MD5 e967c607a7c75ec2245af87be6646ba5
BLAKE2b-256 5929d430cd5f82c08d2950e292d195081e9dd4e2a038a7e1722d79ba7c6e7ed9

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 288eb07090c91891ee0dc782786d937af8e53a117835606d7982c29e31072b90
MD5 eeb37baeff871c34e314c3b6c692c81f
BLAKE2b-256 6e18a862b140f82be55ce62c681b63c38bf61c962f0c27e32797ebebc0d47548

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34685b27d01e55aabb09d9436d4ddb1f446e8805da82ffd6448c07bbf563354c
MD5 131fd0258b50c7c364019c6cde374d73
BLAKE2b-256 e9fee610196142343f80c98502fd204f28e901a1101db6988be6ccc40c0e8ca0

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d648ef965002bee0c98dbf144b9b3c994146856fa4d3c54008b75dda10f69915
MD5 c1bb527fd40fed785682836dd3b6bdc9
BLAKE2b-256 893e5e1156e5c5b402d84ef924153e046ba937ac46e8b14decb3ab6e01a6f40e

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe24e957016dcb0c2ec35f72ff3bb8ae78a9468b282f0d423485556de492975c
MD5 690275f94477024e0418369e03b9ccf4
BLAKE2b-256 b91018bb2d6ed82184e2427f7501a17c1b413eb50bdcd4ebb42bbfb187bb4290

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 230a1d086ef5b66055e0dbc9837914becf1d1ca58d45d1404660de0a11fb63c3
MD5 49472705540f060654ad57ba37a3f60e
BLAKE2b-256 dbefb3aee5725df66399f529c41d97f71893e2b38f665c9278a99519112f03f3

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5b1c0d7a0c7e451014b288f0504545bff0f543f2ee1581af628e01e885b75f50
MD5 ffebf5e0c7baa320bb0cc0281ef75765
BLAKE2b-256 c3c901efd23cb4827f8a1731e1a7652023a06375e933f85e3169e0761d916d6f

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3345a45a09ba3149001c3e9a1b6991be8aab72c33097c0633e414a254cd283fa
MD5 1d808b79bb5374cd5745efac87e850b5
BLAKE2b-256 32e3b25194909cfef9081f6a1f0e40e699e95ea96b211cae30bbf0f965d6b450

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88b06a4e5fc0d882b188824990b6571e201ad775d22a09487c8d5ab8aed9c3b7
MD5 ab72964321f1df71e2547fda3db65754
BLAKE2b-256 ea53b9aa7c156427ad4d94d8c90bd87cb502e7d6326d2689c309aa574baf1ab7

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0392e5349b67522130ecff9d8dca4713e4c84662a310d2170291b229965e8fd1
MD5 0a6e456d9f46ab4ef664868e873f2d82
BLAKE2b-256 c74fb6ead8f5a50103e2c6b264a6d4778b8fcd08006c957b2ad0bccbbb306e97

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c05cf62a992f48434a6b876fe010e5cae12bd54039854ce9ae0f05c13a58c7ad
MD5 c0f92e21aeda768115709b0609d49485
BLAKE2b-256 2789a63b75d9c05deb0017ff51ddf3674cef19dbfe9c2fb74117d7e4a66b9a93

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b987fb202dd1c71d7f6e103363afd1128d347ffcf540d8416c257c8f1041ff3
MD5 b1348d545a6ea83160b37b813283e3a6
BLAKE2b-256 522c3e671c8dd84f6ed4e47d588df1dc15aae61b0df0302f4bfff7b5c743045b

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd2afd5153e2a7ef230a3e48a679a9e1cb3e59032f79c78bb2f78010a4e9bfc1
MD5 b3d61e27f788be80833a10c1c41e4825
BLAKE2b-256 f013d9befae0e705474e550b16c90bb6d33c3f07837af63a0e8ce4c84fb546fb

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9b9a546ac71757f53f0ca2b14ea8f99c33b70e298a7873477f4548e2d83f817
MD5 5f0bc804aa2703f228dedeb57b740fae
BLAKE2b-256 26f23855e83fd1e4043bd7ab286d3f0ca434fbf935598fae57f1af2777620891

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6459d131af2cbccab20742f6fe43a3022b021dcd1ee20b05f99b1fb54d0ec525
MD5 5e12243d88034f544c740b55b036e174
BLAKE2b-256 741a3445d2b4f6d6e4e26f10e9ccd75b60a14295b2d8eb280f0b1bd0bd7caac3

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01b632dbca07b59f7d6e106dad3ac8391e9ffdab1f94f2068a3e8edff1bbd180
MD5 7151863e37c2d9f6cc66ae825446cf9f
BLAKE2b-256 8e9ff272fd205ab511475b135772e85bcaa71e5f3d081e6604b08e6e1d3982a6

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f6fd0fa12dd0d98bb55df6bbfff7ad913e4ea27306fbdf5e8543fe1fa40772c
MD5 89af6fa590ec6e3f4e4492a7940dbefa
BLAKE2b-256 78bb093aced52ebaafcd050eb21ab07ddcab7efffaa687e264f64d3f0423a4ba

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d72cbe293981677e989cf4314cb18e743e42ac84269508c0693e06c8f7e66604
MD5 f776a2c54c1dfa361b2d47360865514b
BLAKE2b-256 6b168c9bad406251c6a7e828641102e9bae75d2e3880b866855a699bf8b6e62b

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 85649ffbb6a21b2830022ce723de8625fc4d33621ed09ec4687eaf57b5044f4c
MD5 b724a58382ff113e40a9442881d32f8e
BLAKE2b-256 dc57ff6381e1df975840a0af201adca7d54bb6d7cd116514527c5179f8f599f5

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d8ff168cbc04a5978f0a9320958e1ac2111e53ba4f7f7ae14a09f49c04b4e936
MD5 29f6ff51ff0a1cb7da6c2119b8b44c34
BLAKE2b-256 61af15ddbdd53a96005c8f048ce1aafab2e825e6445a3565408989e9f37bc237

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f11b1d5d20013a8bdab06d9d3244488db0e00a5d57e5daaefa78f67eb70f474
MD5 153335ee9a620a1762dbf50eefe22df2
BLAKE2b-256 3435d669758c1b49b04673b95e6bb275d59ed9f901d7a8346c8f560d5b6136fa

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bcd116d028fe87379c934238cd3a984325bb4fde80c86526873a513a4d3c3b81
MD5 2bfc7a1266082cbc3476c153dda240f3
BLAKE2b-256 50a6656248d1e5ce08d6154a3c904332a12093c48f22daef3779ed344a449c02

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a86df5b196225d230c51e391f1005e86e136142d0fce98267df285651f3b0621
MD5 80e0ebe4924c552ff4a3597be91f88b8
BLAKE2b-256 2b51afa9751b8a397ad91e19a5e8afde925511abdf2a70fe98da13f6d77a567b

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17fd143e6fe5c2cbb8eac1862046d63ada83ed48b6cea4753b9615a6df6f4d08
MD5 fdb81a06ddb8cab7df08e2176c4a87d4
BLAKE2b-256 dc80a5859f365485fbc9e741d48c596f3913fa47fb2f4df77a134560d7766380

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97a627c02fc660e6d36010c2bf57f1c346ce2a58cd7e83e43241f5ad174c3f18
MD5 e2ab2bf737176c7066ec7878784c68e0
BLAKE2b-256 7a1e453f3268eb67190930294875628890b8eacd297364a2abadf206d715cdcf

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f9fd3a2c5d48faca23200176015e00b4004862f4fb9016fd17a0fa374019574e
MD5 e35c67b0c4a42c64ad459cd0d71e747d
BLAKE2b-256 1209cd6dff8524153196150bc778bfb828f44b65e301e06c34a1c7ca39049c49

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c3109317d54918fe10d25d9978c2e445edefee04546f08ef47e077dc3dbe7e6
MD5 51db78f843066955439f072615868f46
BLAKE2b-256 a027018351fecb8ebf35103408484dca3072f1a0ff28247193f46377ff6341f0

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceaca73f77fa0dc6409e85ca77da24560270d0929bdbee579714da05614c67ec
MD5 0940eef33e9316f7ba7e5f122b398392
BLAKE2b-256 dff71dc8ddbfa056e39307d67286f45c8300695c9a0137ed98f60775a2c37322

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 42bfc37327ca71e9b9c4a3d569d338db6789e0966eb89dd1fffef5fcf3c2462d
MD5 0984f6ac52d041ae5cedb913448154c2
BLAKE2b-256 db469591ffeae92e62b70b0a297cf0de858ee69cda369a9a540b8989850f5c38

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ec20f55bfad78d96376b7274671870311f53ef724e07d9d5af8bba36c363f77f
MD5 51d825f7c6fa34d01a1d28b49384be3b
BLAKE2b-256 7dfb339b34a676805d8949350d607bdd0247401cf887c565e8fab03ba2a019ec

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 812a8f0a24d1bc751bbe4119ead7d458726558b2c1af72f99e6c381cb6d48025
MD5 8b3f48564f7c1ebe0239d497a8b3900a
BLAKE2b-256 bc273cfca1046155b0c8561d4f68fc12971853c9f3fd25aa9dae5a44544615d7

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a04950cff6e0550574117512b2cf5dc3d084d2abd95c752bd7ab219f5511e79
MD5 06e2a704ba6a5d3e215f78139228ff20
BLAKE2b-256 b8a03dcd7f6aa750ec4d01f467abb481aacca000f06f67ed1724beac6dcdfff3

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85d8496e35035e1a228daf52578bde6f94fcd908202324f32dfe3b7b0430efd0
MD5 2d5a8a51fb26ff828bab7b2867f4eed0
BLAKE2b-256 a3ab410e078dddb769bcbf238837add920a788cd063aea43c04fbff29ea9d02b

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 537a6f702b066bd8c69ba8202f1350a3d1e05e23bbe28f0d5f1567588a5bb16e
MD5 5d53c2a45f4a3c562c7738d8723c1716
BLAKE2b-256 59bae232759c07440d07479973d753a906715000cc71dd56fe7df70fd58304df

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be5ea80860966bcea91a6e91aaaa3dd510d537cdf5245c811d41cd3a5538f8f1
MD5 ba42c3b2f3925d06e6b210edfe057447
BLAKE2b-256 a0d540f52b1892105d33510d0ff472f6743d570e750c33c37d3e9697fde99f94

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bd82982ff69470b6dfdfdca7f4308cb32c1c6910f95511db58dc59fc0411e59
MD5 e42db34649d1e2089bb296386eb4cb2a
BLAKE2b-256 fbfa92212283b7fe3c71cbabb9443b8a8ed940fb73804bdebc86d08e52cf8349

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06a0d4d530c8e36f098301f426611dac4c3a7693cfb3121663f1ca8f71ba4517
MD5 f1928204b149e3c1988a2d6a905e041f
BLAKE2b-256 53e6f72e4c8e3ea000bb9472cd83bf3a7e78f5f6ab34ed22ff6c2e1743d5bcf7

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b4c60dadc9656e2d3093310c64fc8b521dfcea299913838bef9ff496e777f65
MD5 3e3ad9f8da9db38e56212cdc4f98e0ba
BLAKE2b-256 af0cce07ec0035dce02cfc00df05900b8b2f129c170d55e62eca57470353c49b

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1f80e18334215195eb7f5a19e20b8448778740aab6ffb058da551c1c1d95b70
MD5 06f42d6ebd0bb77c8cfd50c178af6199
BLAKE2b-256 9596b9e8c5521590308a9ae441f163a593af403130ff12f6e954f9710d18d369

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e5917812ab609951211c771726cfc99f161238b09a9175ea1fb122c94227b22
MD5 b13621264449052b8934049f2005eb0d
BLAKE2b-256 e62f13fcf0700d7de9e270dede2448a39f2f39764356f48b030e93aa00b378c3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page