Skip to main content

pillow-heif

Test Wheels docs codecov

PythonVersion impl pypi Downloads Downloads

Mac OS Windows Linux Alpine Linux Raspberry Pi

Python bindings to libheif for working with HEIF images and plugin for Pillow.

Features:

  • Decoding of 8, 10, 12 bit HEIC files.
  • Encoding of 8, 10, 12 bit HEIC files.
  • EXIF, XMP, IPTC read & write support.
  • Support of multiple images in one file and a PrimaryImage attribute.
  • Adding & removing thumbnails.
  • Grid(tiled) image encoding, like Apple devices do.
  • Reading of Depth Images.
  • (beta) Reading of Auxiliary Images by johncf
  • Adding HEIF support to Pillow in one line of code as a plugin.

Note: The light version pi-heif of this project is discontinued, 1.4.0 is its final release.

Install

python3 -m pip install -U pip
python3 -m pip install pillow-heif

Example of use as a Pillow plugin

from PIL import Image
from pillow_heif import register_heif_opener

register_heif_opener()

im = Image.open("image.heic")  # do whatever need with a Pillow image
im = im.rotate(13)
im.save(f"rotated_image.heic", quality=90)

16 bit PNG to 10 bit HEIF using OpenCV

import cv2
import pillow_heif

cv_img = cv2.imread("16bit_with_alpha.png", cv2.IMREAD_UNCHANGED)
heif_file = pillow_heif.from_bytes(
    mode="BGRA;16",
    size=(cv_img.shape[1], cv_img.shape[0]),
    data=bytes(cv_img)
)
heif_file.save("RGBA_10bit.heic", quality=-1)

8/10/12 bit HEIF to 8/16 bit PNG using OpenCV

import numpy as np
import cv2
import pillow_heif

heif_file = pillow_heif.open_heif("image.heic", convert_hdr_to_8bit=False, bgr_mode=True)
np_array = np.asarray(heif_file)
cv2.imwrite("image.png", np_array)

Accessing decoded image data

import pillow_heif

if pillow_heif.is_supported("image.heic"):
    heif_file = pillow_heif.open_heif("image.heic", convert_hdr_to_8bit=False)
    print("image size:", heif_file.size)
    print("image mode:", heif_file.mode)
    print("image data length:", len(heif_file.data))
    print("image data stride:", heif_file.stride)

Get decoded image data as a Numpy array

import numpy as np
import pillow_heif

if pillow_heif.is_supported("input.heic"):
    heif_file = pillow_heif.open_heif("input.heic")
    np_array = np.asarray(heif_file)

Accessing Depth Images

from PIL import Image
from pillow_heif import register_heif_opener
import numpy as np

register_heif_opener()

im = Image.open("../tests/images/heif_other/pug.heic")
if im.info["depth_images"]:
    depth_im = im.info["depth_images"][0]  # Access the first depth image (usually there will be only one).
    # Depth images are instances of `class HeifDepthImage(BaseImage)`,
    # so work with them as you would with any usual image in pillow_heif.
    # Depending on what you need the depth image for, you can convert it to a NumPy array or convert it to a Pillow image.
    pil_im = depth_im.to_pillow()
    np_im = np.asarray(depth_im)
    print(pil_im)
    print(pil_im.info["metadata"])

More Information

Wheels

Wheels table macOS
Intel
macOS
Silicon
Windows* musllinux* manylinux*
CPython 3.10
CPython 3.11
CPython 3.12
CPython 3.13
CPython 3.14
CPython 3.14t
CPython 3.15
CPython 3.15t
PyPy 3.11 v7.3 N/A

* x86_64, aarch64 wheels.

Download files

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

Source Distribution

pillow_heif-1.7.0.tar.gz (17.1 MB view details)

Uploaded Source

Built Distributions

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

pillow_heif-1.7.0-pp311-pypy311_pp73-win_amd64.whl (6.6 MB view details)

Uploaded PyPyWindows x86-64

