color-operations


Namecolor-operations JSON
Version 0.1.5 PyPI version JSON
download
home_pagehttps://github.com/vincentsarago/color-operations
SummaryApply basic color-oriented image operations.
upload_time2024-06-26 14:24:54
maintainerNone
docs_urlNone
authorVincent Sarago
requires_python>=3.8
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # color-operations

<p align="center">
  <p align="center">Apply basic color-oriented image operations.</p>
</p>

<p align="center">
  <a href="https://github.com/vincentsarago/color-operations/actions?query=workflow%3ACI" target="_blank">
      <img src="https://github.com/vincentsarago/color-operations/workflows/CI/badge.svg" alt="Test">
  </a>
  <a href="https://codecov.io/gh/vincentsarago/color-operations" target="_blank">
      <img src="https://codecov.io/gh/vincentsarago/color-operations/branch/main/graph/badge.svg" alt="Coverage">
  </a>
  <a href="https://pypi.org/project/color-operations" target="_blank">
      <img src="https://img.shields.io/pypi/v/color-operations?color=%2334D058&label=pypi%20package" alt="Package version">
  </a>
  <a href="https://github.com/vincentsarago/color-operations/blob/main/LICENSE" target="_blank">
      <img src="https://img.shields.io/github/license/vincentsarago/color-operations.svg" alt="license">
  </a>
</p>

