Skip to main content

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.

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.3.14.tar.gz (21.1 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.3.14-cp312-cp312-win_amd64.whl (718.5 kB view details)

Uploaded CPython 3.12Windows x86-64

openexr-3.3.14-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

openexr-3.3.14-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

openexr-3.3.14-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

openexr-3.3.14-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

openexr-3.3.14-cp312-cp312-macosx_10_15_universal2.whl (2.1 MB view details)

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

openexr-3.3.14-cp311-cp311-win_amd64.whl (716.2 kB view details)

Uploaded CPython 3.11Windows x86-64

openexr-3.3.14-cp311-cp311-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

openexr-3.3.14-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

openexr-3.3.14-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

openexr-3.3.14-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

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

openexr-3.3.14-cp310-cp310-win_amd64.whl (714.9 kB view details)

Uploaded CPython 3.10Windows x86-64

openexr-3.3.14-cp310-cp310-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

openexr-3.3.14-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

openexr-3.3.14-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

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

openexr-3.3.14-cp39-cp39-win_amd64.whl (707.6 kB view details)

Uploaded CPython 3.9Windows x86-64

openexr-3.3.14-cp39-cp39-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

openexr-3.3.14-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

openexr-3.3.14-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

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

openexr-3.3.14-cp38-cp38-win_amd64.whl (704.2 kB view details)

Uploaded CPython 3.8Windows x86-64

openexr-3.3.14-cp38-cp38-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

openexr-3.3.14-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

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

openexr-3.3.14-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

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

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

openexr-3.3.14-cp37-cp37m-win_amd64.whl (687.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

openexr-3.3.14-cp37-cp37m-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

openexr-3.3.14-cp37-cp37m-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

openexr-3.3.14-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

openexr-3.3.14-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

openexr-3.3.14-cp37-cp37m-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: openexr-3.3.14.tar.gz
  • Upload date:
  • Size: 21.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for openexr-3.3.14.tar.gz
Algorithm Hash digest
SHA256 de0c6a441fca71c869b3f00b55d1a33f5cf93ee49cb2a77fa0006dc06934f50a
MD5 84a2aaee64d58a1b93a6797ba01b2aa9
BLAKE2b-256 ba31fb0b3d320271bc063581fa8d9d6118dab629cd11619b45490ca68f105863

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14.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.3.14-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: openexr-3.3.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 718.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for openexr-3.3.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f27faeeab65ba17ab4fae88fe3f32496e2f73b047df12e521aa4e89f5964ca1
MD5 c8e9a280c89b8fdf83f4312173367a7a
BLAKE2b-256 df1a403c3e86e93a9495ac5aa7d32e0a14dd490bed11e1f2c52ce16b57c32f2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 085221ad0a4561324bb3fd87d9569bf0d7a2729e8463557d0c32af88567806c2
MD5 139d4865f2f9ceb1c7317eb44504d20f
BLAKE2b-256 98f07dc5d05d797d7caa007ab94ebf989d0c9cdaa0735ff157f6186fd3546cbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e4445c7b5a613ac041bddc798194fade6f1aaca6c761fe9077165ae9223aa3f
MD5 afb6cf22c39b05177ffe21c81d689a04
BLAKE2b-256 84bc16de4ad00c39129bcdda34a7b4b38566ef2f360d375d61e3505229246bbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c520c4ed714ff9e4118e3af377cb72189208482362109229ee65097677774f27
MD5 1a32422b7f2ec1bddd64d1b4ffb68042
BLAKE2b-256 3d3277c34ddf1ae756555c41bfa45c16843ecba94d2a7ec3aec27be684d3c9d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_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.3.14-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ad4676d5829f9ef5c8000e02662467db823a6c033fb16069ba758e3fdcbf359
MD5 dd9ba93bbb50192f1fff61e71381d299
BLAKE2b-256 796100e99e447ac7a31fbf47debf4dceaa7350b83629f6eb61ac475181526be7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_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.3.14-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bb8c37b4b71fefc4775033432fa7fce048c7786c1be31ebfbee5fb0670c644e
MD5 92a23621fddec353a064b25a77f9b123
BLAKE2b-256 d482f5aa068b3cb1cee8e76abe5e929890fcbbbace72df07588f31f147c1fb40

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 676bb5c5331b097441638c480ffaac989aeea8725e5239827d8a2ddafb550d41
MD5 bc4df3418b8f6b2cec041ac834d3e704
BLAKE2b-256 0762970b287c7cc8528eb2cf3e472d3f29858b7a7a77053f16abf229e3e4a0fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp312-cp312-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b19bfc6bf6b4b3ac3fd01a7c0ce81fcc8bcdab50fb8700ca29d6afb3036817c6
MD5 66a16756a67a55f402d1728c3d5ffb2b
BLAKE2b-256 ee3207929167dd65d9ff6ce663fd71bc1d97ac53985ded13949a5dbad7ae2354

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: openexr-3.3.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 716.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for openexr-3.3.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f9415681bc65a198dca642cfa736ab04ecaacea7f0bda398238c8d05563e01c6
MD5 495d62c50df6378aa60eab824728e48e
BLAKE2b-256 1bdc2d9bee2cf9ccb6b51927cb5d0325a76f1f5db1597875f35b54a206ed1419

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8124936b2efc4efee1293ee1d8d0c66cd4173849ab0fc614bbed317e7933f413
MD5 e9c59387b82bb13c8ea1253ba0f95f84
BLAKE2b-256 98038a79f00419e665ea47c92d14c493d3879be50a6829fc0d9ac4174130ba5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98ae2085b2f1a87efd74a1ed5fc9a812f65d279c8c4e426d82a43debc3b5fc8a
MD5 51c0af6baa347051cd4f593c495e28c6
BLAKE2b-256 2cabbee20f3fd300919ce655d2bfe59e69217dd28d77afc12b568b0b47c97cf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b04b4541114b740fb9d2785e96560c50a4125f8a27f38cb6fbb5d692d7dde497
MD5 c2cb6b071a39d518f34624daa2fb7596
BLAKE2b-256 12020008b1f6de10a903f3cf160487b32c291e5ee6b38b50035c71d64c7ab648

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_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.3.14-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 caff04794dcafb6098f66a92637e806da8dbe80e120143b53bfebfcc1d546f78
MD5 4c71c86df2d181590bc95b4b34645331
BLAKE2b-256 b3ccb86958e9abc07dc38e9d6c2f78a5efcb87c009d7f9dc58c17e6bcca3da5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_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.3.14-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fd98509ce47a824445171df4519d22c7e634795edc57e58fd5f20a7fa796e22
MD5 db5884e06922b3f32f37b7120db80ff5
BLAKE2b-256 9ac5c0a20b572fc73080314de3afdb0423afd070dda5934a08ac60092a67e9e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff157bb16d623f96ac2fa00542e507d48c662e58974fda056562563fdeb10623
MD5 3568cda569b56884ad2dfcc7047b6d29
BLAKE2b-256 00ac36dac0b905dcfc01cfd9e74326be4eb89ecbc53c7f20816b486bb0112f0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp311-cp311-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d0f63b3dc07e63d57e415c2fce14a1cd8103d4cec60007a2e5587aa497b12a9a
MD5 9e146fc7405582ebce20cdbe61cab235
BLAKE2b-256 8cb7e2c2d9789a9083b46f5f4b3e0918a546d6bee92f9f77f84177d1d687a0e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: openexr-3.3.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 714.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for openexr-3.3.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 96ee83d45cc2194f8ec79c75593ee8910ec4af965022efc5563a421fc2864aca
MD5 80499bccc65607bddb2a6f990637d5d5
BLAKE2b-256 9c3cf4c278f146423ee3e922e3b902b6856216f73e71cce37d0937928110d6c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cf43f1eb6a0725e894cc125ca6d6a298e81e78c6cf21ee81003fb7f7e8833b2
MD5 bd46a984d5e924fab58eb174655674ec
BLAKE2b-256 652fd04ff405e77b9702ec9d7157a3b4dc179d67ab5369ae2956afe59755b19e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edc1f88d3c80353d7cbe4735c0a8bcb8ad2d1c32793d716d2e57d7adadbac10d
MD5 e7a4f49bf35ae913b24dba80a80f7b31
BLAKE2b-256 77d9030d3e639edecfdbca7bd7b666df2e78ae852c0453d4f94a7cf3f036dcd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c15e098310b628dfb123b68cece8313c4a330d406d1a180eaf2fc8dda3c8138d
MD5 492454761be8ed6ae7aaa46816e85bb9
BLAKE2b-256 2133be7357f541251b1aabbad69190e671b44e96ca21b182bfdd4146ffdb255c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_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.3.14-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef524d86952687f0bfa33f90d9428b4987611c1fadf1d4bc5c8ad2738684204d
MD5 c5f88ad99baeb904525f5f4ad3fea015
BLAKE2b-256 a5e454a20ca57216a9f3370e1e760d7c2b6602805cb9f0a46a22a50a7e4f7169

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_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.3.14-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba44f4ea2c682e80552ff33b48f24570b79301e5091aa0d2ee91f26cf39bbd1e
MD5 e400c81034d832927646331d1ef86364
BLAKE2b-256 70e21d5952be393c0fb6addb8073bba69a66534021f937cfb97e9c82e203b4e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ec1ad49480e950b913a4887fbf03bc8f1ef446ea2d8b1e711984775017b381c
MD5 699bbe46d4b2cabb2e977d62572e1d43
BLAKE2b-256 5c1ae5219d021eab109c001003544a5cca4a994327b79d30fa6452cd19de9904

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 efcbfd5f22a91833f1e9f0bce9f3b1786c448c3de3733cf29f01da874d037bc3
MD5 2d9cfaca07cdf95857cbbe99beac3c2f
BLAKE2b-256 3960b2313e593715b1ea0485ef2d1076d324a2fe536d9277f5c3ed8e410b3ce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: openexr-3.3.14-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 707.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for openexr-3.3.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0fa02595e11c9cb8f50348948ef7c0817b21795b7e37eb0a3f5d677a749dc208
MD5 903fbd65afed1a40e5a7637c75294505
BLAKE2b-256 a72f0e7e16ba7461c81aaa693222d871bed44f904836d23be7b6dd08178abeaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4abd9e1452427a8a9e03351c701cfb2e49d5953b35c7efd129236ef4665e5922
MD5 5ec041af78c728b17c65a893abd57ce1
BLAKE2b-256 da1551e913dfa98f7c32083c1f7787aab6cabab20e4cc9c035adb4e5e2f6ac8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6a0d47d79d4b108fd5def24f6bcd305730ea962c2711592373011caea8227e4
MD5 606b47fa441b77d99305c7e269604868
BLAKE2b-256 861d572d0b0acadbc82d94e637808702e9311b9b633922883702dd0194ebb10a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 671ef5c88b15a2b7ba051b4bdd0305baf6eadec086827146cfff98d0bd813ea5
MD5 02f5e635237e2f701daa34ee0905732a
BLAKE2b-256 5d6642975bed78b0818534ecf6fcb67afca3279525e8276373dcbe4df0d5cacf

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_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.3.14-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8cf132599c4bea01aa8ec3032f785e3808d33310ca8e2e9121e8d750d846158
MD5 a26eb13cad2696a5c694ecb725b21477
BLAKE2b-256 2339fab481ab345f366a5bdde7e27d2cbd849021d8871e5b711492dd921d1da8

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_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.3.14-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7452cf0ec758642e1bbe9ea44df61057a31722baf5e279d769dac289a1d5fea
MD5 eebb9b6f286dfb16acc7723a555de2c5
BLAKE2b-256 70e6b2ab2c0483e86d79bb8c3657bb744bd1e869bfa7947cee39f9f200ddc064

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f3c50fbede00c8d932bc37ec2104eb544566308c393e8b4fb280d29cb0144948
MD5 a0d5ae60236b14750e6318117d617dec
BLAKE2b-256 b9cb5ef4b77253a8a89f2b8403f6faae457041bced5363b1831f46a39d70eec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp39-cp39-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2e1470ec3836dbdda00a21408bb511bc75f35d8713acd5efe3b207fc06586094
MD5 beab1237229ffdc58d08dc332627540a
BLAKE2b-256 4e71c4db8fa91edafbd3c53d21ba653d2ce7178bd4d227feeeb16c50267ab27c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: openexr-3.3.14-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 704.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for openexr-3.3.14-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8f88674f961eff596a0140f7df2ade840afb42d7716a604e13a3d6ef58984881
MD5 d4d116541a0b40335697a85280754b74
BLAKE2b-256 2e87ee46b9b1a3397f3796b701925159bd93b3fa6edeb3284cf750bba23db15d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11b0c7a3d6abb5b6464415009a17c0106393afee1fac5d832efde9b6ba963d70
MD5 b46340aae27ce80165cfa8d12b328ff4
BLAKE2b-256 afc13cbe5bb718be225bdbe00b1a2de328807f2fc20501b0b853ff213a21acae

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d40ed5940d960aadfb47abc5d70f27fe53c12aa55f3751a8b03656dabeaab5ed
MD5 13e5027768c9007c356813c89b3147d1
BLAKE2b-256 5aff0a32caf55c0a2ccd5ee6610b31e59a0a3fcc705e4c238e0544d7dc098721

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64b3c9563001ef2b628bc42c8daea5a13bd78a4eab9b59f5a1333fc14bc631d3
MD5 0461b7f569940f78e097fb6c3a51b3c1
BLAKE2b-256 5157a0603ccc5b9000a3eb9476022332971c01a7e34cfc9d9bbe8e4cb62f94b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_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.3.14-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6573ae8cac7a4d8b21b0a91903911b5cbdf7fa89fded13f4687cb746ba8d31ac
MD5 f4ff0c15eeaaab7d9deb674a729f7ff4
BLAKE2b-256 9708f4762930dc5def7b31e1de837ae73e41e46d86ce293f3100412036c6b931

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_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.3.14-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a37f80c359733d9c954d3dcebccaf0df86b741d3094990171d6045c0bb2b4f4
MD5 3c4ae042a9d1c686cabd0049309a109e
BLAKE2b-256 596e974a5ac4bcc45b6e8d5568e4a8acc8f9640fc3120eea2cc59725f3c53bca

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6b934404cc80ac657d91b988ea54ad9cc54227c4787ef6dd6945e4fa3f794834
MD5 c94c0020cd0384aa193e19a05c64103d
BLAKE2b-256 d5a84e238656072b3649a15c85219835ca8dc10659126bb3b73c9db4a31ed5ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-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.3.14-cp38-cp38-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d9b3c42f2484d24cf9ec4e9b67ba0396c4a837cef9edbdc8178500d93b55a699
MD5 bd932cd649b1ba6f051d1c6a699da97a
BLAKE2b-256 cc207b5fa2d124a231e0bff9b7fdac1cbdb99a8dd6423ee646dd6e54f8d1a2db

See more details on using hashes here.

Provenance

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

File details

Details for the file openexr-3.3.14-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: openexr-3.3.14-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 687.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for openexr-3.3.14-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 27752ed7b2dc94cb0ff9aa91f8f07fdfbccb317c4ab5f140dea0c654b04d7a8d
MD5 7c5a59da946cbbe26ffa9255391ca304
BLAKE2b-256 c755a32d034869b1ee77c59f66e5faf1b8813c3bf3ca75de6f879163df19abe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp37-cp37m-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.3.14-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3622791a65b12a8a4602c00a317e352bb909c491e85eed2238a6568a877373ba
MD5 85b8bdffb2ffec10719d9d550c4228eb
BLAKE2b-256 ba9fc5a19c05f6dae8e32e099483d72fadd17d6f035530d241dd392b93261e88

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp37-cp37m-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.3.14-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7333135cdf987d40cbd79c6d72bbfcaf642205e53091540d1295428f9896effd
MD5 3ba86eb5e798dd5d2b4bf3874e026735
BLAKE2b-256 9e82df3f3866de8e6fe5f0bb662400535d4d2739885a44029b0850607485a57b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp37-cp37m-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.3.14-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 042c8243c1a19eb47d332ff8667b829e44760072c0c4df37b5ba749805a04c5d
MD5 c66d9a368968d2bf39fff03db2deda7f
BLAKE2b-256 54157eb6475f77e3bb48e2e958c8579f8b793cf804cad3f2e6640c23e8585847

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_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.3.14-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba552b8e2263ed4383a2af71c54a764e665bb1401282c6e9b1ee9b14333cb013
MD5 4832e32fc5fa4f36c2c623afb7a63643
BLAKE2b-256 9fd8f7e8ee2807a9be861a7d3404cc5504d3e6bc7a1274b365a974f60dfc0ffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_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.3.14-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.14-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d9adc38d3172fa24e755a50d8148c8c1402af61314221318f3bf2d222de1b0f4
MD5 d6282cb6c8d535d4274273a8a421ff09
BLAKE2b-256 fe0f6cb9e436579910ec2c6f56b669379f4006ec9b0a4016d7514be38d8ca50a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.14-cp37-cp37m-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.

Release history Release notifications | RSS feed

3.4.15

49 files

3.4.14

49 files

3.4.13

49 files

3.4.12

49 files

3.4.11

49 files

3.4.10

49 files

3.4.9

49 files

3.4.8

49 files

3.4.7

49 files

3.4.6

49 files

3.4.5

49 files

3.4.4

49 files

3.4.3

49 files

3.4.2

49 files

3.4.1

49 files

3.4.0

49 files

This release

3.3.14 This release

47 files

3.3.13

47 files

3.3.12

47 files

3.3.11

47 files

3.3.10

47 files

3.3.9

47 files

3.3.8

47 files

3.3.7

47 files

3.3.6

47 files

3.3.5

47 files

3.3.4

47 files

3.3.3

47 files

3.3.2

35 files

3.3.1

35 files

3.3.0

29 files

3.2.12

49 files

3.2.11

49 files

3.2.10

49 files

3.2.9

49 files

3.2.8

49 files

3.2.7

49 files

3.2.6

49 files

3.2.5

49 files

3.2.4

35 files

3.2.3

35 files

1.3.9

30 files

1.3.8

2 files

1.3.7

1 file

1.3.2

1 file

1.3.1

1 file

1.3.0

1 file

1.2.0

1 file

1.1.0

1 file

1.0.3

1 file

1.0.2

1 file

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