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.11.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.11-cp313-cp313-win_amd64.whl (769.4 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

openexr-3.2.11-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.11-cp312-cp312-win_amd64.whl (769.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

openexr-3.2.11-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.11-cp311-cp311-win_amd64.whl (769.3 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

openexr-3.2.11-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.11-cp310-cp310-win_amd64.whl (769.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

openexr-3.2.11-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.11-cp39-cp39-win_amd64.whl (769.4 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

openexr-3.2.11-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.11-cp38-cp38-win_amd64.whl (769.3 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

openexr-3.2.11-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.11.tar.gz.

File metadata

  • Download URL: openexr-3.2.11.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.11.tar.gz
Algorithm Hash digest
SHA256 47d3fc962022c6867c9f227349237dd74b2a179a6d1148fcff4aef98f2cbb155
MD5 358519f627057b61bef6e7f43ef08d3b
BLAKE2b-256 460eee6912fff791190212eb3bf6141ef91dea98fb756bce568d241d80ae40b3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 769.4 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.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 56669a88a721f1c5210707c568e18adc6b4dda0df3715d46d6b91b84565baffb
MD5 7d75581ea5a2489de34c950de1d9e170
BLAKE2b-256 fb334f8e50b591362277db66e78f55b15cf4dfa08ccb54a51ac051a04893ee38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09155bea4d7e236871304162ad27728b061e79b2d6cf53a83539b0135c4fb5c8
MD5 ec148bd30566eb3ffc1a584ff49c19d0
BLAKE2b-256 03733b7708c81828d057e32edf1b288625828c6eb32968b116e3f649b2097f06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f779abbf7882761902aef762e4772055ae9ff98b7488cec09e97fbe657fc8566
MD5 33f5205fb35f04a4461a56d2fb69509b
BLAKE2b-256 6b16de8feb8cd5715590f30aaeb773972b31f999e2231302adfea4b764bce385

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b390cd3dc5fb11e09ff45f6e70a49e30090d62682c62b894012a6048c52ed01
MD5 dcf3ad703a344aaba9cece2c53ec5e6c
BLAKE2b-256 61795ab5837bfe831a01bd8ec57b8ac1da231f0156e6baa01ffea21ad6a9a9c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 245e642010c5f3972f2b7c36e2a10225b58a2e3e38790849079de44b540e074a
MD5 0401c83a3426fd8eb597099f9ef67983
BLAKE2b-256 66067d2c3054d2f444fc494e94aeb2f9f82b4ac1c599cf255d98c474db36da91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c26ed8a0632a1b357f67c2f58d06605f78e767c1011d0a0dad0649cd12641690
MD5 a2093932e6d9e15ae35139f54b5778ec
BLAKE2b-256 cc78a3c3bb489b3da30edde561fe1825359b5ebe61b87d051d1f4308deead748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 da3a6793b75515e8bca2b2c651a3c789ad185d681c7aaae6b6c91940fda2ae7f
MD5 9f3ae65b244cda789031d5d8324dfe1d
BLAKE2b-256 9424ac79597807759114cfd57a68c39af38ed0a0eb01735b71afdb701df6b579

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4e84e319f8a1dc02c53db2d2715e7562d3d47d5522e14f0b4bfceb533b24b312
MD5 668a800180e079ae6b3ab64368d5e517
BLAKE2b-256 7f9635f7206bea642e5aa719a931ca6f15305aebe89f85fd940df43bf9c9dd42

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openexr-3.2.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1961438b043841b868b81890a50d3019fc6648433e5a07ae12af6247ea968636
MD5 42462a70940693ae216a7ec6c0b8e806
BLAKE2b-256 ef159891b96455d1824c425e4a80aa47d422182764ba9bf9288abfed98a62364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12dff0ac9770725047d0218526bb4fb3c91f6e9ab10ec8899f355fe33d80f658
MD5 48640358e878310806faa6d35f8c8c19
BLAKE2b-256 c5ce4118bd12e199e1baabcc94561176643a6660ebdc7f67ac6ed2523285d7d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1847c992dd2b05bda90571bcd37f19a5571be5d1a48fffcf2264a771683e6d72
MD5 ca9fcce1351a4b78d1d38d41dbebec59
BLAKE2b-256 eb1ed9d75508317e20c2d8f31fa2727eadb86e088784eaefcb150348356a3e56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c90e408718fbbb88a87f709def69c9fbb36844f1903e3c0518c4bf208ec5d47
MD5 05a64e279da88f9c411f9933e6d4cc86
BLAKE2b-256 2673168b7e9d6df5e4d8c1da9e1f6a57f493c4db9b4801919178047d98b4628f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c5992440fb34de9ce626bd46b09da7c1ddc47a3fdfadde10c42c8a5d3044b36
MD5 26f303b598e8275c6d9d288d9c5c83de
BLAKE2b-256 ad6bf5b36eb3fbf423228dcb38bfe40039e5bb74bf7f5776c30b3ee4735bd7d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5159783c799e8695c2ba7ceb873291a7ea32952e2f4593334c0c898cd0114a1a
MD5 3c3d8b7ad7e65f58ce3087dbaa6ccb8c
BLAKE2b-256 39b23d617810be88f373744e772cf86e52f36e3379f1eff090cf72b0fd51a1a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2532106b0cd27d67dce0de4deeaf8672f960292fd87fa8aec7209c91e4538d7b
MD5 26901564721e244c6363169ea3375b56
BLAKE2b-256 711a7c938b5cc89a142a37524f01a93c0043de7cc5fad45b05cf7ae64f7743fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9ad64f6a6b694f8f172d6f1a0cc32974d6d2e1a92f9781228bd05027d65ad695
MD5 09abeaebe98c56a97d1c864badeefb02
BLAKE2b-256 453caa24056de96979917f4cb062319d91de3f8aa469fee1a104675833c8fb0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 769.3 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.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e7f57a73031f785fbd6c17ac5425f6f6954c241544c19685b0868e9297dcdd34
MD5 0f65591e696f9f4ab996a056c6b3acce
BLAKE2b-256 1e4328873928f02ac7433245e3bf88a3d6c36f291949a5440a456fbadaf42162

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19f9583c580f51ae0e3c4943eda75df2da2b499325d8eec23cfea3814c27919e
MD5 e3fb5f8791e06ba8e8b9545dca674d6e
BLAKE2b-256 d23e4c2447d30c1b7889c3428f50ad801150d7e6e4e5e166a9b497d478a9d590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 174e731af40c8e50c60c04987d04612995ca16bd2fd2b12f525000728e466f52
MD5 2f3c06ed0d5d386b67307f7115cc3aac
BLAKE2b-256 cdef99d841bd25f61e5b0e70ee60787488be328be83fccab2ef78de7a76580d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27a9854b15ca982f715a857340293afdd15615e98596fedd2cbf57ef982fb9ef
MD5 62103f7f00e70795de2fd43a8a676b4e
BLAKE2b-256 da3c17e53ce0d59489114b352c1d8136364d3e4609a3c895871925867d99271f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ace15095773a56f2e77b9f7789649e3bb09bea4eaa09da7752e89484d4c09a65
MD5 9ab8e04acb55eb22a7ea700dc843ca5f
BLAKE2b-256 6a5c25d2ebf144caeada1326922d14873f0ef7f0b345c03a7a4e836b1edd60a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d8b108a9308a28cf08879f64c789b142f851dff8ba48d3539c8cadc484c22f2
MD5 785ace1e5e1a4fe8484a2861a8f8dce1
BLAKE2b-256 f2fd0bcbbfcd166a928016f6a5fd8a08cf329e17a4aac35a512701666af45594

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c799e42b4fe22c273fec3fd7343299ffafdfaad27c644ca9ecd2430b6d825926
MD5 9b3a824853653dc76d017f205976a424
BLAKE2b-256 25c000dfd60f3bc02426cf20090c47634ca0aadea314972d061cbe30cf16cb5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4697fa0a6794cc4fa6cde468f5c5708d91e063316b519777a47f4e1158b8b13b
MD5 e0e840d16da6e0c86760dc9a66b5fcd3
BLAKE2b-256 86fca1224b2cefabc688d54c8dffac8a20579a5f6cca4d6ecf976b6d721af390

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 769.3 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.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d10833a61fa12ac1699518a3e069bddfb3ea311e0ece7311588817bdc4a55d11
MD5 a4a8165dce82afcffd773dfb897a6c24
BLAKE2b-256 410c6a9bfab371a49cd0e9a3e58f124f607a68cd80b597f351b9b1fd953ff8a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d834ab610c9a6111347c0a1d981dbbcd20f9eed28265a55f7231e353bdd76a5
MD5 b21aa4a17ac33ee3b4adc54029761950
BLAKE2b-256 3b8d385473a551b82844eab7c7915c44f848a006cced89cda824cb741a5b55b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f54b6731bb2e154eed12fb3ed0be79c24046fae8782842cef997071c9984c753
MD5 a42419bce16328dc8bbaae6dba128395
BLAKE2b-256 6b207a36e580097cef44d5ed07cff16747dbd37a50f7c83169f5a0d6fdafb222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 235c78d936cf570890d30bfb0d3c663abbdc50d442d8099e249b1e9df4441f64
MD5 326a44d94b4458df36c1af6e1cdbd5dc
BLAKE2b-256 9f23e33b778770b662bb3e7d025e3a11c13e213080c42a89078a4902d0d7a8f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 095aab2b419ee67f8e9a36847f6d4fb2d1a14264d3dd6251fcb13a4e436fb89c
MD5 8b9c6e16dd2f8f3441c632a9849879f4
BLAKE2b-256 9beafdff45f40e972d8ccad6c40adb9ce1828dde9d3f6f84ec4ffa77dbaa7c86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c79e705e00c1721c17ac973f5a21c90e69f18dc653700fac87ca7a78b0cf8347
MD5 d4d41264754a928c32d9d8daeeed4eff
BLAKE2b-256 4200b1ff011702991d9e738ce3ca55e4e3c22228d0b61d11ba76430574eeab7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 30692200a4178e8ae6d4ed76cd6ff2a59ea62f5069e956854d5126d99f911f73
MD5 b526f0072bb0f902ae11343033203c9c
BLAKE2b-256 6a487aa85ce5f7f1d387646cd65a9b2ed4a0925c7fcc3828f5777070836a3a30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4da71cae49167d54334c45b3f3fe40bcdde0641c5add216d1330cc13f83f4983
MD5 6b1d5456ea9a914cc239b21932f8006a
BLAKE2b-256 097c092704204836df925781fc5740914f509e04275090233bbb4786cf6cb0ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.11-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.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 06d7fa2e6465876b36c3ebee88bf007ff46d7e7603580c4542808327ba628c38
MD5 830f4ec830d58d78da6bd59dad6d91b9
BLAKE2b-256 52dd5098e668e00c6f9ae9333ff23942c0c57b9f27745e53e2a66123f68ebf1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84f2fb3869223cc15037cfc85c2914f5fbae2244bba7ae482c23291428b287e6
MD5 0794a3b9d48dc7a2403fdd8d1b2f6059
BLAKE2b-256 aaf00e6b6c47081680ffe7b40e2bc0f5b89dbca241921e9979737fd4b208399a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd4591ec2d385d2bfb53b067b3a7df80c7e9542bd1500f72c933d1a0a9f88252
MD5 19d9b487399be4a8a997a36793c954d3
BLAKE2b-256 dfc0077d51d5212312e4073fb57e8d84871075037d4c2a95112c10e9726a1887

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e69e5a348e039269ae769fdb651e39f3e34492b254036de9d01fc9cdd7584373
MD5 b2ca7f22f2cf68843f6986b24af2b70c
BLAKE2b-256 4ef76d62f965bbdefc023ccff6083d3e8e71d21c147a0d3457e0e2e788446c97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcb25b20b3d8d0e7d24846d1edba9aed03e1ace6ff7b1bb9a6a8d55bde0a1678
MD5 4c533e31a9977699e5d23158bdf0e79c
BLAKE2b-256 98171f3f27c00b0d2b7ad5750c88d5996122add26f07a42dd9fa75721473625a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aebc120cd47d2529c15ccf840386608749d61d98b46999e96bcf73a4bf51cb1
MD5 9ab61e79fd226d7916595c1d71b4d135
BLAKE2b-256 6ca4318c9a6840c196e6c7074c136ce3e35d39694b163b334bd1ae18a3870c3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cd9cb66ee27181e186111c624229436f71893a7fb2ccada5463ec054cb4b4c76
MD5 53107eeb7a30dcc4757c0d4f78e1730c
BLAKE2b-256 ce06b0c664a57d9d16f0bdf9efdc6854b0b46754fe5cc18cb525bb63982c5817

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9d1e94f7aed644c9aa36fced3ecfffebc0f77aca35e51a7cb02684211d28a636
MD5 a5b0b806c303c2219d222a1b97ac7226
BLAKE2b-256 192aef24e9d67846d4b7dc4539dc6cb5cd7a46a4487810f2cd8345350bb87f54

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.11-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 769.3 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.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1813994f7e61cbdbcdea38d0093cbff667049008223b691767b6187913ed1894
MD5 5bf0c9e1c66f0ae743511c6adb5b5d2f
BLAKE2b-256 16b019dc07ee9a3705d13eb881cf7682f434e26d4fa04ab68101e73e711cdb14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 931cf1ba52acadcf92437ef37195f98509de524a304de8f7d15477aa77070ebe
MD5 1bc8243f23f3aad9647c30fd73fd6901
BLAKE2b-256 a20d43cfa135ab8244897b373e9a8554b3dc64fee6f95b89431205026e8b83a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 427b2d6c0c9110308bf96ee6650afe9c734f686714b65713efd1c31f5824e60a
MD5 cf0f80a6ad0b8edc89b5c85a034868ad
BLAKE2b-256 68ed8e19b1f737d1e2fcfe8d052e8eba26ae62acdf6c84a2bd5794354eafd92b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b336db40e46cf8918a74f38304c284b092383a46ac58ddd3064fc67498ac9f35
MD5 7738927df9790123c484834169256baa
BLAKE2b-256 648701174d6c2870a3e09f60b977e9619bef400908361b4c2a662f95afbb51af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3eb7722767b8668630bac12997d237f38b86135117b2dbc288e088dad1d6a496
MD5 e1cdaffe96104b839605346200f7acd1
BLAKE2b-256 397ed9f4f39332e2ab0e979c5d2d256a45d729b59a83795ac5d480419222053b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b138a470dd7771c7a13a78ac5fa07a4c937fd7253258134a3abedc94fb84e3f9
MD5 c70f3942b922b817f1a3deb4ab1b5146
BLAKE2b-256 5880030f2f8f10ba4d30227b5987fc6a28cef55c6b697197690a345549377703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 07a0cfaffb861089a575fe6e4a131770bf1ea6db9b82052371686cd6882b0cf9
MD5 78678726378448263bd990dbc53bffc2
BLAKE2b-256 9cbfd6a8b23d60359886f85d56b4eb7a6c26a2dcdb27ccd66096deefbfec5631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.11-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ca7b9fa62fabf94e2ef50a722dbc18f32b96ba81851930f5287d0a47f4dcf510
MD5 07dcb94f97bfabfed00fa359177a8e63
BLAKE2b-256 9c998f523031a2b69127194e7faa4d5f48129d80d4ff249429db5a838dcf58ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for openexr-3.2.11-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 Sentry Error logging StatusPage Status page