Skip to main content

Unofficial OpenImageIO Python wheels, including OpenColorIO

Project description

oiio-python

🐍 OpenImageIO on wheels!

This project provides (unofficial) multiplatform wheels for OpenImageIO Python bindings, simplifying installation and integration into Python projects.

PyPI Downloads

Check types-oiio-python if you want type hints & auto-completion for oiio-python.

Build Static Multiplatform Wheels Build Multiplatform Wheels Build Linux Wheels

Note: Official wheels are now available 🎉 ! I'll continue to maintain these builds aside cos they still provide some extra stuff, like integrated PyOpenColorIO, and more enabled features.


Features

  • 🚀 Easy Installation: Install via pip—no need to compile.

  • 🌐 Multiplatform: Supports Windows (x86_64), macOS (x86_64 and arm64), and Linux (x86_64 and aarch64).

  • 🎨 Integrated OpenColorIO: Includes PyOpenColorIO for seamless color management.

  • ⚙️ Automated Builds: Built using Conan, Cibuildwheel, and GitHub Actions.

  • 📦 Flexible Libraries: Choose between static and shared libraries to suit your needs.


Installation

# ensure pip is up-to-date:
python -m pip install --upgrade pip

# Install the shared libraries variant:
pip install oiio-python

# Install the static libraries variant:
pip install oiio-static-python

This project avoids using the openimageio package name because the ASWF may release official wheels in the future.

You do NOT need to have OpenImageIO installed on your system. oiio-python ship with all necessary shared libraries.

What's Included

The goal is to enable as many features as possible to make the wheel flexible, while keeping the package size reasonable.

OpenImageIO wheels are built with the following features enabled:

  • OpenColorIO: With Python bindings included for seamless color management.
  • LibRaw: Adds RAW image support.
  • OpenEXR: High dynamic range image support.
  • Ptex: Ptex texture mapping support.
  • OneTBB: Multithreading support.
  • FreeType: Enables text rendering.
  • TBB: Multithreading support with Intel TBB. Disabled in musllinux/static MacOS builds.
  • libwebp: WebP image support.
  • libpng: PNG image support.
  • libjpeg: Support with libjpeg on musllinux, and manylinux static builds, libjpeg-turbo on other platforms.
  • giflib: GIF support.
  • hdf5: HDF5 data storage support.
  • libheif: HEIF/AVIF image support.
  • libtiff: TIFF image support.
  • libjxl: JPEG XL image support.
  • libultrahdr: Adds support for UltraHDR images.
  • OpenJPEG: JPEG 2000 support.

FFmpeg is not included due to potential licensing issues and package size.

DICOM support is also not enabled because of large package size.

Volumetric format support like OpenVDB are not included for now but could be in the future if requested.


oiio-python vs oiio-static-python

This project builds two variants of the OpenImageIO Python bindings:

  • oiio-python:

    • Links against shared OpenImageIO and OpenColorIO libraries.
    • Generally smaller package size.
    • Includes tools like oiiotool and ociobakelut.
  • oiio-static-python:

    • Uses statically linked dependencies.
    • Generally larger package size.
    • Does not include OpenImageIO and OpenColorIO tools.
    • Ideal for avoiding DLL conflicts, especially when using Python embedded in applications like DCC tools that already use OpenImageIO.

oiio-python versions match the original OpenImageIO release version, with an additional build number for the Python bindings. Example oiio-python 2.5.12.0.x is built from OpenImageIO 2.5.12

License

Code in this repository is licensed under the Apache 2.0 License to match the original OpenImageIO license.
Third-party libraries are licensed under their respective licenses. Copies of these licenses can be found in the licenses folder.

Statically Linked Libraries in Binary Wheels

The binary wheels may include LGPL statically linked libraries, including:

Licensing for Versions Before 3.0.1.0

Before version 3.0.1.0, the distributed wheels are licensed under the GPL 3.0 License.

Licensing for Versions 3.0.1.0 and Above

For version 3.0.1.0 and above:

  • oiio-static-python wheels are licensed under the GPL 3.0 License.
  • oiio-python wheels are licensed under the Apache 2.0 License and include shared libraries for LibRaw and LibHeif.

Building the Wheels Yourself

Although the primary target is automated builds on GitHub Actions, you can also build the wheels locally.

Note: Build system will use your default Conan profile to create a new default_oiio_build profile, make sure it's configured correctly.