pillow_heif-1.7.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pillow_heif-1.7.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pillow_heif-1.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pillow_heif-1.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (4.7 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pillow_heif-1.7.0-cp315-cp315t-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.15tWindows ARM64

pillow_heif-1.7.0-cp315-cp315t-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.15tWindows x86-64

pillow_heif-1.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

pillow_heif-1.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

pillow_heif-1.7.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pillow_heif-1.7.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pillow_heif-1.7.0-cp315-cp315t-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

pillow_heif-1.7.0-cp315-cp315t-macosx_10_15_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

pillow_heif-1.7.0-cp315-cp315-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.15Windows ARM64

pillow_heif-1.7.0-cp315-cp315-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.15Windows x86-64

pillow_heif-1.7.0-cp315-cp315-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

pillow_heif-1.7.0-cp315-cp315-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

pillow_heif-1.7.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pillow_heif-1.7.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pillow_heif-1.7.0-cp315-cp315-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

pillow_heif-1.7.0-cp315-cp315-macosx_10_15_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

pillow_heif-1.7.0-cp314-cp314t-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

pillow_heif-1.7.0-cp314-cp314t-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

pillow_heif-1.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pillow_heif-1.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pillow_heif-1.7.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pillow_heif-1.7.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pillow_heif-1.7.0-cp314-cp314t-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pillow_heif-1.7.0-cp314-cp314t-macosx_10_15_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pillow_heif-1.7.0-cp314-cp314-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.14Windows ARM64

pillow_heif-1.7.0-cp314-cp314-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.14Windows x86-64

pillow_heif-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pillow_heif-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pillow_heif-1.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pillow_heif-1.7.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pillow_heif-1.7.0-cp314-cp314-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pillow_heif-1.7.0-cp314-cp314-macosx_10_15_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pillow_heif-1.7.0-cp313-cp313-win_arm64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows ARM64

pillow_heif-1.7.0-cp313-cp313-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.13Windows x86-64

pillow_heif-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pillow_heif-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pillow_heif-1.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pillow_heif-1.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pillow_heif-1.7.0-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pillow_heif-1.7.0-cp313-cp313-macosx_10_15_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

pillow_heif-1.7.0-cp312-cp312-win_arm64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows ARM64

pillow_heif-1.7.0-cp312-cp312-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.12Windows x86-64

pillow_heif-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pillow_heif-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pillow_heif-1.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pillow_heif-1.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pillow_heif-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pillow_heif-1.7.0-cp312-cp312-macosx_10_15_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

pillow_heif-1.7.0-cp311-cp311-win_arm64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows ARM64

pillow_heif-1.7.0-cp311-cp311-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.11Windows x86-64

pillow_heif-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pillow_heif-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pillow_heif-1.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pillow_heif-1.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pillow_heif-1.7.0-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pillow_heif-1.7.0-cp311-cp311-macosx_10_15_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

pillow_heif-1.7.0-cp310-cp310-win_arm64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows ARM64

pillow_heif-1.7.0-cp310-cp310-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.10Windows x86-64

pillow_heif-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pillow_heif-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pillow_heif-1.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pillow_heif-1.7.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pillow_heif-1.7.0-cp310-cp310-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pillow_heif-1.7.0-cp310-cp310-macosx_10_15_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

Details for the file pillow_heif-1.7.0.tar.gz.

File metadata

  • Download URL: pillow_heif-1.7.0.tar.gz
  • Upload date:
  • Size: 17.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pillow_heif-1.7.0.tar.gz
Algorithm Hash digest
SHA256 1caa5a97364665d45056d25be302e586c39df64ee42ce55241e3735e089809ed
MD5 b719c4a9bcba6a32a8844131a9fd5453
BLAKE2b-256 e8be0202b6492a225ec0a6cebc615fbf587179a72cf3a7fa91c0753cba7b986f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0.tar.gz:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3c9350ccbd854b67736f84ebafaa4363d2bb45cdb66e71c323032aab166e8633
MD5 dede7be34f064ba7aadf6354df4fb91a
BLAKE2b-256 0b2273bc097c0bbc571b5f2cc4596290528b220dbdaa4217e3d7d2658f1af68e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c6e5ea1084caa5ae9f0571eaa46cb8a584ac32943fb8946b085bb2bce4aa052
MD5 684104dacf8fe06537ba06f8ab040902
BLAKE2b-256 f22167716eba85d369c177f5aad65b23ac89db0ff758a840e0a6519de55cd9a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc5f92590ac3be371cb5af448918e33e2aaf7770a075e26f5bec10d9c90b2c61
MD5 3b128e21eab621a470e0f262c701fe14
BLAKE2b-256 2633b5594f4838765c0d8ea247dce5ba5f6631fbda6adac24cc349fc80d667f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ef4a6dd7868f1789d9e0496c83a567903adc947a410338504839b00fe755484
MD5 fcfa8a56520c91a8a3d4215c7db95734
BLAKE2b-256 e2f62fd98449b811b391e200500b615c327f5cdaa559788e3ac81b69a694af01

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 28e9d787079d8f7e937c6482a3cb2cd816fa23a763d3056e563a8f8a9743c0a1
MD5 41a0e625af6bdd55766460afff8d52b2
BLAKE2b-256 d128ad58e9e3be95105658705eec3b9a2b1dce7ad73d543463cfb5e1e483bac8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 728a2a80eff96287708a9030ea47fa161dfae0d6308551ac59cd8717e8339d9a
MD5 b58acb037ddb907d0d87bdbfd0f8b91b
BLAKE2b-256 db1aac10f1d216c15cea044cbaf9e583fe7fe5682ebc2285a1d79285e8fb55d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315t-win_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 0480dc54e6000fa5a6ec3a9749bc1dfb18e040ee36b355e6c2bda9f5e62dceea
MD5 26025f24221d47bfb05e47bd08e01a1e
BLAKE2b-256 17b8c338dd8ad8da2f01b2061080713dfcc9f2b06495c21a73f06a11a6955baa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315t-win_amd64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f79143e66081c5e4433330ddb0908f494d7aab0034b7809b9d51ec4598583793
MD5 233ff721ec1aedfe18b3d4e194a301ea
BLAKE2b-256 ff2100f694f2e58ffd4e3f2b50913257c7a344acef984b4760828c46e932e619

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2dc2a387f5d73dbb1046f8e5cc03de12a98fe3d24b279bb820581cf8e578759
MD5 10ba6ed6fa36606ab7fa0bb5921edd70
BLAKE2b-256 05a8857319381b23465a383be35b6eb408f0666b55793e3ea40e6044d3a2b3c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80d168b3337ac5982cd3f78458301da63ab0f6089095ad99cfe95bcde3c5422d
MD5 901788217c6f0e6c1863f43bdc4b1fa3
BLAKE2b-256 de00714b375eba2bfe293076c49e0dc74fd7dd9f021a23f5d30cbd11f7fe6174

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec6fa696e1a8ba618c74602c6dd42020364a9d4ab65f3b715063a734785cfa32
MD5 c88651295bcf0c6073639eaa9c8f0f73
BLAKE2b-256 3a5c602eb28c80b9f5d4f56a30d0ae3905f5e494f5e15e24363933c0a741e1bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 692cfd7c3a66bb8acb8a32f784d529261727d42692cb068e2e33b28acb3c698b
MD5 c12d32112e07b8561a40a842ad4522e6
BLAKE2b-256 c1c5b1f1762fb61481cd49f6d8013820ba1073e98b91f9a324047d583582b981

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82c06a57830c81c4c374c9f7cd82e8f90a1ef70392d4d03e714c8d33dcaac8ac
MD5 266a3c122e89f3c9f5e20e2041183722
BLAKE2b-256 301c7754d8702db4b03038243c7cc814be4f41f3949742b87b7648531ec8d92b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 8a5934112075dd9de8747ddc1a3a6821fe6a53dbafd0e2409b7efede87ca184d
MD5 31aec7577e718d8dce86877253ed1eec
BLAKE2b-256 8a7f71cb93a33126f7721d325beb113042e2029028bef7d68704ee00d8f87c9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315-win_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 3c1f67683ebe28e2ffa017b3a653a0f16441b2e446ca269c6e92cb53061c8eff
MD5 13700a378dbb9659431439bd0903f29e
BLAKE2b-256 bf54d96685598622e3e5f740eaa8a94e6f87cb5b60ff87638f53c46a2d63117e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315-win_amd64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f599d543d319156a445a7784054467e70c16f7da1753f35ad6dc7805d4b6a4aa
MD5 85ec481b3549b8d66818ab8a33e59da8
BLAKE2b-256 832a0066619ada3af41ec0cd7dad794ff1046201747fcbf21b70e4ca285df43f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65a441dd236440816783875685a7d46f6ffc5ef1237581bf2e0c28c397e19b63
MD5 71c2426470174e0bebfa6dca6bbbe724
BLAKE2b-256 7e978312facd4dd87577acfb2ac2c3d57c0b16aff402a31e3273c1d4cbc5430b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90c25eeae139de6b006e34a53c8fa69254234bb866e95684b8b905f4f84452df
MD5 520191dd02d46d10cd3279eebc50377d
BLAKE2b-256 9db18e39198c99017f962507d593a941057e33e93bd526cab47c79f877ed2420

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4efb50275159e8a22783cdcbec278e69e39be49e344b09ca11e4b2fe9e1f504
MD5 f2a30cf69d1f158152198ad438d8c8fc
BLAKE2b-256 d83869437a171e5b42fdece78f8ed8791b9458c58ec65572301e03b672a5a29c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2f2b9116924a676c04f1e825758d73475d162bf17602bbd2c2ee3d4380cdf99
MD5 d768b4c8affad0b6e886f42b540a4247
BLAKE2b-256 dc8b561a1ecd28623342b52622f96ce5661c42b0f89ea6872c315ee80b3af89e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e4a1f37a71e870477ce23ab0232798e811415266c7ef5923dcd68ba4742a9af
MD5 ef1f757c667093ad861f88fe340bac8f
BLAKE2b-256 ad209c71eea91927ca295411d0ea60a909a41d20de11a00fe09221fcb05a070e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 6f211efb455f3daae0ef9c9615327fa864075ab24b664dd0734b2c7ac2c8572d
MD5 99434de4bee0feb82fdf16a883994503
BLAKE2b-256 fd3721e8bc38edc447c7dfa0bdcea431cf5f1a58a71736fa9e12462fa11d21cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 988c0a49af25d856d2291cc5e86562d254a0956352dcfd4e2928c7e2e56dbf17
MD5 a22d706ddbbb0f4407429fb2d6e1ad08
BLAKE2b-256 0b2d29365ea5bc00b0338cd2126da2eab5dc70fb2ea79ffad25a775b10c118cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f70c05d9f732b54ffd226750cc0c2e0d89e4cfd9e19eeb88971c899406ecc98
MD5 e76c053cd64ed80d37a12b292546f68a
BLAKE2b-256 285a0a836f5dac24a517f48b0871e31d234792246aa6e94fbeb2210da84b5b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7af31a970c620b25dd144e3094ebf74162e72e08d367a1901a80ccb321859b2
MD5 12acba951f8515283854a29780123090
BLAKE2b-256 df28233c03f61e214ebb6213a48fba1ee4a17202244e1800ad92a884d02500ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2444f95432fd3556a915378789cbc1282e1da55a7f17633e8d928fa72e8fbc9a
MD5 6b80a8642f0d88ed22af5b9ae1e7a7e2
BLAKE2b-256 c1cfbd34565fd81a32ff930894f2823bebed27a44e0954224f71d5ec597b1518

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52513a022d3fcf14993dcd7290df9b43bb92b5aa8471db79bb680b62c8378b7c
MD5 49edf545f7829c7e2e1dd0763dcd4b9c
BLAKE2b-256 6f43e400e019d3e36d1c7e13c45633b8c36b072b378825b103c60d28611ba5b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1494eaf01de9b5571bf064f14239e0036d59e9e0db6c99ad47b9a216f6187383
MD5 28bd3df9d00daf4b60566dca8eec7a53
BLAKE2b-256 b64aeadca94ba7e38dd9257a6814e71a30c8dedde54cac7be509057ff2d1bdaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 43d79fa16ab142a9a48577417b3efa6ec2d7a610b8a5aa3c77548ecfeb30e473
MD5 e1af119d89dc9f1786999b7f4bac366d
BLAKE2b-256 9f5ae5083fc7dc247312f717dc418b0503d3cb6b83b2972dd004ba36df6fda99

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f349f9591a19ef4ade9155595b646d3ce907fa95a33fada1b1cda89a441c305d
MD5 dfa4d17afec90b80b20bbe69e413827c
BLAKE2b-256 c8cb08c25c14a9d6cd64db7a303978c5d2994d5d294f233fcdb14d0928139569

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 21754c373ae59e69fcb1d568f64b5d7c8140f61d5114289dd753dcb2c4869c8b
MD5 20f21c6c3488745e8b270f70b762663f
BLAKE2b-256 02d63234cad7323d3580fb15df02c9992b9a6d7b5878717cd8bc5fca526f0c28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b7a259056bd7de5a5d56799f5ed01591d33c1a622aef18be8562db7979961d3
MD5 e04b31f8f63cd2be7b14fee6831b3715
BLAKE2b-256 cdb64ce87892f1db087ca4aad720c8694912b0cc4477ad27bb5b45a40caec5bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d62d25bb7d2db573b9386d1624bdb4bd7ba1b8b8aeb7989af06ae33b9333bc4f
MD5 f3afdf01e6cb5b0a965122a2c1fb0f0f
BLAKE2b-256 64fb332ff7e2ed90c8fe87a799221e25d762807073b2e6678bb9c6521cd7bc36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 850005a64f30b1905866d4ee4c99b09e3b4d5358873e95e64161bcc45ee9f406
MD5 a39da3c5b4b23ec3d61e8e61bf38e5d9
BLAKE2b-256 c120fe24ebe67fcac47864b2966620958c21f403feda4fd37fdf4a7108134c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09e29bd7d1cecfcbdb9041c3e2a2f1d6f9327ec3804d9035e2909ec88578f25d
MD5 ecb0850dad313f0f62956ea754b19f26
BLAKE2b-256 5e04d4481661a720860f48998575916ce5c19d62369b90155a58bbed3ea49e1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbb155e2fe0c3c95414661b48bfc6972d53f94eaa487e0ccd29dd3ea17725b1a
MD5 8e75ca871db9f53cfa0591f1e1cb2c62
BLAKE2b-256 edd23ac9f209ea5adebbbee6da55e28a3017b672370078feb5c2940526d5a57c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6188e8a4203be50366e24345e8fdb50f8f6af54ac6b1875a2fe21b17505e01ae
MD5 04b50668349283c62fa5008d81b33014
BLAKE2b-256 a7cf810c2ad915e017cdc129579093eddaa00017143de227b93a955ce97abc8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 429c975ecf438ab6417efbc171e9d601701202afe68298fe6055286583dfeb6f
MD5 431a509a327eaa08835a6f9162e20de6
BLAKE2b-256 1382d607e549305a77be2a0b51308cab7a3a52db4801e47ab52ba1fab5664b53

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 722ccef14e47a254ef46fbf60863b8290e032d0ac998204f8e455e718a41cc64
MD5 a1a3424d3fb6dbf10a4ff79412c03242
BLAKE2b-256 2516e5a07da98b345f11fc9045b488a55442d4562398c839af939e1adf8c2c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b8de90c07085a45182ca214911fbe211af0fd1c65c78deda108b4164d1586df
MD5 2b07b03ff60a5a517c0120b8e86b10d0
BLAKE2b-256 62fda225a80f3b545c2aeb8eca8cfab3b98267aaa5c79df7b0908a17a99e95ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35d6be7a1633f8ebba25617b45f35893e5e4200f944a223090fd6f5e529caa51
MD5 3ced340253ae6fe31f4baa8e8224ca6e
BLAKE2b-256 5ca2488b9e0d072b20dd34844e3967be7b22c5e9600e6af927a137a37e90c6e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25978cd8b765e30901d6f1fb39c5172ab9d9c00e1b1b39430e2243f3b4f3e9d8
MD5 c73f6fb9bc8c9386d46bfcb3a807dac3
BLAKE2b-256 6da0ed893eed7d7b6b1cc160a4ddd56d7c2ac1a2122d7c2e530ecd46c1b86c3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fc18bacac527936118edca386c19b44a5e4e492b3d484284f990f47c0ec6443
MD5 9c1758d86a8c3d25262bca558c438ec7
BLAKE2b-256 f59cf2ce4e20fcb898757c0793e56a1696e789a209e7082b9ca4c81e07089d0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9912a8301d469012fe2ba1f2da539b56de048aab3db649857b4ab5fa9a07919b
MD5 ac4250a912f15163761ecd99d842e8ab
BLAKE2b-256 0d3259dfe8f1799eef6a442fe5007e5c199b1961d33c7a56c64e0babc9d4a95c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2c602d5177e46fca3e0491572d76ed4de66c63ac5aaef999e5b3a4c1fe101395
MD5 fdf22d25f0bfc75df9126a813b9cefa1
BLAKE2b-256 c456f5aa099875cc881aa19bcd1b8c5ef3d97376a05bdc3b56487e49d01dd9be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 78d77d94456d95444683b4539ffe3946554bcc25cad97564b60ae5cc7d22286c
MD5 402f5abdabae7bf890bf32352e0fd74d
BLAKE2b-256 adc326cd5ee278b21819c14dc74deb9b1b0002ec64f127c60495623a0c650549

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf8e46cfe653a9a43830a7e9993ddf70dcf3877c474b7f1c1e8364d0c85214a5
MD5 38dbc623e65cded15941520fe0e23031
BLAKE2b-256 e6f75bf5eb718f0c4dfb844f012b787943d75ca1bc5c1eb83bfc049430d86080

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b156781538370f3b30a3d2e9899d71a5bc1c89c7e5264123e55d21153e0aa555
MD5 3fdd688e59c0630007d406eb5de63bfd
BLAKE2b-256 920d272a1b5ba521dc1448a434a7a043861b0a9b5264e470d40c6cfd02efa6fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b37df3c08df3401085737e7ed68026398046eb01a8850df27b7a461e9045ed92
MD5 91ab0ec313683fb642742aa0d94403f8
BLAKE2b-256 76c4b4cc21989894938e49b20a6c58e14719ce8a8b2991b1c297d92bf9525442

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c4751fcffb55f555a7559cfa6721bdfb30f50f14b7f0cbd2b1cba3b5d5961b7
MD5 2880b0957bae8cfeb6e06b5de45043a8
BLAKE2b-256 3a4db7be3eebd23e042b738ee57ed211e5fc0d6fc037b24e0047f99e3a16ba9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f23113505672a6c55e88d7c96cbd82f3d8a5f902d31a3c071be96a9a7e98c5dc
MD5 177f34cbabd3361ff4b5bdc674522bfc
BLAKE2b-256 7b175bc352ebdc2924edcb3798d284416dfb77f5d90c7c08273104bda7edeeac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1f1d001576e4cc2a37f1a7a3c06b3241e7966be16670789daba428a3edf8e30
MD5 9ac0a596ccbacada55c555aed5ca27f0
BLAKE2b-256 bc4f15a43142f42d29e302d3054df18bdbedc744af4002b490deea74cf543ce9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cba79f030caf9e543b6c9a7c77cd8df465785bc6dcc1361b3fd5f905b3ca4e01
MD5 8f32c45bc74e9394ffbd82840161356f
BLAKE2b-256 6eeeec6ee6fc94088f213ab17738966f9670e832f18a6b5d03ceba1e74dfa653

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c6111f39c197a78dac0cdbd19bf85f45dfea3847dd57f39af7c28ac538bea5b7
MD5 fdf45880a853c10888de7fbec6fdbfb3
BLAKE2b-256 1f5144b6d35226091f0c25df12d3ce6b50de938c5b21f5e7dd3016270e0c85e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8654b111c2d5cacbb603dbb2a01931421489a26a391d810b81400e4f97478650
MD5 9a5fe61772252644e94a9e06e084e90b
BLAKE2b-256 693a6af9a351fef29ff408223ea930e2be58ca8b3ee1e318bea7359d8636f54b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9abac47964c29585f8c7914ec8cff0a010723a0a127cf6efe9ee78a7aa91c2a9
MD5 40d571fe3de135f7f98ba88fad69b920
BLAKE2b-256 00d924dc10716589dc748d3b48effbc8f3c5d974fd708fc404301a5f54593118

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0049ecf390e7915e753e585651d22134284176ae583e54c4b863330c838a9835
MD5 e0c92779a255af5b6b86fe07cee0d961
BLAKE2b-256 8ed46d72d93d2ee681c9b2ed0c45bc21a20f6a7ae2235d62a6853537fd3d767c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7b31b45bfab2b3f6893199bd13387283445ba656d2febb13c386fc749b2438a
MD5 9c4685741a96bd9df3899271b54186ee
BLAKE2b-256 975e7d3e1f4d88b811e43df85b5094238d43e093fbf82589a8a8dab413130cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e7280cbb6db614a6dd88b71c1d7eb7e9cfc2e0d58e733afdae85e3227a63306
MD5 ddfb36b7d12bfed454bf92198ee05f85
BLAKE2b-256 08be8c399b9ac1af825e1b45a57b65f7955cd5918fcd50b6ef974958934aadb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e33fc164268d96ce119e2bee43311bae77a7e770f3b6fc38deef082adaee5b3
MD5 13e87931d43292d53e9198213a4ff445
BLAKE2b-256 af97a3bc9b757a80beb7dd1a341e246070587f082529e27b6692ccb45cda286f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bfa2e9607d13d6d2dc8fa14916bac5e8793bcebdb7357d41a7dca6754a6d6967
MD5 36aa50d2cbbccfcca78575604b7f5e91
BLAKE2b-256 3e4b5f2ea81e48a683423d1eeb4eed1052b4873c6b2a16891b1e87ddac4fbc8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4c2a303a5fc018c0073e3c92480988cf7aea8e646981490b89bfdf04c34b830b
MD5 22a9a399deac694716c88f1a81e94f74
BLAKE2b-256 0bfc922627816ec81d41d9333a7e23d42829ab54b12e0af45bfd4bc7dd05e6f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp310-cp310-win_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a5090fe4f28a55be1ab256b6d9089eafd5cc3658ade4b0b5168b3b7aedf53c3d
MD5 138f96f2f089e5b1f93b5549a33933c9
BLAKE2b-256 a1a9fa810bd1a85be0cef1f3fbc8fb2f81a70fa77fcc5d640940b541e283f1c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b64425e62fb2cded328a5711aafdc2dcabb243055cdb418cfc00d7555d49582b
MD5 4dd97d89ca62e979c8050fa04bd47f08
BLAKE2b-256 2195fb09bc12f57ea37a78f07492f4d94c9a647643f14d1af1c1edb4351f90f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 793eaf2170d28c901499b7d3e156dcb6495b5ffdb5afd4eee257c321dc1711ff
MD5 0e4e2268297cd78f8be0e0fffaacc69e
BLAKE2b-256 9331b80f6c813509c3a2d7d74ce89006f6b8de592496e7005627914593c6840b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e533bb4a167bb79db334bc35060e979e46aa752921a056f308a6daff9b6cf5cc
MD5 3ddc549292adec46b7b7834eb21bdeac
BLAKE2b-256 c7a4cd598d9581f8de3964c144052d800c77bf820e2518a3797aae489551e385

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8bb7cbec62c31bb63236a4c0fadc0c7000953e48501a2c069dedd41ec7577eb0
MD5 5f29b3b2e7b6a5f0a54d658b676086e3
BLAKE2b-256 f97e14cd596293ff79f19b528b3a726a02c9b1a2af724a510af676a260b6093d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d419498c3c2f946374e05aab3367357acb41a50e6610515bf850e65dd61abdcb
MD5 06e20b1e2ef133da7ce973f9d826f178
BLAKE2b-256 9a69405a31ab9e84eac94a43297bff619aa2ea3fb7286f5b5b6eedad3f98cd39

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pillow_heif-1.7.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.7.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 76e43305bfe756765218a7863530699a6e6713b81ddab6c9b906e8f639ff7ff5
MD5 f79061345b07bd05587519707a9ba694
BLAKE2b-256 26bbba2548959193080a900230f1a0f72486aa6790423ebee38c89f72762e572

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.7.0-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on bigcat88/pillow_heif

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.7.0 This release

70 files

1.6.0

70 files

1.5.0

54 files

1.4.0

48 files

1.3.0

48 files

1.2.1

41 files

1.2.0

41 files

1.1.1

53 files

1.1.0

53 files

1.0.0

46 files

0.22.0

46 files

0.21.0

46 files

0.20.0

46 files

0.18.0

52 files

0.17.0

46 files

0.16.0

51 files

0.15.0

51 files

0.14.0

51 files

0.13.1

51 files

0.13.0

46 files

0.12.0

49 files

0.11.1

50 files

0.10.1

50 files

0.10.0

48 files

0.9.3

20 files

0.9.2

20 files

0.9.1

20 files

0.9.0

20 files

0.8.0

20 files

0.7.2

19 files

0.7.1

19 files

0.7.0

19 files

0.6.1

19 files

0.6.0

19 files

0.5.1

19 files

0.5.0

19 files

0.4.0

50 files

0.3.2

49 files

0.3.1

49 files

0.3.0

49 files

0.2.5

49 files

0.2.4

49 files

0.2.3

49 files

0.2.2

49 files

0.1.11

49 files

0.1.10

47 files

0.1.5

23 files

0.1.4

16 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page