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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

openexr-3.2.9-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.9-cp312-cp312-win_amd64.whl (765.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

openexr-3.2.9-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.9-cp311-cp311-win_amd64.whl (765.6 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

openexr-3.2.9-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.9-cp310-cp310-win_amd64.whl (765.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

openexr-3.2.9-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.9-cp39-cp39-win_amd64.whl (765.6 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

openexr-3.2.9-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.9-cp38-cp38-win_amd64.whl (765.7 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

openexr-3.2.9-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.9.tar.gz.

File metadata

  • Download URL: openexr-3.2.9.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.9.tar.gz
Algorithm Hash digest
SHA256 06633bd5b8030e68411358eed0cb835ce5a998b304dcb5681ac199eded282b1d
MD5 4bc6c0765ebdb70583cc96a64c4bbf7b
BLAKE2b-256 2efaddcf79fb69f809d9093d3943db0e1fc111ce6005981e0d6cf3af4d1f6425

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 765.7 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.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e251ef9039cc351ae341d1324b4bfdecae445260c4bd545ae7362b127d0a9ed
MD5 38cadff414ef4b3b2534720e8f3ae530
BLAKE2b-256 29a67c03e304f0b4898df7d8a6b78376c2f370338a9f4e26a0a53ca233c83137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2364c61ebad8f9cf8ef341dd7fe874d4093399530858f66eedbc9eb2b36548ce
MD5 27b8ab49ec0ac42d3497c2e8ae6bcb81
BLAKE2b-256 bd34a577ca96092aa242e83426c86a2c3ff5243c2810baf5b8fd922bc3ac328f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0a62f29f7010cd7a8fb4d5d22bc6d3a14cc294debf222d5fceb501082643633
MD5 407ea5c65d3142b966715dece0c21039
BLAKE2b-256 3c6a8f001af8ffe3ed7aaa8b39b63b26eb0055f0d0456658169557c5a4c047fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e9923addad40b456f5a40d3b1f71b2b4ef131c2108d11faebad1985df9cdb42
MD5 45bb822b28914d702469c174182257e2
BLAKE2b-256 abad5055d478082d9c0fd92a0ec68584928a2e205c86b968faf2e9bb516f906e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05945cc7f37b1363a7e7e02929b1f7b1adb917c1b98a420511136b6a33588352
MD5 e75439287b8d980451e8fe9dc6a1cfce
BLAKE2b-256 1fa6b54e560fe655f10fdd22630474dd6cba4ec251b4db51ceb805e05eaeca1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad0c2621eff7f34165b6a8dcefa0c577d027dea6c28cb27128c86e8cf5fa4f16
MD5 880dc97a6814353ded72778c8ba8a431
BLAKE2b-256 bf5492ab5d97718067cffc3e461760f2572567d805b64c61fa1d3ecfa6f19e6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a00b5db10c45ddbbc1d67fcc5f006db4c9e87724e391c7ea1c73ba7421292977
MD5 f126ec4aeff4f601e5b2468d6e8cb26a
BLAKE2b-256 4c23852a2edbca5a51e64f021a57bdc9f838eaf517a17ea1c137cf719f14c46b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9476fc8f53459946a0aa053690b150e42ace462e3c933ecf1896b76dfa534cd1
MD5 2c1e1db4bdbed9cb735ea9f4c839e49b
BLAKE2b-256 3e19ccbae23b3c37bdd26d0c1f65246a1a49f4a44d3e35dac1af58514b495457

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for openexr-3.2.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4d97fd1279b733c6a491d94352551af2a0bca206b050682f1de7b18d24f28e7
MD5 bfffa4c1696b40fb27ee31ecc56695e6
BLAKE2b-256 4d47f5170a022d768545d7809e8afad85375fec8afbd00122aef0100b8751490

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d722010c3f9b10872217f7f0b40d99a1e9cd1c0a53c630f525f29da596317a23
MD5 1384ff7ac8a8238904b876c6ded7e923
BLAKE2b-256 63377467b772963ebef0b839aef9c9581a6c602581f653bfe840f19fcc82e57e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 180e3878afdf47df17b56bff91ae7822695198e37effc792ccc81f94e06d0d0c
MD5 f9707d11d1b361e4d7ce6c8e08e73feb
BLAKE2b-256 e17f7394acb99b4e486a996d927b8666509f92cec9b7b3899ffa9bda3898936f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b9e0df48aa3ffde018ac614f9f6649ef17e7e91f659afb40319e25f880a544c
MD5 7ff31e693440b1631dc4c4fd0da1a20f
BLAKE2b-256 0fd4d875c0c8c63366a241af6eadb2ffafdf09451ffe34b73aa74f76ae0cfc86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2d6e5d4421edfe73f1f9c05f9685c5d320287e486dbe042102ce12eff674096
MD5 a39edbb6060f3f43316f6dde21e6719f
BLAKE2b-256 af551b3799ab0549bf6933e924d912d2d2e79b82d26ec8b7a5cbee381204ba9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64bc276040bddfe75d8911e9a5e94fb98d0a6d06124e455f15283cf2c4f6726e
MD5 707370fb99f80052daf331f417e9a721
BLAKE2b-256 57400cb43f9981405d0890b32295a5ffed1b9bff1281c80792379d119190473a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cab03b6d7b37a5a24a3a9da10204d30d0e82cf47cb072d50b41e5f2a5609baa1
MD5 145e8bc99c01f3c18897d7488236e554
BLAKE2b-256 ef632ca47837bc423f0fb1b01ab26e89ac8f79c3761cff19746bc9832049bc2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 90a3cec11c598acdda97464df8a0e4cf8660be23cc9c4bfdb9215c8b54e5f80b
MD5 5f55817c7c3f8aed00ce631579fb1e1c
BLAKE2b-256 4630bbc86b0f6527ec28a0080dbfffe934956faf5d4f216e8d27c059eace8d7b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 765.6 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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b022138ed604fcd4442fbb15360cd7422f1f90110dffe72955a3f69344b9631
MD5 ba8476878ef76a82b45be2e1ab6e2511
BLAKE2b-256 b102004b59d83a018d3af1a75705918554daba0862b153265ad7b2799ad14f3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a7b765d7179cd1a9d3c999f4f1f50a273b2422064d657aafa1bd866916a3b65
MD5 4ddfb090569ac6bc20aa7eb1f7a31c13
BLAKE2b-256 26a11515269af28d04bef1947c71b3b0391ef5e0ae9294067a939c9a06fc18c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9094936aea00ecc9c9ad4ae9b75b5c25ccdab6ebef461829cf5f7f1da244d52
MD5 3fc7cd100e74fec9f0339e8fb10508f3
BLAKE2b-256 4aab3f98c7e5b524e5537cdd2a7fcc8b2ecd65182658cc361e97795ed34b90ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f2938fb7fa8e6324f4b337e8995c6ef4ebe566bbf382b314df047a4ace51800
MD5 3c9e150a18c5ba8626bc9ba260868c05
BLAKE2b-256 848e26d30adb2671ba7cf0e7c166b8c768d33950e3c9b19af82e62316b80964c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fed78073374293fabf48c993ac4363aa645b29aa4b8d664e5399b7a947e4aabe
MD5 a1a8a9841141b5e2a5d5757666e5821f
BLAKE2b-256 d184ca18b5043d217927a42e580f0087ee11719b0290ec8057c68eae0886c0f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ffd1adac662e31617daf98c2369c2870a1980772af1d69aedcbedbc2220e3bc
MD5 caa749de1fbd3f53016a880d00855c06
BLAKE2b-256 349d1daff70592ad8811836124cbe8e7a3d89763ee078a526211c8d0ef9ba540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0d1581ccd332028401b84c1b7ab57d78c9a6b5702850c9a94a53aa6386015160
MD5 91321fd5ab92ebd98fb84438316f2d37
BLAKE2b-256 826e2f49143f7cfc52edf5c3ff6498d197dc950df4c4c51b092c3830db1dfc98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 88cedb016da7329b05a695141857662c21f36fd35ddd48a53073d64079891641
MD5 1b392c0c2ac24053da6e07d36473e239
BLAKE2b-256 3c4c35048a4840d43bf7da3f11d36cc61e6c90cf1b1715829bf5e247d626f541

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 765.6 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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e7c1b24c4aebc6e048d2c6f132bbe86fab5e6712a09cd25bed88fd54f4404829
MD5 b738c1e2d5ec3b59df52d912a54120f7
BLAKE2b-256 43f5646fb911b9ac73bc66d8be4bb9ced37d7284b60dab7a8e7d3aa75283edb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa7602cb1f6a306dc276cfd66a6ec312a64c0fb43dc2b5c332151144eb6215ed
MD5 9aefcbccebd7cd668aa380080a76c807
BLAKE2b-256 a1d82e9cfc9f272023bab0e4cda2dbbe0222ddcb6175f91d6b94a4f5a6fbd2be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23f64ee2a2032bb224067c6b0197f31ba37a0a612dca3746ac0324fa3bde0228
MD5 7b010d23098e8dd800b89be5469127d3
BLAKE2b-256 c42bb1f4be6330bc5ad5fda585b83af5eb33f1d352e4b7591ce97c324fda63a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c055ba9e95cba3c10a3f38ca416b2a016f4bd3a9c2ac7490603f1e960929f53
MD5 8a1969bd90435cdf50fdc215887a4cdc
BLAKE2b-256 f399430716f5deadce43cb31b06fec7f9019974fdb6ff65b3fedb5fe61496cf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c561f305e38d4b6958115dc1228bf5c1db4bf893ea70fb769afbec880c271a5
MD5 1b1875abd50afcc6160386edb1726794
BLAKE2b-256 126ea66acd65d49d95ab3bef0c34784a9d1d216aef5636b3730a70d0bbc5acee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a9d9b5bb6d54228906018b4ba0e5b18a3a301898d959c9e9a377243b55fe593
MD5 d2149a25b4975dd0430e86ef254443f1
BLAKE2b-256 e4d06b3b0a4d91a26e9381b4ef00aa89f91f98590b0d2a25daa0348e1f291b61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 72c7866b299387da7008802b7ee51f25128f0078e23cf480845abc08995ad611
MD5 fad6a778a51b457ee08b10a7ead03ff9
BLAKE2b-256 e35c7c587fa1e8783d41db261e6a8e0fd171cc000bf54c183a8af0f1661e682f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 68a77535a7f359ba1a92edeb9a93c2a4cafc082235d1254721d58d2318300ced
MD5 14b438af682dca6571ce5f8ca83e0b0e
BLAKE2b-256 02b5c33a6fc457bc71e80c1e33108bdf4ffec134b7c4ec942fd978cc4ae78fd6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 765.6 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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 89ce763a59342d1835fbdb37d28d1c6d0738f22f02d3258661614ca9fdca4e37
MD5 6439f68009152816f082f73ba8450106
BLAKE2b-256 9f91faf0d0fe8df90e53945ff7a919da345cbb6106428b6ff1cd09c40dce1447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93b2e5f1a730804a55d5473a2101ba14b65cc5ecf933bc37fe3fbf07a18d218b
MD5 677defb2197e61b2867187af19e595c4
BLAKE2b-256 27cb22e0ad8fb2629ec1d56f6ded042436691a91476faf34138b6fa389578516

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4dc0f52fec2953bda32be06538b1f5a376738193c477f276961355c16f7df3d7
MD5 7bfd0ec27c13391c0f005185c6d08578
BLAKE2b-256 1e10e71bc8652377e38fd3bd67bfa6150839ffe3afd45db86b09cf7ec2fdc85e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d310f1054032a8de7d2aedc8a2e03e25796927fdfcf90213e9a414d18cab9d1
MD5 f542bea490f333a75dcf595c1664f98b
BLAKE2b-256 7a40dfb5e3080896627e3d331d84cd76e9ece14bf3bbba547fa4cbe3e85174f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a24d40460b26b64b1f418fe2df17e76c250880fdc46cd083c06bbdbd8290c65b
MD5 b42ef307421bf5dc3539baa0c5f795f0
BLAKE2b-256 7e956226f0cb17f1366671906723fa7f0a94191fe9505f6d4f849b4441995b90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ac9780b6011319530d0e2a582b471612aac5fbc414f0d64c696bcb704464932
MD5 94fd1b3d74cfac86d6b4c218c732c468
BLAKE2b-256 8dffccb61b1b964d4707ad62d2171db6f61a97af27a276a04b8c668c0ad706d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 95b22769934fda07430ee06acbc8bb05cbc91287c2ea1bab8ac68521f459980d
MD5 cea53ed7093f50d5b7ba1c09bddc9e1b
BLAKE2b-256 2b2f4d8256f6c2f438e6d4be932b13ffd72e05b5794d0647f8dffef658993121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 aa00eece57e1097bf3e17fa32e92aca831115086ffb8847fd3f8f171e405f69f
MD5 9fef1e84768742938e3b262a8a90ba67
BLAKE2b-256 2177b4ae4d318ff198052c9d5e89cb91ef9503eb01c2c84465ecdc2a14f1b1b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 765.7 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.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f1eb84a737518dfdb6294c16be90455a44ad93b23c9ac4701c0fa27c56cece19
MD5 f2736cb0a16a5bb29db0b3e54ac45273
BLAKE2b-256 c54b5e840d8e62fb8a1c8fc89097b0355c167b3c73a575ccdb00de6a7e899eb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bbc2185a98eeb2efc497b1220cde25b45115b239056c02d2250fe82c7a913ef
MD5 f68fe036a32c4fe869d2a2f13973a559
BLAKE2b-256 3e968dcc2660d99187c64d5e2f8d378d0ce8d1947fb5e1aa2c364fcb5c33ae76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa381ccb3b64376e90a731755e4f306b523ab81792c6ed3883a1bc5bd374e1ca
MD5 bdf87a5ac1a5ccdd041e73c345a926c3
BLAKE2b-256 202d9d1e7ba52dcc92cf6fd41c005f98e95a39f2a7ca1ba9164a44be0eb93038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72244c1308e3c4d6f0f2e58d3c29ac6316888d9fce090468ff1e982e40d0a33a
MD5 a8c562bd93134b030f8c024df79df310
BLAKE2b-256 fd08ec4bf8b14ee671fb99944168e679393b2e5b5d4ed527a1563324d3bc178b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7612e0ae6922f8b96f81c90f38eb35665c6a3fadfc42b7972d944d5dd9760f4f
MD5 cfc8744ca955529f5ae822dd9727b1da
BLAKE2b-256 a2e8c13e48e4a028f2f9a8b555333376f1aef37bcb7e077ba7e254431fffbb7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98bd96f642da91c84f49cac62617a60fd01e6d91753bd830c36c22c67551c7a6
MD5 e653d7082d5d1baac7be316982447b75
BLAKE2b-256 8d3e604668582cb0b30cbaa32bc71946fc6e0b4476e298abd95c26d7e4937586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dcd938288b270339b63d351c7b7a7b360c6d00755df12bfd995f3432c507e2a0
MD5 74c5067d37ad2e713638db4a2db07628
BLAKE2b-256 f9b7f6fb7e235fbbf9ef17871c4053af8809c6fc4bacaaae22f9f7d1daa3b665

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.9-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 da788acbb03243a56d8a21249a5faf7678e4002a7261e1114f34820e602102ba
MD5 e0c5b6d7fc336a6fe44499e0232bc293
BLAKE2b-256 ad6c52be5b04deacc2368fa17392686033759b28ae86a5d0aa26d4a78fd1b99a

See more details on using hashes here.

Provenance

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