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.13.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.13-cp312-cp312-win_amd64.whl (718.6 kB view details)

Uploaded CPython 3.12Windows x86-64

openexr-3.3.13-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.13-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

openexr-3.3.13-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.13-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.13-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

openexr-3.3.13-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.13-cp311-cp311-win_amd64.whl (716.1 kB view details)

Uploaded CPython 3.11Windows x86-64

openexr-3.3.13-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.13-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

openexr-3.3.13-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.13-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.13-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

openexr-3.3.13-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.13-cp310-cp310-win_amd64.whl (714.9 kB view details)

Uploaded CPython 3.10Windows x86-64

openexr-3.3.13-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.13-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

openexr-3.3.13-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.13-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.13-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

openexr-3.3.13-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.13-cp39-cp39-win_amd64.whl (707.5 kB view details)

Uploaded CPython 3.9Windows x86-64

openexr-3.3.13-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.13-cp39-cp39-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

openexr-3.3.13-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.13-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.13-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

openexr-3.3.13-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.13-cp38-cp38-win_amd64.whl (704.2 kB view details)

Uploaded CPython 3.8Windows x86-64

openexr-3.3.13-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.13-cp38-cp38-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

openexr-3.3.13-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.13-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.13-cp38-cp38-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

openexr-3.3.13-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.13-cp37-cp37m-win_amd64.whl (687.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

openexr-3.3.13-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.13-cp37-cp37m-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

openexr-3.3.13-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.13-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.13-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.13.tar.gz.

File metadata

  • Download URL: openexr-3.3.13.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.13.tar.gz
Algorithm Hash digest
SHA256 5f7badbd5c6115a6068baa8ef19716de60abd58c575970e303ae8c168a05d951
MD5 9ccbb809946277de78603aa6447c61e3
BLAKE2b-256 41695b3093b69d606cfe15d87e93a7599a05b7c5f88ac0edfddd24e3a447dd3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.3.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 718.6 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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 35c05570f109682ab0604f8a92eaaae4fb67b8ac851d5510972fdad9a874c9e8
MD5 4cf0a10115d682bcc0e8d581f7328b7b
BLAKE2b-256 e041302323786c52fa7a7a778e0a60c1a4fb826164486b6b860e0489b820413b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f335a501c38ef8b9f4c8572fc38bac108876fbdf08b02991c535c63c0236e4ff
MD5 0ad90e0fa7520a08dd1e5dc170949fd9
BLAKE2b-256 11e8c24016b2bc62fb6724b1bccf5bcee3db2a2ef3b4c242237d12cf00555114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fc853634f76cd680a61b7092fa46d1999817afb63a5564960d5e6993c1cf3d5
MD5 3150e97b700e9e90169babd99143339c
BLAKE2b-256 6ba0daf823f3e35c5ea0b265d4a04d6b1cd5c5450e1389f3ea7d64981c150eb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dba7ca8a7e5f1b654e2bb7ba875d8ab7c00a4a449cc1f68c779de42dde045df1
MD5 aaff30f25088ca839786cfa2f88c7899
BLAKE2b-256 dcfd1d5ee6f189c2f45e9fe8cba6057a82e91bad9f3d9fa69abc44e7f6e54c0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2c191810f30e2b64722cf20e3eed873280aa3c3829bfc5807796a86c38fffb0
MD5 6f39eda1fc17084d7d41d8d83ba0928b
BLAKE2b-256 aaef6ab8599504d4f50f9e42d53ffbb219e035c2ed1bcdb02cceaf8f5ecb06a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f647ee54a0519ad8091fdb196ad26585716fcb34e930af12aa20c74ed2eb2186
MD5 3c76429600340409e28e0d7a3daf6522
BLAKE2b-256 6fe2885a1d763c20b96c4c71787155e822de6de45e8a7d8d085c8ea298106139

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1dee52eba42623e12873e8bbad39fabc765647140b6b6663c2f2d07970b72af5
MD5 22192876e83e40273b81ae09485554e8
BLAKE2b-256 ad72bceb3be7f14c24e03551ff9fbbe926d50d873a00e79c0de0ab9cfcbb0745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b420acdc878cc5663c6f2647f16480ea69ce8df56d6d1fd6bc80a2eca1cd5293
MD5 d67939fdd8082ebb46ab34dd5d46e0b2
BLAKE2b-256 c0790d0e74360c5001b09284827290b067aadcd2c6d1072a582f45f2918e143f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.3.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 716.1 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.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e7db2296e56ce46948aaa4d7ac054a0d480f1fae2fa76936f3dda929b2bd0613
MD5 f45f7e79cde36861d6e2ad46f5097f4f
BLAKE2b-256 f922962d9f9e5aac6d12d3b605cfc3e3d2bb059eac4db27189b32ec0f7459cd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2ed7fada35f7f61694a2cd1a88c7129a6fc2ab06110e5e98aa60c54803662c4
MD5 e146cfa7eb5f013b0a293dc1f0c2c59c
BLAKE2b-256 ff6919774f7699258a630ca0ddfe6c6ee9a48cda229132ff647f91ce72955fd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02e2ecb8b69365df5ed41461986e3cb6a1c1b4f7a4dee1aa1f083d0b42baa40f
MD5 df80ee069e397fa3435f63b5bda8afd9
BLAKE2b-256 b500ea49113c533d3ecc2db1d43e4061a5c7a8fe59f43782bcfa4ab5611b564d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 161e344d0057d4d2eb6f72220eb78af201ba72f9fa673dd7bb3a080e72ddf27f
MD5 ec13034b4189c942536d575e992db1e1
BLAKE2b-256 1c04933fa954fdc4fe9e77fa407165df52cbaa5e4b194b6ee38d52c6e19ab668

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db180306117d8471c16470f387dc03233ee753feb97d6d818afd76215c4f8c6b
MD5 c237d83ec3841856110c21d95963dc34
BLAKE2b-256 23e60103132102f4300071d8347cd7d532d988b9862d4901a1ab4a92b058cb8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58fae81afb0a37bccf7a258b553b9a8d2336c525ec295958f29fc9991cbca1e3
MD5 403b8f4f50cb4b36485be73ad7b482a3
BLAKE2b-256 c62567b2fdbc1fd98c4c2390f21954bdae1fd8af6da76720446d3217587e6e50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4b5bfb52381e906a514a615a2f199076c74bd1d4b2db80ba5f4ddb74dfccf9dc
MD5 756f176e6a8741c3f71dbee356b46bac
BLAKE2b-256 b84ea9348229a064b8cfe49080166d1264951c172842320c76644085da4a0659

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5c32d7d3c051ab8c7298cacfc39c018ecb09c9c4be1f95cbec553046b09ab3c3
MD5 c2db2da3f38b7d94de0ca8a1da1b590f
BLAKE2b-256 6b859afdea7770074f24d475fe4413b46bbfda97f3b47256491cfe143491f904

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.3.13-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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ea72d09449ec73536d4fe22da5e9ecd92d4100f59347ef8b51b7dd94da4f42f
MD5 38a06590baad8852eb4cda94d843c21d
BLAKE2b-256 d752952208d8ee58c98b3be25f57bec4af77004e088e5b669a8dd9fd137d8dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea50ddf4996ac43f9f79e61b5e9e846e54442a06a57f463cf09020a032c1ee4b
MD5 cecd83bad74cd3a3d9a60a156704b589
BLAKE2b-256 cbbaaa9eb2a1f09c8d317c4fbf96e30fbf825a8e6ba326bb561efcc661de755b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c4626788d52d3eee91bbb315ff398ff52c3e9adcacbea469ce7a77569b53850
MD5 d2590a7db0e6870b20746969cc66ac30
BLAKE2b-256 4638b9aa12e44eb2c91c9a2dd023ab6509f0499e18694b829408ed36f999b71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4813a209db9579ef221659dbddc2ddbb637c768d70de17cc50f15cae5d29f9f5
MD5 bb27298ea0d801f700af657fca27efd2
BLAKE2b-256 0382b5126a63ec4971332aa259f1007806e534e660ee1c846527a711e2b8589a

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9863979cc00e6757798c95d931154ef4fbfdf458984c42c040bdb6a31ae5008b
MD5 4b4e8e8a9ad21a568e608720b5f32ffa
BLAKE2b-256 5e33502110221bb1cfaf6b3e95152b97398faf7615dd8ca5bb6d087bbadf81e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cce5ffa252470e7807d831380eedfebbec9d8ea68851d4fd4fb9763629326b2c
MD5 f697e38f99725b9d8d5c3494edb2c4e7
BLAKE2b-256 d16bd2e26648907f61c72b866a2444d84a2764cd8c359a6413cac575e60bb842

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b1c8416d62586ea4c7642123bd0b38cdcad69611ad7714932a39d72d5a3a0d64
MD5 f8f761b33d5b2b1cb894bcb31f6c35ce
BLAKE2b-256 dfdce60458090d43dca379d8ef717e18c66c0bfa8de6c8ed606a4943912830cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 647853a72779d9215f3a977238d8bdbd21d4d32d784fee6315e03fa59e68c01a
MD5 b054237a8d4e4caa6b9f14656697c304
BLAKE2b-256 3340de1de0703f0f7f9223688880d50445992fcc488ee911864de3e4222ff0ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.3.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 707.5 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.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a63525c7bb59a43f3b12837057928c45cace64d34376c0c1aef130ee36d159ea
MD5 bf9b07017c5c6d1f9130ab71f00c1ba0
BLAKE2b-256 3fb6dd14be4661154e0c390e3c79776148cd2e2a63c1e726dabb15ecf49127c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0c00d12578c65598efa08d03f0ef2ec0a06d8ec5eb55c0aadd33834acc67f0f
MD5 a1ec02185cab05c4c368b54312aaa3b5
BLAKE2b-256 d24ec7d8b7f878cd3f03e71a3587b429a7026ea25539467788777aa9038c37c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e1e8da6c09356eaab34979f7b04b35f0320d4e80d101349986756c7d8911367
MD5 3cc01bffadf186619e67b8529f50f015
BLAKE2b-256 3d309e3d4cd36c01acea0e3707c0ad771376aae8bb8b309dbbb226b9cc74852f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3cf3584f78af3c395831e9b56bd63e555cbcc97481d883bbd0b9ef5119a6ba00
MD5 704cf49dcf9a54c811d61faaa53f2967
BLAKE2b-256 c6dd19eebd243afaaf032ede205f85bc55598f803fb4b5ff6eef1f8683bac922

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68d9152cce75179050de807b83b0aabcb739fb66889326c8d823fc6585d60662
MD5 7e7a0121f4d0df183ace21f0e3de3879
BLAKE2b-256 35ed69d25244b13ee65bf21a4dcacb29917f522eef3a90fb71f770926b447b3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb179d904920fd467bf0dd41f8f142ef953787d9e8cf4a1d7169fb20f2129fb6
MD5 c3f64468067c7afe7ea5352dac1a05b6
BLAKE2b-256 c8de20c8309ce353fbd71f15d8d17f8793ac69d1651dabbecfea37aa2a07387a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b9135695eb5588f6c60f75fd3c0926e216adbc02ebb16e7390a4294525613f39
MD5 a32f944e4b42776fb93e9c6427a5de9e
BLAKE2b-256 85e768253096c0b9cda987dddee7e29e0b4029cb109273186c7904daf133d6a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1efef6aeb4caa6847a26d33b93e85c9a92314e001e83d7fa97e3c69e8c1ee1d0
MD5 406b76a86decccf02dc1e1fb0d312a22
BLAKE2b-256 b92ed50fa1a6c4fa0426e57be27d3542df5dfcdb9eccb4fc8e8acd82188721ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.3.13-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.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 686ab9271d680b845d58d71a71394245d4bf1dc4aec1e5e645e43bf707df19b0
MD5 452aaa44de793d9846e002fd7fe16ea1
BLAKE2b-256 a4a77c587dd16407e658dbd4195b76be0db84f8cb9e3bd028e4f08a96cc1ea21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b6010c8d93eb96fc2a810c2f2ba0784d9f78ce6f5a24a34d1f3dd978b68007c
MD5 9de8199fe97159669bdd465e567ef31c
BLAKE2b-256 f2622b9fd0e706982085b7007980bc0fe0aeef003ddd2b408257a25568c8ba55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5865a57ca35552f31250ff50f6127e0ee5483e9a1f0e49baea630318f7d3172c
MD5 f336e39e523a77c1b57d9b89aebfd91e
BLAKE2b-256 8c090d0de38c30db23618b5202124ddeb3281d17c4d1fb0289426770e02c94b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d814a4d32b4a4379daefba1e23c464ae7ea35ebefe985bc3e6eb7a6cb5b1223
MD5 8c815681d51aea235428d1267835d98b
BLAKE2b-256 b42f6622b48ca161e1b7c11ce65c03e15c9dbe8d489f0c790bc6e92f30cb085d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b43e5f55130bcbf21e91c35f0d7589aa55ac3147b03d80655f55e25c59c7b2a3
MD5 ebec5c511baa3fe1171e244e519cd111
BLAKE2b-256 167cc786e80398a460ec8aa46218708ff792a0524d56a0fbaa74d97a12a89fb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 230d6db9acd16d522ed2346c18c2e50a6ec28679904f4cf4b861ad19e6f706d8
MD5 4e95d3543fe287afdb0fc41dbf307fe1
BLAKE2b-256 82ad358218a2b4f41e87c76af100c0d738330270d17062e73304d9277bb2bdc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 284003ab4cc60c9853b5970001ba00a3e3f0633024bff5a0702525e5fb103059
MD5 31d38085f183ef05b594f35067a5fdac
BLAKE2b-256 e37e39cf30e24eaac9b8b2df665c969a309aaaf87cc3c2d60acefbe1fc6feb10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 825e3504b9878e4347dacc0b03fa87b2767e4d66e2c16cb4ec8b25f9f139932c
MD5 0e7c05d3d12f3ec4772b05363c029a50
BLAKE2b-256 5ab1d737b1c97d3e3cc26ed43793e4fc490416e7d81457f0fa7489789d750047

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: openexr-3.3.13-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.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fcbe06722debbfce35d3675307a56b3a2faebce30bf1126e4c34949d262f33e0
MD5 d16f691709cb16e6aa893a6d79e47d8d
BLAKE2b-256 b19ee26eba242b92ff7e0d8c0406796baf0274fbffda7a6184fd4223af50d0fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f459242d3bc505c7fecb03bb17e65d0fb0810e468ccd99c9d803a716d3622bc
MD5 d054b41e65c98aca6d2150938d481606
BLAKE2b-256 3fc88a2ab5aea7163b6f12fb352e6f2a049fb1b9946281a7c5aeafdf358aeecd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f062de9961e6b87ce68a7890276732a08ffa3a47b8d04742086964ae28ca5633
MD5 448dd9eec9b82f5a16acb357b32c6d7f
BLAKE2b-256 cbd0b2f9172b92a9bc9a360e37c0e15dd276e45eed66e3bc7dadae7cdaf2065f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.3.13-cp37-cp37m-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fdbcae0292395033aba41c7a014a8a795977310daef8e5fdf334de739f7536ad
MD5 cfa1cb6bcac0d66e512874b1554d7df5
BLAKE2b-256 70c6c238acc2b3b28181e086e43adfcd561202d165abfce5b5ab016e09660676

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp37-cp37m-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67a8401e29e465b56d1ec76dbee55571a8ae7c7888e2f1a7c017899843669731
MD5 3b758a8b4dcb89b11bb7a8bfdcb67716
BLAKE2b-256 ad21a48ed1cc75c9e5d20ac1983f9045463445dd0da989721f2b2bdcdb6b8138

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.3.13-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.13-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.3.13-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eb9c79feb5ce79855fc834e51c015305706f619014d445869b549fe984bd2e0e
MD5 c145205506e566bbc4d7567799404859
BLAKE2b-256 9ec6da537aff989edb4289f794fa3b185ec3c86fec982a88cb97f181d1c41661

See more details on using hashes here.

Provenance

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

Supported by

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