Skip to main content

color-operations (fork of rio-color )

Apply basic color-oriented image operations.

Test Coverage Package version license

Modified version of Mapbox's rio-color, removing rasterio dependency and with python>=3.10 compatibility.

Install

You can install color-operations using pip

python -m pip install -U pip
python -m pip install color-operations

or build from source

We recommand using uv as project manager for development.

See https://docs.astral.sh/uv/getting-started/installation/ for installation

git checkout https://github.com/vincentsarago/color-operations.git
cd color-operations
uv sync

Operations

Gamma adjustment adjusts RGB values according to a power law, effectively brightening or darkening the midtones. It can be very effective in satellite imagery for reducing atmospheric haze in the blue and green bands.

Sigmoidal contrast adjustment can alter the contrast and brightness of an image in a way that matches human's non-linear visual perception. It works well to increase contrast without blowing out the very dark shadows or already-bright parts of the image.

Saturation can be thought of as the "colorfulness" of a pixel. Highly saturated colors are intense and almost cartoon-like, low saturation is more muted, closer to black and white. You can adjust saturation independently of brightness and hue but the data must be transformed into a different color space.

Ref https://github.com/mapbox/rio-color/blob/master/README.md

Examples

Sigmoidal

Contrast

sigmoidal_contrast

Bias

sigmoidal_bias

Gamma

Red

gamma_red

Green

gamma_green

Blue

gamma_blue

Saturation

saturation

Combinations of operations

combos

Ref https://github.com/mapbox/rio-color/blob/master/README.md

Python API

color_operations.operations

The following functions accept and return numpy ndarrays. The arrays are assumed to be scaled 0 to 1. In some cases, the input array is assumed to be in the RGB colorspace.

All arrays use rasterio ordering with the shape as (bands, columns, rows). Be aware that other image processing software may use the (columns, rows, bands) axis order.

  • sigmoidal(arr, contrast, bias)
  • gamma(arr, g)
  • saturation(rgb, proportion)
  • simple_atmo(rgb, haze, contrast, bias)

The color_operations.operations.parse_operations function takes an operations string and returns a list of python functions which can be applied to an array.

from color_operations import parse_operations

ops = "gamma b 1.85, gamma rg 1.95, sigmoidal rgb 35 0.13, saturation 1.15"

assert arr.shape[0] == 3
assert arr.min() >= 0
assert arr.max() <= 1

for func in parse_operations(ops):
    arr = func(arr)

This provides a tiny domain specific language (DSL) to allow you to compose ordered chains of image manipulations using the above operations. For more information on operation strings, see the rio color command line help.

color_operations.colorspace

The colorspace module provides functions for converting scalars and numpy arrays between different colorspaces.

from color_operations.colorspace import ColorSpace as cs  # enum defining available color spaces
from color_operations.colorspace import convert, convert_arr

convert_arr(array, src=cs.rgb, dst=cs.lch) # for arrays
...

convert(r, g, b, src=cs.rgb, dst=cs.lch)  # for scalars
...

