Skip to main content

Python interface for libheif library

Project description

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
PyPy 3.11 v7.3 N/A

* x86_64, aarch64 wheels.

Project details


Download files

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

Source Distribution

pillow_heif-1.5.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.5.0-pp311-pypy311_pp73-win_amd64.whl (6.5 MB view details)

Uploaded PyPyWindows x86-64

pillow_heif-1.5.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.5.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.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

pillow_heif-1.5.0-cp314-cp314t-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

pillow_heif-1.5.0-cp314-cp314t-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

pillow_heif-1.5.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.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pillow_heif-1.5.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.5.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.5.0-cp314-cp314t-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pillow_heif-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pillow_heif-1.5.0-cp314-cp314-win_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows ARM64

pillow_heif-1.5.0-cp314-cp314-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.14Windows x86-64

pillow_heif-1.5.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.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pillow_heif-1.5.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.5.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pillow_heif-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pillow_heif-1.5.0-cp313-cp313-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.13Windows ARM64

pillow_heif-1.5.0-cp313-cp313-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pillow_heif-1.5.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.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pillow_heif-1.5.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.5.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pillow_heif-1.5.0-cp313-cp313-macosx_10_15_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

pillow_heif-1.5.0-cp312-cp312-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows ARM64

pillow_heif-1.5.0-cp312-cp312-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pillow_heif-1.5.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.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pillow_heif-1.5.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.5.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pillow_heif-1.5.0-cp312-cp312-macosx_10_15_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

pillow_heif-1.5.0-cp311-cp311-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11Windows ARM64

pillow_heif-1.5.0-cp311-cp311-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pillow_heif-1.5.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.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pillow_heif-1.5.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.5.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pillow_heif-1.5.0-cp311-cp311-macosx_10_15_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

pillow_heif-1.5.0-cp310-cp310-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.10Windows ARM64

