Skip to main content

Python bindings for the OpenEXR image file format

Project description

License CII Best Practices OpenSSF Scorecard Build Status Analysis Status Quality Gate Status

OpenEXR

OpenEXR provides the specification and reference implementation of the EXR file format, the professional-grade image storage format of the motion picture industry.

The purpose of EXR format is to accurately and efficiently represent high-dynamic-range scene-linear image data and associated metadata, with strong support for multi-part, multi-channel use cases.

OpenEXR is widely used in host application software where accuracy is critical, such as photorealistic rendering, texture access, image compositing, deep compositing, and DI.

OpenEXR Project Mission

The goal of the OpenEXR project is to keep the EXR format reliable and modern and to maintain its place as the preferred image format for entertainment content creation.

Major revisions are infrequent, and new features will be carefully weighed against increased complexity. The principal priorities of the project are:

  • Robustness, reliability, security
  • Backwards compatibility, data longevity
  • Performance - read/write/compression/decompression time
  • Simplicity, ease of use, maintainability
  • Wide adoption, multi-platform support - Linux, Windows, macOS, and others

OpenEXR is intended solely for 2D data. It is not appropriate for storage of volumetric data, cached or lit 3D scenes, or more complex 3D data such as light fields.

The goals of the Imath project are simplicity, ease of use, correctness and verifiability, and breadth of adoption. Imath is not intended to be a comprehensive linear algebra or numerical analysis package.

Python Module

The OpenEXR python module provides full support for reading and writing all types of .exr image files, including scanline, tiled, deep, mult-part, multi-view, and multi-resolution images with pixel types of unsigned 32-bit integers and 16- and 32-bit floats. It provides access to pixel data through numpy arrays, as either one array per channel or with R, G, B, and A interleaved into a single array RGBA array.

Project Governance

OpenEXR is a project of the Academy Software Foundation. See the project's governance policies, contribution guidelines, and code of conduct for more information.

Quick Start

The "Hello, World" image writer:

# Generate a 3D NumPy array for RGB channels with random values
height, width = (20, 10)
RGB = np.random.rand(height, width, 3).astype('f')

channels = { "RGB" : RGB }
header = { "compression" : OpenEXR.ZIP_COMPRESSION,
           "type" : OpenEXR.scanlineimage }

with OpenEXR.File(header, channels) as outfile:
    outfile.write("readme.exr")

Or alternatively, construct the same output file via separate pixel arrays for each channel:

# Generate arrays for R, G, and B channels with random values
height, width = (20, 10)
R = np.random.rand(height, width).astype('f')
G = np.random.rand(height, width).astype('f')
B = np.random.rand(height, width).astype('f')
channels = { "R" : R, "G" : G, "B" : B }
header = { "compression" : OpenEXR.ZIP_COMPRESSION,
           "type" : OpenEXR.scanlineimage }

with OpenEXR.File(header, channels) as outfile:
    outfile.write("readme.exr")

The corresponding example of reading an image is:

with OpenEXR.File("readme.exr") as infile:

    RGB = infile.channels()["RGB"].pixels
    height, width, _ = RGB.shape
    for y in range(height):
        for x in range(width):
            pixel = tuple(RGB[y, x])
            print(f"pixel[{y}][{x}]={pixel}")

Or alternatively, read the data as separate arrays for each channel:

with OpenEXR.File("readme.exr", separate_channels=True) as infile:

    header = infile.header()
    print(f"type={header['type']}")
    print(f"compression={header['compression']}")

    R = infile.channels()["R"].pixels
    G = infile.channels()["G"].pixels
    B = infile.channels()["B"].pixels
    height, width = R.shape
    for y in range(height):
        for x in range(width):
            pixel = (R[y, x], G[y, x], B[y, x])
            print(f"pixel[{y}][{x}]={pixel}")

To modify the header metadata in a file:

with OpenEXR.File("readme.exr") as f:
    
    f.header()["displayWindow"] = ((3,4),(5,6))
    f.header()["screenWindowCenter"] = np.array([1.0,2.0],'float32')
    f.header()["comments"] = "test image"
    f.header()["longitude"] = -122.5
    f.write("readme_modified.exr")

    with OpenEXR.File("readme_modified.exr") as o:
        dw = o.header()["displayWindow"]
        assert (tuple(dw[0]), tuple(dw[1])) == ((3,4),(5,6))
        swc = o.header()["screenWindowCenter"]
        assert tuple(swc) == (1.0, 2.0)
        assert o.header()["comments"] == "test image"
        assert o.header()["longitude"] == -122.5

