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 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.

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.2.10.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.10-cp313-cp313-win_amd64.whl (769.0 kB view details)

Uploaded CPython 3.13Windows x86-64

openexr-3.2.10-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.10-cp313-cp313-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

openexr-3.2.10-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.10-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.10-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

openexr-3.2.10-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.10-cp312-cp312-win_amd64.whl (769.0 kB view details)

Uploaded CPython 3.12Windows x86-64

openexr-3.2.10-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.10-cp312-cp312-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

openexr-3.2.10-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.10-cp311-cp311-win_amd64.whl (768.8 kB view details)

Uploaded CPython 3.11Windows x86-64

openexr-3.2.10-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.10-cp311-cp311-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

openexr-3.2.10-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.10-cp310-cp310-win_amd64.whl (768.8 kB view details)

Uploaded CPython 3.10Windows x86-64

openexr-3.2.10-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.10-cp310-cp310-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

openexr-3.2.10-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.10-cp39-cp39-win_amd64.whl (768.9 kB view details)

Uploaded CPython 3.9Windows x86-64

openexr-3.2.10-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.10-cp39-cp39-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

openexr-3.2.10-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.10-cp38-cp38-win_amd64.whl (768.9 kB view details)

Uploaded CPython 3.8Windows x86-64

openexr-3.2.10-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.10-cp38-cp38-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

openexr-3.2.10-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.10.tar.gz.

File metadata

  • Download URL: openexr-3.2.10.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.10.tar.gz