Lightweight version of [**rio-color**](https://github.com/mapbox/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](img/sigmoidal_contrast.jpg)

Bias

![sigmoidal_bias](img/sigmoidal_bias.jpg)

#### Gamma

Red

![gamma_red](img/gamma_red.jpg)

Green

![gamma_green](img/gamma_green.jpg)

Blue

![gamma_blue](img/gamma_blue.jpg)

#### Saturation

![saturation](img/saturation.jpg)


#### Combinations of operations

![combos](img/combos.jpg)

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.

```python
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.

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/vincentsarago/color-operations",
    "name": "color-operations",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Vincent Sarago",
    "author_email": "vincent@developmentseed.com",
    "download_url": "https://files.pythonhosted.org/packages/ef/62/724253f0e5bf52a0b9814b3914a217e1660f245588c26129bd65a0d409d7/color-operations-0.1.5.tar.gz",
    "platform": null,
    "description": "# color-operations\n\n<p align=\"center\">\n  <p align=\"center\">Apply basic color-oriented image operations.</p>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/vincentsarago/color-operations/actions?query=workflow%3ACI\" target=\"_blank\">\n      <img src=\"https://github.com/vincentsarago/color-operations/workflows/CI/badge.svg\" alt=\"Test\">\n  </a>\n  <a href=\"https://codecov.io/gh/vincentsarago/color-operations\" target=\"_blank\">\n      <img src=\"https://codecov.io/gh/vincentsarago/color-operations/branch/main/graph/badge.svg\" alt=\"Coverage\">\n  </a>\n  <a href=\"https://pypi.org/project/color-operations\" target=\"_blank\">\n      <img src=\"https://img.shields.io/pypi/v/color-operations?color=%2334D058&label=pypi%20package\" alt=\"Package version\">\n  </a>\n  <a href=\"https://github.com/vincentsarago/color-operations/blob/main/LICENSE\" target=\"_blank\">\n      <img src=\"https://img.shields.io/github/license/vincentsarago/color-operations.svg\" alt=\"license\">\n  </a>\n</p>\n\nLightweight version of [**rio-color**](https://github.com/mapbox/rio-color) but removing rasterio dependency.\n\n## Install\n\nYou can install color-operations using pip\n\n```\npip install -U pip\npip install color-operations\n```\n\nBuild from source\n\n```\ngit checkout https://github.com/vincentsarago/color-operations.git\ncd color-operations\npip install -U pip\npip install -e .\n```\n\n## Operations\n\n**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.\n\n**Sigmoidal** contrast adjustment can alter the contrast and brightness of an image in a way that\nmatches 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.\n\n**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.\n\nRef https://github.com/mapbox/rio-color/blob/master/README.md\n\n## Examples\n\n#### Sigmoidal\n\nContrast\n\n![sigmoidal_contrast](img/sigmoidal_contrast.jpg)\n\nBias\n\n![sigmoidal_bias](img/sigmoidal_bias.jpg)\n\n#### Gamma\n\nRed\n\n![gamma_red](img/gamma_red.jpg)\n\nGreen\n\n![gamma_green](img/gamma_green.jpg)\n\nBlue\n\n![gamma_blue](img/gamma_blue.jpg)\n\n#### Saturation\n\n![saturation](img/saturation.jpg)\n\n\n#### Combinations of operations\n\n![combos](img/combos.jpg)\n\nRef https://github.com/mapbox/rio-color/blob/master/README.md\n\n## Python API\n\n#### `color_operations.operations`\n\nThe 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.\n\nAll 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.\n\n* `sigmoidal(arr, contrast, bias)`\n* `gamma(arr, g)`\n* `saturation(rgb, proportion)`\n* `simple_atmo(rgb, haze, contrast, bias)`\n\nThe `color_operations.operations.parse_operations` function takes an *operations string* and\nreturns a list of python functions which can be applied to an array.\n\n```python\nfrom color_operations import parse_operations\n\nops = \"gamma b 1.85, gamma rg 1.95, sigmoidal rgb 35 0.13, saturation 1.15\"\n\nassert arr.shape[0] == 3\nassert arr.min() >= 0\nassert arr.max() <= 1\n\nfor func in parse_operations(ops):\n    arr = func(arr)\n```\n\nThis provides a tiny domain specific language (DSL) to allow you\nto compose ordered chains of image manipulations using the above operations.\nFor more information on operation strings, see the `rio color` command line help.\n\n#### `color_operations.colorspace`\n\nThe `colorspace` module provides functions for converting scalars and numpy arrays between different colorspaces.\n\n```python\nfrom color_operations.colorspace import ColorSpace as cs  # enum defining available color spaces\nfrom color_operations.colorspace import convert, convert_arr\n\nconvert_arr(array, src=cs.rgb, dst=cs.lch) # for arrays\n...\n\nconvert(r, g, b, src=cs.rgb, dst=cs.lch)  # for scalars\n...\n\ndict(cs.__members__)  # can convert to/from any of these color spaces\n{\n    'rgb': <ColorSpace.rgb: 0>,\n    'xyz': <ColorSpace.xyz: 1>,\n    'lab': <ColorSpace.lab: 2>,\n    'lch': <ColorSpace.lch: 3>,\n    'luv': <ColorSpace.luv: 4>\n}\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Apply basic color-oriented image operations.",
    "version": "0.1.5",
    "project_urls": {
        "Homepage": "https://github.com/vincentsarago/color-operations"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "786b7d02e2fcce9f5410d4e63a9f131e64e64e792d2f7609298ac046fe4ca8a1",
                "md5": "eb9304f1e35a6537d7495c9f6460084b",
                "sha256": "651893f735f5cb716bf60065183b337df00fd94251dac5a00fe3c6dd1d7127df"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "eb9304f1e35a6537d7495c9f6460084b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 86496,
            "upload_time": "2024-06-26T14:24:16",
            "upload_time_iso_8601": "2024-06-26T14:24:16.016578Z",
            "url": "https://files.pythonhosted.org/packages/78/6b/7d02e2fcce9f5410d4e63a9f131e64e64e792d2f7609298ac046fe4ca8a1/color_operations-0.1.5-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c151dbb945731fcbb71fd2497df12e5a58fd37ca57c259aa9e9a95b2621afdf6",
                "md5": "e6a7f31c20642e55f4d68bcda832aafa",
                "sha256": "c1b37808b8f94db8bf5168543e7c08d6de6ed9723ba4c04be8a6ff53f32c00d6"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6a7f31c20642e55f4d68bcda832aafa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 50894,
            "upload_time": "2024-06-26T14:24:17",
            "upload_time_iso_8601": "2024-06-26T14:24:17.765284Z",
            "url": "https://files.pythonhosted.org/packages/c1/51/dbb945731fcbb71fd2497df12e5a58fd37ca57c259aa9e9a95b2621afdf6/color_operations-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "017b74af3d2b0d447179893cb4abe03db92b3c41918eb1bfd01fb291ccfbb14f",
                "md5": "4f5180620d72747d83f68a5e9bfd48fb",
                "sha256": "a7c515506498fbdfdb970f2fe6a6f4dc3e41552d844568232e0b2f630d44b238"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4f5180620d72747d83f68a5e9bfd48fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 48944,
            "upload_time": "2024-06-26T14:24:18",
            "upload_time_iso_8601": "2024-06-26T14:24:18.665274Z",
            "url": "https://files.pythonhosted.org/packages/01/7b/74af3d2b0d447179893cb4abe03db92b3c41918eb1bfd01fb291ccfbb14f/color_operations-0.1.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa12d36c1a95ecf381d5244af20bc922472e021a93e59a6cd473f6a0953864ca",
                "md5": "fb894f2fecfbea709a0d10cf02b442db",
                "sha256": "76e8767d91e5ee8eb259a25c2c72ff1a9fc6c1fd4ef9dfc1aba110cbb9b7397e"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fb894f2fecfbea709a0d10cf02b442db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 179804,
            "upload_time": "2024-06-26T14:24:19",
            "upload_time_iso_8601": "2024-06-26T14:24:19.736092Z",
            "url": "https://files.pythonhosted.org/packages/aa/12/d36c1a95ecf381d5244af20bc922472e021a93e59a6cd473f6a0953864ca/color_operations-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2b1545ac8b485c5b2ca9de42fb274923a5d6f1356b35a88a2e33192b8eac937",
                "md5": "72fbd0696dddfdaab08a1485fabb5edd",
                "sha256": "3df23676c96720659f3dc934cbf6eb10d07d9f3e2560109227da3d4004ae3348"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72fbd0696dddfdaab08a1485fabb5edd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 186244,
            "upload_time": "2024-06-26T14:24:21",
            "upload_time_iso_8601": "2024-06-26T14:24:21.472063Z",
            "url": "https://files.pythonhosted.org/packages/f2/b1/545ac8b485c5b2ca9de42fb274923a5d6f1356b35a88a2e33192b8eac937/color_operations-0.1.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "002412d4cb21f43490ea697cc9ff324a9edd2e0c3a4781f180048e61a2021107",
                "md5": "13b10f4cefb1d3da1a3557a68ca9d0d2",
                "sha256": "f423ddc4ac8057894a69af4f91d6862710574e759aa6b525a0483ed8c788f11e"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "13b10f4cefb1d3da1a3557a68ca9d0d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 133309,
            "upload_time": "2024-06-26T14:24:23",
            "upload_time_iso_8601": "2024-06-26T14:24:23.292196Z",
            "url": "https://files.pythonhosted.org/packages/00/24/12d4cb21f43490ea697cc9ff324a9edd2e0c3a4781f180048e61a2021107/color_operations-0.1.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cefd31e16b96a0f206308010fd1f666ba6c24eff5b99e212f61fe1c2f3463b63",
                "md5": "e1d3afe61cf5cbb640f1ec991bdd85c9",
                "sha256": "e70982db5304a2147b62abf2ab18c45b683e2f3c68c8a71da0622afc5fcf3a43"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e1d3afe61cf5cbb640f1ec991bdd85c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 86370,
            "upload_time": "2024-06-26T14:24:24",
            "upload_time_iso_8601": "2024-06-26T14:24:24.879126Z",
            "url": "https://files.pythonhosted.org/packages/ce/fd/31e16b96a0f206308010fd1f666ba6c24eff5b99e212f61fe1c2f3463b63/color_operations-0.1.5-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7343949738ffc533241c14cf5fec95e8f86d67ccbe0f2c31b49a306b43b0fd76",
                "md5": "b9cb9b6d6441b673251564128b25a0e8",
                "sha256": "4aaec777a97768f6862d016895a6cbafd9a43b0fb1d741638b38ba579e79dd1b"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b9cb9b6d6441b673251564128b25a0e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 50764,
            "upload_time": "2024-06-26T14:24:26",
            "upload_time_iso_8601": "2024-06-26T14:24:26.394205Z",
            "url": "https://files.pythonhosted.org/packages/73/43/949738ffc533241c14cf5fec95e8f86d67ccbe0f2c31b49a306b43b0fd76/color_operations-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18a89f6fa3650dae5b9b6bfcb94f35beeb26e81c7357dd5f41a5b63d4519657c",
                "md5": "faf81abf65718cb34cc370a8188f859d",
                "sha256": "238eb331ce03d4a5d2da106029e1b4fd04ba82995c9c6b58b100ab3ab909ce00"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "faf81abf65718cb34cc370a8188f859d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 48896,
            "upload_time": "2024-06-26T14:24:28",
            "upload_time_iso_8601": "2024-06-26T14:24:28.108550Z",
            "url": "https://files.pythonhosted.org/packages/18/a8/9f6fa3650dae5b9b6bfcb94f35beeb26e81c7357dd5f41a5b63d4519657c/color_operations-0.1.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be3c4589646042ada24260112bf0928155a408c120ca665851e44c62b54297ff",
                "md5": "af9aa8169148ca96a4e722f093117d53",
                "sha256": "484049262f6632a16ecf48e776e609281522ec5a9cd1a150a68084412a115c98"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "af9aa8169148ca96a4e722f093117d53",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 188831,
            "upload_time": "2024-06-26T14:24:29",
            "upload_time_iso_8601": "2024-06-26T14:24:29.014570Z",
            "url": "https://files.pythonhosted.org/packages/be/3c/4589646042ada24260112bf0928155a408c120ca665851e44c62b54297ff/color_operations-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c32cd49d8a7b503e83433ef9c18b81cb076999e4bcdf37922b528fef5391d875",
                "md5": "eab3b95c08bc1434863c15a443c60675",
                "sha256": "0fb0e507043b2ef614742fdd46b4ced80ed5f71b333a2437c168c062a36d6973"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eab3b95c08bc1434863c15a443c60675",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 194906,
            "upload_time": "2024-06-26T14:24:30",
            "upload_time_iso_8601": "2024-06-26T14:24:30.183808Z",
            "url": "https://files.pythonhosted.org/packages/c3/2c/d49d8a7b503e83433ef9c18b81cb076999e4bcdf37922b528fef5391d875/color_operations-0.1.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95e464b18db696a8d3ba3650109aa1fc0ba4d512fc0c6029ffe223b5e2bd1af1",
                "md5": "76d0f366676a30b1f6d10c8c54c92ed1",
                "sha256": "38e177320b53d9ed8c3aa96fa837046a4d5f3cac98241685751afb4ab63e1912"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "76d0f366676a30b1f6d10c8c54c92ed1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 133511,
            "upload_time": "2024-06-26T14:24:32",
            "upload_time_iso_8601": "2024-06-26T14:24:32.065571Z",
            "url": "https://files.pythonhosted.org/packages/95/e4/64b18db696a8d3ba3650109aa1fc0ba4d512fc0c6029ffe223b5e2bd1af1/color_operations-0.1.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4369d973a2b8eef971cc10c2c0626781ebcaae751953d83529c1ca4ae99d9b53",
                "md5": "e8cf27048c727e8fdf70a1a84c682da6",
                "sha256": "c51875759fb6bcde97a18dfda892ca08c179636d41e3f696427fcaa834304f80"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e8cf27048c727e8fdf70a1a84c682da6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 86033,
            "upload_time": "2024-06-26T14:24:35",
            "upload_time_iso_8601": "2024-06-26T14:24:35.185604Z",
            "url": "https://files.pythonhosted.org/packages/43/69/d973a2b8eef971cc10c2c0626781ebcaae751953d83529c1ca4ae99d9b53/color_operations-0.1.5-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa611b601006ae6f5c7010999751899ace0690a8e27bf530c18b4c67c78120be",
                "md5": "1018c1a28ffe631054c30e8f652304f2",
                "sha256": "34e33f8f6a580b69713d3ea695a15716ccce136390f753ff9cfe13a49f723a8f"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1018c1a28ffe631054c30e8f652304f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 50579,
            "upload_time": "2024-06-26T14:24:36",
            "upload_time_iso_8601": "2024-06-26T14:24:36.309622Z",
            "url": "https://files.pythonhosted.org/packages/aa/61/1b601006ae6f5c7010999751899ace0690a8e27bf530c18b4c67c78120be/color_operations-0.1.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "980e833a8dbb784111d0b87d3d565a4d6c8cdb79ce022d6975ce7a2be5e14250",
                "md5": "55e27dc95529d306f89f548fb6a241b9",
                "sha256": "2b5c71b0c5d30461244788f841984135e1d2dd057c80b9570a12d131aec286b2"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "55e27dc95529d306f89f548fb6a241b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 48708,
            "upload_time": "2024-06-26T14:24:37",
            "upload_time_iso_8601": "2024-06-26T14:24:37.603354Z",
            "url": "https://files.pythonhosted.org/packages/98/0e/833a8dbb784111d0b87d3d565a4d6c8cdb79ce022d6975ce7a2be5e14250/color_operations-0.1.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75f675fb415224e07028e4d6b62e3f8d56b150c5593df438969146b0b46d9824",
                "md5": "a75653a6c7934f7e300703bc33b0a452",
                "sha256": "86b661572406df2ffda34e09409d3cb8dd46e513652232d469aebc3aa69654be"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a75653a6c7934f7e300703bc33b0a452",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 198925,
            "upload_time": "2024-06-26T14:24:38",
            "upload_time_iso_8601": "2024-06-26T14:24:38.844869Z",
            "url": "https://files.pythonhosted.org/packages/75/f6/75fb415224e07028e4d6b62e3f8d56b150c5593df438969146b0b46d9824/color_operations-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b04dcf92b011ca8bcc167cc670015126266a42d1043c518294a6600579d9298",
                "md5": "eaccf95fc1e6a9e665b13a290988caab",
                "sha256": "f6044648d1bbd3c42e098e4c9a54886c16c44d0da4ae5c1c1b61a17760b98a4b"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eaccf95fc1e6a9e665b13a290988caab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 204419,
            "upload_time": "2024-06-26T14:24:40",
            "upload_time_iso_8601": "2024-06-26T14:24:40.288188Z",
            "url": "https://files.pythonhosted.org/packages/6b/04/dcf92b011ca8bcc167cc670015126266a42d1043c518294a6600579d9298/color_operations-0.1.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f7bd065738a3c7e0d20f698c49720b32ecd5bc08ce5c55bf379fdfbcf59d211",
                "md5": "3ed3cccbea566f812a9c0dbfb68e46e6",
                "sha256": "4456a123586711d193d5982ce89e826477f0422c84036574da66e49381bce299"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3ed3cccbea566f812a9c0dbfb68e46e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 133193,
            "upload_time": "2024-06-26T14:24:41",
            "upload_time_iso_8601": "2024-06-26T14:24:41.327245Z",
            "url": "https://files.pythonhosted.org/packages/9f/7b/d065738a3c7e0d20f698c49720b32ecd5bc08ce5c55bf379fdfbcf59d211/color_operations-0.1.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e87ed1c72267d927e74f2ee9fedcb06f8fb1891b8a0c47da557f4d75294f41f7",
                "md5": "05d3df6f4912532c21b08e0da6f7dfaa",
                "sha256": "6338fab2d186773edf5adc7b1f93aea1844c707821f2753e15f7216a36e94ce2"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "05d3df6f4912532c21b08e0da6f7dfaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 86201,
            "upload_time": "2024-06-26T14:24:42",
            "upload_time_iso_8601": "2024-06-26T14:24:42.297924Z",
            "url": "https://files.pythonhosted.org/packages/e8/7e/d1c72267d927e74f2ee9fedcb06f8fb1891b8a0c47da557f4d75294f41f7/color_operations-0.1.5-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9c3e5d9c9c9717b7fafca397515358a9576248f6bb72d0b688efe4b2bebd6e5",
                "md5": "6803a39403b7ce5cff34e84744784450",
                "sha256": "e9586a29853991123627eb10f0da3c43aa9bf7ce3a0eb7f3a145b11d7d3c2289"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6803a39403b7ce5cff34e84744784450",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 50704,
            "upload_time": "2024-06-26T14:24:43",
            "upload_time_iso_8601": "2024-06-26T14:24:43.319896Z",
            "url": "https://files.pythonhosted.org/packages/e9/c3/e5d9c9c9717b7fafca397515358a9576248f6bb72d0b688efe4b2bebd6e5/color_operations-0.1.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bb676db7ebbe37bcd81f965050b664f1a0c43359ee84a10f062bd89b74cfb89",
                "md5": "48cddcf45bb00b7e5bd2c8cab2a27e4f",
                "sha256": "38e3f49a565f1606b8d11374dd60952d40443156014c2c0eedcfa0a9f06ada32"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "48cddcf45bb00b7e5bd2c8cab2a27e4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 48787,
            "upload_time": "2024-06-26T14:24:44",
            "upload_time_iso_8601": "2024-06-26T14:24:44.267994Z",
            "url": "https://files.pythonhosted.org/packages/3b/b6/76db7ebbe37bcd81f965050b664f1a0c43359ee84a10f062bd89b74cfb89/color_operations-0.1.5-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2edd868f88e74c4e1c69e1ddafd6ab8002fc65829757284003cc3e1743d0dbd7",
                "md5": "a2313f7c66e2c04d109421f51b12df25",
                "sha256": "1ddeb4ba6047704617f49bb9286a6cdd70d656e9607d8af76ad94776c645069b"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a2313f7c66e2c04d109421f51b12df25",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 184352,
            "upload_time": "2024-06-26T14:24:45",
            "upload_time_iso_8601": "2024-06-26T14:24:45.208508Z",
            "url": "https://files.pythonhosted.org/packages/2e/dd/868f88e74c4e1c69e1ddafd6ab8002fc65829757284003cc3e1743d0dbd7/color_operations-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad2dfdc4754f3944226316fffb188be9dd7657aff78077915995aad5b1cf6cbe",
                "md5": "eac1c7112b3fb4be2190669bdf3df2f0",
                "sha256": "c485cf3e29d1377f5251d06b53dc0a99d3a3b6c3ffd246c2f60ec9558e3ce5c0"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eac1c7112b3fb4be2190669bdf3df2f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 191962,
            "upload_time": "2024-06-26T14:24:46",
            "upload_time_iso_8601": "2024-06-26T14:24:46.245666Z",
            "url": "https://files.pythonhosted.org/packages/ad/2d/fdc4754f3944226316fffb188be9dd7657aff78077915995aad5b1cf6cbe/color_operations-0.1.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "248b48eef81c41dc16649518ade01c818ad6f474fe35b676c02d6960b6108fc6",
                "md5": "f7297ed85c44e9362691ba5c35dc2220",
                "sha256": "78ede58b626cf7b63dd6c6a22712d65c5642e5b2d32dd3a90084ddbeee8a84b6"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f7297ed85c44e9362691ba5c35dc2220",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 131198,
            "upload_time": "2024-06-26T14:24:47",
            "upload_time_iso_8601": "2024-06-26T14:24:47.265790Z",
            "url": "https://files.pythonhosted.org/packages/24/8b/48eef81c41dc16649518ade01c818ad6f474fe35b676c02d6960b6108fc6/color_operations-0.1.5-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "deeb1822b193ba1f15f3c61b32d29164eb0373bf0de427708d487bda2e1eaf9e",
                "md5": "f76d8362a0b1ee2e54da47996a5b031c",
                "sha256": "c452f9fb1a323c688623e245158f55236483425eb8e14a5f83347c4b35592374"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f76d8362a0b1ee2e54da47996a5b031c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 86485,
            "upload_time": "2024-06-26T14:24:48",
            "upload_time_iso_8601": "2024-06-26T14:24:48.245981Z",
            "url": "https://files.pythonhosted.org/packages/de/eb/1822b193ba1f15f3c61b32d29164eb0373bf0de427708d487bda2e1eaf9e/color_operations-0.1.5-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59544a558938da8ec94054cbd02ee02ce2eeeff72ba3f493f48099c41aafdf19",
                "md5": "0b8c03e8b5fdadf49d75efa7d6612668",
                "sha256": "581403d6114a29cefe8dd1857ee37b8794c1992a3aaf13f7ccd0267fda4f856a"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0b8c03e8b5fdadf49d75efa7d6612668",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 50889,
            "upload_time": "2024-06-26T14:24:49",
            "upload_time_iso_8601": "2024-06-26T14:24:49.246093Z",
            "url": "https://files.pythonhosted.org/packages/59/54/4a558938da8ec94054cbd02ee02ce2eeeff72ba3f493f48099c41aafdf19/color_operations-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02616ed19fb6856bf90db48bd0e26686fa9b4a158047d2446d4f51516b28eade",
                "md5": "0e88b997c08d5ba4ee1fd8ef316d18e1",
                "sha256": "15a73c9f2eb0045367c5d45e5931286e5cf42c5601098b4cfb66448df51d3478"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0e88b997c08d5ba4ee1fd8ef316d18e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 48936,
            "upload_time": "2024-06-26T14:24:50",
            "upload_time_iso_8601": "2024-06-26T14:24:50.196033Z",
            "url": "https://files.pythonhosted.org/packages/02/61/6ed19fb6856bf90db48bd0e26686fa9b4a158047d2446d4f51516b28eade/color_operations-0.1.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a16627a722da65e68261cc4706cd221c85f2fa37da5b97138392c96f4ccb87e0",
                "md5": "6e97c795d16bdd65e4360cc450ff9da6",
                "sha256": "4c8352a2354178f9fdafee38df3ecacea06fcd894c511a6cce3b50590f830ef6"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6e97c795d16bdd65e4360cc450ff9da6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 179610,
            "upload_time": "2024-06-26T14:24:51",
            "upload_time_iso_8601": "2024-06-26T14:24:51.379201Z",
            "url": "https://files.pythonhosted.org/packages/a1/66/27a722da65e68261cc4706cd221c85f2fa37da5b97138392c96f4ccb87e0/color_operations-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2113e0b6ff4e3df6b06295dcacf4edd107a4a3935786204ac50025e5c57b3a04",
                "md5": "6ca648da13db191691678ba9e9ddb0c4",
                "sha256": "274ae1839c7f1068669d81acf8256b09cfa310a8ea0f255f9c5a04d9e2a6c59f"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ca648da13db191691678ba9e9ddb0c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 186041,
            "upload_time": "2024-06-26T14:24:52",
            "upload_time_iso_8601": "2024-06-26T14:24:52.551319Z",
            "url": "https://files.pythonhosted.org/packages/21/13/e0b6ff4e3df6b06295dcacf4edd107a4a3935786204ac50025e5c57b3a04/color_operations-0.1.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "495a674ddb3a30b2ecae3486c83dfc0924db57561284d7e7ea0d317ad3a542a0",
                "md5": "dcb95b4b238d051a10c4503fea18600f",
                "sha256": "a557ce3d8b610b5c10a5f096fdff89d3850ce549fee256aa37728472d67d628c"
            },
            "downloads": -1,
            "filename": "color_operations-0.1.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dcb95b4b238d051a10c4503fea18600f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 133304,
            "upload_time": "2024-06-26T14:24:53",
            "upload_time_iso_8601": "2024-06-26T14:24:53.796623Z",
            "url": "https://files.pythonhosted.org/packages/49/5a/674ddb3a30b2ecae3486c83dfc0924db57561284d7e7ea0d317ad3a542a0/color_operations-0.1.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef62724253f0e5bf52a0b9814b3914a217e1660f245588c26129bd65a0d409d7",
                "md5": "5b0b6d92aa6e5c4cdbb90e2583a3b06c",
                "sha256": "8d4479532acbd4be2b90858274a0810dcaa3146e192a785f6a4b3f8f3da6ea85"
            },
            "downloads": -1,
            "filename": "color-operations-0.1.5.tar.gz",
            "has_sig": false,
            "md5_digest": "5b0b6d92aa6e5c4cdbb90e2583a3b06c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 17476,
            "upload_time": "2024-06-26T14:24:54",
            "upload_time_iso_8601": "2024-06-26T14:24:54.695707Z",
            "url": "https://files.pythonhosted.org/packages/ef/62/724253f0e5bf52a0b9814b3914a217e1660f245588c26129bd65a0d409d7/color-operations-0.1.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-26 14:24:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "vincentsarago",
    "github_project": "color-operations",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "color-operations"
}
        
Elapsed time: 0.60226s