Skip to main content

Python binding for LittleCMS2 library

Project description

python-lcms2

Python binding for the LittleCMS2 color management library.

Installation

pip install python-lcms2

Pre-built wheels are available on PyPI for Windows (x86-64, ARM64), Linux (x86-64, ARM64), and macOS (Intel, Apple Silicon) on Python 3.10 and later. Windows ARM64 requires Python 3.11 or later. For other platforms, see Building from source.

Usage

import lcms2

Profiles

A Profile can be created from a built-in name, a file on disk, or raw bytes in memory:

srgb    = lcms2.Profile("sRGB")
prophoto = lcms2.Profile("ProPhoto RGB")
from_file = lcms2.Profile(filename="CMYK.icm")

with open("CMYK.icm", "rb") as f:
    from_bytes = lcms2.Profile(buffer=f.read())

Built-in profiles provided by LittleCMS: sRGB, Lab, XYZ.

Additional built-in RGB profiles: Adobe RGB (1998), Apple RGB, Best RGB, Beta RGB, Bruce RGB, CIE RGB, ColorMatch RGB, Don RGB 4, ECI RGB v2, Ekta Space PS5, NTSC RGB, PAL/SECAM RGB, ProPhoto RGB, SMPTE-C RGB, _sRGB, Wide Gamut RGB.

Transforms

A Transform converts pixel data from one profile and format to another:

lab  = lcms2.Profile("Lab")
srgb = lcms2.Profile("sRGB")

transform = lcms2.Transform(lab, "Lab_DBL", srgb, "RGB_16")

The constructor signature is:

Transform(src_profile, src_format, dst_profile, dst_format, intent="PERCEPTUAL", flags="NONE")

Format strings

Format strings follow the pattern {COLORSPACE}_{DTYPE} with an optional suffix. The dtype suffix determines the NumPy array type expected at runtime:

Suffix NumPy dtype Typical use
_8 uint8 8-bit images (0–255)
_16 uint16 16-bit images (0–65535)
_FLT float32 Single-precision float
_DBL float64 Double-precision float
_HALF_FLT float16 Half-precision float

Common colorspace prefixes: RGB, BGR, RGBA, BGRA, GRAY, Lab, XYZ, CMYK, YCbCr, HSV, HLS.

Optional suffixes: _PLANAR (channel-first layout), _REV (ink-reversed), _SE (swap-endian), _PREMUL (premultiplied alpha).

The full list of supported format strings:

lcms2.DATA_TYPES.keys()

Rendering intents (lcms2.INTENT): PERCEPTUAL, RELATIVE_COLORIMETRIC, SATURATION, ABSOLUTE_COLORIMETRIC.

Flags (lcms2.FLAG) can be combined with commas, spaces, semicolons, or |:

transform = lcms2.Transform(lab, "Lab_DBL", srgb, "RGB_16",
                            intent="PERCEPTUAL",
                            flags="GAMUTCHECK,SOFTPROOFING")

Applying a transform

Transform.apply accepts a NumPy array or any array-compatible object and returns a transformed NumPy array. It works on single pixels, batches, and full images — the last dimension is always the channel axis:

result = transform.apply([50.0, 0.0, 0.0])   # L*a*b* neutral grey, shape (3,)

The array dtype must match the source format declared at construction time. When passing lists or other convertibles, the data is cast automatically where possible.

Converting a full image

apply treats any array shape as (..., channels), so a 2D image (H, W, C) is processed in one call:

import numpy as np
import lcms2

srgb     = lcms2.Profile("sRGB")
prophoto = lcms2.Profile("ProPhoto RGB")

transform = lcms2.Transform(srgb, "RGB_8", prophoto, "RGB_16")

image   = np.random.randint(0, 256, (480, 640, 3), dtype=np.uint8)
result  = transform.apply(image)   # shape (480, 640, 3), dtype uint16

A common use case is editing in Lab — perceptually uniform, so lightness adjustments look natural. OpenCV loads images as BGR uint8:

