# **oiio-python**
**🐍 OpenImageIO on wheels!**
This project provides (unofficial) multiplatform wheels for [OpenImageIO](https://github.com/AcademySoftwareFoundation/OpenImageIO) Python bindings, simplifying installation and integration into Python projects.
[](https://pepy.tech/projects/oiio-python)
Check [types-oiio-python](https://github.com/pypoulp/types-oiio-python) if you want type hints & auto-completion for oiio-python.
[](https://github.com/pypoulp/oiio-python/actions/workflows/build_static_wheels.yml)
[](https://github.com/pypoulp/oiio-python/actions/workflows/build_wheels.yml)
[](https://github.com/pypoulp/oiio-python/actions/workflows/build_linux_wheels.yml)
**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](https://docs.conan.io/2/), [Cibuildwheel](https://cibuildwheel.pypa.io/en/stable/), and [GitHub Actions](https://github.com/features/actions).
- **📦 Flexible Libraries**: Choose between static and shared libraries to suit your needs.
---
## **Installation**
```bash
# 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](https://opencolorio.org/)**: 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](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](licenses) folder.
#### Statically Linked Libraries in Binary Wheels
The binary wheels may include LGPL statically linked libraries, including:
- **[LibRaw](https://github.com/LibRaw/LibRaw)** (LGPL 2.1)
- **[LibHeif](https://github.com/strukturag/libheif)** (LGPL 3.0)
#### 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](LICENSE-GPL).
#### 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](LICENSE-GPL).
- **`oiio-python` wheels** are licensed under the [Apache 2.0 License](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:
```powershell
# 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:
```powershell
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:
```bash
# 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:
```bash
python -m pip install cibuildwheel
cibuildwheel --platform macos
```
4. To only build for your current Python version:
```bash
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:
```bash
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:
```bash
# 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.
```bash
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:
```bash
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.
Raw data
{
"_id": null,
"home_page": "https://github.com/pypoulp/oiio-python",
"name": "oiio-static-python",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.14,>=3.8",
"maintainer_email": null,
"keywords": "OpenImageIO, OpenColorIO, image, processing, oiio, ocio, python, wrapper, binding, library",
"author": "Paul Parneix",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/0c/2c/c4c43af5689a34e71a638ac371713f99d93bbba1fdbc51cac5a6542f41bc/oiio_static_python-3.0.8.1.1.tar.gz",
"platform": null,
"description": "# **oiio-python**\r\n\r\n**\ud83d\udc0d OpenImageIO on wheels!**\r\n\r\nThis project provides (unofficial) multiplatform wheels for [OpenImageIO](https://github.com/AcademySoftwareFoundation/OpenImageIO) Python bindings, simplifying installation and integration into Python projects.\r\n\r\n[](https://pepy.tech/projects/oiio-python)\r\n\r\nCheck [types-oiio-python](https://github.com/pypoulp/types-oiio-python) if you want type hints & auto-completion for oiio-python.\r\n\r\n[](https://github.com/pypoulp/oiio-python/actions/workflows/build_static_wheels.yml)\r\n[](https://github.com/pypoulp/oiio-python/actions/workflows/build_wheels.yml)\r\n[](https://github.com/pypoulp/oiio-python/actions/workflows/build_linux_wheels.yml)\r\n\r\n\r\n**Note:** Official wheels are now available \ud83c\udf89 ! I'll continue to maintain these builds aside cos they still provide some extra stuff, like integrated PyOpenColorIO, and more enabled features.\r\n\r\n---\r\n\r\n## **Features**\r\n\r\n- **\ud83d\ude80 Easy Installation**: Install via pip\u2014no need to compile.\r\n- **\ud83c\udf10 Multiplatform**: Supports Windows (x86_64), macOS (x86_64 and arm64), and Linux (x86_64 and aarch64).\r\n \r\n- **\ud83c\udfa8 Integrated OpenColorIO**: Includes PyOpenColorIO for seamless color management.\r\n- **\u2699\ufe0f Automated Builds**: Built using [Conan](https://docs.conan.io/2/), [Cibuildwheel](https://cibuildwheel.pypa.io/en/stable/), and [GitHub Actions](https://github.com/features/actions).\r\n- **\ud83d\udce6 Flexible Libraries**: Choose between static and shared libraries to suit your needs.\r\n\r\n---\r\n\r\n\r\n## **Installation**\r\n\r\n```bash\r\n# ensure pip is up-to-date:\r\npython -m pip install --upgrade pip\r\n\r\n# Install the shared libraries variant:\r\npip install oiio-python\r\n\r\n# Install the static libraries variant:\r\npip install oiio-static-python\r\n```\r\n\r\nThis project avoids using the `openimageio` package name because the ASWF may release official wheels in the future.\r\n\r\nYou do NOT need to have OpenImageIO installed on your system. `oiio-python` ship with all necessary shared libraries.\r\n\r\n## **What's Included**\r\n\r\nThe goal is to enable as many features as possible to make the wheel flexible, while keeping the package size reasonable.\r\n\r\nOpenImageIO wheels are built with the following features enabled:\r\n\r\n- **[OpenColorIO](https://opencolorio.org/)**: With Python bindings included for seamless color management.\r\n- **LibRaw**: Adds RAW image support.\r\n- **OpenEXR**: High dynamic range image support.\r\n- **Ptex**: Ptex texture mapping support.\r\n- **OneTBB**: Multithreading support.\r\n- **FreeType**: Enables text rendering.\r\n- **TBB**: Multithreading support with Intel TBB. Disabled in musllinux/static MacOS builds.\r\n- **libwebp**: WebP image support.\r\n- **libpng**: PNG image support.\r\n- **libjpeg**: Support with libjpeg on musllinux, and manylinux static builds, libjpeg-turbo on other platforms.\r\n- **giflib**: GIF support.\r\n- **hdf5**: HDF5 data storage support.\r\n- **libheif**: HEIF/AVIF image support.\r\n- **libtiff**: TIFF image support.\r\n- **libjxl**: JPEG XL image support.\r\n- **libultrahdr**: Adds support for UltraHDR images.\r\n- **OpenJPEG**: JPEG 2000 support.\r\n\r\n*FFmpeg is not included due to potential licensing issues and package size.*\r\n\r\n*DICOM support is also not enabled because of large package size.*\r\n\r\n*Volumetric format support like **OpenVDB** are not included for now but could be in the future if requested.*\r\n\r\n---\r\n\r\n## **oiio-python vs oiio-static-python**\r\n\r\nThis project builds two variants of the OpenImageIO Python bindings:\r\n\r\n- **`oiio-python`**: \r\n - Links against shared OpenImageIO and OpenColorIO libraries.\r\n - Generally smaller package size.\r\n - Includes tools like `oiiotool` and `ociobakelut`.\r\n\r\n- **`oiio-static-python`**:\r\n - Uses statically linked dependencies.\r\n - Generally larger package size.\r\n - Does **not** include OpenImageIO and OpenColorIO tools.\r\n - **Ideal for avoiding DLL conflicts**, especially when using Python embedded in applications like DCC tools that already use OpenImageIO.\r\n\r\n`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\r\n\r\n## License\r\n\r\nCode in this repository is licensed under the [Apache 2.0 License](LICENSE) to match the original OpenImageIO license. \r\nThird-party libraries are licensed under their respective licenses. Copies of these licenses can be found in the [licenses](licenses) folder.\r\n\r\n#### Statically Linked Libraries in Binary Wheels\r\n\r\nThe binary wheels may include LGPL statically linked libraries, including:\r\n\r\n- **[LibRaw](https://github.com/LibRaw/LibRaw)** (LGPL 2.1)\r\n- **[LibHeif](https://github.com/strukturag/libheif)** (LGPL 3.0)\r\n\r\n#### Licensing for Versions Before 3.0.1.0\r\n\r\nBefore version 3.0.1.0, the distributed wheels are licensed under the [GPL 3.0 License](LICENSE-GPL).\r\n\r\n#### Licensing for Versions 3.0.1.0 and Above\r\n\r\nFor version 3.0.1.0 and above:\r\n\r\n- **`oiio-static-python` wheels** are licensed under the [GPL 3.0 License](LICENSE-GPL).\r\n- **`oiio-python` wheels** are licensed under the [Apache 2.0 License](LICENSE) and include shared libraries for LibRaw and LibHeif.\r\n\r\n\r\n## **Building the Wheels Yourself**\r\n\r\nAlthough the primary target is automated builds on GitHub Actions, you can also build the wheels locally.\r\n\r\n**Note:** Build system will use your `default` Conan profile to create a new `default_oiio_build` profile, make sure it's configured correctly.\r\n\r\n### **Windows**\r\n\r\n1. Install Python (3.11+ recommended), CMake, and Visual Studio.\r\n2. To build wheels for multiple Python versions:\r\n\r\n ```powershell\r\n # For the static variant:\r\n set OIIO_STATIC=1\r\n python -m pip install cibuildwheel\r\n cibuildwheel --platform windows\r\n ```\r\n\r\n3. To only build for your current Python version:\r\n\r\n ```powershell\r\n python -m pip install build\r\n python -m build --wheel\r\n ```\r\n\r\n### **MacOS**\r\n\r\n1. Install Python (3.11+ recommended), Homebrew, and Xcode.\r\n2. Set environment variables before building:\r\n\r\n ```bash\r\n # If you want to build the static variant:\r\n export OIIO_STATIC=1\r\n # Set Deployment target according to your macOS version\r\n export MACOSX_DEPLOYMENT_TARGET=10.15 # For x86_64 builds\r\n export MACOSX_DEPLOYMENT_TARGET=14.0 # For arm64 builds\r\n # Set Project root directory to the root of the repository\r\n export PROJECT_ROOT=\"/path/to/oiio-python\"\r\n ```\r\n\r\n3. To run cibuildwheel and build wheels for multiple python versions:\r\n\r\n ```bash\r\n python -m pip install cibuildwheel\r\n cibuildwheel --platform macos\r\n ```\r\n\r\n4. To only build for your current Python version:\r\n\r\n ```bash\r\n python -m pip install build\r\n python -m build --wheel\r\n ```\r\n\r\n5. If not building with cibuildwheel, you'll need to manually \"repair\" the wheel with delocate after build:\r\n\r\n6. run provided `setuputils/macos_fix_shared_libs.py`\r\n\r\n7. then use `delocate-wheel` to copy the shared libraries into the wheel:\r\n\r\n ```bash\r\n python -m pip install delocate\r\n\r\n export REPAIR_LIBRARY=$PROJECT_ROOT/oiio_python/libs:$DYLD_LIBRARY_PATH\r\n DYLD_LIBRARY_PATH=$REPAIR_LIBRARY delocate-wheel -w /repaired/out/folder -v /path/to/wheel -e $HOME/.conan2\r\n ```\r\n\r\n### **Linux**\r\n\r\n1. Linux builds use Docker containers via cibuildwheel for compatibility.\r\n2. Install Docker and build:\r\n\r\n ```bash\r\n # If building on musl (Alpine) Linux, set the following environment variable:\r\n export MUSLLINUX_BUILD=1\r\n export CIBW_ENVIRONMENT=\"OIIO_STATIC=1\" # For the static version\r\n # Optional: Specify target docker image / platform\r\n export CIBW_BUILD=\"*manylinux_x86*\"\r\n python -m pip install cibuildwheel\r\n cibuildwheel\r\n ```\r\n\r\n3. To build for the current Python version and distribution:\r\n\r\n - Ensure Perl is installed (required for dependencies).\r\n - Use `setuputils/linux_before_all.sh` if needed.\r\n\r\n\r\n ```bash\r\n python -m pip install build\r\n python -m build --wheel\r\n ```\r\n\r\n4. If not building with cibuildwheel, you'll need to manually \"repair\" the wheel with auditwheel after build:\r\n\r\n ```bash\t\r\n python -m pip install auditwheel\r\n\r\n export LD_LIBRARY_PATH=/path/to/oiio_python/libs:$LD_LIBRARY_PATH\r\n auditwheel repair -w /repaired/out/folder /path/to/wheel \r\n ```\r\n\r\n### **Notes**\r\n\r\n - I'm not an expert in Conan, CMake, or Cibuildwheel. Feedback and suggestions for improvement are highly appreciated.\r\n",
"bugtrack_url": null,
"license": null,
"summary": "Unofficial OpenImageIO Python wheels, including OpenColorIO",
"version": "3.0.8.1.1",
"project_urls": {
"Homepage": "https://github.com/pypoulp/oiio-python"
},
"split_keywords": [
"openimageio",
" opencolorio",
" image",
" processing",
" oiio",
" ocio",
" python",
" wrapper",
" binding",
" library"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "e4afeb70f8deeebb1953fce77f4d2842c5575b9f04fd7986c0bca1efcaad1aa0",
"md5": "4a3c00d78b5610530fe26d18e61db71a",
"sha256": "3241c42acad783a97a02a9e32a8b32efaca01c9f5b258a7fae5f57c8c5629c48"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "4a3c00d78b5610530fe26d18e61db71a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.8",
"size": 18407805,
"upload_time": "2025-07-19T17:55:13",
"upload_time_iso_8601": "2025-07-19T17:55:13.799341Z",
"url": "https://files.pythonhosted.org/packages/e4/af/eb70f8deeebb1953fce77f4d2842c5575b9f04fd7986c0bca1efcaad1aa0/oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fa419d2a89c1a54e4aceaf47f0229bfeb0487c430cac9aa6b899824bf63a45b",
"md5": "364dd366f5b54f55d3eea556b56faf51",
"sha256": "049a171efbe26a996e714f0c448b286332c8f00449b3de4094b928da4890e061"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "364dd366f5b54f55d3eea556b56faf51",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.8",
"size": 17510432,
"upload_time": "2025-07-19T17:55:42",
"upload_time_iso_8601": "2025-07-19T17:55:42.413666Z",
"url": "https://files.pythonhosted.org/packages/0f/a4/19d2a89c1a54e4aceaf47f0229bfeb0487c430cac9aa6b899824bf63a45b/oiio_static_python-3.0.8.1.1-cp310-cp310-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9f2233a0574ff8af8767fcc1540989555a83836006db21816fe18bd13e48114b",
"md5": "caa1563d5451cc365c8b24c4a2b449c8",
"sha256": "8c5d143f9769ba089d05633bfc2ac9cda5d47dce2f82a236453c13bc83ba0dca"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "caa1563d5451cc365c8b24c4a2b449c8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.8",
"size": 20428235,
"upload_time": "2025-07-19T17:56:08",
"upload_time_iso_8601": "2025-07-19T17:56:08.959021Z",
"url": "https://files.pythonhosted.org/packages/9f/22/33a0574ff8af8767fcc1540989555a83836006db21816fe18bd13e48114b/oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "278b5defbdd27962fb25440c6361bb0a553d8a46fe21cff6cb20da0e19294ade",
"md5": "bae0d90d8c0a11bc156b4977201bf867",
"sha256": "b3f8f11ded5c1b741a43b2c2923eb861663028392ecdc4ff47a6a29fbd95d81c"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bae0d90d8c0a11bc156b4977201bf867",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.8",
"size": 20938435,
"upload_time": "2025-07-19T17:56:34",
"upload_time_iso_8601": "2025-07-19T17:56:34.751164Z",
"url": "https://files.pythonhosted.org/packages/27/8b/5defbdd27962fb25440c6361bb0a553d8a46fe21cff6cb20da0e19294ade/oiio_static_python-3.0.8.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0a68cf4d63790b86b16a1c9af730911a8f05c9204d15882302cde351829fb8d",
"md5": "048ed2c4a968484232d9513ee945d997",
"sha256": "0efaf1470830dd76023dd58bee1e43fce17b38d4a3f6b134bbad9a271387a893"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "048ed2c4a968484232d9513ee945d997",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.8",
"size": 21716110,
"upload_time": "2025-07-19T17:57:01",
"upload_time_iso_8601": "2025-07-19T17:57:01.190584Z",
"url": "https://files.pythonhosted.org/packages/a0/a6/8cf4d63790b86b16a1c9af730911a8f05c9204d15882302cde351829fb8d/oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e023984da349bb66625678c2e71016572cf3c2f4af3685ebe6adb6f92841aa5",
"md5": "70e40841f2f8e5ab8af4f10bdc95d625",
"sha256": "bd427e1b67481865a961076ae921c971cf75807cef157818e0cb476da9644ea6"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "70e40841f2f8e5ab8af4f10bdc95d625",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.8",
"size": 22362286,
"upload_time": "2025-07-19T17:57:28",
"upload_time_iso_8601": "2025-07-19T17:57:28.825737Z",
"url": "https://files.pythonhosted.org/packages/7e/02/3984da349bb66625678c2e71016572cf3c2f4af3685ebe6adb6f92841aa5/oiio_static_python-3.0.8.1.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "426b9450225bf405bbebffa07f775d079722808e97fbd7fc1dbadcbce0a968a2",
"md5": "57663288e836681b23f40f8980710632",
"sha256": "2f940153b27cf193805d75181d8a7ccf436a138bd488e0fc712ab99a4a33972f"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "57663288e836681b23f40f8980710632",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": "<3.14,>=3.8",
"size": 11146549,
"upload_time": "2025-07-19T17:57:40",
"upload_time_iso_8601": "2025-07-19T17:57:40.799195Z",
"url": "https://files.pythonhosted.org/packages/42/6b/9450225bf405bbebffa07f775d079722808e97fbd7fc1dbadcbce0a968a2/oiio_static_python-3.0.8.1.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10477dad3380f380e4b427d66b6eecfaa916f6410f92ed9251ee88bc0331bbc4",
"md5": "ce4e102c450393dc1cdf56d50bd0a78f",
"sha256": "ad13ec2ef6a19b567af25ab018b212805c993aa34e62aec89cd3f9322fa607c2"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "ce4e102c450393dc1cdf56d50bd0a78f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.8",
"size": 18410547,
"upload_time": "2025-07-19T17:58:00",
"upload_time_iso_8601": "2025-07-19T17:58:00.360018Z",
"url": "https://files.pythonhosted.org/packages/10/47/7dad3380f380e4b427d66b6eecfaa916f6410f92ed9251ee88bc0331bbc4/oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ea766aa31323311e31c55f712dc2a665464e3b8250c347f791d325cbbeca1fc",
"md5": "eabab89c3b511842e5b1673794c3d141",
"sha256": "f76074bd83ebd5b13ddcbfd61bdea2fbbbd544e7704fdceb7684751e7cf3d4f3"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "eabab89c3b511842e5b1673794c3d141",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.8",
"size": 17512845,
"upload_time": "2025-07-19T17:58:22",
"upload_time_iso_8601": "2025-07-19T17:58:22.557697Z",
"url": "https://files.pythonhosted.org/packages/1e/a7/66aa31323311e31c55f712dc2a665464e3b8250c347f791d325cbbeca1fc/oiio_static_python-3.0.8.1.1-cp311-cp311-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b3095d25cbe35172cf17258a145f88dfae51acfe4ea62c5bb935fc69ff963c9",
"md5": "0bb61f1c79ea02879df96f473cb45f29",
"sha256": "801321ef5d3605c3195f85c0b49c7ac3d93d9dfae9d722b13a31cf65032a6b40"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0bb61f1c79ea02879df96f473cb45f29",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.8",
"size": 20440506,
"upload_time": "2025-07-19T17:58:44",
"upload_time_iso_8601": "2025-07-19T17:58:44.026753Z",
"url": "https://files.pythonhosted.org/packages/1b/30/95d25cbe35172cf17258a145f88dfae51acfe4ea62c5bb935fc69ff963c9/oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f39527969d03fa57377d8e27131e379112fc86f3bbd76887a7b0f6d17b68f7a",
"md5": "3bad6639bb6c476c10d6410b59aed083",
"sha256": "8209916652b62c6e45622a894e6bc47dde697ce97d293ad319e2f91ef5f673e6"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3bad6639bb6c476c10d6410b59aed083",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.8",
"size": 20949549,
"upload_time": "2025-07-19T17:59:00",
"upload_time_iso_8601": "2025-07-19T17:59:00.300102Z",
"url": "https://files.pythonhosted.org/packages/1f/39/527969d03fa57377d8e27131e379112fc86f3bbd76887a7b0f6d17b68f7a/oiio_static_python-3.0.8.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7a90346f0299adf75bf257709f9ef6d0a02f044c15987abd1708993ef21c660",
"md5": "040153108a4eac7cc8bc28d941ae2825",
"sha256": "a288911b6bfc9ddcc09a667a99a63ddfce65166669a908fd377b63ebc59b17a7"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "040153108a4eac7cc8bc28d941ae2825",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.8",
"size": 21722299,
"upload_time": "2025-07-19T17:59:16",
"upload_time_iso_8601": "2025-07-19T17:59:16.485997Z",
"url": "https://files.pythonhosted.org/packages/e7/a9/0346f0299adf75bf257709f9ef6d0a02f044c15987abd1708993ef21c660/oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "66e8228896f78a1f1a084ab7a6ccba022968991fc6d8379d99a278ed5c24fc62",
"md5": "9847596f039408b83fb4f14a6a93fc41",
"sha256": "2a86931df799eefa0c45597c7bdd29072badf1def3bff470d06e68ca4eaa9d5b"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9847596f039408b83fb4f14a6a93fc41",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.8",
"size": 22368818,
"upload_time": "2025-07-19T17:59:33",
"upload_time_iso_8601": "2025-07-19T17:59:33.330025Z",
"url": "https://files.pythonhosted.org/packages/66/e8/228896f78a1f1a084ab7a6ccba022968991fc6d8379d99a278ed5c24fc62/oiio_static_python-3.0.8.1.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5d05e5a2cef6450751726a6749073af81a16b7e4e15b3975b7c1956ff961ea83",
"md5": "cac13de32a6c1328752272ee9933fcf6",
"sha256": "4a92c20cc877ce13e37afd7be1a7fdaffd07f4eec5efb630182eee373c82ec72"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "cac13de32a6c1328752272ee9933fcf6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": "<3.14,>=3.8",
"size": 11148621,
"upload_time": "2025-07-19T17:59:40",
"upload_time_iso_8601": "2025-07-19T17:59:40.992144Z",
"url": "https://files.pythonhosted.org/packages/5d/05/e5a2cef6450751726a6749073af81a16b7e4e15b3975b7c1956ff961ea83/oiio_static_python-3.0.8.1.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62e1cea64fac188a21be9c8599ba65935a683ca4e071415da182116665ba9509",
"md5": "616452f5e487f089ac94d3d241f82b7b",
"sha256": "cab1f6cbe36d8ff1b07e093a45aa8b392a7128aee01ad9f88b66519761977270"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "616452f5e487f089ac94d3d241f82b7b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.8",
"size": 18453732,
"upload_time": "2025-07-19T17:59:54",
"upload_time_iso_8601": "2025-07-19T17:59:54.997643Z",
"url": "https://files.pythonhosted.org/packages/62/e1/cea64fac188a21be9c8599ba65935a683ca4e071415da182116665ba9509/oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cfbc54601ac409c8d37188bc7ab4872abd9c0b3a6bc981074c8adace2a53076",
"md5": "a60b9204036dda2d717e79aaf234f638",
"sha256": "b381f3c03d1486f14853a5f814b9f5677bbeeb4cfb0a1dcb8da5d07ac295fe29"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "a60b9204036dda2d717e79aaf234f638",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.8",
"size": 17529257,
"upload_time": "2025-07-19T18:00:14",
"upload_time_iso_8601": "2025-07-19T18:00:14.821974Z",
"url": "https://files.pythonhosted.org/packages/7c/fb/c54601ac409c8d37188bc7ab4872abd9c0b3a6bc981074c8adace2a53076/oiio_static_python-3.0.8.1.1-cp312-cp312-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90054dc18dac477ebc2202c17e8713b1a379fd5dc3f92e6e9c7b0d0d5420b54c",
"md5": "78674c9b27cde8a2cceac1ac4bd7877c",
"sha256": "af2308b53a91085a7d0b69fdf1e8865daa2ed7a6ba8306c1fda50785f20bc359"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "78674c9b27cde8a2cceac1ac4bd7877c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.8",
"size": 20421790,
"upload_time": "2025-07-19T18:00:31",
"upload_time_iso_8601": "2025-07-19T18:00:31.385533Z",
"url": "https://files.pythonhosted.org/packages/90/05/4dc18dac477ebc2202c17e8713b1a379fd5dc3f92e6e9c7b0d0d5420b54c/oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fdf07c2eba52f46f46b264522cee9f13a5258742cfff58652ae92bcc2e476df3",
"md5": "9691ff41d52b638830b60d40c4fda486",
"sha256": "5fa46614c7896f7ba1b9fe60feb8dd2990b5f9565dfe89f5da008b2ae743f0be"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9691ff41d52b638830b60d40c4fda486",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.8",
"size": 20927798,
"upload_time": "2025-07-19T18:00:55",
"upload_time_iso_8601": "2025-07-19T18:00:55.651192Z",
"url": "https://files.pythonhosted.org/packages/fd/f0/7c2eba52f46f46b264522cee9f13a5258742cfff58652ae92bcc2e476df3/oiio_static_python-3.0.8.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a313c2e4ad42a350c9a28dcf78e02d2f6bf93a006c2e6c86e39aea7ad9ccaea7",
"md5": "6e1288d0e20b8208fc2e465465f8eb8b",
"sha256": "016fa9d4f7929e1e2ac02d47f61a22a6f73b009f0ea398eb9549cc2a8a1235c7"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6e1288d0e20b8208fc2e465465f8eb8b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.8",
"size": 21724806,
"upload_time": "2025-07-19T18:01:18",
"upload_time_iso_8601": "2025-07-19T18:01:18.088359Z",
"url": "https://files.pythonhosted.org/packages/a3/13/c2e4ad42a350c9a28dcf78e02d2f6bf93a006c2e6c86e39aea7ad9ccaea7/oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfab2e1449dcc964f8f6998cd9c26ac7383671c33df5ebac98545387a575a15c",
"md5": "d437aa90e4a9aca87c98e78c5796745f",
"sha256": "d7be26fdbfbfbb09536a5c07004f3388bf3fb788e2cdb274290727b3840ae0ca"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d437aa90e4a9aca87c98e78c5796745f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.8",
"size": 22387658,
"upload_time": "2025-07-19T18:01:43",
"upload_time_iso_8601": "2025-07-19T18:01:43.993586Z",
"url": "https://files.pythonhosted.org/packages/cf/ab/2e1449dcc964f8f6998cd9c26ac7383671c33df5ebac98545387a575a15c/oiio_static_python-3.0.8.1.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "029f4173f91759ffe56ff1891405c535f8b155ca01f8143c9143242f09589601",
"md5": "1115d08e65854bddd59b5cb52c801891",
"sha256": "625cfff26c5928efbbfeb4df83e13d528f77f6792bd95f73dd6381a01cbd24a9"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "1115d08e65854bddd59b5cb52c801891",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": "<3.14,>=3.8",
"size": 11148999,
"upload_time": "2025-07-19T18:01:59",
"upload_time_iso_8601": "2025-07-19T18:01:59.110160Z",
"url": "https://files.pythonhosted.org/packages/02/9f/4173f91759ffe56ff1891405c535f8b155ca01f8143c9143242f09589601/oiio_static_python-3.0.8.1.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e44aec5b8bae2704c8bde976ddcee7e398093325dd4b2cacd5ddae5ac6165c2",
"md5": "5426c75b5fc408879189d5d842484a24",
"sha256": "ef05c0352770a2a702a99c0cbb2f9c3379292906c5551fb48caac9df96dfd6be"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "5426c75b5fc408879189d5d842484a24",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.8",
"size": 18454082,
"upload_time": "2025-07-19T18:02:28",
"upload_time_iso_8601": "2025-07-19T18:02:28.603978Z",
"url": "https://files.pythonhosted.org/packages/1e/44/aec5b8bae2704c8bde976ddcee7e398093325dd4b2cacd5ddae5ac6165c2/oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "615f14e6c6211f47c76c6c52204de2aab326fc7af493dd9b3974e14373757c3f",
"md5": "d9b64e4e0292d2cb2a617a3c42d7c20a",
"sha256": "7c60bc77c5ae7a44ff3831ee39cbb4cdc922d234f86b83133310f3598d437db5"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "d9b64e4e0292d2cb2a617a3c42d7c20a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.8",
"size": 17527971,
"upload_time": "2025-07-19T18:02:54",
"upload_time_iso_8601": "2025-07-19T18:02:54.973384Z",
"url": "https://files.pythonhosted.org/packages/61/5f/14e6c6211f47c76c6c52204de2aab326fc7af493dd9b3974e14373757c3f/oiio_static_python-3.0.8.1.1-cp313-cp313-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bd544ace3efa6fdb73fbdad860b39f970f59f3a9530576bbdee14b99a0a1c8d8",
"md5": "b1f439f9ebb19d6b3e76f398a571822d",
"sha256": "8ddd3fe697f458ce66c19e9b027504f9e8cbdcdabc0f2428cf32351b2a1f82ee"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b1f439f9ebb19d6b3e76f398a571822d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.8",
"size": 20421030,
"upload_time": "2025-07-19T18:03:27",
"upload_time_iso_8601": "2025-07-19T18:03:27.525601Z",
"url": "https://files.pythonhosted.org/packages/bd/54/4ace3efa6fdb73fbdad860b39f970f59f3a9530576bbdee14b99a0a1c8d8/oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cb65598836b72d42db24d194eb04f2c98ca68df5a75150b2bf0b43bb047ef09",
"md5": "083cd32d5586de6814e2480f5294fd4a",
"sha256": "7f1d8f16b32ec278ecc7ebadaeded9372854285baf2d6d0c3e11629b8ae1e8f1"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "083cd32d5586de6814e2480f5294fd4a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.8",
"size": 20926526,
"upload_time": "2025-07-19T18:04:00",
"upload_time_iso_8601": "2025-07-19T18:04:00.050754Z",
"url": "https://files.pythonhosted.org/packages/0c/b6/5598836b72d42db24d194eb04f2c98ca68df5a75150b2bf0b43bb047ef09/oiio_static_python-3.0.8.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d2d22248f28f153df39a837f88607ebd60e07978f70b7bc83e502f70097782a8",
"md5": "75eaf9ca00fb8883d8d158d6c3d6c112",
"sha256": "8f82dba393bbf58ce0379fa5004f61623491e617ed397b3e7eafa5f0ac2907cb"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "75eaf9ca00fb8883d8d158d6c3d6c112",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.8",
"size": 21726235,
"upload_time": "2025-07-19T18:04:29",
"upload_time_iso_8601": "2025-07-19T18:04:29.638398Z",
"url": "https://files.pythonhosted.org/packages/d2/d2/2248f28f153df39a837f88607ebd60e07978f70b7bc83e502f70097782a8/oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4d496c1c409bab352cbeb739db5cb90ecacf1610834dc3ed5533e367b8ecdec5",
"md5": "c34da5f9c59bff22cfeb3a1cb82eaf35",
"sha256": "42c9d43c94e7c92629dc1965149c0075e91b644eeb3670f4e81e14c2a1cd3432"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c34da5f9c59bff22cfeb3a1cb82eaf35",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.8",
"size": 22396130,
"upload_time": "2025-07-19T18:04:56",
"upload_time_iso_8601": "2025-07-19T18:04:56.492480Z",
"url": "https://files.pythonhosted.org/packages/4d/49/6c1c409bab352cbeb739db5cb90ecacf1610834dc3ed5533e367b8ecdec5/oiio_static_python-3.0.8.1.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a0d53e28b46fff70a4aefacb5e67ff9f1880ce9e0a95c55d9750e54892c52a30",
"md5": "e84b733a23139476c31414555d034388",
"sha256": "5fbafc61fa11eab5ad35dcae2f5f15e0458e4642a31fc34e30e0b7c3d608bb41"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "e84b733a23139476c31414555d034388",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": "<3.14,>=3.8",
"size": 11166070,
"upload_time": "2025-07-19T18:05:09",
"upload_time_iso_8601": "2025-07-19T18:05:09.826925Z",
"url": "https://files.pythonhosted.org/packages/a0/d5/3e28b46fff70a4aefacb5e67ff9f1880ce9e0a95c55d9750e54892c52a30/oiio_static_python-3.0.8.1.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64484bd1892cb35a6cfc8f8e8c2deaea4b4637fe71f66faefb8326d6670a352a",
"md5": "7e264f50ba1acb1ac7f9dbdc2302a06e",
"sha256": "34f41297e95c4ba739c7b797bd60db6fb70c73a33987f1e31dfe06a3a4cae3ca"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "7e264f50ba1acb1ac7f9dbdc2302a06e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<3.14,>=3.8",
"size": 18407057,
"upload_time": "2025-07-19T18:05:26",
"upload_time_iso_8601": "2025-07-19T18:05:26.948969Z",
"url": "https://files.pythonhosted.org/packages/64/48/4bd1892cb35a6cfc8f8e8c2deaea4b4637fe71f66faefb8326d6670a352a/oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46c62563682660382b261fb32847274c724e33f78ed78fea8d47a147e2567330",
"md5": "056f3155c5437034c513281a3469ddca",
"sha256": "e7e1e77242148ffde5d874c48793736a85fe280627f84de77d2f240f5966fe6d"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "056f3155c5437034c513281a3469ddca",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<3.14,>=3.8",
"size": 17508474,
"upload_time": "2025-07-19T18:05:41",
"upload_time_iso_8601": "2025-07-19T18:05:41.780126Z",
"url": "https://files.pythonhosted.org/packages/46/c6/2563682660382b261fb32847274c724e33f78ed78fea8d47a147e2567330/oiio_static_python-3.0.8.1.1-cp38-cp38-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ca445068ace2f2da20a4c1300f1a8146c08df7abcfcfdf558da520e33726d90",
"md5": "bd2965f3b4464d8a127fe7aaf98184d8",
"sha256": "0ae1329fb62d3a060f65defc9bb50a91af10026870fb979decbc0c36dec67844"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bd2965f3b4464d8a127fe7aaf98184d8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<3.14,>=3.8",
"size": 20420905,
"upload_time": "2025-07-19T18:06:00",
"upload_time_iso_8601": "2025-07-19T18:06:00.445795Z",
"url": "https://files.pythonhosted.org/packages/6c/a4/45068ace2f2da20a4c1300f1a8146c08df7abcfcfdf558da520e33726d90/oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1e29f9aaced5b10239d21ef97a9b15f37057a77ee82de759499829116e0ca89",
"md5": "2de32a042831357c79646b20212e944c",
"sha256": "0f50692b009f760fda0131c43f3ccfe653a4623a30b212f98fc435e2cefbedd2"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2de32a042831357c79646b20212e944c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<3.14,>=3.8",
"size": 20935589,
"upload_time": "2025-07-19T18:06:23",
"upload_time_iso_8601": "2025-07-19T18:06:23.788661Z",
"url": "https://files.pythonhosted.org/packages/a1/e2/9f9aaced5b10239d21ef97a9b15f37057a77ee82de759499829116e0ca89/oiio_static_python-3.0.8.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3691cb0bd064ac4de762cd1d6fc7b9764ca6df59fafcf4fde67245395899ab3e",
"md5": "91e66cb30f7cd295d774738fb79d2837",
"sha256": "6d26ccda6e6d437edd2d8be5822ca4bb8269caa1fbdd0c7a7984cbb468d6206a"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "91e66cb30f7cd295d774738fb79d2837",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<3.14,>=3.8",
"size": 21692812,
"upload_time": "2025-07-19T18:06:48",
"upload_time_iso_8601": "2025-07-19T18:06:48.273702Z",
"url": "https://files.pythonhosted.org/packages/36/91/cb0bd064ac4de762cd1d6fc7b9764ca6df59fafcf4fde67245395899ab3e/oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9072fda9ccdec3dbc76ff7a548c05c4a99ddb64f7e7e6524ad1274d17c489c6",
"md5": "2d0a53bbf40a5ddb063adeb9b5fa7da2",
"sha256": "82b19183b53213b1ab5201eca0fe0a123f80a5796e39efad04b82c552d224632"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2d0a53bbf40a5ddb063adeb9b5fa7da2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<3.14,>=3.8",
"size": 22336538,
"upload_time": "2025-07-19T18:07:05",
"upload_time_iso_8601": "2025-07-19T18:07:05.183440Z",
"url": "https://files.pythonhosted.org/packages/b9/07/2fda9ccdec3dbc76ff7a548c05c4a99ddb64f7e7e6524ad1274d17c489c6/oiio_static_python-3.0.8.1.1-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb00f1e8cf5eb12dd913c94aae8440692e62bc5804c54545ccfd82a7308f722c",
"md5": "9f7368fccafc6397273de628750ee978",
"sha256": "75b24f4e12d366da1a7e5afad63355c353dce9701c7d42f6c08502eef0b51a61"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "9f7368fccafc6397273de628750ee978",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": "<3.14,>=3.8",
"size": 11145379,
"upload_time": "2025-07-19T18:07:14",
"upload_time_iso_8601": "2025-07-19T18:07:14.019897Z",
"url": "https://files.pythonhosted.org/packages/eb/00/f1e8cf5eb12dd913c94aae8440692e62bc5804c54545ccfd82a7308f722c/oiio_static_python-3.0.8.1.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01bf98c9fa973ad700542c300c8d01b56e820f5abae503a7bd8f5d580dcd7389",
"md5": "23a41eeadf3e6c4efd7269425de9b036",
"sha256": "1527f77b9ce9e8ed6c2e17ee6b1d611a6633af29fd6b264cf936a808bf2f5967"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "23a41eeadf3e6c4efd7269425de9b036",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.8",
"size": 18408410,
"upload_time": "2025-07-19T18:07:29",
"upload_time_iso_8601": "2025-07-19T18:07:29.864762Z",
"url": "https://files.pythonhosted.org/packages/01/bf/98c9fa973ad700542c300c8d01b56e820f5abae503a7bd8f5d580dcd7389/oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf0dc6fb0c7fca878604bb1836b7ea94eeff6f39f3017ba5aea54b022bf0d4e9",
"md5": "a152610cfef26e49bd22defd6d7428b2",
"sha256": "f0ecd640d33dd07e895c3762781dc8e32928c193b9b23a8e70dfbd63c6f8c949"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "a152610cfef26e49bd22defd6d7428b2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.8",
"size": 17509875,
"upload_time": "2025-07-19T18:07:45",
"upload_time_iso_8601": "2025-07-19T18:07:45.952717Z",
"url": "https://files.pythonhosted.org/packages/cf/0d/c6fb0c7fca878604bb1836b7ea94eeff6f39f3017ba5aea54b022bf0d4e9/oiio_static_python-3.0.8.1.1-cp39-cp39-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "549183f934301cbdeda6a4d83632f832d7b4a1aa5f822733fd7539698af6d971",
"md5": "06f9fa44f773ad9c587858c647033e57",
"sha256": "4237293f00851a744679a45c1d2fafb535f8ae296ee423e62a20cf060900bd26"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "06f9fa44f773ad9c587858c647033e57",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.8",
"size": 20449730,
"upload_time": "2025-07-19T18:08:08",
"upload_time_iso_8601": "2025-07-19T18:08:08.304379Z",
"url": "https://files.pythonhosted.org/packages/54/91/83f934301cbdeda6a4d83632f832d7b4a1aa5f822733fd7539698af6d971/oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1b540ca0f18a4631724664c7014f36cd6dc3d2610d5d8ca72d783d8fef2ffa8",
"md5": "85734af7c3f09337801a38ce3f224405",
"sha256": "ca39af4020f21b0b7450deca5c35e6e7287a61c215b4cf3986228905593bcdad"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "85734af7c3f09337801a38ce3f224405",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.8",
"size": 20953172,
"upload_time": "2025-07-19T18:08:34",
"upload_time_iso_8601": "2025-07-19T18:08:34.153775Z",
"url": "https://files.pythonhosted.org/packages/a1/b5/40ca0f18a4631724664c7014f36cd6dc3d2610d5d8ca72d783d8fef2ffa8/oiio_static_python-3.0.8.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7e7ceeb3378374df2437d8a005d9a1ea270231944db069dde652892bdf66b5d",
"md5": "44e66aa4c2d58e564fcedf4d91526cbc",
"sha256": "aaac07351cbe2c86579067a134999f5b4e9903af552b11136e25a2539abd2d42"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "44e66aa4c2d58e564fcedf4d91526cbc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.8",
"size": 21702524,
"upload_time": "2025-07-19T18:08:58",
"upload_time_iso_8601": "2025-07-19T18:08:58.210152Z",
"url": "https://files.pythonhosted.org/packages/a7/e7/ceeb3378374df2437d8a005d9a1ea270231944db069dde652892bdf66b5d/oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "720fe76974f7816a5d56293b781107d11711b939d9dee0accdbcaa9a21e30f6c",
"md5": "106860d81128e18f8c7c25db2281e8b7",
"sha256": "4b9cddbc692a89fce15985ae4c08a478f10399a956a53542c54627d965313e0e"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "106860d81128e18f8c7c25db2281e8b7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.8",
"size": 22346701,
"upload_time": "2025-07-19T18:09:36",
"upload_time_iso_8601": "2025-07-19T18:09:36.768546Z",
"url": "https://files.pythonhosted.org/packages/72/0f/e76974f7816a5d56293b781107d11711b939d9dee0accdbcaa9a21e30f6c/oiio_static_python-3.0.8.1.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48a2c274cf1f5f990f3f15c2798fe22413872d4fc33feae48abd663184c06562",
"md5": "8618a7670819c142ba9c4a52557078d1",
"sha256": "e3206bc0fd2d5087bef2aaa0082ce1067c5490b33c28717b25077c10b04c9a1d"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "8618a7670819c142ba9c4a52557078d1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": "<3.14,>=3.8",
"size": 11315610,
"upload_time": "2025-07-19T18:09:59",
"upload_time_iso_8601": "2025-07-19T18:09:59.144741Z",
"url": "https://files.pythonhosted.org/packages/48/a2/c274cf1f5f990f3f15c2798fe22413872d4fc33feae48abd663184c06562/oiio_static_python-3.0.8.1.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c2cc4c43af5689a34e71a638ac371713f99d93bbba1fdbc51cac5a6542f41bc",
"md5": "b6a7cf9a25fc287cd61b7b29af1a9d4c",
"sha256": "1c73223ba807abdfe995a64f495595bf671e53798144a56d5c6a14dca3998316"
},
"downloads": -1,
"filename": "oiio_static_python-3.0.8.1.1.tar.gz",
"has_sig": false,
"md5_digest": "b6a7cf9a25fc287cd61b7b29af1a9d4c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.14,>=3.8",
"size": 89644,
"upload_time": "2025-07-19T17:54:52",
"upload_time_iso_8601": "2025-07-19T17:54:52.231288Z",
"url": "https://files.pythonhosted.org/packages/0c/2c/c4c43af5689a34e71a638ac371713f99d93bbba1fdbc51cac5a6542f41bc/oiio_static_python-3.0.8.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-19 17:54:52",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pypoulp",
"github_project": "oiio-python",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "oiio-static-python"
}