Skip to main content

Python bindings for color parsing and conversion

Project description

Color Parser Python

Python bindings for CSS color parser using PyO3. Parse and convert colors between different formats.

Prerequisites

Installation

From Pre-built Wheels (Recommended)

Download the appropriate wheel for your platform and Python version from the releases page and install using:

pip install wheel_file.whl

From Source (Requires Rust)

If you want to install from source or contribute to development:

# Install Rust toolchain (if not already installed)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# Install from GitHub
pip install git+https://github.com/rusiaaman/color-parser-py

# Or install in development mode
git clone https://github.com/rusiaaman/color-parser-py
cd color-parser-py
pip install maturin
maturin develop

Usage

from color_parser_py import ColorParser

# Parse a color
color = ColorParser("#ff0000")

# Get different representations
print(color.rgba_255)     # [255, 0, 0, 255]
print(color.rgba_float)   # [1.0, 0.0, 0.0, 1.0]
print(color.hex)          # "#ff0000"
print(color.rgb_string)   # "rgb(255,0,0)"

# Parse with alpha
color_with_alpha = ColorParser("rgba(255, 0, 0, 0.5)")
print(color_with_alpha.rgba_255)  # [255, 0, 0, 128]

Supported Color Formats

  • Hex colors: #ff0000, ff0000, #f00
  • RGB/RGBA: rgb(255, 0, 0), rgba(255, 0, 0, 0.5)
  • HSL/HSLA: hsl(0, 100%, 50%), hsla(0, 100%, 50%, 0.5)
  • Named colors: red, tomato, etc.
  • Transparent: transparent

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_parser_py-0.1.5.tar.gz (8.1 kB view details)

Uploaded Source

Built Distributions

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

