Skip to main content

Apply basic color-oriented image operations.

Project description

color-operations

Apply basic color-oriented image operations.

Test Coverage Package version license

Lightweight version of rio-color but removing rasterio dependency.

Install

You can install color-operations using pip

pip install -U pip
pip install color-operations

Build from source

git checkout https://github.com/vincentsarago/color-operations.git
cd color-operations
pip install -U pip
pip install -e .

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>
}

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

color-operations-0.1.4.tar.gz (17.4 kB view details)

Uploaded Source

Built Distributions

color_operations-0.1.4-cp312-cp312-win_amd64.whl (132.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

color_operations-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (201.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

color_operations-0.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.8 kB view details)

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

color_operations-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (48.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

color_operations-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl (50.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

color_operations-0.1.4-cp312-cp312-macosx_10_9_universal2.whl (86.0 kB view details)

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

color_operations-0.1.4-cp311-cp311-win_amd64.whl (131.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

color_operations-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (190.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

color_operations-0.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (196.5 kB view details)

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

color_operations-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (48.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

color_operations-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl (50.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

color_operations-0.1.4-cp311-cp311-macosx_10_9_universal2.whl (86.3 kB view details)

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

color_operations-0.1.4-cp310-cp310-win_amd64.whl (131.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

color_operations-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (181.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

color_operations-0.1.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (187.9 kB view details)

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

color_operations-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (48.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

color_operations-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl (50.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

color_operations-0.1.4-cp310-cp310-macosx_10_9_universal2.whl (86.4 kB view details)

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

color_operations-0.1.4-cp39-cp39-win_amd64.whl (130.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

color_operations-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

color_operations-0.1.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (187.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

color_operations-0.1.4-cp39-cp39-macosx_11_0_arm64.whl (48.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

color_operations-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl (50.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

color_operations-0.1.4-cp39-cp39-macosx_10_9_universal2.whl (86.4 kB view details)

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

color_operations-0.1.4-cp38-cp38-win_amd64.whl (131.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

color_operations-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (184.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

color_operations-0.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (192.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

color_operations-0.1.4-cp38-cp38-macosx_11_0_arm64.whl (48.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

color_operations-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl (50.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

color_operations-0.1.4-cp38-cp38-macosx_10_9_universal2.whl (86.2 kB view details)

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

File details

Details for the file color-operations-0.1.4.tar.gz.

File metadata

  • Download URL: color-operations-0.1.4.tar.gz
  • Upload date:
  • Size: 17.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for color-operations-0.1.4.tar.gz
Algorithm Hash digest
SHA256 b953ba66e0261f294d19910788bb55536a9b109653317233d48b194bfc5f628d
MD5 84b575a0b3bd6b5651cd0e9d71193f0a
BLAKE2b-256 4ed0b29f08721ef820d55d0e06b19106210110d20da498c4410dd1259ef27100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_operations-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 674d5303739f67d7713e7962ccce03842eaf07b52855841bc9df1de88be1c5a5
MD5 9646a835a73338dbd6aa6990b977ee29
BLAKE2b-256 74280479b5436c1f64f348d87f7d293032531aa07a6ca237cc393a4ea43ac488

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb6ef03fb090e44155530db1ffadd256511b84f2056ea9a9571fa7a6c9125e48
MD5 ddc6279c97a74997dd598847d6fca0d5
BLAKE2b-256 5309ca1de49c9de36793bfcf56e2cdb8330643d6a7e7dadb4afb560d766479b8

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11530d9097e68a31177f493859a432f9d00f38be8d34ee6a94f72825e0f68ebe
MD5 fee0cd30ff4d44d80e43fc85eae4c59b
BLAKE2b-256 94ce0bb177e7b6cb4c23a4e5b9fe976ca97eb36f95986d4fe458d53e4a071f31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_operations-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6586e35721dedbcaa3bebb3f18518fcf4dd25df8ee466aa60ebf9a341b325af9
MD5 07831d485edf2f7cec59493613c132dc
BLAKE2b-256 e6ac14719995fd9ba53b488b862e43a4a757c509ff594eeae622c4b8452d356e

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3de78fb1a0758981ab331bf7bddca1c51b04bc46f122b9b696809812db0e97a3
MD5 592b91c4ec53f346d01c25862c19a6db
BLAKE2b-256 02853795bd55a022d11620871d4e349d5aef497bf3aaf81973ada46f82dac73b

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0c692fbbfc32aa2252b53911b15a56218c786eb338e1cfb576c98f688636689c
MD5 786c02a105b0279881376f2a6c3c6244
BLAKE2b-256 244201c71fb0f5fa2c05172cfe4d1630b74806d887778541693c7e42099ae3a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_operations-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 44f230fea323d3825416ea2bd1b427d55651b5722a6ed16c7516101312dfc733
MD5 9a1972e3f0251c3069fda2ba7e1fa236
BLAKE2b-256 279866cc21dc287c7c8a119ac4b23219c2895a869a6e3f6af86760c811310806

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0480c9b6c174ddc6c05df4b2da53f798400077253955e992fcb5298e93f58827
MD5 75414f6690eaa3f105d5b019b76fbd44
BLAKE2b-256 1f570a78b245565f9fc9501ef1043c6c8e3970ca47750dbbb80035f01fa96300

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68dcc75b81d4b82b877fe22a4397d48a3d2c6b1ae54518652486d8d0fa2f22e2
MD5 5e6a6ea5dd1b514d15c2d9d65291e303
BLAKE2b-256 a83b172eb55823ba467be66a452c20fbf684522472d7574a31629cb698566668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_operations-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ee240f60de6b70832fc260adff64b7946e4e910b7ce826950fa823e494266f1
MD5 c645e139610bd4fb80a544df4b31fa7f
BLAKE2b-256 5f08d1d115dde4dd628a87652ae9d6a783c0219f800d08d3af2a38661208c8db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_operations-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bedf65b3060a98abc837071323765933880b03534b9dbb1e1ef5371832be6e9
MD5 b7acfb6f6c538f1b78763af494158f2d
BLAKE2b-256 31567b7ac15d43cfa8bc158a774d93213379d012da9f35d85a1153419c88589b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_operations-0.1.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7a85496797d59d3a330aa595765335ce4baa3c3980dd7068728305615914f6c9
MD5 cbd038a2daaef5b39600c03baa241cc6
BLAKE2b-256 0dc443ca8e284990314f2b87d1c24960fccb112662093363a4fb93756dea8eb5

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 61af51136ed35f1e65474aa4e13ccdc18642febd8e5be0b3d115aa58ecb28371
MD5 f528247a3bc13a635f854c61fb1d65f8
BLAKE2b-256 87c82bb35e7550500d9d4e680fd717da8513056df1ec22962bcb7ecb382b7844

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14fc59161f175b576424d5f7afaceefbc0a93614233217e1c05e914982e35f27
MD5 8619e2d742e582e8519eca3e9a991f55
BLAKE2b-256 c26e658f369297b225d131b3bcc9cf540771c99ea5e4ca8bb9e4854bb5379dca

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4e3bdafb8adc06bbbc3fddd4401756c9b0ca520301633185883ae900cdf890d
MD5 512f7b4a6adf96da9a86a72366a086b6
BLAKE2b-256 41360f12ba24953d3fed7a1ff1fac74754e0c0785d94375593c4a6c79e9f683d

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dce4e2ce716063c89149d41f39924437c8860ed6d5f727a19498cc25e9347f6a
MD5 9d3375b0df5cd8fcd5c9db1e8d331210
BLAKE2b-256 f3e9b5b91b1c7a370fb0152bddc49c99fee6340465a09e08ac210500842a4763

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f785b3efa24026c0a9f082e079df6750b606188824c5a716556109167db87dfc
MD5 6696ed8dcdeda805c4b548a9aa27cffa
BLAKE2b-256 c8d744bbce254a30629150332b18c1f77ce01888bbbe068c22d350a0711af5b2

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cc764f48a7b00c95a4584edc9fedd2caa4e79616904bb6968421c940ccf55e7e
MD5 2bdfaada226ea44128dc5d2745e4cf59
BLAKE2b-256 05330ae5b2fbe96faa4954ae5849538ccf841e851fbf7a8d8107a67af44eac20

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6f0c352f017ae61ac9aa41130d3ffe8e3582770e80b0a869453225e132203cbf
MD5 e52345bcf35481d1a689b04bfcce9dae
BLAKE2b-256 5f63f5683e71f0a8c24f03fcc7e9cefa88a2326dd25c4c75d2573d2a960e1834

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bcb3544507ec2df4afe3f1eb7bb18cdca31b08de6eaffa68aaf42f57d825ec8
MD5 18ac6946f89695342c48149bcca3e026
BLAKE2b-256 dd1a8dd5ca30bc4e479f94187c95b98feeae5f4dc22cedbe790585134ae51613

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be879292302b2d017fa0e51694130ffb445ecf472fe9b5717fac8e59c58b4f78
MD5 b67afe62060d016bfac282409eee5f61
BLAKE2b-256 e8fbcfc388b06ef60ac0e62ec018c6cc4f0b13afd1df9d5aba7af62d67bf8b88

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3672ed8b86c2cea67ce8fd8b8e8501df8aa860eb1d68f5adf7fcc555f5990ec0
MD5 03989d94447ab40bb4d0e09a6d1fb2fa
BLAKE2b-256 28e8994d8b2679652e5c9ba433a4326671cee20dd58fa7b3dd010b3d8d3567a3

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ca7afa5ade4f107c4286c019a7e91f262132813d0ee9295858ecc092228cdea
MD5 98a515b15b763c86f1de6e486ebb5e95
BLAKE2b-256 3457e39e14db0d2cae60e064f9ba99277d1c1f49f177fa1803e7d649721e395d

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 27f4e3d69c4c63e135d2da12f9af5a85642245232eda8a13157f3b9b14ffefe5
MD5 04a874b6e1705535eb05a697d5021fc8
BLAKE2b-256 778525083935b8bae4e6ef8e73127bd09e4bd03adfff32172e31ce31e0e1b569

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 714265c39724b5a8e81b7f07f2ff9a4fbec75e9b95111f6c433f1e5bb9845248
MD5 67c36f0bc2a096864e6fffa5287c170b
BLAKE2b-256 0631eb1611a29e931780a57dbb6384ee435193298fe321fdf7b4b2942a1fd539

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0ce33f0162efb3fe7847e0a76692c870d7d20c741d6c0a355c4bdcacc19e0c9
MD5 dd97eb87903cd65e54dee7728b78749f
BLAKE2b-256 d28d6cb8b4819c2931398d9d4c8db294ab437e64c99336b2fd3ef7e01e1c31e8

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2e3dc03fe3655342a3d5c68553c7faafa15088194d72f4945e3487f3504501a
MD5 c2788b7e4a262dbb580b131b2cc5c036
BLAKE2b-256 c3370ebd4bc02f87e239de6078a5b78590e161cc9018b3e77b9d7f013b4c737b

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad2c27ffd5ad08f2cda6a593a815cc8977c980184b6ba829585159d360e90e4b
MD5 d1340f7f91b0db5279a7e1c7dcb0e175
BLAKE2b-256 06b6483accbc1ef6ca2c5c980a9f8e902af41b3350cf34cf6f8ff3e7bfae2a27

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01c11143a8493abd6a01fce5d7b245a3c582954104e58fca202b977e2c0b7059
MD5 ec8b0d79170a5b5459bbbd062f79b424
BLAKE2b-256 c26d6d0b2949a3db340e4215e5186b638f35ee1097b4c3fe164be5bea5e09498

See more details on using hashes here.

File details

Details for the file color_operations-0.1.4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for color_operations-0.1.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0ca1492f487337c816c1066bde866e49af3199326d1cad6f134b6b0a56b462a1
MD5 ed5586f6dcdc8a724a6f15eeeb308638
BLAKE2b-256 51573e2845559187e13549f052dcc0ae5498ad3e718b85607c30f87b76425098

See more details on using hashes here.

Supported by

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