Note that OpenEXR's Imath-based vector and matrix attribute values appear in the header dictionary as 2-element, 3-element, 3x3, 4x4 numpy arrays, and bounding boxes appear as tuples of 2-element arrays, or tuples for convenience.

To read and write a multi-part file, use a list of Part objects:

height, width = (20, 10)
Z0 = np.zeros((height, width), dtype='f')
Z1 = np.ones((height, width), dtype='f')

P0 = OpenEXR.Part({}, {"Z" : Z0 })
P1 = OpenEXR.Part({}, {"Z" : Z1 })

f = OpenEXR.File([P0, P1])
f.write("readme_2part.exr")

with OpenEXR.File("readme_2part.exr") as o:
    assert o.parts[0].name() == "Part0"
    assert o.parts[0].width() == 10
    assert o.parts[0].height() == 20
    assert o.parts[1].name() == "Part1"
    assert o.parts[1].width() == 10
    assert o.parts[1].height() == 20

Deep data is stored in a numpy array whose entries are numpy arrays. Construct a numpy array with a dtype of object, and assign each entry a numpy array holding the samples. Each pixel can have a different number of samples, including None for no data, but all channels in a given part must have the same number of samples.

height, width = (20, 10)

Z = np.empty((height, width), dtype=object)
for y in range(height):
    for x in range(width):
        Z[y, x] = np.array([y*width+x], dtype='uint32')

channels = { "Z" : Z }
header = { "compression" : OpenEXR.ZIPS_COMPRESSION,
           "type" : OpenEXR.deepscanline }
with OpenEXR.File(header, channels) as outfile:
    outfile.write("readme_test_tiled_deep.exr")

To read a deep file:

with OpenEXR.File("readme_test_tiled_deep.exr") as infile:

    Z = infile.channels()["Z"].pixels
    height, width = Z.shape
    for y in range(height):
        for x in range(width):
            for z in Z[y,x]:
                print(f"deep sample at {y},{x}: {z}")

Community

Resources

License

OpenEXR is licensed under the BSD-3-Clause license.

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

openexr-3.4.11.tar.gz (25.6 MB view details)

Uploaded Source

Built Distributions

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

openexr-3.4.11-cp313-cp313-win_amd64.whl (735.2 kB view details)

Uploaded CPython 3.13Windows x86-64

openexr-3.4.11-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

openexr-3.4.11-cp313-cp313-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

openexr-3.4.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openexr-3.4.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

openexr-3.4.11-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openexr-3.4.11-cp313-cp313-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

openexr-3.4.11-cp313-cp313-macosx_10_15_universal2.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.15+ universal2 (ARM64, x86-64)

openexr-3.4.11-cp312-cp312-win_amd64.whl (735.3 kB view details)

Uploaded CPython 3.12Windows x86-64

openexr-3.4.11-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

openexr-3.4.11-cp312-cp312-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

openexr-3.4.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

openexr-3.4.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

openexr-3.4.11-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openexr-3.4.11-cp312-cp312-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

openexr-3.4.11-cp312-cp312-macosx_10_15_universal2.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.15+ universal2 (ARM64, x86-64)

openexr-3.4.11-cp311-cp311-win_amd64.whl (733.6 kB view details)

Uploaded CPython 3.11Windows x86-64

openexr-3.4.11-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

openexr-3.4.11-cp311-cp311-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

openexr-3.4.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openexr-3.4.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

openexr-3.4.11-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openexr-3.4.11-cp311-cp311-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

openexr-3.4.11-cp311-cp311-macosx_10_15_universal2.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.15+ universal2 (ARM64, x86-64)

openexr-3.4.11-cp310-cp310-win_amd64.whl (733.1 kB view details)

Uploaded CPython 3.10Windows x86-64

openexr-3.4.11-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

openexr-3.4.11-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

openexr-3.4.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

openexr-3.4.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

openexr-3.4.11-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

openexr-3.4.11-cp310-cp310-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

openexr-3.4.11-cp310-cp310-macosx_10_15_universal2.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.15+ universal2 (ARM64, x86-64)

openexr-3.4.11-cp39-cp39-win_amd64.whl (743.7 kB view details)