import cv2
import numpy as np
import lcms2
import matplotlib.pyplot as plt

image = cv2.imread("photo.jpg")               # uint8, BGR

srgb = lcms2.Profile("sRGB")
lab  = lcms2.Profile("Lab")

to_lab  = lcms2.Transform(srgb, "bgr_8",   lab,  "lab_flt")
to_srgb = lcms2.Transform(lab,  "lab_flt", srgb, "rgb_flt")

lab_image = to_lab.apply(image)
lab_image[..., 0] = np.clip(lab_image[..., 0] * 1.2, 0, 100)  # boost lightness

result = np.clip(to_srgb.apply(lab_image), 0.0, 1.0)   # float32, RGB, 0.0–1.0

plt.imshow(result)
plt.show()

Format strings are case-insensitive, so "BGR_8", "bgr_8", and "Bgr_8" are all accepted.

To save back to a file with cv2:

bgr_out = cv2.cvtColor((result * 255).astype(np.uint8), cv2.COLOR_RGB2BGR)
cv2.imwrite("output.jpg", bgr_out)

Building from source

Clone the repository with its submodules:

git clone --recurse-submodules https://github.com/wzjoriv/python-lcms2.git
cd python-lcms2

Install the build tool if needed:

pip install build --upgrade

Build a wheel:

python -m build --wheel

The wheel is written to dist/. Install it with:

pip install dist/python_lcms2*.whl

Windows path detection (Windows SDK include and library directories) is handled automatically via the registry in setup.py. If the build fails on your Windows installation, the paths may need to be adjusted manually.

For bugs, questions, and feature requests use GitHub Issues.

Acknowledgements

This project is a continuation of work by prior maintainers. The lineage of the repository is: sk1-projectRomanKosobrodovwzjoriv.

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

python_lcms2-0.1.1.tar.gz (259.0 kB view details)

Uploaded Source

Built Distributions

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

python_lcms2-0.1.1-cp314-cp314-win_arm64.whl (149.5 kB view details)

Uploaded CPython 3.14Windows ARM64

python_lcms2-0.1.1-cp314-cp314-win_amd64.whl (183.7 kB view details)

Uploaded CPython 3.14Windows x86-64

python_lcms2-0.1.1-cp314-cp314-win32.whl (140.7 kB view details)

Uploaded CPython 3.14Windows x86