color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (488.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (513.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (587.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (494.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (317.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (333.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (488.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (513.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (587.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (493.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (324.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (488.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl (513.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (587.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (493.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (324.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

color_parser_py-0.1.5-cp312-cp312-win_amd64.whl (173.1 kB view details)

Uploaded CPython 3.12Windows x86-64

color_parser_py-0.1.5-cp312-cp312-win32.whl (167.1 kB view details)

Uploaded CPython 3.12Windows x86

color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (488.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_i686.whl (512.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl (586.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (493.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (385.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (324.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (332.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

color_parser_py-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (280.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

color_parser_py-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (283.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

color_parser_py-0.1.5-cp311-cp311-win_amd64.whl (173.3 kB view details)

Uploaded CPython 3.11Windows x86-64

color_parser_py-0.1.5-cp311-cp311-win32.whl (168.2 kB view details)

Uploaded CPython 3.11Windows x86

color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (489.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_i686.whl (514.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl (587.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (494.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (333.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

color_parser_py-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (281.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

color_parser_py-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (284.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

color_parser_py-0.1.5-cp310-cp310-win_amd64.whl (173.4 kB view details)

Uploaded CPython 3.10Windows x86-64

color_parser_py-0.1.5-cp310-cp310-win32.whl (168.2 kB view details)

Uploaded CPython 3.10Windows x86

color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (489.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_i686.whl (513.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl (587.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl (494.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (333.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

color_parser_py-0.1.5-cp39-cp39-win_amd64.whl (173.6 kB view details)

Uploaded CPython 3.9Windows x86-64

color_parser_py-0.1.5-cp39-cp39-win32.whl (168.4 kB view details)

Uploaded CPython 3.9Windows x86

color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl (489.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_i686.whl (514.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl (588.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl (494.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (333.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

color_parser_py-0.1.5-cp38-cp38-win_amd64.whl (173.3 kB view details)

Uploaded CPython 3.8Windows x86-64

color_parser_py-0.1.5-cp38-cp38-win32.whl (168.1 kB view details)

Uploaded CPython 3.8Windows x86

color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl (489.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_i686.whl (513.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl (587.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl (494.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (333.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_x86_64.whl (489.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_i686.whl (513.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_armv7l.whl (587.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_aarch64.whl (494.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

color_parser_py-0.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (333.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

Details for the file color_parser_py-0.1.5.tar.gz.

File metadata

  • Download URL: color_parser_py-0.1.5.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.2

File hashes

Hashes for color_parser_py-0.1.5.tar.gz
Algorithm Hash digest
SHA256 e0d5130883dcd91f9286f61134e6089b42063bd8232ef165e035b13917682cb1
MD5 bbf768487da5b3316b44e1b5cf9cdcd8
BLAKE2b-256 958a0deb642f1f88c25a7ea631f767053cce961724d4bdb1cb25293c7852f880

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07a051dc72528a14d5363f6f3291e45a1e18c6d12612b026f311855c5cc40697
MD5 1579765898a2a11831ac3e1db56c316a
BLAKE2b-256 41ab9156f2ec9fe0cf96feef8a3d8aead23bf72273c7a47e6573c27b0a9a5db4

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49c126c10e346590f889919131db67736a9e56feb7951ccd0057df531460d7e3
MD5 c3dd363298430160205d5f0c9a3ae572
BLAKE2b-256 6ce8d6c312b8baae5455bc4efec7000a9e32400d6f8cacf489fefe6901a9cfab

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5cd95a69861630b0021ca8b69fca3dd6903ef1ffa8ca51cc0c1ae19cdbb62c77
MD5 4b2eb1c213353dbefeced26f33d9702c
BLAKE2b-256 65f73640137a08edf407e522f156ea4b74bdebace653bd5566e8c0418e95dc70

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b044a3d98b05984754757b92e5ae6241ecbf494ce9f3f87e58682bf1b42d7730
MD5 110de6e566b482b13510a207e12fa4e2
BLAKE2b-256 a63599a6a13d41aa19121675a3193e44d3568b7d9b81f0ec4ac40560462c94f8

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc5b06915d9b9c419b87a3bc3490bfa558a778696a436271687891d8d63ec2bd
MD5 de5ca4da783d72a0521efd5f180266a1
BLAKE2b-256 b705cd4bb7e924287f4723967d1f6a8011a61ea505e76f8ab1cdb3c5f74658e4

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3267a223868a2bf393d0ed45a5c9eb0cafb7d41de72ac491b6784872ff4e875d
MD5 eab59ef1ab54e8d3e1f29c8ee7f1deed
BLAKE2b-256 02472e2d3c23e9cc8b49d4919bad1c276d07e06239180d2bdfa84526475c9bbc

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8dbee9014be6ffd98a59e2fecd60c503255217238099094aa664fb29b9e0abb6
MD5 93626bb3595be78a5b5d926587e13f7b
BLAKE2b-256 7d31b2141d9c8bcd40533ca69553814340502d2a4e1d8ec281032bf53d8d52c3

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d04e66e7688e272e5ad37eddbecd4ee808f1b6c3649bc66c1f01a513a3973df
MD5 e90b2613bd5fa5895a9034d958dd8209
BLAKE2b-256 0bc3c2b5d3b601ee5306284fa4afcf9a56199b711dfb6ef644544e933e810d11

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 991978100a79bbcfee880067848251cafcdadbb9e9c68d9e479402202efcdc40
MD5 020d47de7bb187f9bbf19ea7eacb0503
BLAKE2b-256 e314a41a0374871aba447287117886db54e0de952de3ab7d131cc5204b91c70f

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e69dd88e00db908250208f41de0a497de7e7ac65f338165284808347aa34b63
MD5 f2a67a518b1aa2f0618ac2b9f0cce522
BLAKE2b-256 19656d2c17db959ad2dc018b7f2f622bdcbe896d149fea8e56e58b7eb6270a6b

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c72bb6d3a089811586e7af5e7e98851fe3f49d113a42cf0b1d3115a11a7f86c7
MD5 00bbab815e32435057e56a2ee0d8b92b
BLAKE2b-256 3e9820cf8c0e1eab2db4416959488b5e9942976a29791dc2aad1bc005ec72a4c

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 accd0bd3618306b99de42082ad95188b0da4b28b821912c6a7872cdbb221aeac
MD5 94c51e14c2e9f91dc4402064d3263229
BLAKE2b-256 0842d7da372c4087aa4eb1f3d0499e209c4c3be21ad786e3d4f6c05980d34b92

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aacee1b42135b9eec808afe8dd63080e1406a16f1334c91aa93e4913bb26d524
MD5 8e033f3814d552156ba6c5d66a8c817e
BLAKE2b-256 ba0037f689f92e3c41f057c5baae308bf74e1f2797fa542c52f56bf2da21f9fe

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73421860d773281e2042b58010dc9ab6bfb387c598636134b990590219e826e5
MD5 01485d3b9436ae56a3d5dab2f19b9c87
BLAKE2b-256 877c4631a5e42b7a129f445b020490b61834e5a91221d07d70ed0a9bfec2c478

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 336e78f307035b05812a3df3483995876a426a904965477f8f118aa4d9ffe904
MD5 b57d47a8a5bbf46f458389348efae2e1
BLAKE2b-256 3d41c073ba58b38332f26bcbca913f797d8754bbf1228b754f6b64031c616595

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb32b202084d3f55dae079e3598a71313aa75f05cc70902b60c517b13ce6e650
MD5 41c43468f8a25ec0405181260230fc81
BLAKE2b-256 0c3e5c6b6da9c5630b7c173e9922e8aa962341e192b6b6e5c5027e6c73a81a2d

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d29cdb040c4045a8bd9616f5ac19bcb1a05247b5d3f86a66f0cd9ef6b83bd258
MD5 dfff1106b14903d8b52b2d5c0a11bd70
BLAKE2b-256 c7a22d22166c5a3534800b0b386a7daba8dd10632c0d271e9a37ed822a927e65

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c601a7b6f2f2bd2497ed775c6f657ef1e12017ee2246ba915f4d51c5207bd1f
MD5 93127c52e6ed410d31035a1e9fa14abe
BLAKE2b-256 9fa06accf96a02f30246b5a73637343f6114f81de9d8c76ab58dea1a04732dd9

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4423b6fdf742779ff9b1dfad71c02925938c6525c051f87560645746ed32bb65
MD5 b3ca34a01c72f92a30a46535bff51879
BLAKE2b-256 322d454881155a4e0cd715b6add66efaca593273271d075777392372d5c695d9

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22e1a7911cceb703e859ce55af15cf5f6245d4a3752f9d61a468f85223b51f68
MD5 aaf44d9e6fd8ae59e14be39e967bf07d
BLAKE2b-256 441da21a3c09a82e334910a01a27c3c6412de6e0813444b7806e37d501418edb

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08f14013f93027a6f3b4f2aebdfb7ca870ae42bf7d4d3219160f6d5cbe1e4b6f
MD5 5b98395770e006d492e5c91bb49927da
BLAKE2b-256 076bfb60cd56af3a836dcd9850f84cdc41ae14c5e217b83c120cd1812fd414b8

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d84c1b258efe3eac4d65ceb964a152aa59804e0cdd008afd5937be058b388003
MD5 169d4c944f5b9b8f83e2a486dedbd957
BLAKE2b-256 e7e4d220db5cf7ccb05f32e7dc36dfb72efc119f0fb93a8b18dbd76ca79626d1

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75a5a5f4b761a2f7613b4ce1f805cf320d448d78fe18cdb532a3ef87583bcd94
MD5 6ba7a595bc9c47093d8c5df7b7833b2d
BLAKE2b-256 2d4ca5eb5abf3e6cbefc7104b9bd46e03945de5fda91ba8d76dc594a8ca2dcdd

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 783905ae412c40af3029b202ade61fdc1b8c15ff45cb43b5b7a2a92e6d25eeb4
MD5 7dec305302c7e22ebed90d6832374876
BLAKE2b-256 d5203d58248926d27760394ec1588b07179795114172e48a1ec3a51075b2db63

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08c17bf0a4d22845d8e5f5615551405b4c1ec23ae5948033481c76df96996ab9
MD5 9173a9cbf2c77a56e290beb19bcd95e3
BLAKE2b-256 a8515f001d9beda3875e035aab32097fbf37bafccb789a0666460802d3e08e9c

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff90297f850c032970884d641fe54f43de705129a86691171284e0ddf70bb27a
MD5 becaf760d9d0e14d92db2430500121ed
BLAKE2b-256 4dbf5b8b858ea9c052ab083e286ca9352e3a7503ee36f4820c4941f4da1f89de

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6566f8654d109f75e57706dda3c6e54764c1fff1ea0afdf2f903b91ed364a890
MD5 6cccd215fd6bbd489cf10762f2a8fca3
BLAKE2b-256 f42a262d9ef653e5c073c6a08ff8da32aab5f03b2e6bf0bb2e6f19b630dc5008

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8e0b256dbe9da4d493d57aa86674e5a480ea3bb9656b0696247aba375ae9a40d
MD5 3cad1f5b4076fd32bf4063dd673a2ec3
BLAKE2b-256 9f8d26e5b00226e53ba86bed7cf36c07338ac14f5d75fd3689fed49069086e0b

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df62f44d2bb588b7814ba26d232d68cd3b59acda04eb93a12c50a56b291262bf
MD5 d3c042a03079e80b41a54d184f036f33
BLAKE2b-256 aa4a330a54912fac1713ebe964d932d75d0a5c056c10b8fefef3d6757eb97959

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fb5c8cbe941a13af0511c46d8e280bb36c7082e3580c7058780cda867d625ab
MD5 c483c855fa943fa2c7212c91c439bcfe
BLAKE2b-256 7811509c0d88f570b99cd19e65dd67372f5705ec555782f5bb222ced3ef471fb

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 caf62fa103ff5a112b4ac7477a9ae9969e6c52e1a783b99468c25db257fa0afe
MD5 8b571d2a4fc6956124b8218097af185d
BLAKE2b-256 507b03730ca1f592676728794ac48ec25bf416e113ca244a31073981b0d51136

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3e0447638520941ecbe01e0d387b3fac012bd85dccef03cab4a034ea2c7fa43
MD5 81976b9fa11a96fbd0269b2edcf82c79
BLAKE2b-256 795a4f30c2d48a38932f4c44cfc646d4335d10b4c427130d2f9a037a658fb77d

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa03388a4ae3e9cdd28195c17c5fa9a7248cfb73c7c4e655aa4459ba79760ba3
MD5 8e902d6315b2c177ab0f5f96aa82687f
BLAKE2b-256 4a566cd7499d26b49150607ee08feb7c87c5565e77f49c06056f560557eaad3f

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d85b338538fbaadd845d86f1aadc9c4f7421876de704aba435065c991ee92264
MD5 f6ed90ec3ba5fdc800a448d58e6b6745
BLAKE2b-256 0f54c884a3572362eb7f18afb29a5edc41b8b80f8a317de2bf2edcb9fb680c8f

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 65b4947b6188105373ac5469180011fad902e800ebc46138d57e56d1c5a47be6
MD5 f5a7ccb9007333c7c5ea70d2f0c95393
BLAKE2b-256 2c861ba9d42a6722e24d1cbf781e51a1524791ca39e1e90456b7d2324a4e2107

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b02ac80b1adc65b71fb87994607000182d9917b9fc66fff1d6ec9f21b80bfd4
MD5 f05d2d7d0eba968b6a0930d86ad5c030
BLAKE2b-256 586296a2433a5a33aa9b5b30da50cb34196cc78966f3dece4bc5ed927d4a3c9e

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b792dde66356175bdecde46b8763e0814eeb2013a6f7f15fa9af88284c3c8752
MD5 79e90c6a2fc96509c6da21bffcf81c89
BLAKE2b-256 b18796f1e8f7872f90d665ca52a288fde09e60ef2c5e0d929a6efb85bfa6cd52

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e590d1ea180f11e2b2a9f0e49cc6a2ffe57e2befb52302083826315141ac04b
MD5 19600f29250f384856e1547d88633bde
BLAKE2b-256 60c6c855b93f092466eca8e743ae19588b6b1310f4f5848ed224afe295cf8cbf

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9062b12791a0c2f849161cc564ba086660ca279709e0e152663a52dc5e3cf10b
MD5 bd05d371da88f9a04638c54e0479997a
BLAKE2b-256 272a12bdd6c152900d9a29df4065e1adcf881db9f7232dcc695b1a1f08e806a8

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a674e68d5597eb5eb5018a1773ba12625f550d2ad53cc0da9150e60559d332e5
MD5 b995f75ef9fff78bf7d0401735e5c2ad
BLAKE2b-256 55bd122405be34da9684a5b57e929edac787e75d728a934fa843e7ab92c45ceb

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7c872b4ea4be3f62c2352d89b030e7a2b421a0c2878f1e80b355ef74831d9e27
MD5 f7d560734c47bc86a8484966c5643c4e
BLAKE2b-256 d17ff3a3e738e6277f78ec7521fbe7e5b4f4089814811401b5e58f2b63499f36

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b927d3086ae7137a199aeb11bcf7ed1b5138ca5284600ffa7d3ad8d620513a66
MD5 a0ecc7d4d6355e6e76d8b51ae07798f9
BLAKE2b-256 ba17016e18005dc687012e1dcb036f04f2d106458bc9da947c51c490dfae5e26

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0212a4407d7d96fc1694bb5e02d6cd6d137615b5ec54f5c6a7a6e01199004e91
MD5 954f253bda8cdbf6af88f98582682d62
BLAKE2b-256 004bb62dd058a8a5292e098049c28286fc13fe6f67521870d9dd7c8558598f87

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2deed6023ab185fcbe130c6b689a67452444880c63ae57f52a7b8fe70d64fe9
MD5 fb435d63b7cdc67468e40ac310834713
BLAKE2b-256 1f47c7160809e80c1b3e65e5718a7b242ce9b135a5e99a392681e4deea0b1467

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aca44527070dc4817b6bbd0ffefe184651242f949e6ad5d9d06c7a4a1c4ffa4e
MD5 f9e67570864aa817e4a28628e1bfc878
BLAKE2b-256 b21b0a343e26d60b33eda88ca1640dd35aa5148e21f427b4203fe79818f4e7ce

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8b62f19eab7068896c893d4e787b6e5efa6fac99efd704ef56e158ff086a30e
MD5 7dc399c1fc55a517b877681c01c89ca7
BLAKE2b-256 33285ca420ac877b38ebca357ff8cfcdb13c913e7e3469f7d05979dbfe3a1a8c

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6d14f16eacc60cac04b3ce5aea3fc03b24feb220a431f1dc2a8221bfc2d8a1c
MD5 7bc77b6a4f417994fd9db680fb357148
BLAKE2b-256 e2ef1acacd1515c7c0155c769b358b032caa7102ecb7af798684b4499b1680de

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8166f0f512717b05d0da1c757ad051527f7c87358f121d6b1b3b03ae8806480
MD5 b811b6e71eca508bcd514ccda115c6d0
BLAKE2b-256 fe7811cbe39051d1dd21a3b0577484bed048d023e19fadeafb771a9945e3fc81

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 350e5e1e98dce4053432bb6bbc020fe82755dc0e87c7d6a705589549e69c7749
MD5 0b44db260bdf9ed4f35e013312686fa6
BLAKE2b-256 501b8f0a3f08c3671a6c29e62fa134931dd3f96efb2d3f565f1784ff4304d031

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8c2a660bd8e87260a7906a974bee42a6c9318e5187856d37baf78f98b1cb12e
MD5 b48969cd560464833bc5521ce6d4f73b
BLAKE2b-256 959d21a9e9d39ce82f7cf5838a8ecb87b00fd430e92e473b6b2aba52e272c1bf

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22be95557256dc9754fc7efad4bd6a6696a44dbfabf181d0bb6c385bf42ccb59
MD5 22db33210fe7bdc595e9b020892d60f8
BLAKE2b-256 426e648c58dc377fe5029ba4e703126596667e3786a3df222211c356a24345a5

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 85535f9e1a45306831f3babdcdb819954bc33d3b65ceb5e9dda14f3518ed8040
MD5 7f26d0920306d22b853f60516280163f
BLAKE2b-256 0d8f074c9ab5a944592d55fbe053d0af7c1bd272cd94ade23ddcac5151a0a43c

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43e43ec8b6b1ec7dbe6b0a36600d8770b8132c5f951612ac66cee28ef5a57d72
MD5 7500451b9990d69d0883090194bb0ab8
BLAKE2b-256 c065f7e6149b1be449db03cf29424d84018a346dc9a3fea66ac4e7ce71f2b2bb

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5accf50e33f040ac4175293cc84c5be6aa709cf5c3118b29ded9063b49afc642
MD5 f41c22ba5b91e7e92d3fb919eae8ad01
BLAKE2b-256 dd07f7c37875c67845beb95bbdb5972ef5b3926dde4120bf4c0569b07597af64

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e8e3a146921b755aced942c3b993d2d7128d5abe2f85d083d32029094b2058a
MD5 b41e7d9b547a4bf7050f867d02f5b72b
BLAKE2b-256 2f4b16525080a587ea1177b0b8c7fcd3a0408b3bd037ace38888a2df8d275f2e

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 baac0c1911fffbe93f73200fe59b876319119a0c3e55c95149e3c6a4ffedb5b1
MD5 6772b36c54d4023882c4f426cc53e6ee
BLAKE2b-256 286ca527e35d412b2d1f1566704d7af818c610d363cdc57e7ed04f1375337c2c

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98cef99ef65f08b00ae4cfd81e76ccb928691c2cb1ab5e947508779f56a07fb9
MD5 9dfc66eeb538ff2550a778bc167f5407
BLAKE2b-256 d75b03e5ff4037eaa0ebebf4a3a40fb8f9787d77dcc9aaf274f8dc18a7c0b529

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0e4bb0658517076fd026db926540e7ce0fe16d54b350227ac04a898cc315b9b
MD5 6286b24a9b0de0769cbec29c3de7bfd3
BLAKE2b-256 264b5904e0801f39805b19493fa4662f79f6982193e9e25416620ead05b1a823

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e978e7ca3505ab7871d4826850a5e45912d4dd92d1809d2f6a068f2cfddaabed
MD5 02b82ac0a247ad7f0a34f344b7e5208a
BLAKE2b-256 59e96a189246a276bfb30ae711385b47b5b4f9771c8c1cff72fb08370b5830cf

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f782504bacaf1f2b616d9e9071ef1abedd3ddc1b87355c6be2b9a70d959593a
MD5 6e9be434a1eef76b6f9405fe3820b6f8
BLAKE2b-256 f19a692a1253450c991c76e1a1f7ce8397ae91d0d251c134b500817c337e1a5a

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8ea2395db6a44c4d10c9dbc64c2d8f64b06fc8bc34fc1f86571c5dd653a6cef
MD5 bc24c53dab5be34cc4fd130344b375d1
BLAKE2b-256 3420613f071f2b87a4f422f25e458b8ea6e2771adf42f984d606e0e82ad8b313

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 367276219b494649d549a068e12a785e93d473fd98319a300dfec45c7b3f7436
MD5 1fb355a3bffc142e132cdbdaad79319b
BLAKE2b-256 bcc049130b84508088beaadb35aa166592bad45a0e0dcbf60f3bf5869659403a

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f09ee6369ef15368254013081a7dfe98d7221d72e5d0c4aebc7436bb94b9e4bb
MD5 14a9f6bc543ac7c1b96b73143a00453d
BLAKE2b-256 9911754ebf4df8b528f37a94f14b344b3e60959d8ff199dd9fe46ecbc4a4c260

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b11e97c7e75087c84217fd0dfd9f19edabdd31e7e6a177f1cb178c6d700e5c9
MD5 b001c3ecb7d7888694c28f2fb61b6a33
BLAKE2b-256 d58367e0575f58cd3b3be27196ad7d22361c873f0b6b54a46f7d533c78eabca4

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c71c006dc5339a20dc05365a7774ff5162ae87da615e3bf9efe0dc501a08fcc
MD5 335f187e4d865ffada2244952b6b4218
BLAKE2b-256 a6b72bb42635a156e656ff3a624b5911d1977c28c26d3c2792d0ecd8a3f434ad

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8262f8ee88d9e4b31afbead1a54137e5b6afb23ff82f468f5a1fed389e13701c
MD5 b1dab9f0eb7cdca57e7176e4dbb9fb5f
BLAKE2b-256 51761e55222e62dca7b4e117a6c8ec525229a6b7839e7c133fd8bd87d4cdcde7

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b4e08afb7c841bca6d338bb58f72ba384cc8adfa498b47cdd4f162ac61b0359f
MD5 5532239a73b355ffd0ce11488242747d
BLAKE2b-256 b5a0fda2d1fb4a1cecfd784d48365ffe9905dda3f4d7fe48ca37de807fc87dac

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dd3a9585a86952bacc2c7aca9ef385c5204b81683f5402134fceab40a669185a
MD5 3572a946f7c95d812e2284eb02c200f2
BLAKE2b-256 5fb86ee4dd8b8a271c7021e4a3dc971018220fc8ab88a504c635efb0fe05d48a

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da30804368a14170ec968d1365f6a7b7c219827552d25394e45d66e3219619ed
MD5 5ece3dad8db1d701a9cc1a84ce31e9b1
BLAKE2b-256 190b462c0dfffd6f13a8bf00fdc8d32318bd03fe23e5a87f54ba97b5f1eb3b34

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b821344c844d763b7f6bdfc644a7adfb44e39b3974e17695515a3d1d68a2132
MD5 c3ea33cc46f82b6057d9963342f8aeb0
BLAKE2b-256 802f57e164892ae33fd2d9561175c92e9cc2f704813773fd2c6c5d420fbf5111

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c64ca6a62698000c2dc9d99e1545e34427efb227c1e83d047c945350de65b78c
MD5 b199d8d87b322f7f4cc16e83afe21471
BLAKE2b-256 2077d173af41c262e5712e28011810e0dca7e93063e47629cc1d699e375822e1

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78acb7a38dd552168ffc5a727d70abbf7b4896f9ab213c4e8f11e0d8e0560d3e
MD5 ca645eb8b5555ba3c1a7f1ba3ee036ab
BLAKE2b-256 da2a63c1a9b8c2b8301910074aafcc7f8faafd20845db6ac5551c3400b3dc450

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58c7dc5f131d98e8684af8b5658e2eae289cbe424711ad171c0484ab4660cce3
MD5 4850278ad6827ef0c6bf308bda7289fb
BLAKE2b-256 c164213b5dbb6c2746824dd4a15d68b50b14e5d8de2c313b65e67a19c16032b5

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 192d672c0bb6d23ee1b1bb7f01fae8eaf2a74cf60636ee635db0319e758fb53a
MD5 3db93b36ec418de4994745ceb5e11c42
BLAKE2b-256 d70483c8a64c67263c6b465be0f90dffea7e9d2e3501085ac5a4a3e7f83925e9

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9d3ad4db55af9ed52a3e4fcb24cc463763ce131318432c747cb303496a6e63b
MD5 906b710da5f886bf97f80708ddfb4634
BLAKE2b-256 e66831367374a232f4366d78c05cd33da10a8ef4d737d53cf1c48d25612af943

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f57c852a76c4c4bb0ce93eec498c6113d36e0f1136a880a1a50d640e1951f059
MD5 f460942b31a63f2eb9cef2d5119926e3
BLAKE2b-256 971716d69d06d668dabf6ecd63c7bfdfb3d0d14901e693694ae5801da7051bf7

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78219b6dd9e2fa88b9c5c84873ab9bc2e8805a0e39051b74769a8e01861a24e5
MD5 5250dd3c442e30f5c9945e397ae27631
BLAKE2b-256 97b4cd90483580933c7e87dd47207949e6c3758b6a9c1ad93db5364158d00353

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c501c7420575d8586d1d881b2d38daeb239ac828425b663b434596b69eb84570
MD5 cca8495f278bf85c97f31d1c4244eeff
BLAKE2b-256 f1a694fc9d7b7ce5461c2216a4191c1dba6762fb2163c29ffe81dde0ae94eb32

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 73ffc7437b695b00ae71718c265e05e9ec96869f6dbbd7f33f15f1d12b4369b4
MD5 0c69c152c79f53870be68ea20ec5f123
BLAKE2b-256 110f13450395aad7281bdfe41356c50938a01db47e9eab077c47e02f27c61ca0

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bec64b373f2c8911ffc4ce20b30415d7958e0bee97d5e51d51358572b7621cc3
MD5 39ccca8a58a2ad4d9dbbfa6a78864d0c
BLAKE2b-256 d58ea9b4ec4da9500d88ccea9e76d5db5578faf098aad8517ce8d28242f161ce

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82a92dd94c78cff7f49990dd64e525f390e88acc37fe4c3926479201f19a184c
MD5 3b3931bfc07b3af2b17308af74765217
BLAKE2b-256 d582c3f8da517a50c819eb7d5cf98f7e9a4a246f7124b9cba6238a402924c925

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f57d026ae34188585656886ae4b81da52d7e00c06fdbe76fcb0f3c8b9373efa
MD5 b426ae0577d87c3c0d0f65f1c7c133e2
BLAKE2b-256 16da927d3549435086960c0b7bd1b1bbf4f23054892fc67942d04f32d8af933e

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fcf126e76e5ae71df9e9765da5cc6b0e8e207a2ca0204debe6b60ae8a9dea144
MD5 6599b078138d83f00f78db070e1e6a75
BLAKE2b-256 ea27e5b336c5620ba3ebe50020c0ce1ae18e0dc0dbf2cc741a4ea7781a7ecea7

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3723b68e11bd84878cf7abe8e06d9c2acb63ad5224c9e8a5b20c0a5542ef938
MD5 f901d9e10e8573b0b57946eb5c0e3b4e
BLAKE2b-256 c8fab38f6dfa190dcf203932f5563436e6672e97d0e5ae2dddc9abc71d270dca

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84a3e84f384958b947880f4873e9066fb01dd615d123fbb057fae0dfc183301a
MD5 00b1bac79fb9b20478eb9f8fe27a2ec8
BLAKE2b-256 e0745f61a7d3efe51208e6ad8cb185685939ab78dc54bf4feae46e37899f8431

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6230a0f79e9e23f95852eea30596722837810a32a277340245c45e65f469e19
MD5 33b255995d918dcf20d5655b389ca7e2
BLAKE2b-256 e4b0d49a45c9c729e25cffc318f7c4195ebf45671ca475adba13eca120b702d9

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a2cb4375bb4a522d7277adf92a2a40b89f2dfd6059d1a3e4b750fe904ca9f03
MD5 dc1e1cb461bce511146746ff3062a354
BLAKE2b-256 fbefaab7eca736f93c06d66f3a48374242e4fee2dfd2c47485a6f8cb309c911c

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ce6fe941588ffb9e5624b6d9db3ab85f0172145c5371185c092eae4fcc09d42
MD5 887b4c93d64821cf127ecd9f31b8af63
BLAKE2b-256 e1ed11d660c70233eec056281b5e5cf8cb047b7d076d3230d7e5a6fd0fb4633d

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da3a8de2b7123bdea1d666fcb038400a70cc04d3340c7352e3e9300412552e38
MD5 511b9cef4ad0bc5b59d46272af2e54ec
BLAKE2b-256 3752addf4d6d3ed9e78098e1e1947ef67300b83cf286cb240cb641902ae35231

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e31daa81750454e24dd58efeb43a152d84ed297a3aa7a289c0f37607e8855eb4
MD5 0a266ee0581c92311f34004bb1970eea
BLAKE2b-256 ed2c6ccd791bd1a81de00dc46501c5c981055c6a0e475e3e91c4ad643208d017

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41726067d9f22a5707fa9330d389eaae0eb78107a0aa4b58549c804ae8ec94d0
MD5 782e263b5b725b18d83ffdf29290828b
BLAKE2b-256 a0dd67f12517a395b4a5f69019ce21c34b44049a3257b788d5911a28d99bba34

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a010ca63d896c0e847f5aadcf5a4ec839e3a7a922ca978c02d1e6f5222d7045d
MD5 3c33a39f0b732607da1463eac0f10895
BLAKE2b-256 8b4b89fe96d3265cd9eeb5f3ca9637137d1020717fac2c55b1920aec37e848d1

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3bdd9d27c52073b8f4f5f68842d4a377a5a24e7bf1973793752fb95b42d4a7e
MD5 bc0045c1810ffc045534f2f23dae62e3
BLAKE2b-256 a4829d4d1a9512cc2da4fe40adeffb322b9ede16dfd6071493f1b84bf750b540

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96264975201249949dcb04fb1bfbf2b817c9a30bed0b48f80589f726a2ff7af9
MD5 70ab1ca8d77a4441898ee9b566de246c
BLAKE2b-256 28bd2230c9e462b80377e3e093f5498307e51f03aec601d5c59185cb35d734a3

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0717af1e76eebc6efe0bd3f1f4b696885c17af1c7a4cb113a2bef92f62f28b9f
MD5 a9e14c32e64b00c24271ab194ea172d4
BLAKE2b-256 b224e38e69b289207f03f4e2d81353c93c61d2bce8ec499575a4ba569a4ce5f2

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b5159d966df18cf2872b90d832cc7484385038aa4f9156df3853ef7656f3ec5
MD5 c2a53c16f652b15368409b85f5b905c6
BLAKE2b-256 b52574b6445e2f9df3ba5c2c13b8a8e74d93e4f131b87b9bc063c7c7d6e293f4

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20bad10d56665d0758d4461d64d11c7cc9a553ed1ef264063598e592cbee3440
MD5 128d7c5068ed8b8d8e868a82501b1222
BLAKE2b-256 b1f4fc6bd923c81bd455bf9da769076b0d1bce66c642e9dce613d2b6ada57a52

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73618f790c93c63d9f7f5f8c43a55c758256badffcc209a9589af4241ac99cd5
MD5 b52478b4512155ee955b0306ae940468
BLAKE2b-256 4dd956e411c73f6e2882b3dd0f1066c3fe31d92b60df849d825d948c4ff93e7d

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9083ae7f946b896e1f0137dba007f9b0b145729132b8046f4615639022914844
MD5 43fd552e73de5b8e4e4f9205d6a912f0
BLAKE2b-256 c756f79db34154eda68a577c1de18db6927c3af6322caf206401d624ed74dbbd

See more details on using hashes here.

File details

Details for the file color_parser_py-0.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for color_parser_py-0.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 877f9bdf76383a6a6ec6deda287562aac3043f77cc6c8ad5942a90ef06feaf62
MD5 7756ea0764bd32a5ca1fe04857e44fb3
BLAKE2b-256 200db4daa9a97b33f0c168b3a1b27c624cd37588cd5cbf205ad42967aa177948

See more details on using hashes here.

Supported by

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