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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

openexr-3.2.8-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.8.tar.gz.

File metadata

  • Download URL: openexr-3.2.8.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.8.tar.gz
Algorithm Hash digest
SHA256 2e6c295624601c4e48c148610e89368b11609cb42a1c3b4604f6d3bb04996d25
MD5 106d221c7e98acc56c16325573a48f07
BLAKE2b-256 2755fbce0e2bb7698000551c6f9c646b665db795eeecb7d33793015bcd41181b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.8-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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 462ea7e9a487be03809e93b5680602b213ab17a476136ba27a52ee680f37dc79
MD5 4248acc58f0a008ac5e8645bd829970d
BLAKE2b-256 5e3b11bf09664ac97ba31fd49e95f1185c1b7258be24fad9f6ebb467bf859abb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9753134e7796fb96a378d26cc783f2236c79c70a0e641cb5c61ba6ebee1a762
MD5 d8934ac19665e2fec534d9a4d8aa23d2
BLAKE2b-256 57f173527b12a8f9d7b7191bc81022b3d27742ae895795ccb6c3f79279e79381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07d6a8818c01b9542e5961ecd31b576193e6db008c8c7eff89734ec20e6f99e5
MD5 549c517b8834865fa2c7c7fdc1f00646
BLAKE2b-256 440d50271406b0cbfebeacea24efc9083d9cb0e7b5305f6ee22adf385f060c04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b03214296c669edc91a739c823baddacdb9de485df6cb40d2816832547e8156
MD5 81651ac2e56300c5bc69521f9efd7948
BLAKE2b-256 1a2cca543b12a63619b199ecaf8a662a9720b4b928917a2bd99622798fccf452

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8416d33152f9a9e8abca4fd1e4e1cf7c7fc126347a0baa62bc70a62395c4dd19
MD5 34bd53120b3ad9d0edd9e08281a982d4
BLAKE2b-256 daa22b93888cac6e719c0a8093c4ae345616f23124d12e7459fba982c3c7b2be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7402a79ed8c253e8e070e509f5d04b969272084a89ba2592871354d2820e2a7c
MD5 1398839bd89166b60d65e9db1848dcc3
BLAKE2b-256 e8bf7c622dfb9a7ab1179140a702fc3ea8401228cf13a4757843a53ab3161d78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b5ee2e0ac942a7e67e016b6031b1e6195cd111b8dadb4522bf98e7fa8dff4eeb
MD5 f356c809abf1b15c56b94e3ae1837cd5
BLAKE2b-256 787480919fbc5ca3a7d63ec871086509b5bd794efc7d8bfde65001c24d0c1810

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8fb8ecca2d204c1e24b0fc4ef5ef7b34ef353e5634b97a64c5afe3b05febd19b
MD5 fb0181e7dcea4867a6041b2afb70ceaa
BLAKE2b-256 32b15110c6e7c3dd3bb2cdb9922772dfd0a5e61a964fbf1d16712f88c976fa8e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.8-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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 36e957e45fa2f5c41741d524f39539dcdb527259cb30026dc359ba01b703b739
MD5 6f83cf1cc2bda11c21cc97d5e45a9fd3
BLAKE2b-256 db86f181f015e87a88d4d6228d2b8d94f4e8805d565cb7b03c0abd9892d21f3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf5d8bb16bd9d836c3ddfbccbff2c562540cc4b90fadcc6ee67ec615325c0696
MD5 bfc451fc0e14959e2fd6266e79521851
BLAKE2b-256 11196b7a4dac77c177536eee2808d9dc79db784b798c207db0e32ccefa4f67e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f626a851f3c77bfdcfe7b14cabb3ed8c5c305b5f2df3da131a2302148286131
MD5 2f6507ad01653e93a9e55fab533da1a9
BLAKE2b-256 4864a5ca4da6c9897e4f34c475edbd01f76f86f4f4bf62458ad04bb9e6c0b359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c70f81b580ee0dab595793055b6dd77be11814e8a093363bcf7c2f3df635a34f
MD5 6121445ba92215ab5baeca6ac642e1c7
BLAKE2b-256 7b7dda249cb40a8fa295a5e535b66c7c6cc4e10383770bdb51cc2b6ae60a85a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c79586f0310d5c15e0efae3abc8e8602be270b426c0e9337ca0dc580696a1f1
MD5 9a1912bb000bb993c3228d51b5d947a9
BLAKE2b-256 b247c15ad72a3c00b420861b510485733dbdbea9cb8dbbe29f8b52015080b84f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 918329602f0083bd3b4f4bcc4ca8a45799c3ca9dbb3b90d4eb05f25816050dc5
MD5 479d516fadecedda5a08c8a9137f0a7a
BLAKE2b-256 a9e94625c5d058544edd67d47168021bec30db8f7d699d9464bcc4351a3760f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c693857d365c5163d729f2908b1b7a6f19986d72d1cdeca28e5e0c70973f2533
MD5 59189fdbc7bbe3dcf1710b67a297a63a
BLAKE2b-256 4f3c4bd5460fa78eecec7032e0c834037f06103c196c0e1b487ab4a69dc6e9d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ed1e59c483b41b9c5575d2be050807b7d2342aed7a83b026bf1fb0b7c21e2f8d
MD5 1d4d25c6eb197abc1b51ef5ba41bc09a
BLAKE2b-256 f05d2c08737ebecf53206a5ac2db7c56aaac0ca1022a26e1172e7024bd57d052

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.8-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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 daddfaf93157d17908c0c4e0327665c2909b694681cc9ea76decdec2079b3351
MD5 e99d0789e92ea0bbc9ca1a0c34b67549
BLAKE2b-256 5ad6d4a52702fb21fe31ed825cf6319a09a8f6f61d17a31a9b9f9965402e08a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01ebab5a390acbff98c2edde859b4e2ea5d467050e63abc9962b501fceee96c2
MD5 510aff2d7a32ee18c9a569c8a44d852b
BLAKE2b-256 2ea2a68df0ceddcc2455a58281be74350d8ba77dc6596f6ae4ad48768d311978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 538d8fcd5a23fdc83ff907405d732bf38dcc0c23be0b09fcd881e6214084adbe
MD5 15f47573ca36b0463741a4a9a4aa608f
BLAKE2b-256 7a90989affec5483e220f25fe55f42d65870113cc555f89d4e5027d9422632b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4b09ca2a94602672b6e434d27adb1e3b281be3af822529b3f6d3f78a9de4d8a
MD5 4de6835bb44d1cd253046a33f8c766e4
BLAKE2b-256 ba67f077200b137e969fbe856fa9d7484f3611261e5f92509e0d8266d3502073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 023c4adfc5f10ee78f709ea5ef96dc3a6d007e146f3cda0207ddff735c86992a
MD5 78a19b9e77982fac542a5a51ec402362
BLAKE2b-256 cd7a878a03e27dc1c0d4cd896f33b32cf5632790b639a96e474ab879a7d6dd51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daaf36e30c58532fa8edb7fed8134bcf94b10c625f926381258ebbb5a608fa02
MD5 0c06e2eacc5947683822e28303982744
BLAKE2b-256 42a565b521e68892801815438a4c2699d6d1ba54fd69e16388a1c04867854723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b18d359e05437110e4871d6517079e909154ed46f215679f3ea48a6fba10a34b
MD5 56f0905f5dc83faa5b2b5fdf0c6c47be
BLAKE2b-256 d1732c7aee7076deafe1fb65eac6d017fe8fe5d92a332a296919548114ecac28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 12e9c5e1fa3a1a7346c20ab4f1d3de9d3fb243a539325f9f3bd79c5031303b99
MD5 791ec1dbf954b8238a38e510cff78f2c
BLAKE2b-256 145f7288d41fb1d25786b9a65d66dbb3560ca89c4567c715e4839db0b1d2082c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.8-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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8de04215571f0c818c424609dc765ffaa61a343d05c2e348097ec6d6adf11b45
MD5 24a5d7d216794df207e5f61ca1df6c00
BLAKE2b-256 d571f219ba3641b2a999bdc25eeecb017c08f89a4cff40401b4956fdba90ef5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9acd47710fa53694e75d0cf9b70f07fa90b137cf3b28bcda189d0f395a82e95
MD5 ac3b8a11c1522f633e713bfa69fef496
BLAKE2b-256 93f62cb72510f07d735eb7421db1c8bb115cdb79449e0427a6dca175a3d3a02d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f515d36ef06ade387f65c1345ae9eae1febb13f3047a0af8e0f65799382220ab
MD5 76036ee3a08e9004688a9c6fc0ddb590
BLAKE2b-256 7b9714de5027d77132a7e1066b82eea5cef7ab6ca1df7b46384e8a4079f3b78e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cf75b9859222a269b9e75e7a9c9da28f9ca794c786a51bf6a5e2cf6226591c4
MD5 63fa56eb9c80aaf330de6dc0ada6bb2d
BLAKE2b-256 05376c534516d1d4d7fa6f163a776d18dedb42506cd23484b0987e21127ac136

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f000ab280cd0c9bd71c933ad5782e19e7af9691f0451de49250b628d8338044
MD5 525e9a2d09e99bcee35b8d6a5e6e802f
BLAKE2b-256 8a151fd6329b8c1461d8722d9def794634905dc2a038223906c7bc374a5769f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7edc41219eba52816b9a7e17f4cc46a30d34697add3a005e4bb7a8fade6da6d7
MD5 90246d6cb7da1d6651ddc6a9747f251a
BLAKE2b-256 e8971ba0806b5ef5269dbb095784b19c78ed76f0445ca490afeafbc2f27c4663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 265c236a822d17f5b2120d077af8aa69b2abb23800fd112fa243ed2064c087d6
MD5 881939f340261cfd86f7526646a92d59
BLAKE2b-256 ff7c69f18958f8fcabefe889938a014729f7f85c3c7d0b1bbc4faf417326a6b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 335e94a4a39e2b46e665223088270d8badfe4bb88ccb96b9b46b61c140bf32d6
MD5 7e7edd6d9b5830c754e279a72d270495
BLAKE2b-256 32f3ea9d1f0081d880f784dabd052cda53f81984b3f0d185b098d688a3f71bff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.8-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.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0412a61c2dcc133e7ee5b0e6659a8c5acfb8eb9943476e45fa3e6d3e11aab5a5
MD5 70e95ee535a679da62eb91f91d2886df
BLAKE2b-256 318e3f8e708afe9a278790ba8f4ae191c1676fc317e3312b9238681f464e74ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ed73ae946e71561c896d5a35cf67be96b41e82f5e64fb20b81fa1d647ce8846
MD5 6fc77ba4508fc5bf38c184f6e6bf3995
BLAKE2b-256 99430db26e1f12a7271a83ffc68481bae64af9f20d849c023981815a9a83107a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8039c128d0e93a7cc1230bbdd10db7184807339119fb4381cd5b00a50470c0ea
MD5 995ec5d57b072796de22436ef7eb13a8
BLAKE2b-256 be492ca7620d546960ea5bfd7d7fa52b5cf119266d4a58c5b75691f0cedbefc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43ba5b04217b989245d882ca87a9efe217715220bf16d43dd1f1863d7828d319
MD5 d58c9e38d80dd8ad5ae058980ed2f4ec
BLAKE2b-256 0349b778b4b7e2d7982f6c14e759c7af61f609511d453771f6c9ca044f1a522b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8f63c949ef5aafc4f919b076e89cac045a1ab4f5bec7d55266fbc90bee194b8
MD5 b512d1816e40f45dafa6542bdf56c446
BLAKE2b-256 21d1d6fc878a5ae484cbdae7f8be9e53c406871f8707f3c0d077c93443021649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 716ab3cd7028bca2863d2bec5b03eccfc8b2fb75a7d2c06206c639dd9c2519ee
MD5 f8b5facd8d2d9229ee26b5d872fd3a9f
BLAKE2b-256 9876e44dfa2abee930cbd0a4a01dc1b393489632e72c595a48324fbf96fc4641

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 19390c916a9618025218f566108501e2f058c506403a8c4fd0fb1fd54a9b841b
MD5 d28680b2d7d1b81174343adb3a400958
BLAKE2b-256 7af568a0cf72299cbcce1fa854509d0f7af89b07d8a9d0f83f4f6770dfcc7995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 62142194a2889a658516b71f3ce6f40f73bbde1694577cfb11e53cd7ab507b63
MD5 00624381b133e0e67cc232dc2e5d6c15
BLAKE2b-256 ec518ae47486830af9b3c3a62df7d604600c947fe72350ac8c552269d444dd62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: openexr-3.2.8-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.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8ec10568203c6b511f8bb0429153ef0947d37ddf2da554700ab8f88af8e2452a
MD5 9acde76bc4752137fbf9afe258191cbc
BLAKE2b-256 9b16863b4ce67bb87e2ea9fbb1632815158180de9cbe69aa609c2bee463763c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c73e59dc1e5227110198e83dad60bd752f2c8e04cdaa8221d8af6634df70833a
MD5 ae605bd872860c650f3ad8669638d9f2
BLAKE2b-256 4929e256adafaab4c1ef453f6592e970df792f87d9df035f0442dcb8ebb616bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10064ee4a74a57b26d3158be2431d9d2fe37f04f7950fabcd8577dc962652f9f
MD5 e856277fca034e3cd8fc280c71bcb675
BLAKE2b-256 93eeb51acd0f061eeec2f004fef915ada9d2cbfa553d645fdc4975c05b2253e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba873fb22e721807b384102af4a9ea7fd7900acb93968f1a3163b8eba7ef45a3
MD5 fb53de322367a15369ec59f850e9422d
BLAKE2b-256 0d6a89c26c4b0c635fbe442f27bebdf7518c5df1ad094569e3b93a871210de5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e1b69505b49b89d77a211ef432eb663447cd38bede7cb4d716c85ba4abc076d
MD5 e6cbeb7791c6d6e0b10a9743b439fc93
BLAKE2b-256 ae2425829bd5638eab43bcbd47c17848f86ee32ac6ddf9861e613c73b7c8de20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e3dbeabcfb458a174401e0664990ea88587f9b4be2c70f08d487ce0681f9aa6
MD5 5db4df722d9df668414daba9211b0937
BLAKE2b-256 446503da573bf7d1cd5a835920f3dc2aa518ed1a40bc7a06ebe0780f50072a7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3fc59bde34c8fc307bd90c5604cad3f149d604f2814f931674c85fcd0c1b31e4
MD5 cefaf9493599439bdb01210caea32ae5
BLAKE2b-256 0b9dbc1acc132b8a16274b57d4c43379e0dfe9abed3b1dcaa92f38dd19cf2be4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for openexr-3.2.8-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5444cf934c3aecd7b09b4a873fcf999c4d8468b3619c4cc18891c4b5f0ac4efe
MD5 eae91fc66ab20289d91d9064b11772f7
BLAKE2b-256 56eca55589f601a13d041b60bb1ca3d58003aa918ccecc60b6b98c7cef391f31

See more details on using hashes here.

Provenance

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