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.6.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.6.0-pp311-pypy311_pp73-win_amd64.whl (6.6 MB view details)

Uploaded PyPyWindows x86-64

pillow_heif-1.6.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.6.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.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.15tWindows ARM64

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

Uploaded CPython 3.15tWindows x86-64

pillow_heif-1.6.0-cp315-cp315t-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

pillow_heif-1.6.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.6.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.6.0-cp315-cp315t-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

pillow_heif-1.6.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.6.0-cp315-cp315-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.15Windows ARM64

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

Uploaded CPython 3.15Windows x86-64

pillow_heif-1.6.0-cp315-cp315-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

pillow_heif-1.6.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.6.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.6.0-cp315-cp315-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

pillow_heif-1.6.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.6.0-cp314-cp314t-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

pillow_heif-1.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pillow_heif-1.6.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.6.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.6.0-cp314-cp314t-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pillow_heif-1.6.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.6.0-cp314-cp314-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pillow_heif-1.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pillow_heif-1.6.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.6.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.6.0-cp314-cp314-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pillow_heif-1.6.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.6.0-cp313-cp313-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pillow_heif-1.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pillow_heif-1.6.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.6.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.6.0-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pillow_heif-1.6.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.6.0-cp312-cp312-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pillow_heif-1.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pillow_heif-1.6.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.6.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.6.0-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pillow_heif-1.6.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.6.0-cp311-cp311-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

pillow_heif-1.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pillow_heif-1.6.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.6.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.6.0-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pillow_heif-1.6.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.6.0-cp310-cp310-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

pillow_heif-1.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pillow_heif-1.6.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.6.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.6.0-cp310-cp310-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pillow_heif-1.6.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.6.0.tar.gz.

File metadata

  • Download URL: pillow_heif-1.6.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.6.0.tar.gz