pillow_heif-1.5.0-cp310-cp310-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pillow_heif-1.5.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.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pillow_heif-1.5.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.5.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pillow_heif-1.5.0-cp310-cp310-macosx_10_15_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pillow_heif-1.5.0.tar.gz
Algorithm Hash digest
SHA256 16b11a37b762ff42da2d36527bb5cb14bd9194c24c389ee911155d6e23c53065
MD5 3820f850bd561f5fd2a0ef2c54590db1
BLAKE2b-256 08dc6ab7a469ced899fbdbbc27b00067e4da02c21ff1ce7e9c6110f14e8fea6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6aa53c40d9aa1d7433b35823a8cd13463e057b2106919fec40cea14967548bd1
MD5 1aa4b82239dd91f96dc0172a91f0e988
BLAKE2b-256 dbf64d85fc3a81cbb2969f485fe3dd165677574080a25f7160245cd4cae73998

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 920ea2d3a88dc115d58bd792ef3e89be98f01d68ccd144efcbffc5d4a683aba7
MD5 0ae174a8b27cbd311c8ba77ed756ee32
BLAKE2b-256 121fa64b73c8c8eac669e04d4769d6ed76507a80be1c20634adbd5579dbdee00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f8289a54b6109268ed3a518970eecf9c834d76ee2af5aa489051a0ed4d3d462
MD5 b868eb5625d7cbf4c7d4bd6d3eea238a
BLAKE2b-256 d638e00160ffb328b639f2182b308c94a3f55123a115127a82a6aea25d51eb03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e402f7a6f3c3d8352e773562d35525b13ba1e9372ff660034754dd65c52ce463
MD5 8e11f0596cb72c3aa563e13f1cb67e44
BLAKE2b-256 a4a24259389bff87df8ea5d51f4399016e75171325dc2c21d5fd8ffd4bb9cebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 563dd2cf45325944fb8d405f14c2876dc5e18e85a94dfafcd474579400010651
MD5 c52ee6d480657d130283ce78f0df98be
BLAKE2b-256 f567d710e1ee10ddbe748e9df5aef1df591123468616a40fada56569de0f2518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 508fc9dd8fb4df933b666c30b60b0930270d9e072fcd90b75990166050e44656
MD5 5a9f448f741ce11ea187754b455a5883
BLAKE2b-256 17532a52f64f399717adae560068e9b0ae12ae3e43be2c64991e246af5aedc3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 65b3d619cea2d1f758cd039cddb331cb44d63768c355606ea9100cfee4421eb4
MD5 3f875aa790c9186b4c1cd123b57b1459
BLAKE2b-256 8ab7c65adbcab1b1c99c886c55b97b144b3092c432e7b0fedb91501c479cebe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1d281b2efee954ef78c0a473a41498d0548a32290d7250b4879ddd2480dffb8
MD5 289c25f686f73577a7b216c815c82204
BLAKE2b-256 54770f0487b9f6cb1f5dff629b42ad08a7ae1997886048c4c2671e17079ad5d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 522719e5dd56eae6f9f48828c08eefe0e5c02dd92f5a07780e6f3c04bdbcf880
MD5 dc7aff8e425a827bbb11c373ce7a967f
BLAKE2b-256 f5552665f6c781b90bb5a25595c58ede1955125f0ad2c7d81bf3c153c9e9c9d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e737d326410e733868566c045f651b5371086a4ec294c40d39e129481d024bef
MD5 a4951103cee40c9f11c760fdd17327a5
BLAKE2b-256 74b3e15933817e71b9fcd8865e3b64171995ed26f5ca329bf4d03f3571213c52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5810606f70d3432b55987a5e44aa26fb7598fea565d8645b017f7ed935f5e99
MD5 b3705eb95bdb5ac9228e4700223a136e
BLAKE2b-256 f7a6c90f9fffd5cb56e213753f22a9a955525d5ad99816481ae2392ab6c7ccd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0881c82752d676fbe054cb0258100790ead94946fbb075ffa041bb9ae579b11
MD5 fcf580cb19f339fa57b6ed946b0ea213
BLAKE2b-256 4c6fafaccf55774c1084e5beba83f0ac201d315096f6a95d003696376184a7a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e2c3f47eac33d8368ea5779eb7bd8c736e7048b5897474d7e1799c073c9505e3
MD5 7854eeb39c66933ed3dec8fd9f48e18d
BLAKE2b-256 5704fa5727a62b2fc37b611c7a172fc10c6719530d27bc9126de8456fac69346

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6759febf63ea31fd00756e4a828cd643d0b9f98c93f5814b0ce5baa036da50e4
MD5 4c7e058b63dedcdf2c698a611216b8d3
BLAKE2b-256 748dfff074683f96eb004d7159228d2fc9e2e9fe8afd899d53aa695c622487d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cfd5f8a8a7b65f2ded217c5bde4dd9365b6b67187657a121b05224841a1b92c0
MD5 6935d12cf1416cb21b83d0c6e353ef9b
BLAKE2b-256 7dbc7bae1c1efcec25dfdca950fe1a10cd723c544269db73203019e965394015

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ad925299422d4592e4b5344c03e25b27dc7a5130447603a89404d7d138b746c
MD5 550f0e5b1a251fc3b73dcad91dcf3474
BLAKE2b-256 4a789a5abfb163b0fb44a4f624146de142ba4887e5011f965442af2c997db6bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9803c1291c7c598134f16016a071ec8d9dce268ab1806c8541450c4e3972893
MD5 f9f70ac378d596183f13baf8e9ed0fd2
BLAKE2b-256 cb4d8070974a2e695f83fb10883b7d83c3eda635561f99993623bf111a55a984

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 646ddad98c8f9c5e637dbb84b6b7db905e565994e9fd6a496a36adff36ae28b3
MD5 19256f85aaae420649db6780eb85f599
BLAKE2b-256 2b9042f392c0513bf351ba2bca1350c457b0d7bd94f12d0e5fa74d7a9deae336

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4fb15135733626ee3fd4d7104bde1e54d4370f9f8b697a5d239b8b552b73fc7b
MD5 07c221c2ff312a433cf9fe982411cfce
BLAKE2b-256 cf54837e9077784df4a0ba69d3e76e9f29a4e52929c84f0e1b0d29a13437a5cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c50626e77510f38cb11aacb3b4bba56eff17ce39a9d85b7ee210bd81387a083
MD5 d6027aa938d6c22fca9261ab1bfabedf
BLAKE2b-256 2a10dc89bec0edf37df5d7609d76ce125a2f8d1e901b2d34944d64d05f497bef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d96783ca1648ba8384e66b888128ca3a48d769c0e3593acf84c40ce0c791629
MD5 e58a9b64701e621ee733a6f90b5cc702
BLAKE2b-256 67519b5a9352b86b7d82ad62969a84e3b4f998f6b5dc0320cec3e2d54d74d754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c6156bee6f69797a782d8ca373536dac4a7e0d4f793c9842f6bd09669fe4da0f
MD5 93f004f266a4bd32a215f0b60a967482
BLAKE2b-256 b8cee69cd5b9aea6e75e361d3d3a98201bb7eab31455b07a5b1fc8ec570ab2c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 139f95d1052954804b349089deb91c55ecfe344a7a21ef46c961778a45a17589
MD5 1327b44f19f38f82d9f419dcdcb77c3e
BLAKE2b-256 460e4b463d7183ee45624fc822f22501feb4b772e5667377d2f981a31c08310a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cfa3761cf4fe43ee4b909963f87f05bac925d7bcff7016802f02a26574fb11e
MD5 a737c03cc2837ed3d60f47d8ad6843f5
BLAKE2b-256 b734047aba6e860dbe8e32dc948d5ed707c921168769d34379b24956322fb4c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff580e1453bcf3d4965dbbfa00bfabef7784a51214413a344ce2eb652a81a987
MD5 a28c33949e6fa2655a4026dbac4bf225
BLAKE2b-256 82ffbe2b42f3aa4ec040fca5a2bab8bac6b611d39b7a3c69c185c85ae8537a6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e87c9a51ee973b5c1896beba74ddf9b58417f5b8a52d021b493f3ef6257c5f90
MD5 0b6720621014c0835e4883e8d6716025
BLAKE2b-256 b77e72c9fd99a74c82b08df3690077141bd16f1c9c7a3b3cd1c30e6fec4eb4a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cdada8d4cd5886c9ec5454b907290c4cbd420809afbf2c251120f73ba2ee1d12
MD5 8ce101092d772de107c63b8bdbc706d8
BLAKE2b-256 7f275f901b1d69d641b3b4e99aae6b3cbebe0cfa53188517ca7c79f86f86d4eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6d7c9dd6f490c433267ab9b66b63961e59a4c04c9d0e38ba66e4b6664d5e7d8
MD5 5ffcf4da22fe12ebd424276eabed5f5d
BLAKE2b-256 e34fa9f2e1525655c93e9b72cec3792a41f7d732222dad1d329fa04c227cbe28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b736040d566271143c09bf87967549daf3d3090e9b4283ca2076c3383ab141d8
MD5 426abf56d5f74389dc27e6f10f8d8064
BLAKE2b-256 3392502ae6bebaf1fc48850f690858040932fb6fe0bd0de25b5e715df2517d14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 901121ed12b15bd1451e70ba7fca0233990ba958ec9c6f8751838402e69e1078
MD5 d9c925f65a4d69bd45d2068dca7a1f89
BLAKE2b-256 fd2c102cfc58546ce2c00c312174ebc14d89efae8670f5c4f3c6bbe2e4f23197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9aa2cdc94d8d0b26dd3c16c3421273eb394c24e708899d8740dc314904ea0453
MD5 15cc4c81740d751e6ad1aca10fe61a4f
BLAKE2b-256 eb140a73f6d2605a20d32bbf7d20ee033d103b49215957d0330f09c64b3d0e19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5533c061cfef1ed508137bb7303093ef7b3b1ea045c70a778554f6d551ed540
MD5 7b875446edf1b523560a77b0076e6441
BLAKE2b-256 205c32af6c25df15783a068b524648a83f854abddcd681155b6320737875c144

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36742b4f3f5bee57a90d9492b17ad0336b95ab7fc358172cfae144505433ac94
MD5 cae15a6764aecc5675d300131a7096ca
BLAKE2b-256 6891ce4fbd148e76daeb147a50ed761dc43d7f7d4b95c4796182b6f36e408afa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c8032c6c2bddde009e703e045a0e17f7724925403982821ddd1a8d78559f28d
MD5 a906882148fa58f4f4c1a0deb24cfe99
BLAKE2b-256 a8705f9c81a022339914ea8b8370c284e3a4327d21dcf4242b9461baa44047dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a0e2b2966418cd2fb9a2b8427f60516980e3c9146ddf0a00e443f254d7ae291
MD5 f0e1f636925b3e37ae61e27ea7a0a825
BLAKE2b-256 78f905177861cec40bf8645e5194d5bac8a88b409f4c63a447298df7ecc2ef67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f14cde17b9288a9cbabc59c98a5928c54150ab98e3577ef2e4fd9f77f524b61
MD5 a4681b27fefb8520b1aec2bfef49a87f
BLAKE2b-256 233f96c6143c006fa6188898c19cde2d131ca7f32f7f2d720514912d56cd29df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 115d538c6b4ebbf13dcbadfa5215ffe56365a0de10849ae3a75329d36bc04ee6
MD5 e25f41490a0c7791224e5c933c7054c7
BLAKE2b-256 b72c6135e0f6d76d5c5e31dbeb8ea50a1c4f2f872122055bf5c2db714a772c1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 392dc2eba0e7eb526b3a5f475c25ee162a341c695f8db321c7c106c8724303fa
MD5 31eaaa6e997db049a471f0c2909ce043
BLAKE2b-256 0fa9813d6c8c6320bfbdde3f5ada81dc6db460a24589b38ba9dd33a62b7cab17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3cb8c18e5939839cf76a1617f4df5e0b497d1e3a8260b273590168e72d7f8f8
MD5 b440e77a429d78e8924dcc2a9f61469c
BLAKE2b-256 1ab68d476b89c1e1da50a5f51eee44c2a18cab025e1dc12678ab0fe8ebadb1aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6838ed3b88bb1a96db3079ec4fb7850c17a6a743b506f12a26217d7bbefa2731
MD5 81eab82f8a2a5af4e728e66e57cef68e
BLAKE2b-256 07f4bedec2253833a385ce4425c3791a5a37e493aab93a27622471928751201e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcdbac30cc1f10a89e6c6ce5ef92a539c34d03b1b68c536b092b8309c40cd02e
MD5 3e7a13a43c423799fc3f28f8dc1f3913
BLAKE2b-256 1df59b2a6d237f40adb7c7300de8b5c74df6292a358b155e78510ea3362162d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85f7ada424aaf38d1a4592552c1340a04f1f0e3de30f6269514fbdc3f3b45bbb
MD5 11182d0c00f78fd3da17166ef28cc5d8
BLAKE2b-256 8469a8f1a432263632db6e633d87a1658265b09a1760020cb7dc711490b871c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fece01cccd4faccadc912760cdae3e3a87b66fc2bda36e44d3bff79549c83d1c
MD5 6d4aa4d5743c4204585ce659ad71178d
BLAKE2b-256 9a19aa5c298a1b9dc41cfc0a846cfc10f1aaac9b72b9eb27abfc954575bb8929

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88d74a74b144c2e6e99e18e23a1637aef5f63ad32c718c8358da87ea81f94194
MD5 44c8a51c3089364798ce589b7a8e32cb
BLAKE2b-256 34f3c3b63ff41ddd65bea40b0e1a176ae08c613e9948ca1a45afca10207dd19d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e07ad41fde21396c01b14f2f3026b26c85a4d8696e7b9514b6f43b29f9cc08fa
MD5 f802129b32ce3b12a2c39c7e94d56f73
BLAKE2b-256 42ffc9c74db32f93b890a9c90ee75e00e9a6e40f781417bc12acd1c1f0613c7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5e01e4c3867852b4a3ae974580741986733d46b9626e7491868fc97f277804df
MD5 349516fbc4740fb31bc489c205fe5d61
BLAKE2b-256 aa4a4f372c4163c6da00faedeb0ff885f35045e87b560cce012f993ab08e3f76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 24e62ce775177bf6b039028c1b445893ec95a0b19771a458e36ff2f41c8ab44c
MD5 074a6936a3137d3d07acf26fd38d88db
BLAKE2b-256 4fd108c06ac30ff261fa7e582489f4f9a29c4ae13976f3f0637906017b8d6dad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a23507bfcb230fe99a5ca5298e018985e2954a3e3ff2033a66dbb9b74fd93789
MD5 43e588d741488ab4d1443cd52ae81512
BLAKE2b-256 9d97cada6dcd8b364780bdcb439ada9e66360233f4130e993c175402c6e47090

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c839fa42bc3a6115f863335313d69bb74882d79f4739e2535fedc48806ea39b
MD5 b5561662516291a14a49181a627a917b
BLAKE2b-256 72357e099dffe7c3345b7c9d0791aeed0fd24e741a3a73620373d3fb026f7694

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb59104001afbf9263f261f2bea9d7481c3e99effd8b01e647a9138d562ddb48
MD5 e66b5fef417421769ce69f8cd0b440b4
BLAKE2b-256 b05beb32e2a55902350347f9a7a7895fa3a6cf6003198c3d8d5436d59711e840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1793bb34067857a733439aa276195d112aee44a3854991b8c18a5597620ea80
MD5 03a881043478ce31c8b2ae9dc5fbb55e
BLAKE2b-256 2fa1543540c0d42e00c900607df57ff48a29b0a5e8d4cec0e7d8a42ca9e805e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9650363fd4be654222f12bb487e914a21f898d00b844adb120606df210f4dc6c
MD5 f162d29426aae7a80422288dde03dacf
BLAKE2b-256 d6fe97a08343cda727b74dcf34755dc197f820e139fde239d860b379a9ba3cab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pillow_heif-1.5.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f4675dcb6c9ada002f1180d1c7bfadcf98aa2865c6f5f4d2d3cc6f51d8126435
MD5 8ceeef145de7cf5ee7a57a54aedeb846
BLAKE2b-256 796a2977e00f8130cad97b1841f70edf021d2feca5626e0f586c5ade29244d58

See more details on using hashes here.

Provenance

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

Supported by

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