Windows

  1. Install Python (3.11+ recommended), CMake, and Visual Studio.

  2. To build wheels for multiple Python versions:

    # For the static variant:
    set OIIO_STATIC=1
    python -m pip install cibuildwheel
    cibuildwheel --platform windows
    
  3. To only build for your current Python version:

    python -m pip install build
    python -m build --wheel
    

MacOS

  1. Install Python (3.11+ recommended), Homebrew, and Xcode.

  2. Set environment variables before building:

    # If you want to build the static variant:
    export OIIO_STATIC=1
    # Set Deployment target according to your macOS version
    export MACOSX_DEPLOYMENT_TARGET=10.15  # For x86_64 builds
    export MACOSX_DEPLOYMENT_TARGET=14.0  # For arm64 builds
    # Set Project root directory to the root of the repository
    export PROJECT_ROOT="/path/to/oiio-python"
    
  3. To run cibuildwheel and build wheels for multiple python versions:

    python -m pip install cibuildwheel
    cibuildwheel --platform macos
    
  4. To only build for your current Python version:

    python -m pip install build
    python -m build --wheel
    
  5. If not building with cibuildwheel, you'll need to manually "repair" the wheel with delocate after build:

  6. run provided setuputils/macos_fix_shared_libs.py

  7. then use delocate-wheel to copy the shared libraries into the wheel:

    python -m pip install delocate
    
    export REPAIR_LIBRARY=$PROJECT_ROOT/oiio_python/libs:$DYLD_LIBRARY_PATH
    DYLD_LIBRARY_PATH=$REPAIR_LIBRARY delocate-wheel -w /repaired/out/folder -v /path/to/wheel -e $HOME/.conan2
    

Linux

  1. Linux builds use Docker containers via cibuildwheel for compatibility.

  2. Install Docker and build:

    # If building on musl (Alpine) Linux, set the following environment variable:
    export MUSLLINUX_BUILD=1
    export CIBW_ENVIRONMENT="OIIO_STATIC=1"  # For the static version
    # Optional: Specify target docker image / platform
    export CIBW_BUILD="*manylinux_x86*"
    python -m pip install cibuildwheel
    cibuildwheel
    
  3. To build for the current Python version and distribution:

    • Ensure Perl is installed (required for dependencies).

    • Use setuputils/linux_before_all.sh if needed.

      python -m pip install build
      python -m build --wheel
      
  4. If not building with cibuildwheel, you'll need to manually "repair" the wheel with auditwheel after build:

    python -m pip install auditwheel
    
    export LD_LIBRARY_PATH=/path/to/oiio_python/libs:$LD_LIBRARY_PATH
    auditwheel repair -w /repaired/out/folder /path/to/wheel 
    

Notes

  • I'm not an expert in Conan, CMake, or Cibuildwheel. Feedback and suggestions for improvement are highly appreciated.

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

