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_python-3.0.10.0.1.tar.gz (90.3 kB view details)

Uploaded Source

Built Distributions

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

oiio_python-3.0.10.0.1-cp313-cp313-win_amd64.whl (13.6 MB view details)

Uploaded CPython 3.13Windows x86-64

oiio_python-3.0.10.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

oiio_python-3.0.10.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (25.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

oiio_python-3.0.10.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

oiio_python-3.0.10.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

oiio_python-3.0.10.0.1-cp313-cp313-macosx_14_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

oiio_python-3.0.10.0.1-cp313-cp313-macosx_10_15_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

oiio_python-3.0.10.0.1-cp312-cp312-win_amd64.whl (13.6 MB view details)

Uploaded CPython 3.12Windows x86-64

oiio_python-3.0.10.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

oiio_python-3.0.10.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (25.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

oiio_python-3.0.10.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

oiio_python-3.0.10.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

oiio_python-3.0.10.0.1-cp312-cp312-macosx_14_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

oiio_python-3.0.10.0.1-cp312-cp312-macosx_10_15_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

oiio_python-3.0.10.0.1-cp311-cp311-win_amd64.whl (13.6 MB view details)

Uploaded CPython 3.11Windows x86-64

oiio_python-3.0.10.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

oiio_python-3.0.10.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (25.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

oiio_python-3.0.10.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

oiio_python-3.0.10.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

oiio_python-3.0.10.0.1-cp311-cp311-macosx_14_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

oiio_python-3.0.10.0.1-cp311-cp311-macosx_10_15_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

oiio_python-3.0.10.0.1-cp310-cp310-win_amd64.whl (13.6 MB view details)

Uploaded CPython 3.10Windows x86-64

oiio_python-3.0.10.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

oiio_python-3.0.10.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (25.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

oiio_python-3.0.10.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

oiio_python-3.0.10.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

oiio_python-3.0.10.0.1-cp310-cp310-macosx_14_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

oiio_python-3.0.10.0.1-cp310-cp310-macosx_10_15_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

oiio_python-3.0.10.0.1-cp39-cp39-win_amd64.whl (13.7 MB view details)

Uploaded CPython 3.9Windows x86-64

oiio_python-3.0.10.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

oiio_python-3.0.10.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (25.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

oiio_python-3.0.10.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

oiio_python-3.0.10.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

oiio_python-3.0.10.0.1-cp39-cp39-macosx_14_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

oiio_python-3.0.10.0.1-cp39-cp39-macosx_10_15_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

oiio_python-3.0.10.0.1-cp38-cp38-win_amd64.whl (13.6 MB view details)

Uploaded CPython 3.8Windows x86-64

oiio_python-3.0.10.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

oiio_python-3.0.10.0.1-cp38-cp38-musllinux_1_2_aarch64.whl (25.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

oiio_python-3.0.10.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

oiio_python-3.0.10.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (24.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

oiio_python-3.0.10.0.1-cp38-cp38-macosx_14_0_arm64.whl (17.0 MB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

oiio_python-3.0.10.0.1-cp38-cp38-macosx_10_15_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

Details for the file oiio_python-3.0.10.0.1.tar.gz.

File metadata

  • Download URL: oiio_python-3.0.10.0.1.tar.gz
  • Upload date:
  • Size: 90.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for oiio_python-3.0.10.0.1.tar.gz
Algorithm Hash digest
SHA256 af97625a73e000b627521105dabb8c54252e04c0648346edad0b7d6571c0efff
MD5 c2f1b546ec6088448aad7a5c8145f8fb
BLAKE2b-256 bdc84fad04fcf6327ee7f89009317cd17e10adf2105fabcb9dbafe2d7efd71a8

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e31279eb8f96b95891c5ddff1515824d6006ef5ee861c7d8600686cd865be00
MD5 855ef4b264950b2e31f3bfb477a82502
BLAKE2b-256 28f3c65dff45b3e21a842c172498c4feee24659a643418fd7f79c82edcd513ef

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a314a4af83a8332cbbe6ab9b3c2fce12386062c5e88358fa6dcee87718f0d8aa
MD5 193977a2b15e6b3a411209df83ec685b
BLAKE2b-256 8026b9a6f1542db824cbb81e8d12012bc7fb7035d5cb1f0b3fda79881f4fc9e2

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e98c7d27c4b83d43253bc7b54a02c5db2ae7a62ef869dd817c7a06226729e37a
MD5 b5bc07ea302627f32effeadfe2ef7503
BLAKE2b-256 688837390a15438396542777e0c09b078b481809a1de20dec39c047c4f2fb301

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e48c50a0dc2f435cc3dec9a75a82c4f5f81a03413cae753a84c15b1212a943d
MD5 20fe2cbd5163b0d5abf150fa34163751
BLAKE2b-256 fdcbd739b083b467d9f460a1e2fd841c935ff115877f943e6228916a43590a62

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 475bf26ede549c4e08a49796cb74e890ee43d75aff83d3a5f57685717e7be433
MD5 2102abc04c3e546530fdecf970d95cb4
BLAKE2b-256 c7097df5de0fdc40e9c7ad597f1c9c46c435b8e37b72fb959b491de9699f0775

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 507760ede65f4521030128124532c3eaf744da4e05fab50108fed1de0e6a26a2
MD5 8e08778500f8ef954b5c927f5f3ae448
BLAKE2b-256 c758aa8ebf8434b72a2bc7d08566eb62c6ecc2e1b8b2621a8e727b38c56207b8

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8351f0597dfafab997e18f8d3782d754a51133795cc4a0b7d3f1f61acc180cbb
MD5 64cffd94ab6799e2a8aca91956b5a470
BLAKE2b-256 9d8aaf1d29d8999bf15024b1375da7f4e381cb9b6107c31fd14f11e67b3af6ea

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6be753e8c158a401d3b8a55013ca78edf7d8ca6bf62799e86940a17404d807d0
MD5 0f0abaac4c6953ac8be735fdd7b0a37e
BLAKE2b-256 fe5f79cf893131a857b87add6db4d3366a28d5019d871616ebbe8998d84d824b

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3faf36b6bce1519424ecb9a428b47a15610345ec23b2e61d355a1ad0603e5456
MD5 4f30a87be9ed519b3a21546ae4522742
BLAKE2b-256 968188bb1790df754da15e13b1d0ba0857b4f8bb4772b861f2fd4680968da4f8

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9320e2a354d2f17b10a22aa173a024143d08315fa12367b8f66a705e5f2440d
MD5 61f8c575601f6444beb316e2e23bde33
BLAKE2b-256 1d99b57b576dc3cda152781666b027514bdd3cca48bd62bd0e9e8c39bb835739

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 457a3944a0a052aba07b108be041d06a935b478123661da43db403781791e9c1
MD5 6208294a2def5b54ba17bf2960f35de9
BLAKE2b-256 34391662efbdec3220ed6f780e30417519f845074234326b3934ed9f9ac5d10e

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60dc3441e3503df6cbfc344b3a61c01578a6bb605c0f3b8d9d60f9956b13caad
MD5 811d89baaf5f31cce729945d404f0035
BLAKE2b-256 1541cd96f1d7f7296c09f9bc89af344d550e4363554fe8f26d62f02304471cb2

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0d1a1ad7a4ddad7e806eb168902348528c3175a88891e075519692626ef13401
MD5 992f577651dae38c476e96551aa6f6b7
BLAKE2b-256 d3543ee1fd1796fc17c69e7a680719fc33a3df3118a2d4ec3e6b090f65cc1fd5

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dfec5542f31059298049dc857391ea59e7bae96bab45102a18986eea20084aff
MD5 cc18df1dcd5355d5a67eadfd5a9f3fef
BLAKE2b-256 cdb9523feef166b4851d45a7f005d2d6503ba220381b9ad4196a0517dbe290fe

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4df62de89a645df1cb481f31004aa6559e652cd277eb08a48dbdae0ce3c58eb7
MD5 363f42ff0df9b6cde6b2835bc1eb5406
BLAKE2b-256 4051dfd97d073a0d69c1117700101022d40609e5a583702bea443c77f9dd238c

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c7c78ab6d73ce97bc5ff024e16127137047bcfa5963bf19d1c00fef7a094cb8
MD5 1358c524fae025c7f6b752d325d3e7db
BLAKE2b-256 2015e4f446884cc3ac52e1b10ec4565cb9626dd5f6524318f4bfcc73e28ccdcd

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 122ef41d9e2dd9789b25e1c9b7e2659bb5c92ede62d609e9d23bb61bd2414963
MD5 de065583d186fe82268de6c68e3d5de3
BLAKE2b-256 5c4b1fe9d4996c1e3426c577f4c749f7662278e31195bb86ee227a9234b0c77e

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ded57ad06eb42e25493822ac1d8c0a32a5b8f19054d56b80cf51c27b06ac9f4e
MD5 5b3d587d7830ac7236786ce93e10fde7
BLAKE2b-256 4bebdf7de15363d9241f08061eaf964511d7d87e0ce92ed9d2699b02c4194ee4

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2560d105eb1e0f6b4b5ca1b75b858f7689c70de1b6ffe2e5130c85c55983d328
MD5 85a9353d5c15e45a9e17c75364b03406
BLAKE2b-256 98eb39e96ca07b67d607881b3b1b38ddc13e3a64a279f4d8674d6c15668c4929

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d539f18d11240a0ca23413c09c3aeb95136735b333b25d0821e541e59a541a27
MD5 d0cc4c4675d46c41c8e93d09b3984a6b
BLAKE2b-256 33034143b7901c00d4d58edecf1ce3bf1ce3e9b80e6d1ea6ad88bba656738ab1

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 100349f5a54bca834b5c6054b7cb88745503473d3c826d7de11ae7e6b4162671
MD5 58011a360929d97ddab6aa414004d8eb
BLAKE2b-256 231a1fc5f06349e1d88b23ca6cd1ef1b8029fc819d59d27fcd04c2b3db1f4e97

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a9a29df9dee3caa7921820d2d71ff175b2ee91f9002a20cac1a3757beb14465
MD5 cfffb6f686f5b86e6c3ae7cb18f6ffb9
BLAKE2b-256 bc9c09279d19fc45caaac0b20e4fe116a2b7589ed02f4818d9a98d1f9695e672

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7219694e41e8571c67ec996f01caecc685c90f4c1f68ad193e5e1e18552d8f6
MD5 f8378e953b2266d71e2826a1a64efa0e
BLAKE2b-256 fad8e70021a4085309af1faaa46e7424e55fd26fc6a86239e06be978a9ecc24e

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d3fcbcc47512be21294668905ac5eecf1f951847b6b7e73c944d870b6580565
MD5 19ab1cb327b664eacf792309a771b544
BLAKE2b-256 323fbf244b840c4e120c67ef23b4fdbedbbce2253f7475d7a11da25b5364b648

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3588df482094df46a16573a67e2726d20942135331c4aa21cab8e040eda2db9
MD5 534f58832453541747fb34bbb7bbbed9
BLAKE2b-256 d5412b21e2b2174ec2210b35c1309b7f3993d0e140880ff82630df300ed74162

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44add838f37794d24d6142d6e327a3864d4bc6606fa3e15def4efed3dee7d6c8
MD5 881e43700fab26a8b5136243c39d0ecd
BLAKE2b-256 a02ac6b341cde7c409dbfd9f43504ff0a183cb48f14627986f2857349f59a196

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b523184487bf8d072cd6cd570fb5037d80d579c346cc4f45a0ff2faa2b6bf9a2
MD5 015cca268ebb1eb86e8b925c976fc454
BLAKE2b-256 b02184bbddc24f83814491d00028f44d33393a9debdfa31081ed11d516fcd07c

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6750ec06521b0fb948d93ad39b3a723ea0d48902389bdef9a3e51670babf59dd
MD5 e2c714a2cfa2fe83f748a9db86c127ec
BLAKE2b-256 7858db37cbda517f8af8739a216d0d7eb82692125d13a61df46b74130060db5b

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a8fffd94f157242900c2bc3301e864173e524205b520d5214e8b893f1e1e8168
MD5 dee4513a1cdf6f4a2d259ec099d4bab5
BLAKE2b-256 3819f9f25c5143a6083135673f4f75fe6044412b2107ec87c4e8bb7144c76c98

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eb61ec4e03d8a91c46d12c47e94801f4d63af1785f5507ca67d301e385aa791
MD5 810f7684fabc1e4e4a6f2a7cf6dcaeea
BLAKE2b-256 005b80810ddb60e37d23a0eb2fe80ad37228a23fa973d86e562454eac55b89f5

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49957ddd474ff74a794a16ec20bf1eda932938b67ac7742c9a3d8aa92bdb7a9b
MD5 e522c00c8580800b57b41d0306fd47d5
BLAKE2b-256 d0b02ca5b1bd0e9c17366efa962c59bac8b161c3b94fb953784d24cde3099e48

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 deb289739c363f80d6a0d7d3e0a87c0e16696c2bbd138a5ea309a13f43a86034
MD5 2afe1d98f34893f42a7c07d145c9cf31
BLAKE2b-256 8f1ba3c194bd67f30aab5919f952f66426761fff23fdda99ad64251735371802

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b86b4cfb5392348c135888edefda6715dc86fc82f51d08971b91b81abef3145
MD5 92d0a0fb2b9a450ef80b09285e2e107a
BLAKE2b-256 50b466bc79b58c087a47a07f305df1d934e2889e5fc5276689f4c95bf02f3679

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 caf55a41e5262bbc7a840f6df4d0a90f58e5b7f7561b6fd639254003436a81fc
MD5 4381973e4a86df0d41e504638961e9d2
BLAKE2b-256 f9b4cbbd6697f5cc5e72514d626bfbf37004d334b98252c71549f3cc440834a7

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f0ca27d6b8130d2670918be7e191b19fd5518794f677c19847b11d448900062
MD5 654576c743516716e97bb44221d0b985
BLAKE2b-256 22e7b20691f00beb06fda25b2bd76b3396e0766b630f0af8daaf72799310ca3d

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 77fb815abaf9b482b751ea5252e9c6e54b40cc36a4efc7a1b847bc2698544201
MD5 df7e6cf56a18a4ed1b90fee5a5f30151
BLAKE2b-256 4676a5bba1f660b69b511952fb955de21133dc1ae82f0b925b077067e79abddf

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38f1f1655ca7433959008b6acf7e17ccacd5b1f1bb06ad69c5d317689ceb035a
MD5 1d40820cb8823a8f991b771ba58fe1b6
BLAKE2b-256 e9fd231a7923a92402e491b6ace86e6408d227fe61e38d41a9ab324eddd22596

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6f1c558fc3b32a22b6a8c8f20d48cf0dfe126b9bcab74b83bb80549fb743925
MD5 2d99a4b837a196588a7cb4a9e26ae8e4
BLAKE2b-256 ec0c0125ca48c56b431499fa3bd287b2179e4ed04c43295de244e71b2627c96e

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c915c4ebf1c503f2bc83edaf768e465e5d438f7de784402247935d989c063ab8
MD5 ea95c4cce02c56d408bcd1ebfdfc0c02
BLAKE2b-256 c8131f211db441864e5fc207ae9c1dc0e0f1840bc9d563dc606eabf888c22919

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be8ee1080e2025bd3c45c41d35fbdfe109f5e9b54833e60e47e774d0cb374623
MD5 42208ab50e159c06afed27fa6e603e2a
BLAKE2b-256 467e6285ac4b3ae0360c574634cebd233e346ec954d195930e82d79e3e4e7a81

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp38-cp38-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 dcfe17569ec109cdb38b18093087c0413c4ebe5d91fe6c588a6020dc98df81c9
MD5 0d2d44df45fda9005050035429fe119b
BLAKE2b-256 0011b4a694e00601233fc98804141ca89e000ba12d1b4ddb5b6dbaaee9f36648

See more details on using hashes here.

File details

Details for the file oiio_python-3.0.10.0.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oiio_python-3.0.10.0.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 80d4084f883bd5721f6fda41355ee84e45631c40f7d9b77d05c7590ae031d4e8
MD5 dab3fa763f04fde8a0110c2bcbca4857
BLAKE2b-256 b8c07ac18baf6fcb8260195b8ad288d39fda4fba99f23564c9785fba1c1995e6

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