dict(cs.__members__)  # can convert to/from any of these color spaces
{
    'rgb': <ColorSpace.rgb: 0>,
    'xyz': <ColorSpace.xyz: 1>,
    'lab': <ColorSpace.lab: 2>,
    'lch': <ColorSpace.lch: 3>,
    'luv': <ColorSpace.luv: 4>
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

color_operations-0.4.0.tar.gz (15.4 kB view details)

Uploaded Source

Built Distributions

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

color_operations-0.4.0-cp315-cp315t-win_amd64.whl (294.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

color_operations-0.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

color_operations-0.4.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

color_operations-0.4.0-cp315-cp315t-macosx_11_0_arm64.whl (500.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

color_operations-0.4.0-cp315-cp315t-macosx_10_15_x86_64.whl (499.8 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

color_operations-0.4.0-cp315-cp315t-macosx_10_15_universal2.whl (539.4 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ universal2 (ARM64, x86-64)

color_operations-0.4.0-cp315-cp315-win_amd64.whl (251.4 kB view details)

Uploaded CPython 3.15Windows x86-64

color_operations-0.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

color_operations-0.4.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

color_operations-0.4.0-cp315-cp315-macosx_11_0_arm64.whl (423.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

color_operations-0.4.0-cp315-cp315-macosx_10_15_x86_64.whl (424.1 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

color_operations-0.4.0-cp315-cp315-macosx_10_15_universal2.whl (460.8 kB view details)

Uploaded CPython 3.15macOS 10.15+ universal2 (ARM64, x86-64)

color_operations-0.4.0-cp314-cp314t-win_amd64.whl (212.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

color_operations-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (997.7 kB view details)

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

color_operations-0.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

color_operations-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl (348.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

color_operations-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl (347.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

color_operations-0.4.0-cp314-cp314t-macosx_10_15_universal2.whl (387.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

color_operations-0.4.0-cp314-cp314-win_amd64.whl (169.3 kB view details)

Uploaded CPython 3.14Windows x86-64

color_operations-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (766.9 kB view details)

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

color_operations-0.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (784.8 kB view details)

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

color_operations-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (271.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

color_operations-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl (271.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

color_operations-0.4.0-cp314-cp314-macosx_10_15_universal2.whl (308.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

color_operations-0.4.0-cp313-cp313-win_amd64.whl (126.6 kB view details)

Uploaded CPython 3.13Windows x86-64

color_operations-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (579.0 kB view details)

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

color_operations-0.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (593.1 kB view details)

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

color_operations-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (198.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

color_operations-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl (198.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

color_operations-0.4.0-cp313-cp313-macosx_10_13_universal2.whl (235.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

color_operations-0.4.0-cp312-cp312-win_amd64.whl (89.5 kB view details)

Uploaded CPython 3.12Windows x86-64

color_operations-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (390.8 kB view details)

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

color_operations-0.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (399.5 kB view details)

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

color_operations-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (125.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

color_operations-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl (125.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

color_operations-0.4.0-cp312-cp312-macosx_10_13_universal2.whl (162.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

color_operations-0.4.0-cp311-cp311-win_amd64.whl (51.4 kB view details)

Uploaded CPython 3.11Windows x86-64

color_operations-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (194.2 kB view details)

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

color_operations-0.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (197.7 kB view details)

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

color_operations-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (50.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

color_operations-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl (50.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

color_operations-0.4.0-cp311-cp311-macosx_10_9_universal2.whl (88.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file color_operations-0.4.0.tar.gz.

File metadata

  • Download URL: color_operations-0.4.0.tar.gz
  • Upload date:
  • Size: 15.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for color_operations-0.4.0.tar.gz
Algorithm Hash digest
SHA256 456b21e5784c7c9ee2ddf3c6041e66a501f173d286e3e088779cf716fd1b321d
MD5 c8ff417a1b475823a071a17308fb17b3
BLAKE2b-256 cc78374bd6414bebe42e85b5c20471980d165afd31dd44ef0139742667110dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0.tar.gz:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 093ac83e6a490d54280fb8e7ba7318b003cedc9af2aafe54e38220e6433455df
MD5 e8fb6506321fa96b272c43894905d2ab
BLAKE2b-256 f062de415245e5e612027e25b9764c6b33ed05ad12468bf6512bc17cfd332264

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315t-win_amd64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5a847b91686e8fa6ba3098752539c6afc57b9fb9f7ff25cd9c1ec6a449d3ecf
MD5 fc81eef7f1b0ac1b69e5b12140f5724b
BLAKE2b-256 2a24e54078247359c168057c532b26e7f81c6ce36c426afd7f0ee1bf4fddd1ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4a6ffa7198373598e19ca64b126138ea0ff76a3a90905074be861a279b8a7a35
MD5 ebfcc621666dce7849a8ee8ca66dc8ce
BLAKE2b-256 f320e26b85fdc8293f57b5f810e1721f5e55c77acac77ee570b1e1f0ccb55263

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f43b5abfdfa8d26c78e91e752365c4ad787a7a8d0feea4dab3b1abc3833977c
MD5 b2bf7e99f82fd9eaa1eb050253ad9eb7
BLAKE2b-256 3a32bee764d8bf4476a8ccef1f5ce0ea9204813f7dd4fe05d1fc246369813b97

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 44a6f659402983450ee44a16527cf0ea7e935c646f43a1e4e3fd3a0d07ffab9f
MD5 65e8e79a4b97acca196a0160fb9c8943
BLAKE2b-256 7b0155eeae700cb4575ebc8a2afac9a2f8c4ab3e6c1d8acb665080023d733460

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6b02c94792661d97b675821ad7a721a20d08802ac890fb86a5b6c6421eef41a1
MD5 494fded76901309c2fe898bcb826dd91
BLAKE2b-256 646332260d7ac39bd394b59c471287a58fb0939b5e064fce12f9e3c69fcf6b05

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315t-macosx_10_15_universal2.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 4f75b2c30b0faf9a9e348e41f940305792e08cd8a9a5025acf5da9b5ca8b45fa
MD5 b1da743c1742a0da0366ddbe7f03776a
BLAKE2b-256 9ba44e974e2691adb73f27945b49efb7286e741533b85fdf03236185b1e74a60

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315-win_amd64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46edee7e3936da02606cc67b53d4c610c73f38da9b58613aefcc1192e07dfb62
MD5 360d7355b9d7b6ca31bf003ea668ab91
BLAKE2b-256 82a111ee8bd1f481096a8faf6bf24296a44a867ad53c6d6c5aaab9e03bb16415

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3d5cc39dc3452b2f99d4e925b073e762180a55387c2a30ff20ffcc3afc116747
MD5 37c49d991e01451827a9ea6f13d6fd04
BLAKE2b-256 2c1e80e63fbb0137733bfa9b9661762a94dcadcf3708f9345947126071c166cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa16971aea0956af37b41c6a7eca64c4c600c7018bcf1b9913316ca8ac426ff1
MD5 239e1c89dbfd9b66f20937c2667ca096
BLAKE2b-256 5ce97958f4e197bc73a76678609bc94243f48bdcc97ef13860e76886b6694bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 07494e4713cf2ba13192552a0eca8a4632eebbb759b0dba7d14989ed4f7a5bc8
MD5 b1ae4d34db72120e9a5ff8c66882adcb
BLAKE2b-256 9a45cd132bdf78db28f4bd623eaf04b49cc1316f8ad12548d68263cd956f2af2

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 31da2d8e2d10ebd9624672b89e959b76ebf810fe055d6068eb7567315d0c3fff
MD5 61c696684a7af404689bd3a980c5f306
BLAKE2b-256 2b5b244184c2243a47be3b854c13d26a7e697976660ced7eae7fc1aa2d0654f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp315-cp315-macosx_10_15_universal2.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c3dace76c501e5f4e78a2e634791c8e906205d0b93a32d2a0091a3328e6385ad
MD5 b27edd4400d2a1db508abc85fcabb841
BLAKE2b-256 eee11052ac6b51e88ee83c8f7a88db4220944cb394ad8a08d888396459e681e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 146cb2be40bf8506364338556cf244d1adeb447f424522405658470206ba9dd0
MD5 be9647d3b1dc2d7e033d7b0f71c91d8b
BLAKE2b-256 ad47cca05232b9291e24b094ab27b9effc7d5253d0365bf8a623738e0317c48a

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ec566b17a0ef16ec815b0bbbbcb9b9763a3ea43edae34f89a9e6c6443aa2f47d
MD5 0c75cbc06a3621133640e32172110941
BLAKE2b-256 8d5cb4acdb7acf862d457a7ecde6792177343163e894c2ccdc097953c8f64bb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5b9f71d03350a37007ecb1edb6c89e5c6b0be8b64cd9e803aae345cc08bf0f1
MD5 d2bf121c87cada55d8c073c5ac2175e3
BLAKE2b-256 4f99e61081050d4ab6099f5b1ec74ceccd96204a799d1145b8fa2817cd661588

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 02ea02dc3b7071649c55a69a0cf48409124cea910e408408f8cfc08dcb41350b
MD5 e57eb16fa2ce6a090dbf34ca70db2a83
BLAKE2b-256 1635108146a505680f80a7caf7ab4c976bc87e70ecaee293fea5dcb9918f1a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f5f0f1985d23aa28cf31600b39509ee34bf2873340f3f2a9901014ff0461418e
MD5 fc45ceab4f97e61f59a28f2185aa5a71
BLAKE2b-256 36b021e5cbccde99de01a1367f2cc075a826303d9ce5637320861fdec4e2c6b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 78c0f73268e89f4317146bc428dcc1eb853a65f56ed4bd1ad615fa7d2a1582bc
MD5 46ac529d776ec102dffabca641bdec00
BLAKE2b-256 9f7383f4aa5029f12eae8f5636ea11290ee09fae0c2b7f73df1b4f7fc7a33fc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa16550d9d64d5559d0b283f0d107b040f3236ecf43efdd7fa303da67c02fbef
MD5 4eecd2bdba37254607970eaf64ff49c1
BLAKE2b-256 93bd561c3cb27229f5056aff1659db79c9f8cc92b4333aa3606478d1eb1e74e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f2493d4cb1a64b85825b3cddf6c99f68810f4345d4a5344e8b0c6c79e5a90388
MD5 50a6962f8bcadc9969d542dbac7f7487
BLAKE2b-256 d76e8c3b86e96248f32c3c40b2f4157fb78a440ccc040ad316ca2003e043cba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9f9d63143f69776e468b133da648b51dff5027b5eda5b67e48ecdaa3a13c91b
MD5 e8f8569c2dbe3aef150382d59146f469
BLAKE2b-256 52282b2a47233549140a9485221871de65b32cd5bc41e3565ba0a77c9709df16

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 246050f58c86dd3cc4504fb8a73777fc4e04c6b90007cbb31f8d1d382c013624
MD5 f2362b3d881f8278b99887cb4f794aa3
BLAKE2b-256 e2352e3f7d1154fd97cfd85d4a8371909135f8e653beb4db47aae44062e4f131

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ca0de69ee368140b77b45c819b9f8d07dab665302fab2404e3e3a05c6383dce0
MD5 65ee3629afc296968888e4f8ea16b94b
BLAKE2b-256 138479f349c15ae50b086ccbc94f59ecdbff57b444d2f39528fb5839679411be

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ad9cdb4fd79f7b4160071bb5db553c6f7b585da7ed69d1cb920d471a91cc147
MD5 59a499ed5302f417a1f008dca3242c44
BLAKE2b-256 a77ef0fe9e02ba7a0cb67db68f939a6ecbb1bd00495f4e98f41d4c64c8a5f36e

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b7516e4cd2c4029c77a0fe93f5edb4a1309e87b2de6411293964fabade8ff771
MD5 76501fa9f1f9588a1e9af1d156c74159
BLAKE2b-256 079875ac6f8c84bc141d831fd800d0d74ea23c3899978c109e53a72c6a103e6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 43de8b6c80467569713dc4ef8dbcdf4d2f94789391ff9a9accb7c3d1b74a42c5
MD5 b8103770878d9a10464c533bc35d3ef5
BLAKE2b-256 2eb23c63227d377ddd12d0df41f373282c8e204ffae997bb3fcf54bb3d4e5930

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b338111879f071a98af53cdf976b6882506964c74e8d1179fb8bbd00fa1268c7
MD5 93e31f27ed02998dd013b45e17ee88f0
BLAKE2b-256 e0068654c05640238cc9d8669fc75635da28034562113417ea5b3851cbf5c97b

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 af008d021b205b4131512f4be6b1207e4bcebeb1533c5b5b8cedb3b033b5cf11
MD5 46eeaf044e977696d817fdedf6b4a51b
BLAKE2b-256 58cad15464094004ea00ecc9b21c567886ed96cf3e520e7a55679e13229e53c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 1f7de6295e219e0565679e6c895b6f531ac5e32247d91f1e909eca8201fef713
MD5 24216f5bea82e85dfddb7335ef181655
BLAKE2b-256 164653c75a4fba7cc6bbe8145df0faf665a02f47e8647d9f8098ecf4613d4854

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 72f3a77e2f444bae7f8a9863b95e4443aabd6925855f68c9453d22b376b3eed7
MD5 bcf9016617abbaf81b0367f3123e7ab0
BLAKE2b-256 a78602f931acca2e6d94a8ba343d69bab934cd47eeea23a1abc8a6ce31b2ab32

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 889888537019da35b3f57cf35eabdd2cbfc897a368128b18e146f02e5af8e441
MD5 8918fd0304efaa5ac65301c59f7dd449
BLAKE2b-256 4c7f57c4b3d2295bf972d198183e51dab9d17221e7cd7d1f50e58533fb670ca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ff209fecec60e87e2f7d7cabae141ce16c94adc24bc0bb0d0df7c6217e8cd71c
MD5 9825ed8ee44bed479b9b3f7f52cd06e3
BLAKE2b-256 4c489828919153dabbf65c1de23d9c27d701dd27ca2ab37009082ee3d45fa624

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3877b99daa03455e62684e6ec1ff517b6bad25cc8255487606469406846a5649
MD5 ef60a50fca924b8566163e7982665a6f
BLAKE2b-256 f8b918bb714c3dbb21bd05f7c4024dab81ac2bc4f27e7f7fd1612bfc193bcf11

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8ade5792c3945a9d3e1bd92023f6e2a0a43a72a9e35914eedb6ce7d239c7c076
MD5 e124beeea76c65580135c7347e3ad94a
BLAKE2b-256 10fb28c295a5241246edc65dcc3718b6d1801e2f1fee61a169fd2a0fabc4c0d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 43c206fad4793e5d9d6e85a3485c929668c345977722c9b2e66611bb244cbc23
MD5 f5e7052c6a7e8e9f8086368f1ab67868
BLAKE2b-256 72c37b67e05de2be8c08cbf0efe0e94412355f3d8a0dbc5a5334e8fb43f6d61b

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 09ab6d4d7d472be02423d1706c368630b10079cb1b4299d753c85abc0c01ecd3
MD5 703990746c45616d70cf8b9b5c2a8337
BLAKE2b-256 98d1d564a77efaca119e9e5640b732b6da5087c800ff210bf574000f6ea84aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d746cce07a4bf881f2a778d2b0cdef58aa366b1458d6a765ab085fb21ec7074
MD5 c71b36469cd54f8d3fa6f732641e6c7c
BLAKE2b-256 f8dfb1da30ce972593e3b1b0b1b02c8cef83a6e0f817e13fc36d4c5cdc9a4c74

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 89bcdbec83a1d8e0f650ef47e2246896c700e8e2abebce5cc9a57ac79fa6d686
MD5 d854add4ad7c2556b38758a312f87b03
BLAKE2b-256 11a93e8e0d982b14bc39e71e6fa4e59c152ecaff2021aa2c97be184e2a30bfde

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af3825e7d36a2b8519a0230c658d2b515d29d4db719526ffb5da5711ed7b95c2
MD5 e015627bdcb83c30e277eb14a94cfd86
BLAKE2b-256 5b083205e288fc3b52ccbdf24852ca3b7b57e7916054f198a7fa13bea39873a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44157038608f7b48b7550e928bf0f63626500737988a5b5a97bb7f288d2ef986
MD5 6caafb433f1515c11eeed3ba31ed8687
BLAKE2b-256 49a18b20e698ce369019e8d88fd9a0c2e1a49f94acea233825b3f9698442f8f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

File details

Details for the file color_operations-0.4.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.4.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 067b070021e2deb32f25606b2e4b609acf21136a91eb866852c38b7f4bc74e6c
MD5 19ed4f766ba889cf284417d27c84f3ee
BLAKE2b-256 3bd77849d1e337215a2052ac003c45fdfde64cc3b4471f7690d541fe0b6cbd74

See more details on using hashes here.

Provenance

The following attestation bundles were made for color_operations-0.4.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: ci.yml on vincentsarago/color-operations

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

Release history Release notifications | RSS feed

This release

0.4.0 This release

43 files

0.2.0

31 files

0.1.6

31 files

0.1.5

31 files

0.1.4

31 files

0.1.3

31 files

0.1.1

29 files

0.1.0

29 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page