Algorithm Hash digest
SHA256 5fb08da332fc44521611b646a3aa2f3455c14556c968a23723b76ec2ce8ade21
MD5 bf731bffa42a2a9564a7bf4946b85905
BLAKE2b-256 6e15f29791ccff3b99e0e040b84642774662b498e4cb9f031c2dca1545c04a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b7ba4b0f1c7ea2e2388ebf28fd151a145ca3bc6dd0c79b08480b01189cc2546f
MD5 ae3ddcc316492800bf59603b9507a1df
BLAKE2b-256 365a6d39d1a73686ea75d9cb01ff7656a8ca22231a361884c64e95d31ce7cde4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 592f0125548e5476eb062dbccc4469828aef1b736640c09d4456ceef6fce446d
MD5 0e401af9449c9bfdbe059d7e6f1a8313
BLAKE2b-256 e0525c5590388c9c417865c96178724faf4251228f60f97cc6d61835d65dbad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e893a1bca4f9e1b55a6cf0c22111c566622c25260e8d2532f4b4a243ebe0ef74
MD5 55b05450b6093c9b7949355773ae1d41
BLAKE2b-256 a9d96b826df5d6ec547a23e9757fbc85c26d604acbe3004cebad8e870b2ae953

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8427027294c7ece44ad6d6d5996d85e163363578f97a44c9a6e2a2adb6d98941
MD5 8abe78a7d012508eaf945ef24f45b376
BLAKE2b-256 59d2846b7ef8353790e549164faece3256dbdba880183bca1e5ff8104311ce3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f9b71b16fbe0d3dab70091e76dd9e16606bbdf68be45f455e1a922c346fe56ff
MD5 25e1ccf822f44f039ffb0bcad0620021
BLAKE2b-256 aec12202345c3322e1a19bfb442b8f50efa5b8bfa72e915bebf5c12ed8a0eb7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 2d6ac2d52effce3a575f506d956b28a8a8842c905ef99134371c4d19a19e923e
MD5 99aef390a4c8bdf6d4380a5080842e06
BLAKE2b-256 bc8e39cf592c18acdd002e72386124bab8bd8d754a769846ac71cd2c1679028b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 588ec4ba2a70291d38f20f3bd30cc4805764af7a27e9429b16687568a9257728
MD5 2903a6cf15cfdddd49309b774090a92b
BLAKE2b-256 ec8c0681ce62e7bea338a3628b5f01f41d295164a000208eb3542b51f5f54a2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97df22c6a1c0d91f8683100978e3ba18a90fab55181209aa493ccfba56edf131
MD5 bb99513e906b65183d64235a00d249a8
BLAKE2b-256 99377c95fe2b0cfd21149636e5c31a525997dd98d126b118223418e5e9636e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf7c6c21973766d4ad25c3b9e94ec49c00f15812262c55f07fffd0dab4c0b50e
MD5 ef5f8a507aa1189ba0eb8a1df0c0253c
BLAKE2b-256 49c47579799befd255b90c21114b3f0ab345a4a18dd6667e03adbfdaab0792ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b925dbc0394319ef048de4ebf08895fa27ed214dcd2501ce4d8094ee3dc4a01c
MD5 699fa09bce8059f67272326fe78ba6aa
BLAKE2b-256 9ae196d403bee44ae5a59ff1794e97f880f59e704f0368eff02e1e3836db1139

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a73a302c9d37360172e2a8d8e6d6de3a3725bb263f35a81dfa7187a4821e27f2
MD5 e24590f8fb3d2e5bd16da90523b261f8
BLAKE2b-256 5cf6e7a0429a9c89ac897c2db9882fd0e7f34d0650b7f71e55925863897f63b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a22ff6df37d0fd2d6d2d71c00282db2feb304cb82d077da33dad7d61074fb3c
MD5 f2e2e91269ff85f7c07dcbdbc9ddc055
BLAKE2b-256 2b72dfe8291d8ab28aeb7ca53d453a83718a527974231ec510a819053da565ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a7fd8789ed7dddbff922f624398ecda88a2b2b3890477f81cf89255242955aa6
MD5 c8272ceaa015b72a696926b44af86251
BLAKE2b-256 5b04463d732b044db9048d90992ab5418a55f4bda7cb8378f23fd3a8c7052c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 497dd5a366d42f36468cc999f9d095ddada167a19bc922866349d2df74448073
MD5 62e3666b35aca8f1129c7056ed037869
BLAKE2b-256 c71eb786330febcd22b4482a059a83590ae24d43214256298dc26f8a643ec639

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 7ac0601848596b97f2ffb6c954c581c5b97ad599d6af7739630eb45c8d540554
MD5 8f20398466a4a38f3070f5f63ac6ad97
BLAKE2b-256 f2b0649d629c140de18f51779d995503bad3a944525607d96a3cdbc74c9ae1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5fe169f9ccc094f482fae1c22b519dd867150775bd7de31dc4cc13562a3b013
MD5 6a65a7745d321862c29577dc6374c4c3
BLAKE2b-256 493408a6a937cfe1b47166fd4f251022270672c2b61d4eca780356444dc7bb68

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c5397ff8c11c12ef51f0d657a619460639cc0b568caae74633dcf7ffb3cb114
MD5 1106a45c7d1ed125c3d7240ccefc2930
BLAKE2b-256 9cbbd73104b428d65009a5cb7ff68016461f8e3ec8e0e4776a5428bb4c659d03

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75db44bbdc6c7485a701e7370a0863f9ad40b4003bcd6852f94975c3b852d3a8
MD5 c1edeb46cf6f4d9e1df3288fea1485ee
BLAKE2b-256 67411b8638d22e2eb3be138def13bf23aca4671527b380e7fdfe023cae8356a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc7a2bb84559a67a53ea075123c7b994a55224fa11177849fd399ae5604d7b7f
MD5 4f86fd7487335e88a0f8ad59d7fb2dd7
BLAKE2b-256 1451d3fddc25af82740feea210f26d3986d7389d4003dac26b5ed38962f882bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e587d24ee542e91cc2c71b2eccc0864b16786c06b16d36c9b41199573488943
MD5 743edf8a325f607f9bf214f6a6661e14
BLAKE2b-256 c976ff78254277f6db6844ea0775429d1a178ec0a1181553b57c8316dfe9341f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7f857e83367346fc6cfb6c6292e6e6b1c513acd721a31a4d598d109621408b56
MD5 3322deb08ea3e1171776f347d0370045
BLAKE2b-256 20a4aca04317430c0f88ec3b725de275f9c1973e897cd2c7445bb7a134d4e019

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 005ebcbdf1dac09a9f03352bfa4a325db631e42e17b5affb7d44e73bbebf789a
MD5 be1a55deda0081800ebd61b8fad6a7a8
BLAKE2b-256 6fa8b87292ec95da7996a1a7ae848e025bb27573b1e7631d722d4c2d7f3380f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e1bde55faaa9106ed9746ca41150b87cc549bd37ebfd840be9aa81feb9ba3486
MD5 156e258fde88979ccd1bfe508073ee62
BLAKE2b-256 447ab796f0fae7deae69b8505940311d060b25d08e685dc4bfa7c8d45f947b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 288cbf53fcb74c46be4af1c602d8d704cf4ae2d96973c81f79efb4bf95a600d8
MD5 9a1eab42886af960a396acd1be501a51
BLAKE2b-256 5ebb3f4cff1b399eb657c6458fd37d567d51680410650babf2cc951b2dca416b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42e1e2ad6cac274cd68bb14cfe591d5f1ac24246bb01ef7834d4e34e1a33d4ea
MD5 678eca6e2c25c56dd5ff27b861066479
BLAKE2b-256 7b353dc97c8ded88ca0d585895328205c6b20590973781139769069232bb3c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 269c704580cc9f55d58e088dd928cd10adbd590d6246b84376bc6439f53d93e9
MD5 a28f5622e4e4e46c182280e608a56a62
BLAKE2b-256 7c9a7d39338df5296f470ee72af579c33e84952b0db2a1fc08d4c94bd49b5258

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a16afc771f72fe3ffb7731836e98abf1e11ae0381d481f32e61c8a1cebe4c87
MD5 ddc919c4253217101a9873e460efc730
BLAKE2b-256 64301f27285c80cc9c3f6126019398f0d5f0d553c8af8d78411068709e64da42

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b5f89103352d3d93839f237a0d86c161349b112ad941719d89bce11677fa425
MD5 5f251a143c8979f0b36977aeb13d2a8d
BLAKE2b-256 11971f049974e68130462ab423faa8e3c3fa0216793b112dc94151f995c3f1db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9ec24378b3cc62e3111633abee01789e1934496144e9779d7d3a9ca937b25397
MD5 1ad3c7e82d7b81f7452bd6b58cc292c9
BLAKE2b-256 9a275c40bbd96f64de52053658299f6f19b320dd629c1b454f215f3c3500bfb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 460d8ba81da35a6da83a31f888e6590a7984ab78ab5c75bf48875e0f0b6cc8bd
MD5 ee0e1f2ac8e78432b6b6db148f342570
BLAKE2b-256 50d558fa1c211eadafd1a3394a372f833193bbb778ec41364256a28792491f1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cfe6bc699e3f5e1ebdf8cd253dde4d79278ce9d64c0a3a3824786d967c1cba29
MD5 8502ef81174d00b8a4593bb9039292a1
BLAKE2b-256 6879e8c629ed0602c8060e937fe13b9490e42a1ac4868d9b11e1506d40cda6d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fa0d62f8dc6c9f63766de8e12ff5d1a0eba081994a4a50455fc99833a0fde42
MD5 16d56d284369a28c01b81e36851e2eb7
BLAKE2b-256 9af0d46b658b83e7d18fbb3aebb6eaf78f03c32efd00d0abe4f5277c4d6c970c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59285666c8c46cb042f7cdda2a86bf44983f14f2cc8ab9d4e20338b209b5c2e3
MD5 ecf82c9394f0d0b10f59a23466e966b3
BLAKE2b-256 193766ac2209e4d24ba2eea6a3e548cddc5fc13ea99ebfb629d2aed688bfc551

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abf0333681ed6af37fa5085dd93c11046ada83cc0d5cbe13856923bccffdc42a
MD5 0eeb52e43368511d1e70b99473743168
BLAKE2b-256 58f3bcb6d734192211d5354ada0fd39c0b362d601da9c899bf9f76436808e614

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd5c410acce12104a4043c3a3ed84a8b709da67274dca31a5da2bb237d46f108
MD5 4100122c650f53f51c3a9f427121c226
BLAKE2b-256 0948a471a005196132a7191ab7d25341367850bfec012cf9b0299ed2b70d87fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b8f2cad0b46b3b40a9c6cc6d00d837c295cf3c2abf2cd5cae84c1f94f91bf38
MD5 0180b9a1c6433d7c2fb0da7e10904019
BLAKE2b-256 c521c915feb0bce1c6c4f0eabf3dfb9115e105ad920165d5144942e6212d98b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0ec37d8cc19f64f8c086bb17f965d797e44616ee0512f3216d86fe22864aa1f6
MD5 a1fe22693842ef9c42e0e4eda2ec8394
BLAKE2b-256 8b0c6b46fb4a1b1b1b6ee3df228e8a7ae12ae6fd1496e5d338a1f6fc4903af67

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d3f57ad5c0c8f35c6d72edec55316fa8d832c1657428a92c9ef29c5e3a39b1a0
MD5 2a3cd7a363437c4449b335cf58b59997
BLAKE2b-256 c0ed50628cc0340c13a3af4e9288cab3e0046f2968167a4dbf183ac31d859229

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ed1e176cb73d245f58a2134129e8673023aefba89ff566fd65467048e4390ad5
MD5 35ad6de53c1abdefd71800d5d528ca79
BLAKE2b-256 ef369761aa4e64a289ad183e5d9e91b1325c94f56486ded15c3f52fc04624f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52c40715f36fa99fdd825f5207b3c531e49e0b5cc5884ee63a9f9ea8e46e4d05
MD5 0efc46c38179d004c53645a8564147a9
BLAKE2b-256 db8757e5b8513b646a477492a918894c2f115cb7093e8e0a636524d7383d6560

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fea53c682c99d21c252b03e5a8ff4ffb9f7a6c63a11addeecd0a0dc26c3b2fee
MD5 bf3d9e9657327b53e09bbcb34305ff3f
BLAKE2b-256 3c6bb30fd80beeb9c740872178a5ba687fb32e88d7d7c9be7b19d90043b472b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1629b5d5aaf484d5901297be024228abf8182c671e6c31dbbadf280faf1115c2
MD5 8a3fbaa1bc74f0b59fd6ef768c818587
BLAKE2b-256 1ea91745661800c7bbfaea25f1c24e7c7f0785b1fbe517b083b295aeb2a5df57

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8f50007dc92e7027ac6decdf99a7960010343b39e9ff0a7e07cc1e995820455
MD5 3604343d6320716470963611ab734b35
BLAKE2b-256 aa81daa5ac9f3c447d8d39305fa5c33a5291d03766d0f9093290e196a947de23

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3379e03122986e8b1a0a5830c0831dc2fc57a5055b88dbd4dec326830d4c18f
MD5 170c911f6eeda543fe999ab2edd0ad19
BLAKE2b-256 724dce958d9b3e732d61511b2e8e6b68de73a42a9f2a790d7a8fa344776a31ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9a710ae1f4a95df50fe2d75ed24833cf6dffe498b41db0a0787d431d3114bd6f
MD5 b8a616214c9962243d3791f17d3cba8a
BLAKE2b-256 a29d53b59a17ec61f2036ee3552545f3e9f50c603468ea52b22df583408fdd67

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a33d57fee589fc669c473c3349abd9b1a7b9e9b6c1e1b3d67a4930893dc9cbd3
MD5 5bf2a3abcadabad92e5560dd60c80d91
BLAKE2b-256 ccde45e39542332d482e6d54d04e409bba59110fa851e197f5a206804b4f2f33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b4e6e6b3936da5ff548f1c7a913bee066039c5eb001ec43bfd74b593efef7ea
MD5 a9c518de7a0ba49ee373ae392591e059
BLAKE2b-256 06501325fd1e74fe9345ada903d694f6de84f02ca6633f931b1389a7c1f48f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccd5339b1846b305d820280a183ae19b6f0769ea804bd56da0342b638ad79d85
MD5 de09b4da37e96d63a23e666bcb409465
BLAKE2b-256 faa4f2d293e17c552c8af1995e592f09eb2bd0696502d58a9ee694d1d90aa2cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50a89a200c7ccce076fcbf4fed16473d2ee393762c302ec3213bf30211af2c4f
MD5 45b85790f2285b477548b282cc1df0df
BLAKE2b-256 2a5ba6d95be37236775ce7967f5d1652f7b35a2ffa1809479c0a7b012053f9ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3a8c9bd430b4036980656e35f92703cc90ce7af441936664b6155fbea1033c5
MD5 fe4f56372551dcafa672214f98baaa1b
BLAKE2b-256 8f94f015d25bbe6cd0212ea8fd4bcfd0696e57efce2ef889a704f549adf305f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d40e72954f398d920d75693c228dabd694bace696416122cfebdf857b9340dba
MD5 dbf5668ecad49a93c31b8cf5a25b87f7
BLAKE2b-256 50867ff92514bd07da2eacf1877b4cf3d7d0997a434e0f42466119045601d114

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97b05d72725a1936c860015ca48f5e6e8fc9236cf5e9032eb7b9c237c786c9d3
MD5 d9984c53e6e96f7ae31d7a389d584b3b
BLAKE2b-256 7d85f75e3f80490ecba121099aec3d467074b0cd33e6803d7b45713aa22d9780

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4f9ab96cf1aca56547ba1228cf8c124a1459453a16176abf1714a8dbb991c1ac
MD5 12fa58844d263e45c08f1a6def95caa5
BLAKE2b-256 bc0467a8bc2ff113e1c9ccf3640bb1433bcf7f2008d6ff5df35cd38dc3f664a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 97b04a64e448c870129d161c2af5b62332aa7bc503579893d79d4d7b3a1ae138
MD5 4b1fec481a9c14180ba57ac16bb5c384
BLAKE2b-256 4d24795dbc17f9c4402cb6fa76aa1e179850951b05f87269b55cccebbc59cac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 98088cfad97661bbf01b75b057718eeba56b59edabc99958354056387cd2891d
MD5 d38293ddfc0fe8f753c5270d9c8b3e15
BLAKE2b-256 0fd84aeb8a350175401b1f7746ebee7316c8d9aed4c343d80dd550dbcc1ff101

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47de27e453d8d656f32df98143e20710c79f5567c4c5bbb225bc3b79fd0f132f
MD5 2142809eead838ed3d317b6379f987d1
BLAKE2b-256 50f099e863773a280d49a1b776d8e36920c3074955dd055ea6ceb0b259487d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 241c2406e2bd7e05c3196ef4a12b7021e562a257d53b763ab7c75664e7f6910b
MD5 ddfad9e8912324b2dde75a4814cc2bc0
BLAKE2b-256 352a737b4952f60dd4627d072f6072f740cdd0d3c47595524ceeb9dfa00f1dbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbe6ab23bf60f0ba12de0f2c8608f6bd61015cae616dfb99368d8f6773f72255
MD5 0e987a9ddc7e15c8f77cfafa1eb03758
BLAKE2b-256 c82dd38a0ce827ca77d6725a7dd4b635d30cd74783824ae92be44262426fbea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6987d350996503c7a3dc49e67d251747fc6a8641cc363e0a5fae0a41e70d925c
MD5 d97d7cfad4b53cc64bc4c435a8c376fb
BLAKE2b-256 3d82f42edeee6aa5c5d8eca68ae496096f3c34cdbf294eb215ee4d1500ce87a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2674c073b44f6b523ff6be19e337984f863778c14586333fe092b5806f38b63
MD5 53a86ac68b3c3d85356bbc493c7f32ea
BLAKE2b-256 8d744eee20d12ec4586db0eb926674476fc6514504347aeea2059cee9e9a5ef0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a05966769fdacae51b5b91cca662f5ec1e048ccb02343a9a582a94743915765f
MD5 7b9724a60b978966d893fe064cee7a36
BLAKE2b-256 3b03e187494b52befb62b96dc71ed89a8339895c82414f25868b8d997466ab03

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 962e1bb0f454f62931c5bef4b61aeeab13b0ff2192fd051b30b23006edac97fb
MD5 07cf4eda83e187e5db15569ae67ec4cc
BLAKE2b-256 d2ba4a692bb53a05eff059a041253718da6644eb15ef18e1c1a9d65f84f473f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0dc91b17dec9694742078d50ae10f7ef31da8015897493b7c91b6f609d60d9cd
MD5 6327dd483bd0294df0f7c525bd8c024d
BLAKE2b-256 c65f216f23bc0092cbb3a65fdcd49d4f816ce32db2a3e5503458bbce9f7cf41f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4c3b4fea20f11a7c9ebb22c7276da357acd767cda2308dee38f341877f2aa2a
MD5 118246713f211254f56fe5e5029d9b11
BLAKE2b-256 34ab9d8e28ef6841edb30b8335010597d2b8145b891d1997d59de43ebf97186a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0f9be46fc2865e6d7ee151fb7ea9def9993a485e9c7873eb9bba8b7220879a1
MD5 bd07b82a9f65188aa898148168ab8846
BLAKE2b-256 003ff49ee03a066301cbf342fc7b59d582d7c8dc9275f3b4ab24063be6a76fe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df89e90533249949bef6635772dd563055ad7cbfced37b413ba9d8a728533224
MD5 51d2638823aee89cdfdf62b3446a1321
BLAKE2b-256 609d0340f62f8a0a68c59c1daf20d69b26a43e4da42104ae608c60b5a0a2917e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b78d76234dc58cc40faf9fa804bbc354f1796fc5e8d0b3674d6533829782b3ca
MD5 5d69ffdcd96dcca62831bbbc49906fbb
BLAKE2b-256 e3f631186022cb7fcaa4a9c0bd216483822f872930fffdac57dbbf49324a9238

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2a66d4e01bcce4b7f445ffdadfe454b8706d85536fec0cb8df18927d75fe16c
MD5 e3ac2257d70b5a9f24b03345491389ce
BLAKE2b-256 b2abd338e87062eafbe0ef00b37b9f2ec26b1ff4cad2ae084372b61375bf2e65

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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.6.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pillow_heif-1.6.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 da43303dde3d7dc8b936da3c10b4e5bc2f5fd470655d2cde84a6bc0a587e66e2
MD5 41216023980c3d79010df9ce02aa794e
BLAKE2b-256 e690ea0f4458d2b5998f1343bebf3c32ad52a8438bdf17651909dcdf6f1add4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pillow_heif-1.6.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

1.7.0

70 files

This release

1.6.0 This release

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