OpenEXR


NameOpenEXR JSON
Version 3.2.4 PyPI version JSON
download
home_pageNone
SummaryPython bindings for the OpenEXR image file format
upload_time2024-03-26 17:17:56
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!-- SPDX-License-Identifier: BSD-3-Clause -->
<!-- Copyright (c) Contributors to the OpenEXR Project -->

[![License](https://img.shields.io/github/license/AcademySoftwareFoundation/openexr)](https://github.com/AcademySoftwareFoundation/openexr/blob/main/LICENSE.md)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/2799/badge)](https://bestpractices.coreinfrastructure.org/projects/2799)
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/AcademySoftwareFoundation/openexr/badge)](https://securityscorecards.dev/viewer/?uri=github.com/AcademySoftwareFoundation/openexr)
[![Build Status](https://github.com/AcademySoftwareFoundation/openexr/workflows/CI/badge.svg)](https://github.com/AcademySoftwareFoundation/openexr/actions?query=workflow%3ACI)
[![Analysis Status](https://github.com/AcademySoftwareFoundation/openexr/workflows/Analysis/badge.svg)](https://github.com/AcademySoftwareFoundation/openexr/actions?query=workflow%3AAnalysis)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=AcademySoftwareFoundation_openexr&metric=alert_status)](https://sonarcloud.io/dashboard?id=AcademySoftwareFoundation_openexr)

# 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](https://www.aswf.io). See the project's [governance
policies](https://github.com/AcademySoftwareFoundation/openexr/blob/main/GOVERNANCE.md), [contribution guidelines](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CONTRIBUTING.md), and [code of conduct](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CODE_OF_CONDUCT.md)
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

* **Ask a question:**

  - Email: openexr-dev@lists.aswf.io

  - Slack: [academysoftwarefdn#openexr](https://academysoftwarefdn.slack.com/archives/CMLRW4N73)

* **Attend a meeting:**

  - Technical Steering Committee meetings are open to the
    public, fortnightly on Thursdays, 1:30pm Pacific Time.

  - Calendar: https://lists.aswf.io/g/openexr-dev/calendar

  - Meeting notes: https://wiki.aswf.io/display/OEXR/TSC+Meetings

* **Report a bug:**

  - Submit an Issue: https://github.com/AcademySoftwareFoundation/openexr/issues

* **Report a security vulnerability:**

  - Email to security@openexr.com

* **Contribute a Fix, Feature, or Improvement:**

  - Read the [Contribution Guidelines](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CODE_OF_CONDUCT.md)

  - Sign the [Contributor License
    Agreement](https://contributor.easycla.lfx.linuxfoundation.org/#/cla/project/2e8710cb-e379-4116-a9ba-964f83618cc5/user/564e571e-12d7-4857-abd4-898939accdd7)
  
  - Submit a Pull Request: https://github.com/AcademySoftwareFoundation/openexr/pulls

# Resources

- Website: http://www.openexr.com
- Technical documentation: https://openexr.readthedocs.io
- Porting help: [OpenEXR/Imath Version 2.x to 3.x Porting Guide](https://openexr.readthedocs.io/en/latest/PortingGuide.html)
- Reference images: https://github.com/AcademySoftwareFoundation/openexr-images
- Security policy: [SECURITY.md](https://github.com/AcademySoftwareFoundation/openexr/blob/main/SECURITY.md)
- Release notes: [CHANGES.md](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CHANGES.md)
- Contributors: [CONTRIBUTORS.md](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CONTRIBUTORS.md)  

# License

OpenEXR is licensed under the [BSD-3-Clause license](https://github.com/AcademySoftwareFoundation/openexr/blob/main/LICENSE.md).



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "OpenEXR",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Contributors to the OpenEXR project <info@openexr.com>",
    "download_url": "https://files.pythonhosted.org/packages/5c/b4/4d4e5584b21b5a26f38f85831fb50167f3549047eaf0b5de38e126ff97d3/openexr-3.2.4.tar.gz",
    "platform": null,
    "description": "<!-- SPDX-License-Identifier: BSD-3-Clause -->\n<!-- Copyright (c) Contributors to the OpenEXR Project -->\n\n[![License](https://img.shields.io/github/license/AcademySoftwareFoundation/openexr)](https://github.com/AcademySoftwareFoundation/openexr/blob/main/LICENSE.md)\n[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/2799/badge)](https://bestpractices.coreinfrastructure.org/projects/2799)\n[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/AcademySoftwareFoundation/openexr/badge)](https://securityscorecards.dev/viewer/?uri=github.com/AcademySoftwareFoundation/openexr)\n[![Build Status](https://github.com/AcademySoftwareFoundation/openexr/workflows/CI/badge.svg)](https://github.com/AcademySoftwareFoundation/openexr/actions?query=workflow%3ACI)\n[![Analysis Status](https://github.com/AcademySoftwareFoundation/openexr/workflows/Analysis/badge.svg)](https://github.com/AcademySoftwareFoundation/openexr/actions?query=workflow%3AAnalysis)\n[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=AcademySoftwareFoundation_openexr&metric=alert_status)](https://sonarcloud.io/dashboard?id=AcademySoftwareFoundation_openexr)\n\n# OpenEXR\n\nOpenEXR provides the specification and reference implementation of the\nEXR file format, the professional-grade image storage format of the\nmotion picture industry.\n\nThe purpose of EXR format is to accurately and efficiently represent\nhigh-dynamic-range scene-linear image data and associated metadata,\nwith strong support for multi-part, multi-channel use cases.\n\nOpenEXR is widely used in host application software where accuracy is\ncritical, such as photorealistic rendering, texture access, image\ncompositing, deep compositing, and DI.\n\n## OpenEXR Project Mission\n\nThe goal of the OpenEXR project is to keep the EXR format reliable and\nmodern and to maintain its place as the preferred image format for\nentertainment content creation. \n\nMajor revisions are infrequent, and new features will be carefully\nweighed against increased complexity.  The principal priorities of the\nproject are:\n\n* Robustness, reliability, security\n* Backwards compatibility, data longevity\n* Performance - read/write/compression/decompression time\n* Simplicity, ease of use, maintainability\n* Wide adoption, multi-platform support - Linux, Windows, macOS, and others\n\nOpenEXR is intended solely for 2D data. It is not appropriate for\nstorage of volumetric data, cached or lit 3D scenes, or more complex\n3D data such as light fields.\n\nThe goals of the Imath project are simplicity, ease of use,\ncorrectness and verifiability, and breadth of adoption. Imath is not\nintended to be a comprehensive linear algebra or numerical analysis\npackage.\n\n## Python Module\n\nThe OpenEXR python module provides rudimentary support for reading and\nwriting basic scanline image data. Many features of the file format\nare not yet supported, including:\n\n- Writing of tiled images\n- Multiresoltion images\n- Deep image data\n- Some attribute types\n- Nonunity channel sampling frequencies\n- No support for interleaved channel data\n\n## Project Governance\n\nOpenEXR is a project of the [Academy Software\nFoundation](https://www.aswf.io). See the project's [governance\npolicies](https://github.com/AcademySoftwareFoundation/openexr/blob/main/GOVERNANCE.md), [contribution guidelines](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CONTRIBUTING.md), and [code of conduct](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CODE_OF_CONDUCT.md)\nfor more information.\n\n# Quick Start\n\nThe \"hello, world\" image writer:\n\n    import OpenEXR\n    \n    width = 10\n    height = 10\n    size = width * height\n    \n    h = OpenEXR.Header(width,height)\n    h['channels'] = {'R' : Imath.Channel(FLOAT),\n                     'G' : Imath.Channel(FLOAT),\n                     'B' : Imath.Channel(FLOAT),\n                     'A' : Imath.Channel(FLOAT)} \n    o = OpenEXR.OutputFile(\"hello.exr\", h)\n    r = array('f', [n for n in range(size*0,size*1)]).tobytes()\n    g = array('f', [n for n in range(size*1,size*2)]).tobytes()\n    b = array('f', [n for n in range(size*2,size*3)]).tobytes()\n    a = array('f', [n for n in range(size*3,size*4)]).tobytes()\n    channels = {'R' : r, 'G' : g, 'B' : b, 'A' : a}\n    o.writePixels(channels)\n    o.close()\n\n# Community\n\n* **Ask a question:**\n\n  - Email: openexr-dev@lists.aswf.io\n\n  - Slack: [academysoftwarefdn#openexr](https://academysoftwarefdn.slack.com/archives/CMLRW4N73)\n\n* **Attend a meeting:**\n\n  - Technical Steering Committee meetings are open to the\n    public, fortnightly on Thursdays, 1:30pm Pacific Time.\n\n  - Calendar: https://lists.aswf.io/g/openexr-dev/calendar\n\n  - Meeting notes: https://wiki.aswf.io/display/OEXR/TSC+Meetings\n\n* **Report a bug:**\n\n  - Submit an Issue: https://github.com/AcademySoftwareFoundation/openexr/issues\n\n* **Report a security vulnerability:**\n\n  - Email to security@openexr.com\n\n* **Contribute a Fix, Feature, or Improvement:**\n\n  - Read the [Contribution Guidelines](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CONTRIBUTING.md) and [Code of Conduct](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CODE_OF_CONDUCT.md)\n\n  - Sign the [Contributor License\n    Agreement](https://contributor.easycla.lfx.linuxfoundation.org/#/cla/project/2e8710cb-e379-4116-a9ba-964f83618cc5/user/564e571e-12d7-4857-abd4-898939accdd7)\n  \n  - Submit a Pull Request: https://github.com/AcademySoftwareFoundation/openexr/pulls\n\n# Resources\n\n- Website: http://www.openexr.com\n- Technical documentation: https://openexr.readthedocs.io\n- Porting help: [OpenEXR/Imath Version 2.x to 3.x Porting Guide](https://openexr.readthedocs.io/en/latest/PortingGuide.html)\n- Reference images: https://github.com/AcademySoftwareFoundation/openexr-images\n- Security policy: [SECURITY.md](https://github.com/AcademySoftwareFoundation/openexr/blob/main/SECURITY.md)\n- Release notes: [CHANGES.md](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CHANGES.md)\n- Contributors: [CONTRIBUTORS.md](https://github.com/AcademySoftwareFoundation/openexr/blob/main/CONTRIBUTORS.md)  \n\n# License\n\nOpenEXR is licensed under the [BSD-3-Clause license](https://github.com/AcademySoftwareFoundation/openexr/blob/main/LICENSE.md).\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python bindings for the OpenEXR image file format",
    "version": "3.2.4",
    "project_urls": {
        "Bug tracker": "https://github.com/AcademySoftwareFoundation/OpenEXR/issues",
        "Homepage": "https://openexr.com",
        "Source": "https://github.com/AcademySoftwareFoundation/OpenEXR"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da5cf3e6bf318af0a1fe8cfb9c8f4f3754120b34aad9f8a42adce9ac1c686a49",
                "md5": "5a210bea9e51ccfc5a1d9d4db03766a5",
                "sha256": "36ebb366da07e99d14c5f1f62f6233d694b77f51036b5f2e22387f0612763b5a"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp310-cp310-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "5a210bea9e51ccfc5a1d9d4db03766a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2096145,
            "upload_time": "2024-03-26T17:16:48",
            "upload_time_iso_8601": "2024-03-26T17:16:48.369447Z",
            "url": "https://files.pythonhosted.org/packages/da/5c/f3e6bf318af0a1fe8cfb9c8f4f3754120b34aad9f8a42adce9ac1c686a49/openexr-3.2.4-cp310-cp310-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be53ee1eb4833405e365ec862bd80d8da7c4c6cb0aad32f891138d9735e6c0ae",
                "md5": "bd6b1251a668b948f015d0dd06d60d06",
                "sha256": "374800a281228fb221533f49a5329da49d8e4cb9f44de5b2cd1b8d48553c3241"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd6b1251a668b948f015d0dd06d60d06",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1073070,
            "upload_time": "2024-03-26T17:16:57",
            "upload_time_iso_8601": "2024-03-26T17:16:57.471503Z",
            "url": "https://files.pythonhosted.org/packages/be/53/ee1eb4833405e365ec862bd80d8da7c4c6cb0aad32f891138d9735e6c0ae/openexr-3.2.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9357c705159d460613cbf00640f50e30922d41b14026796cee9fe70fc26ccfb3",
                "md5": "58764198d25ff1d699fec1c23253b098",
                "sha256": "1000138d2343263cd0eb31a39d11f62cfc2d011f086842015f6a563f4fcd01d5"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "58764198d25ff1d699fec1c23253b098",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1033342,
            "upload_time": "2024-03-26T17:16:59",
            "upload_time_iso_8601": "2024-03-26T17:16:59.464679Z",
            "url": "https://files.pythonhosted.org/packages/93/57/c705159d460613cbf00640f50e30922d41b14026796cee9fe70fc26ccfb3/openexr-3.2.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "776b05a51ee989712573a785b89f33a49e05585c257c4cb92f54abc3718d3999",
                "md5": "a6245123922c0b5e05b8210cf77dae9b",
                "sha256": "551688b1aa3e748ebe412c35c6f520ff266968237e897cb95557218b990c19a1"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6245123922c0b5e05b8210cf77dae9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1098970,
            "upload_time": "2024-03-26T17:17:00",
            "upload_time_iso_8601": "2024-03-26T17:17:00.967467Z",
            "url": "https://files.pythonhosted.org/packages/77/6b/05a51ee989712573a785b89f33a49e05585c257c4cb92f54abc3718d3999/openexr-3.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16032f94d8b67635ff19aaf380da79bcb450b958e1d460197912d8ba048600b7",
                "md5": "04fbbb10c6f64ac9549de6309fc8f707",
                "sha256": "56fca78deda5a1b3be1eab10296b09a3acf455f037c56d0183bcafe4f942d5b3"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04fbbb10c6f64ac9549de6309fc8f707",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1608240,
            "upload_time": "2024-03-26T17:17:03",
            "upload_time_iso_8601": "2024-03-26T17:17:03.218908Z",
            "url": "https://files.pythonhosted.org/packages/16/03/2f94d8b67635ff19aaf380da79bcb450b958e1d460197912d8ba048600b7/openexr-3.2.4-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cc461681e46f99f182bad9cb2270c192e4174532fe96bef0deafd6e68c084ba",
                "md5": "e9a7c2ea52a19b8184295e8c27be6d0f",
                "sha256": "8f785a7714e7a49bdc68974a3ea2cb2c1b9d5d7625779b2e1f1e508db1e74931"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e9a7c2ea52a19b8184295e8c27be6d0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 759962,
            "upload_time": "2024-03-26T17:17:04",
            "upload_time_iso_8601": "2024-03-26T17:17:04.740929Z",
            "url": "https://files.pythonhosted.org/packages/1c/c4/61681e46f99f182bad9cb2270c192e4174532fe96bef0deafd6e68c084ba/openexr-3.2.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25c6ab95c3e83f0d9ccdce0f3ccf38568a22e70a7ef866adaacd9b288d8f8979",
                "md5": "658d1350d65d3fcc97c60f5f2dad3b31",
                "sha256": "18ff46df759134ae6ba9fc440cf7d16eed9ccb3b0795417eb6e1696ff5abe965"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp311-cp311-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "658d1350d65d3fcc97c60f5f2dad3b31",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2096145,
            "upload_time": "2024-03-26T17:17:06",
            "upload_time_iso_8601": "2024-03-26T17:17:06.227252Z",
            "url": "https://files.pythonhosted.org/packages/25/c6/ab95c3e83f0d9ccdce0f3ccf38568a22e70a7ef866adaacd9b288d8f8979/openexr-3.2.4-cp311-cp311-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c2396d1a3513978f4869247b45bc4729a1c5894e8e5090ebf5cabc80c90d503",
                "md5": "91fc71cefe192bd616228ab92daeb397",
                "sha256": "1ac7628cb5d89590b86896b2bf111841aee78e626da3858251a17a231aa941ad"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91fc71cefe192bd616228ab92daeb397",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1073070,
            "upload_time": "2024-03-26T17:17:07",
            "upload_time_iso_8601": "2024-03-26T17:17:07.690866Z",
            "url": "https://files.pythonhosted.org/packages/8c/23/96d1a3513978f4869247b45bc4729a1c5894e8e5090ebf5cabc80c90d503/openexr-3.2.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be30999cfc2f1b25f66a49f675681733e8c4706fcc8a6715c178e09f87468b4a",
                "md5": "be556a6df9734fda6ef127d60cb952b6",
                "sha256": "761b3fe4af198d7d1e2a93f5960b7c57fe1b5d4e9686334d5c99ce80d0a9af53"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "be556a6df9734fda6ef127d60cb952b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1033343,
            "upload_time": "2024-03-26T17:17:09",
            "upload_time_iso_8601": "2024-03-26T17:17:09.716701Z",
            "url": "https://files.pythonhosted.org/packages/be/30/999cfc2f1b25f66a49f675681733e8c4706fcc8a6715c178e09f87468b4a/openexr-3.2.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59610d3bc8218e3c9b75fa798583461946e50e8251e8c1bcbae9dab49f824361",
                "md5": "462bc5b9740edf23456bd48ec64adb8a",
                "sha256": "80b03bdf44ac629c966946ebc29609c9e6c693d7bb935c6712e0a952bfdbadd5"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "462bc5b9740edf23456bd48ec64adb8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1098980,
            "upload_time": "2024-03-26T17:17:11",
            "upload_time_iso_8601": "2024-03-26T17:17:11.391545Z",
            "url": "https://files.pythonhosted.org/packages/59/61/0d3bc8218e3c9b75fa798583461946e50e8251e8c1bcbae9dab49f824361/openexr-3.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4fae6be4e0c552c01da8a991a3fa889a54fa4913ffc919534087d44b4cf87813",
                "md5": "caea684496147c6a1fef786d4dd4d416",
                "sha256": "7fbaf5ba4f83503d30656dcde0e17462b0f197e841a89216016262bdc827df4d"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "caea684496147c6a1fef786d4dd4d416",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1608186,
            "upload_time": "2024-03-26T17:17:13",
            "upload_time_iso_8601": "2024-03-26T17:17:13.795477Z",
            "url": "https://files.pythonhosted.org/packages/4f/ae/6be4e0c552c01da8a991a3fa889a54fa4913ffc919534087d44b4cf87813/openexr-3.2.4-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58426238009a68d5689de453f09cecb4d38a0374de64dc3324222804f1b00bae",
                "md5": "53fa49bf6caa6e2748c8501722e890a0",
                "sha256": "7c4bd5509219a10387ba11357a26026e66a09ed44287f3f6b69945485306ae74"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53fa49bf6caa6e2748c8501722e890a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 759974,
            "upload_time": "2024-03-26T17:17:15",
            "upload_time_iso_8601": "2024-03-26T17:17:15.621482Z",
            "url": "https://files.pythonhosted.org/packages/58/42/6238009a68d5689de453f09cecb4d38a0374de64dc3324222804f1b00bae/openexr-3.2.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ee61b5db76aecf495c6fc52634e7222ba5c2358519db30373ef03e685b28233",
                "md5": "d6e447eec5f8ab2d3dcd2b7c2cb32fb7",
                "sha256": "f3df0c5cb349dc798ce2a33b0b461e12dd98d409d038462def08d56fdfbb0fa3"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp312-cp312-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "d6e447eec5f8ab2d3dcd2b7c2cb32fb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2096221,
            "upload_time": "2024-03-26T17:17:17",
            "upload_time_iso_8601": "2024-03-26T17:17:17.577848Z",
            "url": "https://files.pythonhosted.org/packages/8e/e6/1b5db76aecf495c6fc52634e7222ba5c2358519db30373ef03e685b28233/openexr-3.2.4-cp312-cp312-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6865c5e6b0a38f44d9dd3ea0ab9313f6ff0ff0f482fd0be882c00f0d54f82d77",
                "md5": "80524db3d6b734fbe3832697cf1cdfe1",
                "sha256": "172e5a795779a4c42c6f3e1363b065510a73f00565573c4b50f690543a04efa7"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80524db3d6b734fbe3832697cf1cdfe1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1073213,
            "upload_time": "2024-03-26T17:17:19",
            "upload_time_iso_8601": "2024-03-26T17:17:19.763370Z",
            "url": "https://files.pythonhosted.org/packages/68/65/c5e6b0a38f44d9dd3ea0ab9313f6ff0ff0f482fd0be882c00f0d54f82d77/openexr-3.2.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04628b034579c51d6950c007084eca8436d29ddd5681d2bf69da422bad2f94cd",
                "md5": "e4674fcb0a731578dac0c7350c87140c",
                "sha256": "5f5245f0e04cf29aacf8fcac3a957d35bd0f7f03b93dd84187b2df42bdef113d"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e4674fcb0a731578dac0c7350c87140c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1033444,
            "upload_time": "2024-03-26T17:17:21",
            "upload_time_iso_8601": "2024-03-26T17:17:21.153704Z",
            "url": "https://files.pythonhosted.org/packages/04/62/8b034579c51d6950c007084eca8436d29ddd5681d2bf69da422bad2f94cd/openexr-3.2.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd19ba88180e8f2645e8dd0666a49548d96c826e10fa29fede47fa2c4723c440",
                "md5": "0907b7045156f75014f4630cab2789ef",
                "sha256": "26a302309780ebda982dc63ad41f584bba71b472f8a7e4d1b40d75b14b3d9725"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0907b7045156f75014f4630cab2789ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1099391,
            "upload_time": "2024-03-26T17:17:22",
            "upload_time_iso_8601": "2024-03-26T17:17:22.625057Z",
            "url": "https://files.pythonhosted.org/packages/fd/19/ba88180e8f2645e8dd0666a49548d96c826e10fa29fede47fa2c4723c440/openexr-3.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f49b6f2d8ceee72b2178598459d28ba0c5033c72d4251646877bc227fbd927c",
                "md5": "67eb9f996f8cae149599712648c5b5e2",
                "sha256": "933d97b4dd8e14703425bc9d22cfc11d6923cc2dd6e81cbd0d6a0362db226aaf"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67eb9f996f8cae149599712648c5b5e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1608368,
            "upload_time": "2024-03-26T17:17:23",
            "upload_time_iso_8601": "2024-03-26T17:17:23.953876Z",
            "url": "https://files.pythonhosted.org/packages/9f/49/b6f2d8ceee72b2178598459d28ba0c5033c72d4251646877bc227fbd927c/openexr-3.2.4-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "849efc13060025adae2df877f34b99afd100a833bd395967a9b1ff798f1ccbb1",
                "md5": "6e90916c616bff5fe6e999b668faca30",
                "sha256": "448a77f228041c8c613f101551e2d632e9bf5a9b8312bffa17e9b09525166afa"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6e90916c616bff5fe6e999b668faca30",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 760170,
            "upload_time": "2024-03-26T17:17:25",
            "upload_time_iso_8601": "2024-03-26T17:17:25.413479Z",
            "url": "https://files.pythonhosted.org/packages/84/9e/fc13060025adae2df877f34b99afd100a833bd395967a9b1ff798f1ccbb1/openexr-3.2.4-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "842fe20e2823fec07ec5790130581ea18a29f69975e5563e4aecd6fc9e36be0e",
                "md5": "4e6da4c80513700b03126633d342a548",
                "sha256": "788f483a9647dbc3716aff64f3e41c20d0963be301ec39e56db7e64196fd5552"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e6da4c80513700b03126633d342a548",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1072755,
            "upload_time": "2024-03-26T17:17:26",
            "upload_time_iso_8601": "2024-03-26T17:17:26.927416Z",
            "url": "https://files.pythonhosted.org/packages/84/2f/e20e2823fec07ec5790130581ea18a29f69975e5563e4aecd6fc9e36be0e/openexr-3.2.4-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd69027480438e6a1c8268ac02d16ffd02f4888018a80bcb26118381e04c250a",
                "md5": "bbc9639100df201305176b004114832d",
                "sha256": "0f3e45a79e7a196bdb73c211f97a8aee0320fcf7b34d14eb014ba400da764d4a"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bbc9639100df201305176b004114832d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1097929,
            "upload_time": "2024-03-26T17:17:28",
            "upload_time_iso_8601": "2024-03-26T17:17:28.436078Z",
            "url": "https://files.pythonhosted.org/packages/fd/69/027480438e6a1c8268ac02d16ffd02f4888018a80bcb26118381e04c250a/openexr-3.2.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53c7e110c7c6af48795a25a33b73ee3097bfafbffd36a9347a4aaa6b21a70a42",
                "md5": "083ba9689799f08dff9a3d2e386d2cad",
                "sha256": "1a21af659e2884a838638cbf376e642e2c9ba525c0723bbac67f775d1450628c"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "083ba9689799f08dff9a3d2e386d2cad",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1607717,
            "upload_time": "2024-03-26T17:17:30",
            "upload_time_iso_8601": "2024-03-26T17:17:30.259147Z",
            "url": "https://files.pythonhosted.org/packages/53/c7/e110c7c6af48795a25a33b73ee3097bfafbffd36a9347a4aaa6b21a70a42/openexr-3.2.4-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "213277e53a4126f2516c7330ee76c2336eb49bc4f71e633246104fb109efdd55",
                "md5": "83ac2f830e86f48942bc8c2ecf3284e1",
                "sha256": "21c08614ed2cc77485aca4a191c6a023a904a58bbb77d63b4c74c766c31adf51"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "83ac2f830e86f48942bc8c2ecf3284e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 759960,
            "upload_time": "2024-03-26T17:17:31",
            "upload_time_iso_8601": "2024-03-26T17:17:31.887641Z",
            "url": "https://files.pythonhosted.org/packages/21/32/77e53a4126f2516c7330ee76c2336eb49bc4f71e633246104fb109efdd55/openexr-3.2.4-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6407c780cd46b80ee2c8201f25aa7c091e461339b58eb0e899adc54b8ca521dd",
                "md5": "8318d73095ee395f1f764c3fabcd3a9a",
                "sha256": "ff582609de18ad342c1e079dcd8558b8ff85ff69527712018dbd05807f02d68b"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp38-cp38-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "8318d73095ee395f1f764c3fabcd3a9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2095971,
            "upload_time": "2024-03-26T17:17:34",
            "upload_time_iso_8601": "2024-03-26T17:17:34.895468Z",
            "url": "https://files.pythonhosted.org/packages/64/07/c780cd46b80ee2c8201f25aa7c091e461339b58eb0e899adc54b8ca521dd/openexr-3.2.4-cp38-cp38-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5dbeed77b29f8be93438ec93b425a7c3a1e0d371ce0468df9196562a56c8b62",
                "md5": "4dbb6de8c61b557908e5f6dcec84dbe5",
                "sha256": "e939957be3df5d03715d0ef35c5b0c387239206abc7477bbd48b1d182b6241aa"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4dbb6de8c61b557908e5f6dcec84dbe5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1073037,
            "upload_time": "2024-03-26T17:17:36",
            "upload_time_iso_8601": "2024-03-26T17:17:36.382340Z",
            "url": "https://files.pythonhosted.org/packages/b5/db/eed77b29f8be93438ec93b425a7c3a1e0d371ce0468df9196562a56c8b62/openexr-3.2.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b61540910df84529587e67734bd6d3a3d9a422cc837d2c5d8078439ed5f88b73",
                "md5": "6d37360220be320955ea290510011cf6",
                "sha256": "fef4cde0f1dcb8ea8a2010adb13b5fab47412d3c56f7a100e4a67b1b1def2dd5"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6d37360220be320955ea290510011cf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1033348,
            "upload_time": "2024-03-26T17:17:37",
            "upload_time_iso_8601": "2024-03-26T17:17:37.742634Z",
            "url": "https://files.pythonhosted.org/packages/b6/15/40910df84529587e67734bd6d3a3d9a422cc837d2c5d8078439ed5f88b73/openexr-3.2.4-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "462f6b3086be5a7989697749b3bc1d1481f4efdc921095939f271b29bed55eb2",
                "md5": "e65a3c19acc1b5461d9e2eac6a776bbe",
                "sha256": "a6e72994cdb8ca3c5601019aed40de6cf5f0519b2be47d02611a3b1faf7bf3c4"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e65a3c19acc1b5461d9e2eac6a776bbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1099006,
            "upload_time": "2024-03-26T17:17:40",
            "upload_time_iso_8601": "2024-03-26T17:17:40.274806Z",
            "url": "https://files.pythonhosted.org/packages/46/2f/6b3086be5a7989697749b3bc1d1481f4efdc921095939f271b29bed55eb2/openexr-3.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ec151409fc8fcb805c2e3d14be8774578091f814a431309347809ec2fcb9df3",
                "md5": "7d6e442e9c57ed7ca3ed00797526b55d",
                "sha256": "1fda05233ff209027c5a7b8f5172bd53bb6032db34c11dd2de7f0e1fed4fba4e"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d6e442e9c57ed7ca3ed00797526b55d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1608166,
            "upload_time": "2024-03-26T17:17:41",
            "upload_time_iso_8601": "2024-03-26T17:17:41.923417Z",
            "url": "https://files.pythonhosted.org/packages/4e/c1/51409fc8fcb805c2e3d14be8774578091f814a431309347809ec2fcb9df3/openexr-3.2.4-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f03853155756500bd7ec601bcee977a7fd811e93a418c9383ca4fcf08702f7cf",
                "md5": "ebfdf654f545c477e8e4271960e8f4fe",
                "sha256": "9c97c1c19fbc722f06f547ecf4e8e9ffd32388da9f4616cbfcfd8ec873c5559e"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ebfdf654f545c477e8e4271960e8f4fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 760126,
            "upload_time": "2024-03-26T17:17:44",
            "upload_time_iso_8601": "2024-03-26T17:17:44.004560Z",
            "url": "https://files.pythonhosted.org/packages/f0/38/53155756500bd7ec601bcee977a7fd811e93a418c9383ca4fcf08702f7cf/openexr-3.2.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e0bc279e928aad10d70f7837e9174cd56f6e8f6fdc51dd28a4edc728a21c387",
                "md5": "d56af288242a98201cbd26040052e213",
                "sha256": "c32f6925cd343dc5f5a7330b856ed2beedec3b3ad14f1dd57d37b3f5cad4f694"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp39-cp39-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "d56af288242a98201cbd26040052e213",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2096155,
            "upload_time": "2024-03-26T17:17:45",
            "upload_time_iso_8601": "2024-03-26T17:17:45.683995Z",
            "url": "https://files.pythonhosted.org/packages/1e/0b/c279e928aad10d70f7837e9174cd56f6e8f6fdc51dd28a4edc728a21c387/openexr-3.2.4-cp39-cp39-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12becd247c6d4978133f3bbc3679daa19c60672cb627387747d4c9ea456981c3",
                "md5": "c41d19f4b492f38e8684c33c6d4e8271",
                "sha256": "89b7b123a823d7108bed373aa0387a0af2d325bad8934817773a2f103706f5a4"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c41d19f4b492f38e8684c33c6d4e8271",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1073070,
            "upload_time": "2024-03-26T17:17:47",
            "upload_time_iso_8601": "2024-03-26T17:17:47.475591Z",
            "url": "https://files.pythonhosted.org/packages/12/be/cd247c6d4978133f3bbc3679daa19c60672cb627387747d4c9ea456981c3/openexr-3.2.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a9b86ee9ffe80b0c86734ac0240388aecd6de53452303eadfc6525811d0490b",
                "md5": "481bfbbb484599c6528402ef02aff165",
                "sha256": "f34c2fb2b2e9b8c493d1f9f83fa584ce46eb7bda4dc76aa270be0b81978f57fb"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "481bfbbb484599c6528402ef02aff165",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1033342,
            "upload_time": "2024-03-26T17:17:49",
            "upload_time_iso_8601": "2024-03-26T17:17:49.683909Z",
            "url": "https://files.pythonhosted.org/packages/0a/9b/86ee9ffe80b0c86734ac0240388aecd6de53452303eadfc6525811d0490b/openexr-3.2.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e48774d4bdb8c203231d4ce13fd80560f23a130c16e89baf7f5917b96fb310af",
                "md5": "e17867d5f9b153736e440dc4fb3f1f72",
                "sha256": "36984850b2e75d94279fb0d3bea640d0a48a40cb5fae7953869ee3c6ebf15098"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e17867d5f9b153736e440dc4fb3f1f72",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1098992,
            "upload_time": "2024-03-26T17:17:51",
            "upload_time_iso_8601": "2024-03-26T17:17:51.984516Z",
            "url": "https://files.pythonhosted.org/packages/e4/87/74d4bdb8c203231d4ce13fd80560f23a130c16e89baf7f5917b96fb310af/openexr-3.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "160f240a2272be61c778fbdbee8b28fe111f4fefc7e67b82bdd7f9e7d1fb8fe1",
                "md5": "3fe8dd3216819bab1181491f05490055",
                "sha256": "3c4e0a4229d736afa9939a641c36dc04230ce35610c62ed9c0c7b10acef7f005"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3fe8dd3216819bab1181491f05490055",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1608178,
            "upload_time": "2024-03-26T17:17:53",
            "upload_time_iso_8601": "2024-03-26T17:17:53.467756Z",
            "url": "https://files.pythonhosted.org/packages/16/0f/240a2272be61c778fbdbee8b28fe111f4fefc7e67b82bdd7f9e7d1fb8fe1/openexr-3.2.4-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7a7a21e3966228faffef65f147990a0191cb05c1ed35dd606a774463eedb265",
                "md5": "dbba8b6243bcf8c2688164152826ca55",
                "sha256": "75db10167da88e7a1b0f582480b8abd1cc83153fc5448609235988900b467d0f"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dbba8b6243bcf8c2688164152826ca55",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 760053,
            "upload_time": "2024-03-26T17:17:54",
            "upload_time_iso_8601": "2024-03-26T17:17:54.926832Z",
            "url": "https://files.pythonhosted.org/packages/e7/a7/a21e3966228faffef65f147990a0191cb05c1ed35dd606a774463eedb265/openexr-3.2.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cb44d4e5584b21b5a26f38f85831fb50167f3549047eaf0b5de38e126ff97d3",
                "md5": "c2e9bccd19f24f7a0365afc19eca63fe",
                "sha256": "f9bcea260edfeb089552a5b10c714d2ac859bacdb1d2fe7e6af2720e3c6bc066"
            },
            "downloads": -1,
            "filename": "openexr-3.2.4.tar.gz",
            "has_sig": false,
            "md5_digest": "c2e9bccd19f24f7a0365afc19eca63fe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1678144,
            "upload_time": "2024-03-26T17:17:56",
            "upload_time_iso_8601": "2024-03-26T17:17:56.489678Z",
            "url": "https://files.pythonhosted.org/packages/5c/b4/4d4e5584b21b5a26f38f85831fb50167f3549047eaf0b5de38e126ff97d3/openexr-3.2.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-26 17:17:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "AcademySoftwareFoundation",
    "github_project": "OpenEXR",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "openexr"
}
        
Elapsed time: 0.23713s