Skip to main content

Python bindings for the OpenEXR image file format

Project description

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

OpenEXR

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

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

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

OpenEXR Project Mission

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

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

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

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

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

Python Module

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

Project Governance

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

Quick Start

The "Hello, World" image writer:

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

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

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

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

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

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

The corresponding example of reading an image is:

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

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

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

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

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

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

To modify the header metadata in a file:

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

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

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

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

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

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

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

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

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

height, width = (20, 10)

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

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

To read a deep file:

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

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

Community

Resources

License

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

Project details


Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

openexr-3.4.13-cp313-cp313-win_amd64.whl (728.4 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

openexr-3.4.13-cp313-cp313-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openexr-3.4.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

openexr-3.4.13-cp313-cp313-macosx_10_15_universal2.whl (2.1 MB view details)

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

openexr-3.4.13-cp312-cp312-win_amd64.whl (728.4 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

openexr-3.4.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

openexr-3.4.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.4.13-cp311-cp311-win_amd64.whl (727.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

openexr-3.4.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.4.13-cp310-cp310-win_amd64.whl (727.0 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

openexr-3.4.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

openexr-3.4.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.4.13-cp39-cp39-win_amd64.whl (720.7 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

openexr-3.4.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

openexr-3.4.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.4.13-cp38-cp38-win_amd64.whl (726.9 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

openexr-3.4.13-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

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

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

File details

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

File metadata

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

File hashes

Hashes for openexr-3.4.13.tar.gz
Algorithm Hash digest
SHA256 ae5135e39ff0b9086a56e02f3d8b5cf52c5ca7cfcde5e57080b1c12c82e3ec8a
MD5 cb62fa74793898b922c6d6ad4bc31453
BLAKE2b-256 acc411e2377b53c195136e76186c98ea1756a92d4fba01f241bc8741868d6833

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.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.4.13-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for openexr-3.4.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 829b336555d691e43b4e5a1d5cc1280cec2a7284e3632745c585cd9678549590
MD5 f8191bc3daeae6a3d3dbef7595946bb7
BLAKE2b-256 c20e13eefbedf7509b6361cc34cc569f9417deae23ea996414e16263c3a647f2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31a20eeb8a942e3152df71a81f56a9dc122531b05edfefd1a00820917f11e050
MD5 41b09b243724c14fd9b57bc00ac6a5ad
BLAKE2b-256 45698f4e8635761212bf5f68b88d6b65019d3230268bf76c362c5a04f7e4d2ef

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eea2aa34ebd2c0a240fcf0cc748c8e481ab2e65e36270afb5ceb46d89407e57a
MD5 7323acfe3e2e1d52d9ba7b7395aa1d49
BLAKE2b-256 e2cf19d7b61051577758f71a2631abc98e217a2d0488cbacdd91664d7f56d50a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 211d6bb3f3b4c7627b368c4c8f1da4af46e2d6d86a749abdec01b5239278beb0
MD5 64fcaf46e9af821949cc6c7d70be0e50
BLAKE2b-256 256593bbc2780f3b8a213462f53760e2e0ed49c8396e821bf9f189d516329faf

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 21feb2d152ee97685096036f0456d61c591b12dff99108051fc82e57ed42b81b
MD5 18c801d7b0676bf20515dfef6c879713
BLAKE2b-256 877c35d5cc289d7d43a3cfd494e3df214be02c0cbc92be81a53ea3781dd46824

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efb0e5e7be7e16a6718e5efc05f9c68f7b85c50edb4f1da2e24c2130e7bbde8c
MD5 d21c50a1461eaaa5ce706696d7f3f619
BLAKE2b-256 06a4904b6b1a797bbf6bc3a90c8f945e27d9176f58feb13561a893358c5a0cdf

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ba20faef1968ee170e08fe0fb1168bd78bf2d88725ebcfb3ed9b07c928658ce5
MD5 ec74510503d61070c8f9029cc3970cb6
BLAKE2b-256 22dd67a661cbf424c63e9e42f3064304a843598167e2450c01f6a7c4a2167cd6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 de145d008518706a522cd04ad9e89e1166c73931ced01fd1e87b4c048496068a
MD5 9e847dba72bacb5f08c36499086bafc7
BLAKE2b-256 1b784b338308e126057edb424367b71d0643cad02f384744cfa854ff425fb7c0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for openexr-3.4.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a07e028fa8238c5d7f43e420a545bb046c31aac4d62f5bd4e2b941b1e44f2100
MD5 c46ffd6ec3a2c1f3b8b3661aba3a8a4f
BLAKE2b-256 5e9626079e021f6bb76c4135269842220b86743e0e2185f45642cb521dae1eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5401a17dbe210cb2c6d19e92db10ea4a49b8037cf1e7500d69d6f335b9f9964
MD5 1dde059e20c2ff5cea56f8ff7177b317
BLAKE2b-256 c5d468dd4d9bf951bfa725945e4fb7c6affa9a666cc299369124c8fb8b56c1fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d774ae7e0254f68f936b275fc6a99b99be36c2d6e5658de28e2576cb7f90cef
MD5 95a0c5872880d98ae58e2f7195ec5090
BLAKE2b-256 76d096275ba2d68b6e49e51a67f4916ad9dd188340d93ad6e36f4caece22cf34

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.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.4.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b8b1264e80e40a1cc3492dc5a923b101eae5981d4ac1bc6f8e08fc40734383d9
MD5 1233d936b41ec3aaa1f93f6287d31a75
BLAKE2b-256 af40895b2d93da037640cb3b40107c20386896a9b0d5fa9b3781041bbe159a97

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 98794bb381da3c69cc917c81c22f0aa66d98b7e4d89a7535a7e6fab262d8c316
MD5 4f9d363b77feb678b646ba189e63acf4
BLAKE2b-256 a7fa133be7685697c99bbaf5c339fe7e3165bc1417514b27404c8e830789fa04

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7b1b8137f778c4f119a436e4937845ea8d42fe83518f9ac4ff7e253b5909de7
MD5 414bf03a3f59a812eaf7651f6c3cda80
BLAKE2b-256 b86a197ab3510fc382b350da56d8c673e3984b697678eb293d56887a27c5d350

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8747d43540fee603064d5dfaa1c1cf3fa7848dc655cc9930fa6f31d4eb9f0d09
MD5 bf276a783d81cc226dcae4340a4f1440
BLAKE2b-256 d6c53b644a8211532a7458abd02e20fe069f328053851810d8fd77d0c43a424f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1721a8806e1d3f6903332dffa7b800b2f342e898ec6b67725bf5bd1e48a41141
MD5 665c0378359ec8e994d2ee9a28fa98bf
BLAKE2b-256 d37f4dac13c484a408ed132c0c17ff14e2017ffefc98773215119e60cef6ffe1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openexr-3.4.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d47077d725666ce433790693932b51eb140fc016a402d3a4e340b7c3d3a5862f
MD5 670da0cfd78f99de7ad6115922ad082d
BLAKE2b-256 f2ba6638fa7ddc1fe6e8051c390db0da2bbb60666b6eea8814e48b053065a10a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3baab1ed86cb10c99e940f66d8682a9a2cf6eae2f9f23f473917810c0c74fd3a
MD5 2327de0ce65309c002518ddb51e878f4
BLAKE2b-256 7306b1698ebd2dab056d61a291b63aeb0f14049be456f77cb9f5d31730a8fc79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 369509ba619425fac6993120cf3878af1bccd7c6cc029fa6b650f55d98cee409
MD5 f1d982f2e7bd62fca802a8ddd6152b38
BLAKE2b-256 3e8b8ce34735f7a1e6a12af40ad7b646b4e0b2b12c6ff64f75fa85bfc8355960

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.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.4.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5e5a96cbf45ca960dcf332e5916780b909b271ff2ba0a21b8705122ce71c46da
MD5 f26b433be3f341ad1e8d9398869bfd37
BLAKE2b-256 51c56b6fd25f9a17d16ba30a71f34b0cd42180f8d056f8cdd01406e45f4754ca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 13f0860e09b976847d0e824dce1597bf53a18b45836c5d34f0317413cb8a1135
MD5 b5fb178f5f532b3fa241765e390dd8ee
BLAKE2b-256 f075c5d589d4e1b336ba1d2ee632b041424454d66e2ccc616cc47e5e0a1fd805

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bd46a2f62876de1803a10347bdd4329b24695c8b2f3b1118d81c28c16cccf54
MD5 08c44860cdb44a8f5d9b2fce2137148e
BLAKE2b-256 3d2779280856d7c5c2fc87b34269cfb3eb30afaefd10b1aff9237b5dbd016522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3306190caa86c47838b7d0120358efd6dc2c4faebd081e1a9ebe1b3b3b1941b5
MD5 5864e0a9e517534f1624902352bd37f9
BLAKE2b-256 05fea9a6780957ea93abc375e4f7cc19ddf54de010d85cd8080a70256536b2a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ebddc7a9f4ab918b1ce9e0158559a89949755491822b4360e41879fcf4f26b12
MD5 8dab4999e6d5ec8d41da5ce649d69766
BLAKE2b-256 33ee1a0a76473859b7ca039d6a862c6462a168041e6fc3e2619ffa28498fe10d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openexr-3.4.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5448b5084d12de740fa37210f350b3b944b9854d0d79d15658c2b5147137570f
MD5 4ee9817f064cc2b2360835ed8b2cf13a
BLAKE2b-256 897b09aa96c1d22436d3f79a2efc0885d58fd5ccc98df970dee91f8ca9392ee2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45fafd44910611bd64736bcfb84011a6ce7891c450975628d937e201c59aeca6
MD5 0fce1c32965e2783e530a0cf27681cbc
BLAKE2b-256 d01bef1467f4a6504e8ecd596734eb53265bb54535c6b8bbfed3d83edd1bc4aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d17e40ec7136c3f623eb51a81031384f460a9ac49b477e97426d9b77a3a2efaa
MD5 9336dd80edc8c9329a7ab937d69859da
BLAKE2b-256 19a1782bf17f3a1bfd6200f5c62475482d631dbbdf333374d4e0953bfbf27f35

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.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.4.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2c4ba12701729dc01a2ac371bba2fc0b6f6f66f9779f2242e8fa9b7170a0bccd
MD5 774b0ed51ce41eb22e9af1283de56b8d
BLAKE2b-256 ccff7f32ee3aed1884fe8ae6e9a583a73003ac50e100428c6f2308f06dceaf7e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 255587f41f64d5d3b35b2c259f0e2d9cce35f5ddcda5e13455e6bc19a5a284b2
MD5 f7c9aa94fb3eb8781759c46c842ff677
BLAKE2b-256 41bbde2167a5717b5a2d2bbe9bb052852c402a0d4eea1824daa9aae7e0390e06

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30eb2314bcfac34fd91b859a3cc97cddb3f70a5dc5793a9a4899825b31b33c78
MD5 ecf5d8c75749d4cabe0f53af3e8bd2d1
BLAKE2b-256 ff79a337de297b8d30203ad2facee99e6e8f770b914d068ab70da15b8cd6a34d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0232fc765980aa27b847d2dbbf8e04610df378670b1db48d4d03f6b64c048cf2
MD5 d67b8110acc54133d76abc6504d6c96b
BLAKE2b-256 c71d98a238568fcdeb65062c88aab8ead404161dd60b501f1dfbc1f2113b5e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5520c6e7541ba5b9334073aa81742677e3d1474cb9cf15dda1e42f76583bc5eb
MD5 01757170ab9b476a5126640afb2f55d4
BLAKE2b-256 8ca03e3f3644796c3e752c383297f47ecbf21bb6c8f7a1fe5cb6609347fe6def

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openexr-3.4.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 70f8290e77319f30ba1f75a960d7e9011a20859d8ffa2b7c4d6f3b44acc589e5
MD5 9a9e4dfaf58ce1acab8a8092db3df411
BLAKE2b-256 6f783bec6a7eef203443d55429fb10983e91b014e457da34e846fc1d4642fde6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faaf2c1237c15d49d1dd7179886c352954091ea031f0cdccf3aec7c21c43d60a
MD5 ce20ce0c3758afb67456d7e5d8f98c61
BLAKE2b-256 03efdc374ded65cdc97620d19a4990e5e9823b647fa53e1e30bc565b200c21a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57880660814997b562760904e47e6fcb420c040d34e60b1a84b1e7f971a42391
MD5 206284d3a08b506e68df3c7f993932ee
BLAKE2b-256 007a06d44dd8813482a614ca723dc22bf8bfc2ea4cd512d31b28809b89dbc8f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.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.4.13-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.13-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 23832a0c9e81f824890316d084698a1e824f438589587a9170a426d97ecbad56
MD5 d5f9bb2eb3a1ebc40342cbe742c41a8e
BLAKE2b-256 824cf0be7780a4fb2ffe4ad0ece53fc5daaa1cb80200f7d5aa50e31fec919db6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e59b07e7cb65182c328435d9911977543a95a6d23c07549c6b33b2c4df0fb4a7
MD5 78ae63765645d328dcae035abc61fc97
BLAKE2b-256 8265468f9de9602736ae56a47cffcecf07eee9e6e05c4141408a42e23fc52a68

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf9ce046053b1e7fe40ec1dd07888241852dc772523df0d59b62c5db781d2be1
MD5 34e2e46e1f7745afcabbfe03e634aaaf
BLAKE2b-256 543a982f7da01dba048f9bb96f72f47b9a6bd37a8c0d324a019f5958644372f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 155c6a1b214230412ec6d02ec3900d2f56654371c1211969dbe374e3636ba12e
MD5 b428d0d6fe2a303936e4211528526d8d
BLAKE2b-256 897e49442c35ad0ad21ac1141c133ec7e53a7e51471b3dc13398c535730335e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 605b0d82343c0089ca2bd3265dbbac762e573a0ab26181c03ff610ae65792c15
MD5 a8eaefb24dde4f1907c22d8cb6764fa1
BLAKE2b-256 b9efcd31d0cee00976b2aa6eba97a1d4f25ebc48d6842dab409948a1ba2602d3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openexr-3.4.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7c14a531743f4eb94930a88e52e2107e8e1c3a1877eadc4cf923c52637c2468b
MD5 9b4ed98db0d0419483916b20b3086066
BLAKE2b-256 9e86061f9400492aa63ec7e5c3eabbf7f181a1f652bb774a595ef57c7f53771e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a89fa7116ef00409e40389443acf757605f318ac59d09a58c77974d9b6508062
MD5 139ae1e9df195aff78f7c345bdb1640f
BLAKE2b-256 8db922a02196864223efd2d7efb951d39fe0885796c573acf1f82ea04689cd9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8462840dc2b023ff58ce71d9a24207bf9221bf69c3a8211c8da18ca5bd1e8665
MD5 fde043de5667bf9895f8a6ad296c486b
BLAKE2b-256 fc1696b3b0a4ce36e2c4fa74938e3e70b9a97e8a8eabf4d8f048069c43ef2a06

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.4.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.4.13-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.4.13-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0d0c886afc483035819f3009c80668238620540e431ebfc2bef054599ff1c93a
MD5 4a035b2d41b17578b854489fb11a777e
BLAKE2b-256 5cb6e6c0b0ff9a877a255c55777dcc896f6c3294890f2eabfadc3c4a631ddf4d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 51b2e5ea9ff4dfb691fe5086eabd0a50394a5a50947f8ec61e3e2ce11c760180
MD5 afcf829dcf4007bc83205d47de6bfc42
BLAKE2b-256 b2cdc63ab79ff996a7cd4a8d1d341af786c2b23b2b0e38feb734a17d243f356f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1763e047bb40b05cd4e3d7072a77eb517c1cb70af33733d055466fc139b13b01
MD5 b70dbfffe4b990adf310904d5cca7f54
BLAKE2b-256 73083fb385535e12118bd35754f6823c041deba57bdc2c401e3e462e8d0c09ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5eb42d41acf2505e402cb7e98ac40d7300eb7c7b399125ff40b421d33df553df
MD5 8b240bbd68a3e973af70f117d64f71e9
BLAKE2b-256 7a87afcbaa69ba89e7e093a5bdf486d6ff937ef66d46075edcc6123ce3d426bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.4.13-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b30629b702cd7fdd85b1c62cd16dec1965eab9bad9ee119cf028be477e7d140e
MD5 1a7e714dac40e6771a724d927779ca94
BLAKE2b-256 5ccb84706dee221984d9fd10f160554b7ec649ece75f3ccc4a9a477f29d9108d

See more details on using hashes here.

Provenance

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

Supported by

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