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 rudimentary support for reading and writing basic scanline image data. Many features of the file format are not yet supported, including:

  • Writing of tiled images
  • Multiresoltion images
  • Deep image data
  • Some attribute types
  • Nonunity channel sampling frequencies
  • No support for interleaved channel data

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:

import OpenEXR

width = 10
height = 10
size = width * height

h = OpenEXR.Header(width,height)
h['channels'] = {'R' : Imath.Channel(FLOAT),
                 'G' : Imath.Channel(FLOAT),
                 'B' : Imath.Channel(FLOAT),
                 'A' : Imath.Channel(FLOAT)} 
o = OpenEXR.OutputFile("hello.exr", h)
r = array('f', [n for n in range(size*0,size*1)]).tobytes()
g = array('f', [n for n in range(size*1,size*2)]).tobytes()
b = array('f', [n for n in range(size*2,size*3)]).tobytes()
a = array('f', [n for n in range(size*3,size*4)]).tobytes()
channels = {'R' : r, 'G' : g, 'B' : b, 'A' : a}
o.writePixels(channels)
o.close()

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.2.12.tar.gz (1.7 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.2.12-cp313-cp313-win_amd64.whl (769.6 kB view details)

Uploaded CPython 3.13Windows x86-64

openexr-3.2.12-cp313-cp313-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

openexr-3.2.12-cp313-cp313-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

openexr-3.2.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

openexr-3.2.12-cp313-cp313-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

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

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

openexr-3.2.12-cp312-cp312-win_amd64.whl (769.6 kB view details)

Uploaded CPython 3.12Windows x86-64

openexr-3.2.12-cp312-cp312-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

openexr-3.2.12-cp312-cp312-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

openexr-3.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

openexr-3.2.12-cp312-cp312-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

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

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

openexr-3.2.12-cp311-cp311-win_amd64.whl (769.4 kB view details)

Uploaded CPython 3.11Windows x86-64

openexr-3.2.12-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

openexr-3.2.12-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

openexr-3.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openexr-3.2.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

openexr-3.2.12-cp311-cp311-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

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

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

openexr-3.2.12-cp310-cp310-win_amd64.whl (769.4 kB view details)

Uploaded CPython 3.10Windows x86-64

openexr-3.2.12-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

openexr-3.2.12-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

openexr-3.2.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

openexr-3.2.12-cp310-cp310-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

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

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

openexr-3.2.12-cp39-cp39-win_amd64.whl (769.4 kB view details)

Uploaded CPython 3.9Windows x86-64

openexr-3.2.12-cp39-cp39-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

openexr-3.2.12-cp39-cp39-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

openexr-3.2.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

openexr-3.2.12-cp39-cp39-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

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

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

openexr-3.2.12-cp38-cp38-win_amd64.whl (769.4 kB view details)

Uploaded CPython 3.8Windows x86-64

openexr-3.2.12-cp38-cp38-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

openexr-3.2.12-cp38-cp38-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

openexr-3.2.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

openexr-3.2.12-cp38-cp38-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

openexr-3.2.12-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.2.12.tar.gz.

File metadata

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

File hashes

Hashes for openexr-3.2.12.tar.gz
Algorithm Hash digest
SHA256 afdd08009e1f4c6e028439a5456e78d8d7c1c6690dba82d829a3148942b56134
MD5 326b3e080e26cc484fda417347b2e756
BLAKE2b-256 f1c0d8951bc37399a15c8a1915e9e8602a8daf150228e5817aed1b4243854d32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 769.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for openexr-3.2.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd967f5d9034b185897c733f8bdcfb71922770417ede0fb41b782649177963a7
MD5 89cb80b8e94658e54f3c3ccdc8400bfe
BLAKE2b-256 75d6a56b44c5563bcaa00b1a1491ab8e6ae52038802be39f12433e885f7a230c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-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.2.12-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 beea3f39813d9b0d79728e8fef8da5385e65d457eb679a6a0958d0ddaf010ef4
MD5 1dc1610fc0cf24553583c53f162f6401
BLAKE2b-256 a9dda01767eb77918d4b9f5342be25ff92cfe5e180cbafb3ba74634e7e5b0554

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-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.2.12-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57efdece22c8891dc578ae64931612b30ec43d2ebc519170878285f309aa7333
MD5 fc4b429ae86b18215a73dd180119964a
BLAKE2b-256 975183c677a5b9cf35b4f9917ae60bbf1a0308c0767c8c82eec327f7cbcbf16f

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-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.2.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1380f071c7c7fbde81f6c982ad86e003f0d0f829f817c00cc0f9c96242518805
MD5 e62ab20cdedbb7a57c175f0daf588aa7
BLAKE2b-256 bd2cbd52b59c6c572bc8481476aad7c1e4d57df9d776ad3f7906c2e99dfa2232

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.2.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c30e49c760142bb181af8f54f874ceec19cf8ae967c91364223e6b5ce6da421
MD5 fa4e4e0170825ef606becb34ff71a101
BLAKE2b-256 d800bb513f81676b9926eee1e42235421712f9a081db76d5bc2f38cd501768ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.2.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfb82326cacee0aea68673eecad3ad037eae454e19af98602f4f0602b7b9c8c7
MD5 24bdcf1c33b48a1ff1f99cf49138d2e4
BLAKE2b-256 8d8e708ab352ef86ac246cc7546cb2e1b6e86d077852f2d8de6062a313715377

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-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.2.12-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aba82a0fffa630bf5c0adf52e40806dd2173f3d090a467b132e0d4ef1793d7af
MD5 52b3cde24f24779c00cdb636bca4b476
BLAKE2b-256 17f1084f4ec36e8e9a3ba83fc58755701cce47ab75cb5f7f5aee51b3dbac526d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-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.2.12-cp313-cp313-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 33f2894875f240f9f484bbe415b56a18085247aaab40190bb00efa18c41475c6
MD5 4249df969d45a105038717c6af312317
BLAKE2b-256 27c0c94405383c2e14d690e77f4c8e941fb6104ef7e6a39dee8bbb34bde33208

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 769.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.2.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 05aac25bb5a0cd75ab1783397818d286303b410068f1c8ce72f378847f413479
MD5 6f4a997fcaa41ff9ace35a062c54053c
BLAKE2b-256 15b1b74fb1e7deb6292e2eaff9c458ff456941c8047da44aa7d27c065971c641

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de3a194b0e77865e89e89e65e0b9a71cd2c3e798b6aa32c9fabba1853012710a
MD5 3585a19ba6d8b2338ab4fa082187c4f6
BLAKE2b-256 653c1a1757c2ffdb900163e9ffbd04fcf90f9fd752e379a4de46660045971fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c5e54acca23221c39c5c1cad3112ecd9c09b67c9bbcc8e6c608b270b4185ae6
MD5 847292a0cef2be09c16535bd81265294
BLAKE2b-256 ebd02aa73b23b06697bf24c6d25a931c9f9129e00d70a20d0d60204c9774419a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b96d29c245dd6046cbc3c3a8848d0836dd957e0ebe8c1838410a07db61efb61
MD5 61cb55b789f6e2e7f68ec4141446ade4
BLAKE2b-256 a73fcfde406c19c182c3b260a501a78641f9f56d861af6ee894909260c5ad81d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.2.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 509a1d0f8a32142474391b2cf5521fe6031936c8930a237e3277ef72f191d8b9
MD5 6440362156f442e58d3bae114c8796f5
BLAKE2b-256 0fb4d080ef23641922ea10e2e3d244d4a6ac722300e8b91e6ad50e757e3b8f4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.2.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 461d601b33b82a9e9f7687c0a61ac3f637c4e97f42e80a647fedb0eed16a3abe
MD5 b81d932e344983dd85d3e5d18924c932
BLAKE2b-256 34bad9c1cf1a6fb8278d525b7efc353702cccfdc96336d13ed955c43ebd3e4f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 15fdd3f5260f3eb5e9ab8550de459411fc2060f83930fb4b860518025826ff0c
MD5 20aa540759fb594d38389e55c67e90e9
BLAKE2b-256 1d47732c94b6ab5c99634900f9653b7a9a87bbb5ad17840e6042f8ac631ed208

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a4f464c6c9a6f459d22abcd112ce942deb25ed9b09176827cee89838e73393d6
MD5 8ed342e0b3c9d6279ef8d2731c339bf4
BLAKE2b-256 3ab199fb39423394a954721524a3c05bc35ed3b800df7e538c6e980621321fc0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 769.4 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.2.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6083c6093915c6e9501feb3816ac5b1ff2f07ab539188dafafad7958997d9d91
MD5 a8397e304bd7b5115dc03cc2c85ad802
BLAKE2b-256 abce8474780743a412005e1cc062e3a3ee185b98809ddb498d45daf3f89c6d72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d5f1bbd1bb0f5dd425bff9387e40065fe1ba27d584142e85f9aa6fa9ba202ff
MD5 5d43b70c5855c65edd17cf024c7e5195
BLAKE2b-256 d5a82eccac8a699b39107c09af388b9922bd04ad9e5576237c53ce136199f780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62f531026aa076380d08ed0e15b02dcc0b20f5e21bfc809e119a6239d7a52ada
MD5 4c2369889712982a38597812be33985c
BLAKE2b-256 54a1afd2529e8090dcb2d794287d3f0efa92a836838f107a74ccffdd5fb6899a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 238981c9d103e84402178571b120c8febfd01dbaf265138378ba6f8277f58bb7
MD5 85f6de0d1debf55def096058eb83dd03
BLAKE2b-256 4dbcb41964cef267c76e39c20a2b8d200916bb328056d961afb46fd6d07f78bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.2.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85c9ddb767eeaaad9cfcdc21f89fb78a7022e299a66c7e62aebb51c827bd2be4
MD5 7151bc585494233cb81eabc00642b4d7
BLAKE2b-256 09c203f3237665d189cd6b936cb84c99d47bcc7111f7cedd60a2cabf568fc0b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.2.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b97be3b0411719d891fbb7fb7f6fb39398a07b76f96a064362748c2d436f2068
MD5 2e87dcde5cbffe48e3803ade4f70fff1
BLAKE2b-256 42b304a28febda256dd22a5236c9213bebf7ff5bc187acb6f8de4dd04bf62eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 72525a67532765ab164768b9d79e716bb049c82b92a1ae74987fb509ac80cd22
MD5 9c6f21cca9b79b28a9e0360c8a6cb52a
BLAKE2b-256 089b8861aaaeee21a1c7e85595e8388b17db7debd849376cf5f4a00fb3bedacc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b3f4c3161bb498cddec3b163eba6cef8968c4799bc11a8a45f542d664c5686f5
MD5 d059ad05a1740dd06d6eaaf068d5e81b
BLAKE2b-256 79d7f2171a66afa681289ce5af7e21eb8a77e512187f0c571812a4dbc37cdbdf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 769.4 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.2.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6541ac2e90a741ece05fb7b54ff38eea7359aaf08650c0d81c157bb31178c76
MD5 a10021554e0e1fa25362f8be9ffc06b9
BLAKE2b-256 689405bd03b06c93c8cb1d5e0f4687fa30be2a6d86f6b1c9f7a56207166cd8e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b77b1fef0a7063c50ca520f9d0ee489a1c6d14557753a9973b517507061393c
MD5 3a99f44a72081e0378841764943da368
BLAKE2b-256 7db818b8064a5a773c5c2e01b7f9724757959d43e5f2d975fee4bfd1295e6858

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24af1f9373f36f7ea95e95147765c568afb1effec3a59c8f0edf479c5c54400e
MD5 e702b872e1e483ab0e44d536218709dd
BLAKE2b-256 31e277038d222c7c78f54065a0a2240246c97c4a8dd110adcdb26ac28c6530cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 100da1115acad45afeebd105b7014a25dd60b0f5a526257a39f9c7622cf5bd90
MD5 0258ea9b4e5a3beea20030d20237923f
BLAKE2b-256 f1cd204f8fffc734b02198e291be3b5d4622dab627a14aad2897159e519143ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.2.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b65dbb32e20cc135627593a9a9f4925bee42e62c463bb0d980f734a5d6a3462
MD5 8cc21962ed647d25572991ea21ca7156
BLAKE2b-256 13ef8dfa78680c1c1e631477913af08487d622494c4e96eca87cd743c7b5fa92

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.2.12-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b45271b3267f225342a1f8ee5dc9b5a0b1d2bdb924331cfff99d1403ef49a972
MD5 bf426710c0068ca4f0483822175deea9
BLAKE2b-256 b19b2e0a931e188a97d1a245f6c8f9a5d837b59ed2f49d8ee999ab2b9ce6d6e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cd620e0540c5db4b819e20aee21baf7e3bcd8045c2998ac644cd5ba5f9824269
MD5 80d3d798ad3e1c048446d4d3c6baaf3d
BLAKE2b-256 9f6f57ede876c21d1f61db02e835a8419d35acc4256b9092531879e3d77c2231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 efc56235b4f917b86e2d39fb7694bbaa20f8a6250e6b9a63bffe9d108c1f6ccf
MD5 51a577478a5bbfa4c1c1e4f8d44f6d16
BLAKE2b-256 e9e6a888958152999b528483775a862e28fe9eef116264d5b9a6e47f6423c006

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.12-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 769.4 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.2.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e238601fd53e7db4e26e62f981869b87bde0080e412c3c9c509ebc9a9a79683c
MD5 cd7bdffc15ec74df4f73e3b0fa3c9770
BLAKE2b-256 84a2ae88f46689c42aaddb55c020c6b6ae2ae5d85bc32b2766ea483cac4b9dd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d98966f841fa020f674e36c9dcb9158b586514f46a500fb72413301dbe732cd
MD5 4e4745a05707463af7195b9d604a5f24
BLAKE2b-256 37abc292e904323bd84ddedc061851e4ca1ee86d28ffadcea786b9ad5826f078

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed4e8873db2eb17cb6292326701c9cbe72d48557ab284c50a3117c3972e515e5
MD5 c3ff0b2d997d61248c6efa72a57ce250
BLAKE2b-256 4e503d9ff405180e38f469ecfcf20bc99f18f286320adca7624bcddc42d720f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddd0427e73d242b9bd16dfac706197ea75d0b882bb39ab0575062ae895c01f7f
MD5 5ec70b457f4b54793c9409db561059fd
BLAKE2b-256 5e551623cfef52e01fe997d6559359719c2197099fc650c2b662d7e2c9501194

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.2.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c57578d1fa032a24f5fd680ae27cd95a7fef1cbc682f20ab10b6d2e47a9ee334
MD5 d368f15712beb1a5e78f7b950dda4705
BLAKE2b-256 9fa2037b804045360821e0f16bac357d3e839b9f5e8927fa7843f5dcbb991c20

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.2.12-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b365c8f7ec4a8083d3bd12ca3508b4215aae4d55ba191e4b61332920ef8f826c
MD5 6d5ff24d0cba6a3d4ba8db6e6cd9a0fb
BLAKE2b-256 f70f345a52415fa290e8bef5f4aba5f8bd76ef10a6b9208ae0537c84f7a8fbd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 00a665a17def37af1262c3753a4a0b8841301929fca46908f81181de33fe29f8
MD5 8833ee8781e4d32416f7cbe312e974a0
BLAKE2b-256 2408b4fc0709b86207a4c3c9a4ad5b9163099b76bfd49580ec9e509f7bfcaaee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 59ba86d2cfff5894e1b28af042fffbf3f3a9bdebf102bad6c185bf754eecb258
MD5 eb4e89f32d81ab003cf5b36b76de6fae
BLAKE2b-256 7df2d505bcba7d41c5cc7a0ab19cf1c29f563c3b690357500c0ddbcdbf71be97

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.12-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 769.4 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.2.12-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b9d153e36af7629f0f7f93b708bdbeada32cdc5f1ebd54e1a8efaf01a25f1bd
MD5 231ce15f326fd95916719d1a01f13691
BLAKE2b-256 67d3472d75b811f3f74a3f9370d7d49154d70f8a051d328aa21140fa01f33e63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eced28a8369f3af5f1d6a3a10eae17dc4245caef923ceeefa615d083f49a0a1e
MD5 5d1704cae51e11a155c393600a8420db
BLAKE2b-256 b25803f156d98a075a787b3804d415083e6eef04aab3467794b77b843fe1af37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f51e360290ae5ec098df55135cb2d31ef9a15302ce28ef542f5fc04ac85e0580
MD5 565ce1ed4345006db487c7094e884be0
BLAKE2b-256 2a91132e41231529e7b2bae1c3901251802f1fb095af3327e61c0486765d22ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d211738c801cb950d37f92c1798d165496679b82cb5e5377e00134ad05e6f24b
MD5 9b5188b5c11210f53539090af1f7ea3c
BLAKE2b-256 a238d9782d0e93fc5178c6ae0c9c36e6d7bb2afc8abc40a882f1e7aa7fe96958

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_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.2.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80e4f75f9595c40ab43ef403328e4adfd674886373554424966a19d47b73a23f
MD5 2dad9d18238fca5d74b8540b9ad56843
BLAKE2b-256 6c231df07c910503da808085cf29e413dd0669d46a83b812e613234ccce37a7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_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.2.12-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.2.12-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 338377582da15e67f1b0be35a15ee9e7fa53f9a15dd322d10d2afef32e527ad4
MD5 9fcaa7e0ce7acc1f4f1bfe15244f8e8b
BLAKE2b-256 89a6d8f0721edb14bc346287943ffd9090774aa55aaaf7da9b19188dce665ea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 58f1832940a5b64a2cdfd616063bc01c5661f6785640538063aab588ef49eba8
MD5 ff5626b2b61492abed4b0aea4d58ed9d
BLAKE2b-256 320f128566313001582184b47f7d79da9a9302cf1c253fccaae95df6b73948a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.12-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 cfee78bc40af4337e53549a7133cdb752759002cdb390b2e47af0ca59eeed412
MD5 83138cc71f47d47e767f49dcf2d2f423
BLAKE2b-256 d7b0498a304d64610b2383fc399a565fa912667f96bb8eb1c6810412c7cac194

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

3.4.15

49 files

3.4.14

49 files

3.4.13

49 files

3.4.12

49 files

3.4.11

49 files

3.4.10

49 files

3.4.9

49 files

3.4.8

49 files

3.4.7

49 files

3.4.6

49 files

3.4.5

49 files

3.4.4

49 files

3.4.3

49 files

3.4.2

49 files

3.4.1

49 files

3.4.0

49 files

3.3.14

47 files

3.3.13

47 files

3.3.12

47 files

3.3.11

47 files

3.3.10

47 files

3.3.9

47 files

3.3.8

47 files

3.3.7

47 files

3.3.6

47 files

3.3.5

47 files

3.3.4

47 files

3.3.3

47 files

3.3.2

35 files

3.3.1

35 files

3.3.0

29 files

This release

3.2.12 This release

49 files

3.2.11

49 files

3.2.10

49 files

3.2.9

49 files

3.2.8

49 files

3.2.7

49 files

3.2.6

49 files

3.2.5

49 files

3.2.4

35 files

3.2.3

35 files

1.3.9

30 files

1.3.8

2 files

1.3.7

1 file

1.3.2

1 file

1.3.1

1 file

1.3.0

1 file

1.2.0

1 file

1.1.0

1 file

1.0.3

1 file

1.0.2

1 file

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