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:

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)

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.7.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.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (9.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (8.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.7-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.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

pillow_jxl_plugin-1.3.7-cp314-cp314-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pillow_jxl_plugin-1.3.7-cp314-cp314-win32.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86

pillow_jxl_plugin-1.3.7-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.7-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.7-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.7-cp314-cp314-musllinux_1_2_aarch64.whl (8.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.7-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.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.7-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.7-cp314-cp314-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

pillow_jxl_plugin-1.3.7-cp313-cp313-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pillow_jxl_plugin-1.3.7-cp313-cp313-win32.whl (4.4 MB view details)

Uploaded CPython 3.13Windows x86

pillow_jxl_plugin-1.3.7-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.7-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.7-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.7-cp313-cp313-musllinux_1_2_aarch64.whl (8.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.7-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.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.7-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.7-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

pillow_jxl_plugin-1.3.7-cp312-cp312-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pillow_jxl_plugin-1.3.7-cp312-cp312-win32.whl (4.4 MB view details)

Uploaded CPython 3.12Windows x86

pillow_jxl_plugin-1.3.7-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.7-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.7-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.7-cp312-cp312-musllinux_1_2_aarch64.whl (8.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.7-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.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.7-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.7-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

pillow_jxl_plugin-1.3.7-cp311-cp311-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pillow_jxl_plugin-1.3.7-cp311-cp311-win32.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86

pillow_jxl_plugin-1.3.7-cp311-cp311-musllinux_1_2_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pillow_jxl_plugin-1.3.7-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.7-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.7-cp311-cp311-musllinux_1_2_aarch64.whl (8.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.7-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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.7-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.7-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pillow_jxl_plugin-1.3.7-cp310-cp310-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pillow_jxl_plugin-1.3.7-cp310-cp310-win32.whl (4.4 MB view details)

Uploaded CPython 3.10Windows x86

pillow_jxl_plugin-1.3.7-cp310-cp310-musllinux_1_2_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pillow_jxl_plugin-1.3.7-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.7-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.7-cp310-cp310-musllinux_1_2_aarch64.whl (8.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pillow_jxl_plugin-1.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pillow_jxl_plugin-1.3.7-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.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pillow_jxl_plugin-1.3.7-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pillow_jxl_plugin-1.3.7-cp310-cp310-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pillow_jxl_plugin-1.3.7-cp39-cp39-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.9Windows x86-64

File details

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

File metadata

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

File hashes

Hashes for pillow_jxl_plugin-1.3.7.tar.gz
Algorithm Hash digest
SHA256 af33fa5d0d2ef14ddbd48571a70269f62fc4c143777a3d5f48ff6294f4c48398
MD5 0d135038467a080fa5f0aded47d0070d
BLAKE2b-256 fca4d82f1c69fa1559d17c4d906dd72c8f383e8ba0beb14441db99dc91e56598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8745c7ec5edf954e79fcccce9091b68b414cf8e2babeee6ea640371e83468848
MD5 a1926b1b34b4fac6895bd69e1e8d4573
BLAKE2b-256 43c4f7e21ba2c2f1a5fe4368db83220aedb7baba4325ca5945f6c638b7af5ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66ed571bb6ee7fcf8e651054166d31aea127726e3fcdb3b0777d84933aa875a2
MD5 64aae9595655b3a2dac1ad5abe7bb6e6
BLAKE2b-256 cf700e86e722770c798f652819d012d0c9bc20c6fb740114c268344519b379cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d002fec2a600e31f1b5fb7bdf95fa7f3334011cff924577d2d6ba6c7565176aa
MD5 3f2e425896c4209d22b9d039a44b17d0
BLAKE2b-256 f12a117c8a281e814552e0c134b174bee5585ceb1907b53222b1d6a099a9d9f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 414fbb3444bf9402dfbc8d296ba34c34a6de17a6cea0b75df7e73cfea9f3c97d
MD5 9d93be725bbc36f8fcda5b46744a13f8
BLAKE2b-256 6301c777a5d1e755b3a12c358caf1c40c7471c9e79228064f37a3ab126114441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d59fabe56ad564960a41e2ba6bf11e35c1dd6466c447e8557cbf72c0e835eb1
MD5 746d18770c3f62717d19e2b248ff08c5
BLAKE2b-256 4e8715ad8774a567d9940b700328bfc33d04ab020a166e9a622b9318dd795d0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 476db16b0419ebf34c994e5ac145a90cf3e609e476780942a7c661fee7ec9e92
MD5 58d6becdf5db9b13540ff7da56ce0a41
BLAKE2b-256 cb6738d474bb943669e5348a70190107d236b0fbee50146e61fcc3ee4360be70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0952f88fbdcf3db6b7afb91bdf0d811377adde7b1f92a65e237e4f732d512ca6
MD5 22b15363517596fdc9ca50d9c70bdaf8
BLAKE2b-256 a4b8ca7097ec7f48e44261ebbe262258ce38c017ebe5e21496857995fc972240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d92b2ae8ee0c697513c7436bac02130b1dd5c5ec7b5535de213a470051d7513
MD5 187d4ff2a5c1ab6af63f4deabef85e17
BLAKE2b-256 e823cd37de5b7e90fb20d82b928ad195950381072d20336200931d52bd521561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea2fa6c8f13dc01b41230098be1e7bc46cfee6d1199f4aea89c09efe759e6748
MD5 1daac5636afe5ded291c2bcac55b41e9
BLAKE2b-256 e24d5d657b2e9974a1ad51bd36ab412683aad7dd1975b26cbdcac500062742ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 56b41190154898b0cd715399004427165ac7e4869fd835b004c40714de68dd7b
MD5 cae6fe4b5c91fb292d65cc615b10acc5
BLAKE2b-256 be2dbf790911fd65a2e1244771e6494832c0dec6b5bbf828ebc696746866ef2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2809d64c7c91546a82871933990e1c12304e8cc94a86f221bfa43ef53a91bc4d
MD5 62744d9c973cc55195297e9ba1b4736a
BLAKE2b-256 8634c42f2899a6d93666b2245cfef1776f464773728dc4b63c37ed232a0fe75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1d4173f4f3abf9224ae51c9a573a9cabc35003bc66f353e4a686f5b7c33ec8fa
MD5 27a24cc4231fd1779de351dee7e8cfca
BLAKE2b-256 441fe8ba1278146910ff171654157ebea9b92488cf2e9158ab4cce5f7408ab04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1265e1588cdd14b5530b04438279e2a0cfc6dba8a7fb3a119119d5ccb1f7c6f8
MD5 3d2e44ca0d09e0225b1ff4249c3c7a87
BLAKE2b-256 81c29410985a1e1c2f109c997896819de44c0a6c9bbada0f10fa269b75f15190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a4f77d250595e662c40b844abecca72b3cb667f6107c41ece3c49ac626e5061
MD5 a701731e1aae821ed042d189531295c2
BLAKE2b-256 a19d2408c773ab7b144b589ad100cf434beec71867a1a07121461c3f5405b161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b289f27b177f92a1b7f8629ff196a5975f3a40c9ba13fadcbdf6e7a84976bf8a
MD5 fdf28739a8fea39a7795ff5f9cbb6daa
BLAKE2b-256 b567df8786d8252fbbef6076674b32344eca472175499a2d24c2ffe98b4b3459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd05b0fcf39c3d4bbb6557c5f23789d131eccbc46a93e03cb2f4d68d0f44983c
MD5 b029150f58a3c09307371c6f7a7e432a
BLAKE2b-256 cbc6b7cce43311c384a438038a05823cab990d52c4b5f7dfc44e2780e80855ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f26112480edb8056908270acaf225cdca1c8bc921ce3cf2f97002b54fe81525
MD5 df81bb8c307b906d58336160af21be39
BLAKE2b-256 49ac1a8a07c928a591a2f49fc92bf25253e6897a46fdef1945ff184cc4fc09dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07db8544424358d6880415d4a5508ee7556b6ce69df9d56386b4ad82a86dc51d
MD5 9895625b5c9c9cad47b7b941da0c4958
BLAKE2b-256 dd0671d243cdb924e239bb7881e0c471152565ed347e3a9f901c164973e289f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b2fd8d0657bcc2d60978e3e3081659b7e3bea8b3aeac4edb0bc4d6265d844a1
MD5 7e3ff9dd70e6c27ce68ab69ced4a2e83
BLAKE2b-256 e043daf715148dd1fe39c2a95dd7f6faef0502d75523e97eb95e63ce1c38659e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a1944d7250b9f0a5004305a83574fa902f65877c5f034d2c9a81eaa0010c89e
MD5 edc1394b0e58f0340d871a1db335a44a
BLAKE2b-256 72db2e6e0757dbc9123c4203f781a273297ed7df7c182bd6fccbf73d6d4545b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7210ab1453c5cd70fd20e442071ad990bf29c18f7e3446b45238f7f55347f17b
MD5 d9a11445b299f9c5ff92c39516773b92
BLAKE2b-256 c9401498d47f62cbdf7ee45e652d2002aa3f5fb72230168827e958db20528ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d5254727e02c08185874635d3e56a41c9ad9b8c55d79c014cc6c9aa128b9bdf6
MD5 7bddedbefb92b5706bad95803a73e49d
BLAKE2b-256 28e1c5fd4973a9d634044824480f6c0cd1ebab4a273f22a6fdb7f71429106c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 23aca25bea7fc63e0466ceba12e6ddb26ce3685943185b7f6801c376f96832ed
MD5 9b7b608f3d274937e27837d75adc3635
BLAKE2b-256 4d02c663f0a38fd8358ae6bc58cfcdd9bc2ba0e22d2e38b0cbe8c528b0cd2e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5b3bf3a3f8396a0284fc3b467a0f9802140f597845768e77e6303bc572baefc7
MD5 a5bc8dc826295a85b5dccf86f0426d33
BLAKE2b-256 8e027b30bb46e5b8ca6102301332aab15995d05d831ccd4df6f8f60e9f1f044e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d4d5e83ecf900ae91b8c522d2b5ecddb5ebfa9deb5005ddbaac6a3f3ff5d7eb
MD5 30d6a672fb7dcd1bcb7b3ca68275a979
BLAKE2b-256 ad45e9f8abae12927406d9624f351f5088e4e862b55d40d3171bab4b67e05a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06c8542c49b1b9675952b4c7cada5e3921237db58fbd6146b07832c702fd71e5
MD5 31f79166ade54075416d765f5de7d821
BLAKE2b-256 c46d8a0b964727b2692c4190539f11797cf2950be5b27b9e2ab8657c1e2abb7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07a1b4be08a9d64fe0bd11921047b2aaaf3050dc85b80dd92815474fd1b9a875
MD5 1b88bd219087ea127135761af431ea75
BLAKE2b-256 bb48649c05d51eb6c3dac344bf2d3afdc96cafeea731140f45da359b97c2e42c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c7ef83d757ff170f638fd8c7aa3f1ab09a33ae4d629fb072383e7095bfed70f
MD5 d7cbdee2545a8cb8f789b45c5250bf4f
BLAKE2b-256 39da80b21062cf7dc912043b16fae4ab32739e77f47552861346826841c99c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb3c383df25bf68028013d11a68108f56ba1e13c78454e064435abeac0ff9623
MD5 2e2e86698777bd779f5312c7e68b6a29
BLAKE2b-256 358c5756de671398805575c0aae91754f96e1b748c5b99e2f34f6114514bf1d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5e6eeb84522903905f7e43301fc34e92177fd4a9b8ff0bc6f43a495cdabb689e
MD5 7bcd4a28734f72fb99098bda216d3a50
BLAKE2b-256 d390a586d4a4cf6e32f1a78b68ec12451d77a89dfd68b3e4a9c0b19bba619833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3985e4588f91c5cd3623bb56b298d1a83aba3d26f82de21181dd407dd9d09be
MD5 670812d5b2fead45d138cfdf69797d91
BLAKE2b-256 82bcbbb4c909383af8ed349235a7d9b0dec9227c495f9ea07b278fa0572a5628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0adca53f23626e4ee512766ddefa563376a19ce9b977b14fcb4aab370f56dd53
MD5 d3b1aafa18bceea2ff45f60bd2b00681
BLAKE2b-256 5087d84cd5cd5b3b13e2787a43d60715f80358dc124d202923053508141ab4b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2da876f77fdfa216f0011d5b1445af9a81438a5fd999d0a7b16036ad896cb32d
MD5 ccf0f138fe5ea58838d3ce954226ba5a
BLAKE2b-256 9168f1513f937cb4b2fceb954a1f0d4c13536f26e979ad73a925630bb6a856d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f3af1bd89c25d12287fb9473d0e4e529d2cff414f6fb15d54504325b31433be7
MD5 4d20e3d46e90210de7a79d7beccf5ffb
BLAKE2b-256 be9466d0468d7def3aebf91571f4f977696f836722cdec03d801e0dc9f8ab462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf86a9ffb89ad8cd7591cfb75068e6dec1654d9a390eeb2e5b85dae3c23aae25
MD5 f1fd1240c7291ce249d0d7322c835a21
BLAKE2b-256 c832aa729f55e1b91367784d4b69216fdd7bf71a495f054352c6037af7b57471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a32758859e270f9c3a4df5c745be027630baa11d72d592d5e172a6e61d0b17d7
MD5 4f8239ad2ac49aa1e6adb8e5b25fda61
BLAKE2b-256 a92a7d395bed1cc457f23755b315adb599de681c4fd9f87c56327c16f1c7b8ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee8289a0d57f69c8df11bae0a6b4d18bde5c2b1bff4e75361892b7d5afd71d95
MD5 724d8ec6c2670ca60d6a2b1dd5c276b7
BLAKE2b-256 e2a56c733fdc5d960a06263d3479b2a848ff92666e424c827e0b35951a00ef4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9cca9331b2c9230e363db9547314961d029ace51145f5645fac21a10ce241c1
MD5 ff46c05f71c9eeb8e064ea1a46720e61
BLAKE2b-256 4885366805e167c7d0fba7b016762fcb24a1189c797ee7ebe91c73a2dd321a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7702dcf98348e5617b66f47870e775efbe96c9fa896d2ba3a083ca08925f6732
MD5 6729165dece8445961addf5782ea5bca
BLAKE2b-256 61927a178ec52c69c695d4d32f5f0f45c5c700ee1575743dead0d248d843ce6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ef8664257f258ec792cb9c1b6f5a5f1a97235c3410b0305e8f92f4eb7844208
MD5 8c88c24f89b5b01e78a49aa376d8c931
BLAKE2b-256 6037038f4f9708b09f275d9935e76b1338aa171f6f85d9d67ab08ff6e157e9c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45251c24507e256fb003da8fa92a3f4dbef4e1d93c4361ae5db07f903c8b2cf7
MD5 9095b89eeaad8df3a123db83708d9187
BLAKE2b-256 7f2c5dfea6f457aabbb0b4ab1bae92646a781183e90a2739b3aaa6b917f105ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd937b14ac381d7de1ceee7c3ece719cdbf257bfcb868766e50a852a40bbca66
MD5 bedf0c858cc26e5ccae5d5bd8f82633c
BLAKE2b-256 522c34c86ab42ec270d325ef900465f7d1d4e6df4971e78adc797ec44d415f6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be903d87174a00eb55b762c78dfaf0f369a63dd2d01125aff59b365d34b5777c
MD5 c5522eb42f5b16565a910f3b36e8f32f
BLAKE2b-256 de95a4aa433b1642e86974ec7e01c1d4702268eeb795494f0727bf8b56013d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccf7aebfe3ab9395cc2e1875ee0222cc3d2ad9e1d289cb9a9b94aec7c0c0fdb2
MD5 4b9d287bd571a88dca37df50cd8f88cf
BLAKE2b-256 6d1d1e24be3ae00784a2a006623ceb0caf6f42e8977b365d33030e94cf87f147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d87f759a87868676222e6e998093118263928825c4d074e7224ab263fe196d4
MD5 004ad28c391c9048cc0a6be0dcde6863
BLAKE2b-256 c6fa853c9fc8bc81b1edf0cf032e11769ffbcc622a3b54ae3b2fac4cdc39718c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0446b7ef931d106b22f4878549fa49a9ef680b801a3aea66b3ff9212d9be09be
MD5 163b107eaff10a967c56b799b9144096
BLAKE2b-256 6f8bc1e74d9cd0c72cb9ba07211116957d37b146c05e8dfeea742e81c5884871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fe167627eda67ae129822d12bd15cb00f6d30cbb0485ba9485c9261fd3eaed7d
MD5 b4304c47552090401570d8df19038ae0
BLAKE2b-256 bfd70c21b85b8921dc9f082752987fddfe3c3dc53b4dee16f654b352b5f47f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9d6e0444c079c401f42f6ebbb0776cf490493f890cbdc1058c8e581daa4d4575
MD5 f801fc54a9b0ef9fd32b46f5017364f9
BLAKE2b-256 52dbff483ff419cce89fc506cb14f3dcd48b7f3aa56796d4fa3c238f7c655969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1352fb3294646f9d4b26a32b98f38533147de487a8a4bcc69a11853a066eb6a9
MD5 4785c2da35d12330d4678f4cbbc99374
BLAKE2b-256 540fe83d5f616a35c01879b8ab26f28293873c494a5334cf6687f6ea0df4c3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68b2aaf13d5a8e01871459c627af5ba263f1f2e8059bc315e8eef981e862863b
MD5 178e071f7aa564b7bb7dd71cd50e95b2
BLAKE2b-256 4dd17cd661b630aae6e2426ef9425f6f6cdc5b97d4bc1ff6ad95a566d16748c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a07c8b673fca4e9001a6621567ae81a222f4bb1e9e3bfcc036dd31dc3a02a86
MD5 b1a32e44a2a6cadb8a3805a887e11fd0
BLAKE2b-256 6a8101b0ee162cb2b637c20f1710c1e231feb026e227b4df37d87f32eeab2e02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05530a6384cba3e5650728c3fc44043179b1f60f7077da90212ccfef8d88655c
MD5 c0995c4a990639fdc9b6d7e01e408784
BLAKE2b-256 6747e01021f12e075bfa35a88bff6ac88ae3d7ea1e8058864a3d694afc55fb00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f199732eb5f9dfeba6063a6b69afa3633b79ae00652d821998e7992dfaf066e
MD5 564a27afaf049f62c27125b1531faf1e
BLAKE2b-256 6da23322a77b1095c5df35cc2380af2356ee70cf79ca4e26ec1dcad247c9cd5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56c88174ef3a19b0f8a84f0aaf24bc33d0bb3d2ddc240cf299b6deab315d9e1e
MD5 4e8d72091cd4d01f246077b5f5f27f41
BLAKE2b-256 fd9ddc42907df37b57eeeeb125d44125366c14aec48954e932b91fa8432bd2a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 783154ec1277fe7c79218b71d51333877f83dcad3d39af4b4eb1e328e9e45c64
MD5 6d43f6a94f3f513c928b9606485be5b3
BLAKE2b-256 949ba616707c1f2451649216d55e25f40c9835e0320d9fce8a104c0cf0c3918d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bf0f15f0596d323ea2a8c0ca00af7a9071e884d6565fc33f7742123fa3ca436
MD5 cc8abe6a90253cda10772758051395a7
BLAKE2b-256 48c9f67cfde95b659c98d72a61f1cc8a788a183c8ee0ab95b2fb5a43fc52caf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4df1a4c41c328f9a65f25bbdb77c55ac0a3443d98923bb1d0e492ac43fc4726c
MD5 76c12263f53a775fd7587b9b55c7279f
BLAKE2b-256 7c15d9a5da24b798fbfea34388c2cdf79b7105bd59d4f33d45276f42ba387032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b5f95369a966b33e2bcad420a661b7b830e832cbdebcb594a4deab7fca513ba3
MD5 38eb513bfa5a7553eaf7de0d7b7d7c82
BLAKE2b-256 6b1ff2d8e1cbd3c38103b5e7ca1cdc72e7697242bf65c3ab83a74e0e69e7c94b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4e6acfef42106db78bab71bd91eddebe03a718778d5f433c5303a4453446d369
MD5 4a3413b8504dbab6430c8f730d06f6ec
BLAKE2b-256 f1cdbaaefc65f6f8af7f7e32afe859fb24686717398bced408f2b13aaf4236bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc4dfaba79b44e3af9f670de61f82350de4d6572def5ed4f1e365e0f1ec45e0f
MD5 73d778f1718e8bb536400cf2729ae03e
BLAKE2b-256 05216b5739ff7f8dc692aa0afc73cde864d892c0a00ca10962f0d8a2861f984e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69bcc72e468fbfaa65214fa06f359c5b31a12704fcf51128e57ac2624243c76b
MD5 5f03ddfa689e8837919c1f3ef11f984f
BLAKE2b-256 ad34a1b2234299e5649a528c0e521ee07b7031d9d054194df2b959b41b4c3264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69ebc95ec31b9bbc8690fc6ddd1224fdfac6c841c1c78c613a255db0579214a9
MD5 448709d36104fc26a79f4fce0c67ad77
BLAKE2b-256 9c97beec9f25b1f326830c1f76068ef7169de99cd8b67f612c6578efecb3de3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38c2d2ccd7f78313d5c7ed68cef5a79bf884b145f0e4be97614eedbc480c36e2
MD5 dcade268117c739a3850bab24bd281b5
BLAKE2b-256 84008bc33691dbe2d087ef87fe18c9c8c90c26479051fa908561e242ffe92544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92918b12a582166b7cfbd31304943327d77d86cb6b8ffc9bc5384ef0d05bacbe
MD5 bd459558e71598d1345043b50c372708
BLAKE2b-256 63025a52dbee8a063061e5632e900c7dc1dc0234230ba85562edcea4c9bf877b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43136256856681c8b6ef5171e3c5bb363ed808cce31b70c68a250d7a8817388b
MD5 94bb9a3cc0a61e532ac429ac0fe0741c
BLAKE2b-256 c1a1688618a76110da7555a2c581b10873175157be346138ed4fa6a9912b531f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 278478ebf960cef2989dfa9f697908e48a65922bcbd9170444efd3fd38764299
MD5 419ac71ae45ca06cf639834c7645971d
BLAKE2b-256 05311b2c4f40c2ba07ca9dd08df630a3b1cb9e272e85e407ed618640c95ad48c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cb570ff3b14253859aa98de1c9ba615f77ba180352ea4a9d3d9ed9d83c35db8
MD5 4c625ebdc74fc9a3f24b70f608628fcd
BLAKE2b-256 ca29f223237b336f71858bfed4b50bb4ae13a4874d6f79c776eac314b6577534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92ce7cd0011de63616c9f78f99a01ae3830e9653b9748413a09919120d31f034
MD5 752ce298670ac855fd8708e9f629dae5
BLAKE2b-256 1a3b2efad7e37c43833791e646ede6b03cf2091f138cc4fead05a7be2aa33923

See more details on using hashes here.

File details

Details for the file pillow_jxl_plugin-1.3.7-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_jxl_plugin-1.3.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8e42dbfe4c6e1da9f48db5b827b45045dc2bbd7d415e980fc5933300514a56d6
MD5 a97dda2959376b7270f6be3660eb06e6
BLAKE2b-256 c57f50315dc8ffeb7eaf2a2227ae879e10bb39b8bf08fccc75209409da6067f8

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