Algorithm Hash digest
SHA256 7c31cc12feeefc72505958bfaa51365eb7833aef3473174c2e76857f488db096
MD5 33669ce5fba6258aaa9c9916a6dbcb19
BLAKE2b-256 985823e33c4049dad594b41b2d72b4bffef1bdd3d71e7ab2fb89c67d3d32fc5f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 769.0 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.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8754525a4174d88c237fdd6dd0248a9d8831d20420e677b086f493b109ed8a55
MD5 8fe27eb5c215a017668d24b6e2ac69c7
BLAKE2b-256 c0dd09a1df3b082a0fdb26ff0512aefb4da3c426106c0b8026595452a9eebe81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be835b7b293dd44e8c414acbd65b11c79bfb14e4faa050734e18882a7fcecfb4
MD5 97a0fe16999b84b8d2da275cbc4e739e
BLAKE2b-256 048ba4213716cc4e19648a117dea8f071e7ad980e1c30781558964251b062946

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a643f4d6e2451089bb8b69f1166e6a458458df06ce5cda4affdf54671534377
MD5 e0029f503a96f8cd7a488b4639a15e52
BLAKE2b-256 6fe467544e7d022ca251406d7e5a297263a3311b86ed2c8ea19c6ddcaf41e671

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54d2a58196702cd0850ab32d33b85a9d45889d1ed83633ede209b6bbec016ce2
MD5 bea8e1c5e8141e54931033359b6e10c3
BLAKE2b-256 212d7221490a936c3bed4ced13f7a60f1503e4050d6fccc910c553a24d2c61db

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.10-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.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d491daf2cd1e3d0d0f2ed9672472a6cbcb0adfc1ba0a4e8c1afa7e36906b7d1
MD5 045e11583af9e77774b1434b65b33c75
BLAKE2b-256 c0304b9584fdbeea82778a549f3f7d0da0f9d2d614ddb330ae2ddaa94002927c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.10-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.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openexr-3.2.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 892971db1420d1ff24ed4f2b974c264d5b6e9c6c4b37e51b5aeade94e5253019
MD5 622153d09143125801134e2c937afddf
BLAKE2b-256 5e982ee1cae53728d561e161dffbc9f6202e49aec65123a6895e793ef6768738

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d36bdee920354b40bc7244068d6ca67fabc397ad9ea535a4c4d34f9eebf63bd2
MD5 2d979047bd7536f9b5154b2388df29a5
BLAKE2b-256 4f0cf6a25422143f6fdb918df0d01f013882e55c77fbed388f3bb7a0d89868b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 18707c77cf6dc0f3ec94d42f9e1008042bbd074926d08eaf1a2776097f7e0b04
MD5 65c752de714031f8b88a1452dcc2a838
BLAKE2b-256 27954714cd7fd7d4e425e81d002c1903e58516933a59cbfb84e6c4eb2d061b6e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 769.0 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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3c784c47c9d65033ae8190bd407f7dabd89a1e54d224f5cd6cca6fcdf63f933a
MD5 337506e5198c7042ff48054e1e3ed5bc
BLAKE2b-256 e7101c168c9b76c4f3bc7dd31d20d652b54d199a52d07f0859fee5c7438ab89c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7083ca8f043af248c283ebeb367299cd4fa0137b36bda42a22c2800cc72adb9
MD5 a912c1b7109111d2664735999a89be12
BLAKE2b-256 c633b576544f10947a6a42c052deb64275fa56b5143a13c5237763c35ce3a288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f25e328504672c8d156f45af3f5d980fc1cbdec0771c97d795971a0e4ed3042
MD5 c01f4692602bf99c4bda0d0411bd9b78
BLAKE2b-256 4d119400217c8420da208c4bbd55ea3eb2bfe8c3d18cb2499b9786f1d0e75e66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c81a731522e3b45d6857c60955b608b67d1d9e8898cd37bc0554c0a2b5bd8dcd
MD5 449513a5808a7595a548db2d1ba2bba6
BLAKE2b-256 01df3d1fe487e6c48013e7eda06955d46b49c71d5f135352c37ea7afa3a2c461

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.10-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.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7870c2d6a25f35186bb41975ff9f13cfab1459ab3af522df059bd32cba0665c5
MD5 131b02d8516565fcb41369a3fbd405d8
BLAKE2b-256 ec63e73014c9ff2acc9c8fd978997246b1618b6ef08ea02853e5763978d00f0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfbfc1b992bf1c20c2391d089c44981706c462111e1a4ea10bf303f35d6d560d
MD5 33c81341ca09a49a00a37296442b516a
BLAKE2b-256 e812591d36ef2c47d2ba44d00b882f0ea0855c6780f33f017762490fa48b1491

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 62bb74ebe49ae1eae84ca0909ca9677e73162bf591df2b7cdebf1e4fd0c7026b
MD5 67aa7af886e313d61615931e7a05da52
BLAKE2b-256 845e4531834c2183e5ab1706d3e20042b358d60cce633c483f5a93813fc10321

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4e3b6cd33ec248b5dc64379a802be380440a8752df4b43ce5303ab0b7a90cb61
MD5 2a1b7a4c86796987d774133a2fa38145
BLAKE2b-256 afa850c941c1cd335beb42e00f28202f211bd43f0747449429bbd4073ee916b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 768.8 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.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7110019066c38b27dcf078ef7086274ebe98cdf2ff6ad4543c564670d806aa59
MD5 7094b260c26fa09e40a57fe2b3fd280d
BLAKE2b-256 ebf95b4d3ac5c2285e9a1619127d9ccf20292367cf8d5fc287b1332fef4cfa69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41269d6fce77bdb076642f30c9ab509396da684ac29f4af901cb2944214ed6f5
MD5 98aae1fba832ac0e86f8da9c22c00e27
BLAKE2b-256 16e474f4444f74cede61ca0dfba014b26b8be3837adc90fd4e780a7bd2c79a98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 291f53bb7ef769dba867eb288b0a4dc13e32116eb6984e391cc2699bb689e837
MD5 215d762e57cc287033b50393b2642340
BLAKE2b-256 24ed1835fc54d97241494a0f55ccfdfa02e63ddb720bfd13e608d9c2431411a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3982ae1caffa7892f868795d07625848b3128528499eff1155cb91dc3fab06b1
MD5 b34a53de9c9e1ae05c77d3725f059527
BLAKE2b-256 819d422e9ee5f0f013343deb72a4a77aad9974e3e5aee7c95978e8335a93256d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.10-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.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c9ede51f66e2c31ed8d968f876168065e9fe2c09139fff84be160e7ca69606a
MD5 ea99aff4c46db8556bf83033f7b184d9
BLAKE2b-256 0c76bdadd66f7badb46f6e28a70903a3845229003c231ba3b5d09cd79939145f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61f4d495c5a2c3e2d867f240d437320da63af95c15c5de463cffba9fc99cbc4b
MD5 6437250b0952d40a13b92655bbd81da6
BLAKE2b-256 abcce72ee17c2c2470ededad0371e46cd3606fc53dc056f8b3a0c579b9ef341e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 37237347720ead6964bc4c15e1f96845f6dabf1cb6d9bdddb6bb446c805bd41b
MD5 c11cf22ab29d0ba5cff979fad4462a7b
BLAKE2b-256 efcc8566a06952515a15fa8fe5cb6015b06cae071525cc37f10e98825f4ea696

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2fd07874f0a75c9e6f0b920163284e3ba8417c64ef9b655839c68dafa5ab13d4
MD5 7532562b34f2d16c2b523dfc88a7afa3
BLAKE2b-256 ffacbf61e0a9af0cdff79b66a453c252d1f80069d7a30c4bdfca2e9c2289416b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 768.8 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.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3028dde628bbd70dc02cd9592c387d0125db1cb102d01fc3df7df13774e645af
MD5 9647b5e47de4301fdbcda5f237c773d7
BLAKE2b-256 03b97308bffc68eca6541a70011350f63940475403df1835f539658079feece2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0d04f930af2f5d7561ae3adc716945ccc1a3bc0913cc3c61123480d542b8c4c
MD5 844089d35cc52e45d0e392a20363551b
BLAKE2b-256 34d06c937431d4f47f8efdb3092ff95cfa79f244c7df7685bf383d22d6c64437

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b313305e8776a466f29c799ddd4f4e8f3e950b38f63dedf426d23af615cd424c
MD5 9e0ef5581ffbff51eee99f2c94548dce
BLAKE2b-256 3d42d4b09bf9df585a2e31321128e080995c460897ff2326f59da45843ccc003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3855b8f8fceb06e005ffbdfe25924104daaf1517313b3bb4fea151e6267c787
MD5 458791a43ab55ed6d2dd4a69526b5dee
BLAKE2b-256 e00c73281f2ef82367b9504c14f396280bd71733d73119c91b0b4bcbf266f90f

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.10-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.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17478e5846ef669f337a8d6250c17e9e8284b0103034639f7729a8d68b48227f
MD5 0e7b2b6d12a882afb8075b5a7a3c14c3
BLAKE2b-256 f84079f87d1a725d1f55a7bb3923565c1f65542f2204a4f8af08366accc4d6dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9742d7c05459d2c8413e1b0563a3fe7d97688e1853639be089483ae084ea7ae4
MD5 4b73a4aecc5a6934ffd674ccba447aa0
BLAKE2b-256 446f4d62ca1d02ab19f4ca6cb7f7fc118d82332b14678cefef097957a202ef59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d364a1a363715b4ab798d65bf68398aa8bae528f41581e5b912d9d41fbc558d4
MD5 4f3b1c85f641199c99cdfc30740c1fc4
BLAKE2b-256 6fbbaf724c7f59cf9097e315846158f87d1807d4f7975afc867c87fbed9571bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 237747d6e138aba996ae52cb22ba93d21c30143f839a1e25333b97118f7c1265
MD5 68fdb8b1fd0134fe5317cf4fe5ca52dd
BLAKE2b-256 eb54f8500b2ab1c0e06234927382331ef5b27b8dc0b6c2f1d6329aac061d9987

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 768.9 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.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 22d703ee8e07665f0f768f5383120b77ff20f623b5895696014efbc00b7a9d6b
MD5 3236640cee92b516cd2d47445a708b0b
BLAKE2b-256 26ee9f0851c10ce60f579de9fb0cc712ab00cdba44dc152bf8c9c7fc3feae497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f8d108ff0cf396c97962a32e108ea672e826f8df4bfe686625f4a162b9195b3
MD5 de0d3c482f44308bd3367d58d5c737eb
BLAKE2b-256 cc7be74d9558ddb82a249a4d2aefa829696e6f2c5b6ab4abf606878b3505daa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc4c3df5e203d71764bb5c0c0943b9f26c39398b3958ec7d4afdb0cb91a90545
MD5 c4eeccc1406f1df4a3eb5cd4450a855e
BLAKE2b-256 7cad76d3cde7d0b368f390609f86795062bef797ace64e999f9d1e1daaef0f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cd250e94a5abbda7e2fb9eaa703387458740c27edc2dcb1ebcd7b80a643cdbb
MD5 05eeaedf9031d37f5ff8840731be996d
BLAKE2b-256 54ba4f7d9ba2fe4dd8f454a32a9fdcd5caede24f357a7195bc08c0b6c46ba9ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.10-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.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cb63943bb83ddfbd2c363d49f7776c5b2ce56e56f8ceb223db546764f572421
MD5 1a756e3b24d761fe138b67b5fc55878e
BLAKE2b-256 757d7ac3c5c01cde0c7d190e7dee9542fa8f23a1cf5b950ec67e281ea038aaed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 936074e7e613bbd6837c33b6cbfe59ef841df9ca589a4e2fc5e2ff2e6dab0e38
MD5 b100d0eecaf7593cafdcda751faa8bce
BLAKE2b-256 ed626d2cc8bb5f056daa7eb9d8d1d48c16bf0c0357946c0ba676f887bf77ac2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f8b3ae2ff3107308418b81f8a700546bba3e17a02aeacc8aa2b5e29f92a9481f
MD5 800be9149ba423552d2307d682913ea2
BLAKE2b-256 6c6202b776c66365cb1c5efb25008dbeb14c2e4e829d7ea1a91218fd825498e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 12e7f69a6f60fdef5f0ede86b8ed124231c1d3cdcecd4a454ed4775d137e71f8
MD5 98017eac8cb013b2412c11fd7561aeb0
BLAKE2b-256 3131103e04e736ba91206edfb8dd3616c8aa2f912e6130a5bf1e36f2213bf182

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 768.9 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.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cb20e3b6accf64f342ab2ca1f45180920d898500c4d607ca98f048b9ede86f00
MD5 ea5709118d2ac13c2c8896311b8871d0
BLAKE2b-256 f783f825d46fe5b2a05279a403e9c2df1abc3ca7f82520166dfadbd866ea77c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eee55206baeb7432e069c9edff766483160676275e4eab4439880d7d5dc33d3a
MD5 b9c0ce830e9507a29378c9f602df1e3a
BLAKE2b-256 56692bfa95966811e4dfbfd82260791be7af7b2ca6e879b16d6bf2ba87a1b2d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a68c776c16d54f26813b3a4daefb1bbe320d6a18119ed74544804ab62740603a
MD5 c90c9ce2044a798b31dc500fdaae889a
BLAKE2b-256 1b92d479432bd804ee423638d9bd7b5130668d497c3f00700d41ab48c59a290f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be043d01ed00fe56ff14f19ab43999f48a606fe56a53f82ce80e5e6293eee7fe
MD5 275bd32b4686b7e45ba5ecfe78750030
BLAKE2b-256 dbe81e0481f173ff76004a9d8fed071ca4a8979737f9509810709a8cf54dd46e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.10-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.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for openexr-3.2.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d9712796a988389caa7e3d3c14dc1171def6958b1959750652db8c956a8eb20
MD5 6dbc448a127ca0b5acf79b8c0c961107
BLAKE2b-256 b2efa2a0f2a7c1e36b4d777330c18917f205d0e6a248e14d21cb08eff2902672

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64b80b3a4d483b890cda1d6e1f184409961c680caa638494ea0468b5ca74e162
MD5 75789d6d4f14e2968b4a633eafec22b3
BLAKE2b-256 1b811ee5b08a90b46b4d662f7a540d319d1d9c6a54621340fe803c955ea6cb46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 36d28685f358f235278dee12af350397aa165bd288a3fd32675c602063a4e47e
MD5 6a1228a10be9d6bce7a18492b9b3b1ca
BLAKE2b-256 f015b9fa127755d0796118954fff63e67dcb55a9ae3f161d9f5c6b44c7fcb4dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.10-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3e1ba667fde5217a69d7bdc1976e9a8bf80416aa1c5aabd18a061fdf088e4314
MD5 14e61cfb11f55b013f77d17ddd422b07
BLAKE2b-256 a01951104e8616d7b59d11a63ae18d6b5ff0e07cf0183af25516e477a0db8461

See more details on using hashes here.

Provenance

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