Uploaded CPython 3.9Windows x86-64

openexr-3.4.11-cp39-cp39-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

openexr-3.4.11-cp39-cp39-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

openexr-3.4.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openexr-3.4.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

openexr-3.4.11-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

openexr-3.4.11-cp39-cp39-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

openexr-3.4.11-cp39-cp39-macosx_10_15_universal2.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.15+ universal2 (ARM64, x86-64)

openexr-3.4.11-cp38-cp38-win_amd64.whl (732.3 kB view details)

Uploaded CPython 3.8Windows x86-64

openexr-3.4.11-cp38-cp38-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

openexr-3.4.11-cp38-cp38-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

openexr-3.4.11-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

openexr-3.4.11-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

openexr-3.4.11-cp38-cp38-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

openexr-3.4.11-cp38-cp38-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

openexr-3.4.11-cp38-cp38-macosx_10_15_universal2.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 10.15+ universal2 (ARM64, x86-64)

File details

Details for the file openexr-3.4.11.tar.gz.

File metadata

  • Download URL: openexr-3.4.11.tar.gz
  • Upload date:
  • Size: 25.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for openexr-3.4.11.tar.gz
Algorithm Hash digest
SHA256 c32233f4ffea51ca3fe05a3f0193b24bf21d7cab04a46c292badc7c9dfa60851
MD5 98071c273df3a267a047548451236693
BLAKE2b-256 367fb172c42790a16179a8eb474c46fa30dacf788b6babb4604866b9fec791f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11.tar.gz:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: openexr-3.4.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 735.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for openexr-3.4.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 758844e0f77eab48d3e1accb912ec5cb9c726af6fb0b8812c141e1eedcf91be0
MD5 5c45c5013bf4f1315eac5db0713ef5c1
BLAKE2b-256 39954d32b9bb47d6657f4d5f71eece02cbbefd4d0e9aab4ab1740a9ce4e752e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp313-cp313-win_amd64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a40912694f33e60a4991f4d26a046350eede26197b216ed33983a400326195c
MD5 9dc719797dc09b1bbfd6beb17173e0bb
BLAKE2b-256 fda9e031113660d705cac4d2077bf09bf5d3eac5761c2c1d3be3957c0b3a9239

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 168a213f9c5ecda7e9fe44f4f05efb5516a19151ac55274e3ceda930535c3ca7
MD5 0597d52679ae5e9274aaf4d2982cb65e
BLAKE2b-256 3625fc6e3ca153aa2543976816c8c045637d9a7aed938120cffe525208f4516a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 41deb09f525fb3ad7cb9f114953f7343cf28ae65ac3b7fdd9a3f3429c590ad19
MD5 418decaf0fdd18cc1ade0c2384244f9a
BLAKE2b-256 b2b1ea37b4a446bc450f0b694333b00f8b469f37e4ebee2e078e99a716a6c214

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5c28ccb6c69374c7834600bbb43546949f2e670268eca400703535d89e0da3e6
MD5 1ed3f63ae13adfc08b2caa92b61b5f29
BLAKE2b-256 325740b3557295f032d9bbe98ff1b2b24441a76314f4713a85ab9314914ee4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea1e90291a48515f3079789be13b23a0976ba3b8522dd71a812f419d19d4246a
MD5 52543f09ca1fc67b73ad8254ce82cbb9
BLAKE2b-256 1c88c26477f6da83f902f496625159d8a4658347eb7ae8e7d11a363996054c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 911d73a84178ade1b7757c262da62a8a45fa241502a83f3af6c84c89c518c4f7
MD5 b690af8835a39ee3843e20f684504a1f
BLAKE2b-256 497ebe2ccafe9291e3c4863c8421ad909b2b574579580011cf435645877094d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp313-cp313-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 fb1ef1a5ba9293efbfc5ceda38ed45847b484bfbf21391d5401f61a613e55b16
MD5 1ff77a6c69b71ae6287199544beca68b
BLAKE2b-256 8b659ebc70067844fc25ebbb04b43b7a8d6ca77b23d5430a5306d7b8a023f75a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp313-cp313-macosx_10_15_universal2.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: openexr-3.4.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 735.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for openexr-3.4.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 65a3a5d456ce33f79fdaba5c9b5e28837164b6e672f3866bbd8c940c69abc1fb
MD5 fdc60fd424c53e39b5492df6cf79867a
BLAKE2b-256 f00408945b1abcf2f4b85f291723dc78216c21f21bfb76155e54e7d4f7433423

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp312-cp312-win_amd64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26a9fe29d65aa7e7086e9d89f3c416cc66c0fb2b211b3b98d1df95b25c276b5a
MD5 ebdbb6558f4e5894b122768dc32a880a
BLAKE2b-256 8e382d4e0299d50d652f1888c514f5fdd62b2decff28c39e08ff65e5c6f83f18

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c90d565b37c53e9b644ef454a02642cea6e3b3f22de7f638f4346cefd782b9ca
MD5 603f2c6afd49ffef6a42cae76ac4f4b8
BLAKE2b-256 81c83d035c14e1064fdbdaaebfc29304b99bb975c0bc51ee1282a5c4af53203d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6b5f90d8ca262119e1ca626ee9ccc92bd1859cff38c19e3ba14c0353ec1352f9
MD5 741e2a2758cb956b6aebcf1bcd096c77
BLAKE2b-256 ef49c41814516729d830443b5ba1f34742db33b6f430feebaa3285ac20c2a769

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a5baebe08bcf294feb50ceae07456302e3d87886b27cafcabe2e81dce3dc1214
MD5 deedbf35073c5b6700cf001656d36cae
BLAKE2b-256 116d973dc612d1dd47246612b6cb8028ccaff0439043470424ab2f72839a3086

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a16d54d1fb65cefd73189c7d7f2437385563a297129fefcae3601b31704b8ac
MD5 327a40507ea4f070be23791f0a3b1a63
BLAKE2b-256 cc4396b15e406db7d2543b2c48a03ba8e3ac37a54e07b7ff81a679683362a174

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d0faef97e93a539a7de59b247c22b19037f3adbf17e61790f61cfd1ca631e68a
MD5 4bbac0c1810c6c1c41131229206c6f1f
BLAKE2b-256 821e7fea40898376d3713bd3d89cd383ab3d1bc52aa73d8a28fe82e88053ab7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp312-cp312-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c11187b2b7818abcd4caae98939a192409de7032900305540f124ab02a122f2d
MD5 1a0f75aafdf3fba3474c2195a3660072
BLAKE2b-256 31f03468e2024ca933206cea5d5cd75dcf1c9e5670fd5e1804020a174f6b72e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp312-cp312-macosx_10_15_universal2.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: openexr-3.4.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 733.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for openexr-3.4.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6c5a791e9835e3bc1c58e054ea5402d4fda371a1c1aacd75f9580e52d0f39455
MD5 92875a9c2471a1191838ef002ac072a3
BLAKE2b-256 f95ea4d46d60d3c4acd625dab4560df2f4427f7cdffb8752e598aec697d87ece

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp311-cp311-win_amd64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dd631d7df0838073a65f2e52a6333e448cc60dadcca57df33186cc6140080df
MD5 fe1085bb516d48cf07012c3c39fd544c
BLAKE2b-256 9829d79299d2bf9375b98051c10195c9140b0f21d009e8092d798fa10b9ab9cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe8493a34d08b9169445aef13dcfeded0285a038b8c3f125bec9fe606f1b3b25
MD5 62e14809660f797eb0241ad6f087ce74
BLAKE2b-256 21f7d9726ccc66cb9d1698cfb984b858d88b41c2cacc1867fe31ba7e3885c85d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cffbb450c121cdf026e9405c590e9b70d5ca1b519da51cd955f1c7541dc5ac2f
MD5 fc5042b55b7257b2011477aa410dfaa2
BLAKE2b-256 78fc42d91e962451cbdeceefa50252db4b53bce0b47fc1289c7885d0c82bffdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 bc04f405f428b511fda8403ae22443ae1f6bcca98256cff49b5bca817e8c89dd
MD5 a67ea7735173465ed678388ef0828ee1
BLAKE2b-256 e039b9d785846d5f4907f391e32a7b7e0f2fa9c44dbfd6b9c80127b41979f361

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0566a70859a6f237b25034b83b832a6c67a63ea2224094f54b208d1462ca749
MD5 e256b0d8f36a1b130fba2c9270221bb9
BLAKE2b-256 11c726488c6460886a7a90d074f5e846aee889b7ba048496cb49df66e0ca9fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e64b2ad85f14897580020eb2f5519e7b1ba96892c468934e65edb3bebc66cb68
MD5 5cbfa17e84775ab09edfac3e0dcde794
BLAKE2b-256 f6c07fd25c4d3ca6ecc379de300c85d03cac67bccab8229a393e6e8cc3129d0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp311-cp311-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 502f8d2e32928a475316730569fa9fcfd22d4258d3f40afe253db4fcd258f02e
MD5 5de9f611c418032598c4e08738c07108
BLAKE2b-256 1a4031b052fca6d5e8682f7199a5c2aef3dd00e1608f6075349b68bb3435b970

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp311-cp311-macosx_10_15_universal2.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: openexr-3.4.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 733.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for openexr-3.4.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 47ef1dc8e75ba33af6cb4b2880e006ec6e27911d0f9c4a477c4501e7f4994c61
MD5 5bff1f256636cf3df4244c8a6b6b3e64
BLAKE2b-256 521129fe02e93f2b77211062a1b99d3613e1890808738005985edf38c1e5aa90

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp310-cp310-win_amd64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e5341501f889e8b0d768c677645eedf949847ae82dac027b414157a866812b6
MD5 8ac7251729e58dc8ec7dc85399fc244e
BLAKE2b-256 3236cbb99028635f2cd5ef65ece4a017f008bbb779e880635243cf0349967863

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3effb270004b8af068426f223edb2009909a51d2970da3b0576a2db09339377
MD5 4887a6e63bb95f98774e42935dc6237a
BLAKE2b-256 83d528c67a6aec2743ae0d03b312935ed5c532800f531fc06e6027d256c05153

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1502e90b2e2cc4134846e208a9a3a9b3cfca886c681a759d68b0c2c0fbfcb526
MD5 c2a4540a75637c3aaa19624c0fb9e875
BLAKE2b-256 87864fe414cf4ce1fe801c83ffa8dcbc756b4117275944302f4d87f51042b96a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f183257d1c7f80525195226e1627b7132e8ed7628edd0d11c81fec130a7f06be
MD5 0a752213cdd72ce85560c98f0ad642d4
BLAKE2b-256 4fc744f09664b8d0186eca0d3a2e94898fa7c95de4e280cbbf9fbbe4545b0498

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7945e9e954405574a40e6e3930c35295287c849c7a78679b39614d4d138383b3
MD5 11f4815bf4b7a09fcbd309820dae7906
BLAKE2b-256 1f44bde21dd80d4d5585e3b682d9dbae76a619f14d85a0c7edab903e1472105a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e241db758acc7db68e07034d274545b1a05f5130b6d4702eda68a0b4f7e0452f
MD5 5777d5b9a3f9f2b9b0b82f4af70f807e
BLAKE2b-256 36ee011e3c5c823dc79aa151cb4cdacf729bf0b525e2a9eb70c9425c231b1059

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 677a6988dc2dca7756b660f9c9dfbfa4497552f9b90285df0f9cd5b780bda901
MD5 0a26db28c4e6bfca17fb0c49cfc9b521
BLAKE2b-256 09806a17eb81dd37ef10d28e9b3e9a9ec20ac9dfd5fe3bca6d60f2df7c5b432f

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp310-cp310-macosx_10_15_universal2.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: openexr-3.4.11-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 743.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for openexr-3.4.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4dd1e3821848d0a5d0a5f6cb72f38b50a1ecb2c85c5ebc62d62c0a1df99ad4f2
MD5 9ec3cce2746c2e4fb3bd91b584527452
BLAKE2b-256 fee5c1c61e8966ff35be99f38ff4bde990427026315e627a0dbcbb1dd1fe5bff

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp39-cp39-win_amd64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a35e8c545309d7d7b527b14a1c37561f2c6aab33b26f4402b5c29f7f82b04c3
MD5 26bc7bbf69d8286dbbc61c90d99e444a
BLAKE2b-256 cfac1645a4040c19274d868dd58d18687cc1032c92287ca5a24f06493597d9d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 682f515547588aa9834a77f9beebb617378f55013f47f0dd3388cda4028ab57e
MD5 b7ad8faef0ad589be61be06e199a273b
BLAKE2b-256 423f6e545989e0cccecef35c026fd6ea3c67dce4e0d4d82245df948f28b22a81

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5e9a181377af663161323bdf4907e50bc4dcf918dc793989da9c3d7ccc39ca1a
MD5 b137d225fd2a9e3ac64501879d4e174c
BLAKE2b-256 bda87525cf2ee361364ad53ca07a335a0e41b5a74a0275e5abb3b071bd467347

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 757461bd5fede940c08d8c44b54529e573f87e521923bc860fc5bcbac8365d08
MD5 02cba449bb6a0ca99da559362727e867
BLAKE2b-256 ccbbb0cb99c815aa42a1f6bbc843b807d672d53c3bdbcf27656f202edbd629c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be6fa46e0b93a2d419e01c0862a73f3c4051a660381200a13566fa37fd098d50
MD5 44f0e233ccace6ac21aa020c663de456
BLAKE2b-256 2401659a8afd009e3514fce5b4ff3188a5c975097d1216ea442f4ec0ec358f17

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7717c323030ebcf7976c50889cc83fe44b6e00b1d7c53e68a4e859ce426494d1
MD5 d9aaef0c9f47c0ef30f6424a80d6a032
BLAKE2b-256 a2947a2bc2fbac5f23fdce4655d5cd1eda6fbc1a583bc2a81199c503c4f08b37

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp39-cp39-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 cb6a7f7eb30b511d0135d2f03c233a78248680b11e63a11c42432d2615c577f0
MD5 0c90ee5de1ed804f52daa5064e14844f
BLAKE2b-256 2ad022062a06585ce338331e36e227d2c6245ed3941b5f03a7aedad7d1c93993

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp39-cp39-macosx_10_15_universal2.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: openexr-3.4.11-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 732.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for openexr-3.4.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7e57e3f2e9a573f23f3a2d9036dc58bb8eef27c04bbe4af1585a3c462700af5b
MD5 38dee06b3b6d343f705061e9a1c4054f
BLAKE2b-256 8dd1609f9968f878ac36955d2193aebce1ff5c6c5fd59394ca31f58b9e845e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp38-cp38-win_amd64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65d50df2bb85fd51c9dae8aac6e1c4bbef1c5d0a28934996186a24327ad0e349
MD5 e6ffc68758da7f8cc5d9d228db5f4d2e
BLAKE2b-256 3bfa462667e8135f64abf735779df5629548b4f66539bc0d3597bf386dd20f93

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8abd9216e65b59629f946a89e97cb3eadbf31c11b306bc32438c7abce2aa6438
MD5 43fae355a9cd31d1af8fb1f07e16f721
BLAKE2b-256 c94018cc567af96c336ff4eb04e95efc0ad4b4ded2e22810fb5b715e258c39e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d7cf1fd0ccef5baf25a07fda0a340e0536bb87f584172125343da2678a4252da
MD5 113f0f79f24e951feb32d69454f9c1d8
BLAKE2b-256 077dae7c2899051b1f5f08ea1b2d9b1cacb4e64e12dbb79e8679f556b8a10f86

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c0d8495cba2e3cac262d8e5a3f478fdf98cb79b3a294c48709e7734fe7110b60
MD5 304b8f581534863ecf4131947ee84790
BLAKE2b-256 503962b8d607ce412dcbd9324417612dab27ee0ffc25a668917fe6ab39066668

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc41450bce5a25030564d865f73815de4db3ee25e64414b728b6ce6c15bd963a
MD5 c035e55a560007f2ae1b9acd08e6b3a6
BLAKE2b-256 cf395ee95679b1be1fa3b555f9b8070465b81a365546c85de90d51aa0d9d5b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3ed4a9951f6e77bf7d28f3ec1b7de1e60ae7607af7a2201d0d4d97bb4a3cbc32
MD5 899856915d2c68e7df5ed57c9b42a30f
BLAKE2b-256 ca1b9e8c7188d8d74a2071d7f978941677dd0ada24f6d45d68dea84523877697

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp38-cp38-macosx_10_15_x86_64.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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

File details

Details for the file openexr-3.4.11-cp38-cp38-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.4.11-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8c0c53a901eff9bbcd97a9a2b20ea882b23f17dd0579a8d93490c5b13bc48536
MD5 14c42ffddedb91aabbe9b6529ea3b7f8
BLAKE2b-256 9ac900ac939a0ae761bba73ccc4a8b2345df85e006f882c4798fd3aa43c851a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.11-cp38-cp38-macosx_10_15_universal2.whl:

Publisher: python-wheels-publish.yml on AcademySoftwareFoundation/openexr

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