python_lcms2-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (866.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_lcms2-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (860.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

python_lcms2-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (865.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

python_lcms2-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (861.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_lcms2-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (218.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

python_lcms2-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl (233.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

python_lcms2-0.1.1-cp313-cp313-win_arm64.whl (143.0 kB view details)

Uploaded CPython 3.13Windows ARM64

python_lcms2-0.1.1-cp313-cp313-win_amd64.whl (177.3 kB view details)

Uploaded CPython 3.13Windows x86-64

python_lcms2-0.1.1-cp313-cp313-win32.whl (136.4 kB view details)

Uploaded CPython 3.13Windows x86

python_lcms2-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (866.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_lcms2-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (860.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

python_lcms2-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (865.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

python_lcms2-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (861.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_lcms2-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (218.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

python_lcms2-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl (232.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

python_lcms2-0.1.1-cp312-cp312-win_arm64.whl (143.0 kB view details)

Uploaded CPython 3.12Windows ARM64

python_lcms2-0.1.1-cp312-cp312-win_amd64.whl (177.3 kB view details)

Uploaded CPython 3.12Windows x86-64

python_lcms2-0.1.1-cp312-cp312-win32.whl (136.4 kB view details)

Uploaded CPython 3.12Windows x86

python_lcms2-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (866.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_lcms2-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (860.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

python_lcms2-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (865.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

python_lcms2-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (861.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_lcms2-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (218.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

python_lcms2-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl (232.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

python_lcms2-0.1.1-cp311-cp311-win_arm64.whl (143.0 kB view details)

Uploaded CPython 3.11Windows ARM64

python_lcms2-0.1.1-cp311-cp311-win_amd64.whl (177.3 kB view details)

Uploaded CPython 3.11Windows x86-64

python_lcms2-0.1.1-cp311-cp311-win32.whl (136.3 kB view details)

Uploaded CPython 3.11Windows x86

python_lcms2-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (865.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

python_lcms2-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (859.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

python_lcms2-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (864.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

python_lcms2-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (860.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_lcms2-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (218.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

python_lcms2-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl (234.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

python_lcms2-0.1.1-cp310-cp310-win_amd64.whl (177.3 kB view details)

Uploaded CPython 3.10Windows x86-64

python_lcms2-0.1.1-cp310-cp310-win32.whl (136.3 kB view details)

Uploaded CPython 3.10Windows x86

python_lcms2-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (864.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

python_lcms2-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (859.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

python_lcms2-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (863.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

python_lcms2-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (860.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

python_lcms2-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (218.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

python_lcms2-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl (234.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file python_lcms2-0.1.1.tar.gz.

File metadata

  • Download URL: python_lcms2-0.1.1.tar.gz
  • Upload date:
  • Size: 259.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_lcms2-0.1.1.tar.gz
Algorithm Hash digest
SHA256 0716d866dc932e8c72be8cd2dd9f69b7261cd7037b49c600f6a240ad6abb6fd5
MD5 94950444abcb08cc5565d007c9df36c9
BLAKE2b-256 8024d0c7c5ed103eccb48138c0a3e0d6885ebbfe6f4eab9b403676e50e0f5f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1.tar.gz:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1f7648c3ae4bf121d2177e01c7571efb2c4c55328daeb359fb418fd134d74f93
MD5 715f1f28cbc03bd28382bc1b19fd8f3d
BLAKE2b-256 9ac691cf732dd6b791ee1dad5f23717d5b8e66e223f2355e622c7a3257d52cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp314-cp314-win_arm64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cf730edcc47beaba0e11c431ee2a82a467b8c1c340da02a5a7fd85e41a95c2d9
MD5 50f7ce927c8d8884a50a5bb11d2ab157
BLAKE2b-256 35ee6615195bd79040e15025730f10bb7f0f61f2ac3cbbef8038f8b16f7329e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: python_lcms2-0.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 140.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_lcms2-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6a30226239aa2df90b89619c5323313b0892aa581171f97cf1e478784351fbc6
MD5 917c0466adf86309acca54a6b603db2b
BLAKE2b-256 72fdff7addbbb85d6e4db5b76aef71c0c3f5fc1494747c6c192badaa6d8355db

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp314-cp314-win32.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 700c3e096674758aa335dc0b0016815469bd8620f7e7892710935961aeb742fe
MD5 c75be7c47afea8701b75de0e1f841e76
BLAKE2b-256 16e190a08eb03e1b1195e5e6df28262b53793861542f9d3c6d9f8230e7a2357e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 532f8bbc409e16643def643d9cabc6cea45bce0912add4a1bec113f2888a2ecb
MD5 1c918f33f6ff241d885c8da72e4737d1
BLAKE2b-256 6f14c8a12dadd336e1108e67612971730d836dc1226d9d058696e9d7e1aa2d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5733ceee3cf5ccd404644e03b1be9fed64a6953d521b94314d82a12a3c45472f
MD5 4e8525fd9da1cf4352bcbcfa639eefd2
BLAKE2b-256 c5e60364d8c7e161b571a42a01404ae98094a7178e1d3b89b81491279de741bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf4b0ed5fe732bbf8ada92178f4a0dd4c579bf85c6197496b7baf11f6be336ab
MD5 44a9d49f4e30ed553c3223e1785da0f2
BLAKE2b-256 b953204b2a9028ae8353ad202a38ec52d3545b8c1f0c950b6c412bc09359a8e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4503add27495713cb5c25bd40dc4cb04cacff3bafed3e528bf0d1119bb6a2090
MD5 2604ec816bcc72eb2b62f6be06d0e9e2
BLAKE2b-256 689cd6e9c415de4ee1d1eb673353a358b9fe7135d86b37c4018f53d3850a3df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0078c22c6ef58dda67e8a7559e278b9dc1697b3553c88a4c41247bfcba517e0e
MD5 4472149f570af72d5cd1b6cfbb66122a
BLAKE2b-256 b80fbe3bb532fbfc11f31a299a151fbfa336b80b3a61ef20e127c005cd5302c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4c2d9096e52980c1eee25400e30dad03687f1191761b89418da499a6f9cdfa81
MD5 a886d209e80bc52a732ea314508f76aa
BLAKE2b-256 d9f4f7086204d51afe51bd6d11323848dc3dda286051d01d57a2b4f826482333

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp313-cp313-win_arm64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e15909fc5a742cf6258417c277f4731f6f392ee1a6b24827f4e7e868640a03c
MD5 df392d6f35d743401faa547bd957a049
BLAKE2b-256 8ddd56eaf7179a23d98b6f756737b7605bf1cda46723d8de03e5a0b793aaf584

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: python_lcms2-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 136.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_lcms2-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6c3704847770bdb7578e3513d5cba8e4bdcf7b24916e763e1d03cc52785b340e
MD5 9d463b0eafd214308dc72c9d6b38040b
BLAKE2b-256 0fcacb8c610c87e20cd079ebfda7345ce997262841caae72a03a6ecbc4fc6940

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp313-cp313-win32.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 337514eb6368589abfbdfa5c236eddade990bec188d59436098e6aa62b66778c
MD5 1c90bfe110abc244d79fe33affb44e87
BLAKE2b-256 c0c71c5ef73bac0366b54d450cd199ca09c73bae4b3dc40853c95eecaeeffcb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75fbc7ef65b53392eabc460a42e3409bab93bf019cc4526dc31bd7ead265bd88
MD5 d905ac34e387fa537b042853bb7d3ba3
BLAKE2b-256 619ca851c521cc4bef9e1aedc5eb2b9047135469b3df77c917d7b9e019ff7f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67edbe07d4c9aff3d9e6f7fe996c49a4c9825c1dd8e29b316004b2cf0ffae2f8
MD5 4d17ca4fddd9545cade9b2d4c48aa342
BLAKE2b-256 4a9e36cb2eeca37565279a5eda898c586fb54eb4f30562fbe3610f93a4c7a12d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 642841f0db456569a2312ef992cb459c0d44585b0ce726602998c74495b08377
MD5 21bd6284eb899d31406d4d3b497a6ea4
BLAKE2b-256 64095a1b5db1655572cc8abb2963a1f3c660e807b9bc1d210f1c20ff9b67a859

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e12a714279cf98e84482c7d922fd8fcac12e6837fad198bb058cbc55a79f9201
MD5 e88eb11c5d900fdc52b69e965e849df7
BLAKE2b-256 7e412c76dfada01082e0c8dee8901c5bf0c1d3280732542b8d3de0bcdcb66718

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d0cdb8157e8243183b6fe8d34cb532bbacbe77f1e4a3f37e3d2e64dd1089b41a
MD5 1e065aa56701b2a832c0c9ab9d722a19
BLAKE2b-256 fe570e174a6eea1878d9cb63d9e09ac05e5e24fd8fb24a5c0c045e9debaa2521

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 53c489b2045e01807fe93438e731b00f712741bf87fea19f1507fe8792dd56a6
MD5 802accfa82f471054ed0eb0bc31ae15c
BLAKE2b-256 7474764abaacc15b4fa63d518b682a8479cef9e2c9c6ff567760339b2d5ef12a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp312-cp312-win_arm64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 169b5f3cf5ef047b18f4d97935dc6763872aada683b2f24887f4ddc415a49deb
MD5 01f185ec58f569fcab260a4169ed0cb1
BLAKE2b-256 0fc4c0446fdc9fb51dee656b40e2003a7ed75a649a0938210c4fa860fd78b295

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: python_lcms2-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 136.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_lcms2-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f9171800d544372723e03b49eaa13a1e71833b05fa3a49b82d1e100429a6f9c4
MD5 c86dbe663b9bfb8d36182fe4d6f72ab2
BLAKE2b-256 878092b7edbb6d0281357cf17e74819d8b286d3ae3faceabe31a28ff5527b9f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp312-cp312-win32.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 327f5d01ffe3d9cda8ccf951422abc3e1f1b8c7caece6ca4ed161ee65d14d8e9
MD5 160841af0fbe21dc07d4b165a4cdcc98
BLAKE2b-256 61af614b4a0e260edb0c9cf54f8f3963eecc8f10240a4fce3927cce1df78518c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8428b659ddcd169c7b5330f7b0721635e8e007bc8b09823b256600fc210ceb57
MD5 263e5a5e5771f6897d9b9fa57f22b988
BLAKE2b-256 6db73bace4a18f3780c36c4daada5e683503697c5628b01ae5a8f4b2cd67fbc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aba59d77a96c313c0ba501b7d17ec7f0ce850ab45e4c58d8d4506759dd541c28
MD5 afd68026b6f99888757bcce19df8ff38
BLAKE2b-256 88b69b4da50df70360b81bacbaa7be4e5f1c147ff334c1865a46caa8ef5a7333

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 127b3365dce54d605b761d06131ff505cd823382b327e84d4388ffaca9b15feb
MD5 00c820b60fe7aca025d6452e21139d7b
BLAKE2b-256 fe39b7f7a199d0188e24e1631f0c115fc7d52781dd111dbfe3fff3c5f6f32af0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 369f60e34e63fa1fab90c1dd4b02c071972cb93d4c55cb0266162c05512813a9
MD5 07b1e3eeab0bcf4125165a206f6b7dae
BLAKE2b-256 1e88ba117eaa3fedc9c0ab11caabb6a4f25b14e7cb3892d94bd3e72bc5c49639

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 30c220072150774d63c36174a79e1cb766304a693d9d37622233761db97c7ce5
MD5 9aea04d2146b6bbb5511175859c3222a
BLAKE2b-256 8d7568aa9e7efac7f3898a3c3bff6e8abde3442ea97f729fb0e8e2dcd850454c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7b797e629b0b005ab4d565407bbf035dd7cdbcde2d2ecc565da7b38d0a2b61d7
MD5 b445dfb81a1bfd689338858d1ee3ad91
BLAKE2b-256 bae4df581a8d92d1caf10d4c6b88bd3e923dd04328daea05979a82d68e204065

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp311-cp311-win_arm64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 487d04d402da6ad28df5e2ba40beb9a027c1ded4b27d6848065de447bb8185f3
MD5 1a6954aebda54fe70be3a2639ba0e49b
BLAKE2b-256 0ac5f130b19284f3d0140f2e2297b9d2f4c96013278a0b5330f742f2b884ff8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: python_lcms2-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 136.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_lcms2-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 40e1ceb8fed4ba6699e65ecd03bfeb3b757fb45f22f384273e4e09c3cd1e9e60
MD5 f25b86cda4ce25f4d93c880e72c29292
BLAKE2b-256 be710a5253bce5006944af0328deb92a4d83aee94936565caa9ea9b97e6285b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp311-cp311-win32.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dda12d5fa8ee7b61d8082958e0488b9e17e5d5f0631385025494ea14f7be4711
MD5 0b949a1b225585f2d5071c2cb6e60ea8
BLAKE2b-256 8373366b60dc963590c4816fbddf12019f9e6dd15c02e818866e7272763beffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fee9ae3b877dbb34a35aaa23bbf03cc269fd299070fbae0179fb72f44152fb5
MD5 feb708b4e3dff8139f2cef64e0e01266
BLAKE2b-256 668dda16a4cf10324a8a46e2a9751d89f6c5b7d54d5ca195b6ce78033ef0cf8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 867f1861e6d717c41bcc6283bd44eb90984e296ed17536f05949c0fa8f3f278a
MD5 abf7969ae26ba23e8b8051f1db7a9d8a
BLAKE2b-256 222c09c28b415cbcca0265dbcd4afb4880ed181df141f08c404da9101660f502

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d086a7925c8fb4d662938bbf484ee9536a2c20e786e473e58354cd6ed0af8c3
MD5 d809df791f7407b5810fa74f88c57119
BLAKE2b-256 348bf909b6c288c59e2883f68e169f13df84ed5efcc8ac2910c523f521e23aed

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ac662d79faf7eb547840240b679a07a5ba24df01950865be70e3b89c1cbd418
MD5 ec692600ea3af8603e00558b6236cee3
BLAKE2b-256 a71d1cdddb57849d6e28df9e10585c4dff8ef87220f0f15616fbcde6dd235adf

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09d6f661b0eb8a0e236e557a3d4c0fa3d2f934265d70291e7d116824a1e8d5f5
MD5 bbb98b702515402dddad4245da953247
BLAKE2b-256 4542186add1af35228273b11964312d4d3729e578e09a41894841c3854f40351

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 94b985cde268676e8ef8c297f669cfa1c4cb935fbfb83b6033e7671f74cf4898
MD5 23be963bab680b95150d634ea63bd70d
BLAKE2b-256 10cee9120ef5ab8acb9611f2987bc5cc6619f84c048d53a51cdb4995616e2750

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: python_lcms2-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 136.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for python_lcms2-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5badfb48f5db2d80d6bf337c6f0a6666552df9698d05493e0c563b33afe9b9f9
MD5 705c4d71524aa5e7e36c5759a887d95a
BLAKE2b-256 95205fa71f9da2d075f3b2dbc2643de2d82dbff715ec67381423b0d05906cdb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp310-cp310-win32.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2618b44c295f3512700f66912624c15e9de98e1df760ee2eac41cec797ae1b20
MD5 c268fcd1bf0c4d7235688daab1333b9c
BLAKE2b-256 8627f445154f09f4fb2d3b8a9fb8a7fa7fb33ff48e25c04a03ace2484a5d85e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec999ffdcb74c5bbb9a09c7851af9991d0838a5d4382c80abb6ce0c89ce1c36b
MD5 350480e032647cc597a23e57851cee9a
BLAKE2b-256 c7a67b0fd364d78d3fba707abad523851ffe0f509eec0a9c0763062be2eb9e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98ff2fb6f72e47b465a9947c460a5cba7e0ecd06bcd19f587b2b03f2e89621af
MD5 59193ec30cb4031a743ffb7048452c76
BLAKE2b-256 75715074c785558caa92676416dcfef2ed587608eb05f0ce9adbaecae31df96e

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e12b23631a5bdfe7392f1a6fa8687ef0161a9a66ee3753f23fb2dfce39d56dcb
MD5 aa025e425975ae743a285a8f228baeca
BLAKE2b-256 b51763c6b574f4fcfa1b7cffed9a0ce0be3c2306423efad62a6799d7d000f3b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a298e64eeef11544f76aa6ab5f3a73c86f609df0bb9d6b2a8b5e9f3dbd6f6af
MD5 99c083454c36a187948c19ccc1fb677c
BLAKE2b-256 3b80f2f8712ca2f608311f84d4e08a5034ca1bf6f9ac48a94126cc22ab9f5e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_lcms2-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for python_lcms2-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4c6de47c984c5e4d346bfc115d97a6496556a39b85645ae5d245702034e76b5
MD5 c8d62ed6edb2cfa0d97c7ca9a4726ac3
BLAKE2b-256 4aed24222029749e9474a425940599f6b94fa266e48707d335eae9fb131da92a

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_lcms2-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on wzjoriv/python-lcms2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page