oiio_static_python-3.0.8.1.1.tar.gz (89.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

oiio_static_python-3.0.8.1.1-cp313-cp313-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.13Windows x86-64

oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (20.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_14_0_arm64.whl (17.5 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_10_15_x86_64.whl (18.5 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

oiio_static_python-3.0.8.1.1-cp312-cp312-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.12Windows x86-64

oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (20.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_14_0_arm64.whl (17.5 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_10_15_x86_64.whl (18.5 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

oiio_static_python-3.0.8.1.1-cp311-cp311-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.11Windows x86-64

oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (20.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_14_0_arm64.whl (17.5 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_10_15_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

oiio_static_python-3.0.8.1.1-cp310-cp310-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.10Windows x86-64

oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (20.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_14_0_arm64.whl (17.5 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_10_15_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

oiio_static_python-3.0.8.1.1-cp39-cp39-win_amd64.whl (11.3 MB view details)

Uploaded CPython 3.9Windows x86-64

oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (21.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (20.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_14_0_arm64.whl (17.5 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_10_15_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

oiio_static_python-3.0.8.1.1-cp38-cp38-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.8Windows x86-64

oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (22.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (21.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (20.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_14_0_arm64.whl (17.5 MB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_10_15_x86_64.whl (18.4 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

Details for the file oiio_static_python-3.0.8.1.1.tar.gz.

File metadata

  • Download URL: oiio_static_python-3.0.8.1.1.tar.gz
  • Upload date:
  • Size: 89.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.1

File hashes

Hashes for oiio_static_python-3.0.8.1.1.tar.gz
Algorithm Hash digest
SHA256 1c73223ba807abdfe995a64f495595bf671e53798144a56d5c6a14dca3998316
MD5 b6a7cf9a25fc287cd61b7b29af1a9d4c
BLAKE2b-256 0c2cc4c43af5689a34e71a638ac371713f99d93bbba1fdbc51cac5a6542f41bc

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5fbafc61fa11eab5ad35dcae2f5f15e0458e4642a31fc34e30e0b7c3d608bb41
MD5 e84b733a23139476c31414555d034388
BLAKE2b-256 a0d53e28b46fff70a4aefacb5e67ff9f1880ce9e0a95c55d9750e54892c52a30

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42c9d43c94e7c92629dc1965149c0075e91b644eeb3670f4e81e14c2a1cd3432
MD5 c34da5f9c59bff22cfeb3a1cb82eaf35
BLAKE2b-256 4d496c1c409bab352cbeb739db5cb90ecacf1610834dc3ed5533e367b8ecdec5

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f82dba393bbf58ce0379fa5004f61623491e617ed397b3e7eafa5f0ac2907cb
MD5 75eaf9ca00fb8883d8d158d6c3d6c112
BLAKE2b-256 d2d22248f28f153df39a837f88607ebd60e07978f70b7bc83e502f70097782a8

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f1d8f16b32ec278ecc7ebadaeded9372854285baf2d6d0c3e11629b8ae1e8f1
MD5 083cd32d5586de6814e2480f5294fd4a
BLAKE2b-256 0cb65598836b72d42db24d194eb04f2c98ca68df5a75150b2bf0b43bb047ef09

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ddd3fe697f458ce66c19e9b027504f9e8cbdcdabc0f2428cf32351b2a1f82ee
MD5 b1f439f9ebb19d6b3e76f398a571822d
BLAKE2b-256 bd544ace3efa6fdb73fbdad860b39f970f59f3a9530576bbdee14b99a0a1c8d8

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7c60bc77c5ae7a44ff3831ee39cbb4cdc922d234f86b83133310f3598d437db5
MD5 d9b64e4e0292d2cb2a617a3c42d7c20a
BLAKE2b-256 615f14e6c6211f47c76c6c52204de2aab326fc7af493dd9b3974e14373757c3f

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef05c0352770a2a702a99c0cbb2f9c3379292906c5551fb48caac9df96dfd6be
MD5 5426c75b5fc408879189d5d842484a24
BLAKE2b-256 1e44aec5b8bae2704c8bde976ddcee7e398093325dd4b2cacd5ddae5ac6165c2

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 625cfff26c5928efbbfeb4df83e13d528f77f6792bd95f73dd6381a01cbd24a9
MD5 1115d08e65854bddd59b5cb52c801891
BLAKE2b-256 029f4173f91759ffe56ff1891405c535f8b155ca01f8143c9143242f09589601

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7be26fdbfbfbb09536a5c07004f3388bf3fb788e2cdb274290727b3840ae0ca
MD5 d437aa90e4a9aca87c98e78c5796745f
BLAKE2b-256 cfab2e1449dcc964f8f6998cd9c26ac7383671c33df5ebac98545387a575a15c

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 016fa9d4f7929e1e2ac02d47f61a22a6f73b009f0ea398eb9549cc2a8a1235c7
MD5 6e1288d0e20b8208fc2e465465f8eb8b
BLAKE2b-256 a313c2e4ad42a350c9a28dcf78e02d2f6bf93a006c2e6c86e39aea7ad9ccaea7

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fa46614c7896f7ba1b9fe60feb8dd2990b5f9565dfe89f5da008b2ae743f0be
MD5 9691ff41d52b638830b60d40c4fda486
BLAKE2b-256 fdf07c2eba52f46f46b264522cee9f13a5258742cfff58652ae92bcc2e476df3

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af2308b53a91085a7d0b69fdf1e8865daa2ed7a6ba8306c1fda50785f20bc359
MD5 78674c9b27cde8a2cceac1ac4bd7877c
BLAKE2b-256 90054dc18dac477ebc2202c17e8713b1a379fd5dc3f92e6e9c7b0d0d5420b54c

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b381f3c03d1486f14853a5f814b9f5677bbeeb4cfb0a1dcb8da5d07ac295fe29
MD5 a60b9204036dda2d717e79aaf234f638
BLAKE2b-256 7cfbc54601ac409c8d37188bc7ab4872abd9c0b3a6bc981074c8adace2a53076

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cab1f6cbe36d8ff1b07e093a45aa8b392a7128aee01ad9f88b66519761977270
MD5 616452f5e487f089ac94d3d241f82b7b
BLAKE2b-256 62e1cea64fac188a21be9c8599ba65935a683ca4e071415da182116665ba9509

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a92c20cc877ce13e37afd7be1a7fdaffd07f4eec5efb630182eee373c82ec72
MD5 cac13de32a6c1328752272ee9933fcf6
BLAKE2b-256 5d05e5a2cef6450751726a6749073af81a16b7e4e15b3975b7c1956ff961ea83

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a86931df799eefa0c45597c7bdd29072badf1def3bff470d06e68ca4eaa9d5b
MD5 9847596f039408b83fb4f14a6a93fc41
BLAKE2b-256 66e8228896f78a1f1a084ab7a6ccba022968991fc6d8379d99a278ed5c24fc62

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a288911b6bfc9ddcc09a667a99a63ddfce65166669a908fd377b63ebc59b17a7
MD5 040153108a4eac7cc8bc28d941ae2825
BLAKE2b-256 e7a90346f0299adf75bf257709f9ef6d0a02f044c15987abd1708993ef21c660

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8209916652b62c6e45622a894e6bc47dde697ce97d293ad319e2f91ef5f673e6
MD5 3bad6639bb6c476c10d6410b59aed083
BLAKE2b-256 1f39527969d03fa57377d8e27131e379112fc86f3bbd76887a7b0f6d17b68f7a

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 801321ef5d3605c3195f85c0b49c7ac3d93d9dfae9d722b13a31cf65032a6b40
MD5 0bb61f1c79ea02879df96f473cb45f29
BLAKE2b-256 1b3095d25cbe35172cf17258a145f88dfae51acfe4ea62c5bb935fc69ff963c9

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f76074bd83ebd5b13ddcbfd61bdea2fbbbd544e7704fdceb7684751e7cf3d4f3
MD5 eabab89c3b511842e5b1673794c3d141
BLAKE2b-256 1ea766aa31323311e31c55f712dc2a665464e3b8250c347f791d325cbbeca1fc

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ad13ec2ef6a19b567af25ab018b212805c993aa34e62aec89cd3f9322fa607c2
MD5 ce4e102c450393dc1cdf56d50bd0a78f
BLAKE2b-256 10477dad3380f380e4b427d66b6eecfaa916f6410f92ed9251ee88bc0331bbc4

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f940153b27cf193805d75181d8a7ccf436a138bd488e0fc712ab99a4a33972f
MD5 57663288e836681b23f40f8980710632
BLAKE2b-256 426b9450225bf405bbebffa07f775d079722808e97fbd7fc1dbadcbce0a968a2

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd427e1b67481865a961076ae921c971cf75807cef157818e0cb476da9644ea6
MD5 70e40841f2f8e5ab8af4f10bdc95d625
BLAKE2b-256 7e023984da349bb66625678c2e71016572cf3c2f4af3685ebe6adb6f92841aa5

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0efaf1470830dd76023dd58bee1e43fce17b38d4a3f6b134bbad9a271387a893
MD5 048ed2c4a968484232d9513ee945d997
BLAKE2b-256 a0a68cf4d63790b86b16a1c9af730911a8f05c9204d15882302cde351829fb8d

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3f8f11ded5c1b741a43b2c2923eb861663028392ecdc4ff47a6a29fbd95d81c
MD5 bae0d90d8c0a11bc156b4977201bf867
BLAKE2b-256 278b5defbdd27962fb25440c6361bb0a553d8a46fe21cff6cb20da0e19294ade

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c5d143f9769ba089d05633bfc2ac9cda5d47dce2f82a236453c13bc83ba0dca
MD5 caa1563d5451cc365c8b24c4a2b449c8
BLAKE2b-256 9f2233a0574ff8af8767fcc1540989555a83836006db21816fe18bd13e48114b

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 049a171efbe26a996e714f0c448b286332c8f00449b3de4094b928da4890e061
MD5 364dd366f5b54f55d3eea556b56faf51
BLAKE2b-256 0fa419d2a89c1a54e4aceaf47f0229bfeb0487c430cac9aa6b899824bf63a45b

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3241c42acad783a97a02a9e32a8b32efaca01c9f5b258a7fae5f57c8c5629c48
MD5 4a3c00d78b5610530fe26d18e61db71a
BLAKE2b-256 e4afeb70f8deeebb1953fce77f4d2842c5575b9f04fd7986c0bca1efcaad1aa0

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e3206bc0fd2d5087bef2aaa0082ce1067c5490b33c28717b25077c10b04c9a1d
MD5 8618a7670819c142ba9c4a52557078d1
BLAKE2b-256 48a2c274cf1f5f990f3f15c2798fe22413872d4fc33feae48abd663184c06562

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b9cddbc692a89fce15985ae4c08a478f10399a956a53542c54627d965313e0e
MD5 106860d81128e18f8c7c25db2281e8b7
BLAKE2b-256 720fe76974f7816a5d56293b781107d11711b939d9dee0accdbcaa9a21e30f6c

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaac07351cbe2c86579067a134999f5b4e9903af552b11136e25a2539abd2d42
MD5 44e66aa4c2d58e564fcedf4d91526cbc
BLAKE2b-256 a7e7ceeb3378374df2437d8a005d9a1ea270231944db069dde652892bdf66b5d

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca39af4020f21b0b7450deca5c35e6e7287a61c215b4cf3986228905593bcdad
MD5 85734af7c3f09337801a38ce3f224405
BLAKE2b-256 a1b540ca0f18a4631724664c7014f36cd6dc3d2610d5d8ca72d783d8fef2ffa8

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4237293f00851a744679a45c1d2fafb535f8ae296ee423e62a20cf060900bd26
MD5 06f9fa44f773ad9c587858c647033e57
BLAKE2b-256 549183f934301cbdeda6a4d83632f832d7b4a1aa5f822733fd7539698af6d971

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f0ecd640d33dd07e895c3762781dc8e32928c193b9b23a8e70dfbd63c6f8c949
MD5 a152610cfef26e49bd22defd6d7428b2
BLAKE2b-256 cf0dc6fb0c7fca878604bb1836b7ea94eeff6f39f3017ba5aea54b022bf0d4e9

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1527f77b9ce9e8ed6c2e17ee6b1d611a6633af29fd6b264cf936a808bf2f5967
MD5 23a41eeadf3e6c4efd7269425de9b036
BLAKE2b-256 01bf98c9fa973ad700542c300c8d01b56e820f5abae503a7bd8f5d580dcd7389

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 75b24f4e12d366da1a7e5afad63355c353dce9701c7d42f6c08502eef0b51a61
MD5 9f7368fccafc6397273de628750ee978
BLAKE2b-256 eb00f1e8cf5eb12dd913c94aae8440692e62bc5804c54545ccfd82a7308f722c

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82b19183b53213b1ab5201eca0fe0a123f80a5796e39efad04b82c552d224632
MD5 2d0a53bbf40a5ddb063adeb9b5fa7da2
BLAKE2b-256 b9072fda9ccdec3dbc76ff7a548c05c4a99ddb64f7e7e6524ad1274d17c489c6

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d26ccda6e6d437edd2d8be5822ca4bb8269caa1fbdd0c7a7984cbb468d6206a
MD5 91e66cb30f7cd295d774738fb79d2837
BLAKE2b-256 3691cb0bd064ac4de762cd1d6fc7b9764ca6df59fafcf4fde67245395899ab3e

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f50692b009f760fda0131c43f3ccfe653a4623a30b212f98fc435e2cefbedd2
MD5 2de32a042831357c79646b20212e944c
BLAKE2b-256 a1e29f9aaced5b10239d21ef97a9b15f37057a77ee82de759499829116e0ca89

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ae1329fb62d3a060f65defc9bb50a91af10026870fb979decbc0c36dec67844
MD5 bd2965f3b4464d8a127fe7aaf98184d8
BLAKE2b-256 6ca445068ace2f2da20a4c1300f1a8146c08df7abcfcfdf558da520e33726d90

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e7e1e77242148ffde5d874c48793736a85fe280627f84de77d2f240f5966fe6d
MD5 056f3155c5437034c513281a3469ddca
BLAKE2b-256 46c62563682660382b261fb32847274c724e33f78ed78fea8d47a147e2567330

See more details on using hashes here.

File details

Details for the file oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 34f41297e95c4ba739c7b797bd60db6fb70c73a33987f1e31dfe06a3a4cae3ca
MD5 7e264f50ba1acb1ac7f9dbdc2302a06e
BLAKE2b-256 64484bd1892cb35a6cfc8f8e8c2deaea4b4637fe71f66faefb8326d6670a352a

See more details on using hashes here.

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