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.

PyPI version Python Versions

Installation

From PyPI (Recommended)

pip install color_parser_py

Pre-built wheels are available for:

  • Windows (x86, x64)
  • macOS (Intel, Apple Silicon)
  • Linux (x86, x86_64, aarch64, armv7, etc.)
  • Python 3.7 through 3.12

No Rust toolchain is required for installation from PyPI.

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]

# Validate colors without raising exceptions
is_valid = ColorParser.is_valid("#ff0000")  # True
is_valid = ColorParser.is_valid("not-a-color")  # False

Error Handling

The ColorParser class validates input and raises ValueError for invalid colors:

try:
    color = ColorParser("invalid-color")
except ValueError as e:
    print(f"Error: {e}")  # Error: Failed to parse color: ...

You can perform validation without raising exceptions using the static method:

if ColorParser.is_valid(user_input):
    color = ColorParser(user_input)
    # Process the color...
else:
    # Handle invalid color input...

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

Features

  • Fast color parsing powered by Rust
  • Comprehensive support for CSS color formats
  • Type-safe Python interface with proper type hints
  • Consistent and predictable behavior across platforms
  • Zero Python dependencies - all functionality is implemented in Rust

Version

Current version: 0.1.5

Project Structure

This project uses:

Development

From Source

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

# Clone the repository
git clone https://github.com/rusiaaman/color-parser-py
cd color-parser-py

# Set up development environment
python -m pip install maturin pytest mypy ruff

# Build and install in development mode
maturin develop

# Run tests
pytest tests/

Running Tests

pytest tests/

Type Checking

mypy python/color_parser_py

Linting

ruff check .

Building Wheels

maturin build --release

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

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.6.tar.gz (9.0 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.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (489.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

color_parser_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (514.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

color_parser_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (588.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (494.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (334.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

color_parser_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (489.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

color_parser_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (514.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

color_parser_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (588.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (494.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

color_parser_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

color_parser_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

color_parser_py-0.1.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (489.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

color_parser_py-0.1.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl (514.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

color_parser_py-0.1.6-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (588.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (494.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

color_parser_py-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

color_parser_py-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

color_parser_py-0.1.6-cp312-cp312-win_amd64.whl (174.0 kB view details)

Uploaded CPython 3.12Windows x86-64

color_parser_py-0.1.6-cp312-cp312-win32.whl (168.0 kB view details)

Uploaded CPython 3.12Windows x86

color_parser_py-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (489.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

color_parser_py-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (513.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

color_parser_py-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl (587.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (494.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (333.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

color_parser_py-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (282.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

color_parser_py-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (284.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

color_parser_py-0.1.6-cp311-cp311-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.11Windows x86-64

color_parser_py-0.1.6-cp311-cp311-win32.whl (169.1 kB view details)

Uploaded CPython 3.11Windows x86

color_parser_py-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (489.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

color_parser_py-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (514.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

color_parser_py-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl (588.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (495.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (334.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

color_parser_py-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (282.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

color_parser_py-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

color_parser_py-0.1.6-cp310-cp310-win_amd64.whl (174.3 kB view details)

Uploaded CPython 3.10Windows x86-64

color_parser_py-0.1.6-cp310-cp310-win32.whl (169.1 kB view details)

Uploaded CPython 3.10Windows x86

color_parser_py-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (490.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

color_parser_py-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (514.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

color_parser_py-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl (588.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (495.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (334.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

color_parser_py-0.1.6-cp39-cp39-win_amd64.whl (174.5 kB view details)

Uploaded CPython 3.9Windows x86-64

color_parser_py-0.1.6-cp39-cp39-win32.whl (169.3 kB view details)

Uploaded CPython 3.9Windows x86

color_parser_py-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl (490.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

color_parser_py-0.1.6-cp39-cp39-musllinux_1_2_i686.whl (515.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

color_parser_py-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl (589.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl (495.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (403.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (334.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

color_parser_py-0.1.6-cp38-cp38-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.8Windows x86-64

color_parser_py-0.1.6-cp38-cp38-win32.whl (169.0 kB view details)

Uploaded CPython 3.8Windows x86

color_parser_py-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl (490.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

color_parser_py-0.1.6-cp38-cp38-musllinux_1_2_i686.whl (514.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

color_parser_py-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl (588.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl (495.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

color_parser_py-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (334.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

color_parser_py-0.1.6-cp37-cp37m-musllinux_1_2_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

color_parser_py-0.1.6-cp37-cp37m-musllinux_1_2_i686.whl (514.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

color_parser_py-0.1.6-cp37-cp37m-musllinux_1_2_armv7l.whl (588.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

color_parser_py-0.1.6-cp37-cp37m-musllinux_1_2_aarch64.whl (495.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

color_parser_py-0.1.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (334.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for color_parser_py-0.1.6.tar.gz
Algorithm Hash digest
SHA256 9b5aa1540c1036d0b0cfe0cb48075f2a1ce4a2130b323bcf1f1ca72a19497cdf
MD5 09922a62a7c6ec99e9764e91b5eae44c
BLAKE2b-256 07f518714e60c52a8f19bbba5ef17751fa72ddc783bd83f9db6670a4891c26d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ccd0c264ea337f28e0793c75caab6c72079e616b8e351ca550a1fd93a30ed1c
MD5 3c2844a7a55638a1fd84a9bfc116a47d
BLAKE2b-256 2c74aab5b88917f3cc9835217ceb0a0c5c788ee48ffb04b1654105e8599e39f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a0cc762f4f8d19a96fd0e661af19d5fa6f2f440d388a08f21f36c45daea7edc
MD5 575e2032ce4acb30ab9e269275c5deba
BLAKE2b-256 64604b3af0b79586a517c8ad2ff8c094ac4e9b281ad89760852693db9fb4bc7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a1aa3e5d3a39a3a8fe06f98c173de3d0a071bd0565f624ab7f39ea61d89601f
MD5 d815c6390186c6678a8370934a29c130
BLAKE2b-256 1bf685d6860f448a5c4416c71e88d379e332201af5ccbf0cf93478462413b8b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4edbaded443ab062fea98cd7c681efb47a0105964fccb95709b739d1472e9a70
MD5 eae2fb88a9aaa3f06ffd590515e699fa
BLAKE2b-256 06ee202b4766c555d41ddb8eb2d163982f86d0115f66e4969549516da8299145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 570f3a616e4cb6a26237becb51f128ce6498d5627875c432dcba756111063bc7
MD5 8178384c3e3ce20a94ce2951665bc92b
BLAKE2b-256 6a3d884df7089b48daf2a3617b55aefc710bb6612a148bbc7c9a28ede5b942c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e426098e723bc3db22a95ddeaf4aa3c558fe6e06d31dd188c5b358819056de4
MD5 d80081ad275d85d9ed5bfcef6d566b49
BLAKE2b-256 b805ececd16952f0ae5b42b4ed45f14493c7f3aae449d29c82c25b7889018a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ad7ca258b87f1b8d458d69cdd67c1a1a4aee0e51a4e20a7dbb94d605cca223f
MD5 6244ffb4d9873f44933bcdc86c231536
BLAKE2b-256 ccb5f13fd46180f48beb7061bcf1d90e293e971da5e0e39807fe1c8018490059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2321abd3ad3d6c4435044bad6045e722d545f4d5b89950f0119332e5cdf5e14
MD5 75ba448243958072115a174fa689d3b6
BLAKE2b-256 f6b523547cef95829b72ae13dda9a32d981f3b5c0b8fa9edd5edf1bfc163e464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32e316d6a1a178e2ec7fa43658d3e606cfe879c6305b813cc0cbb6ada43971f5
MD5 59cb3d4b6bad10dcf74773e835dbb337
BLAKE2b-256 2dbf5c9c8dc293a1e61fb155a6a5ab877a901fb54d53828112a1b742d97fe1a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 09d4aac3fd087c2fbfabbf07e0b0065a3ac8565474b69f815a722bf6198e39b3
MD5 a647053bdb5c107b17264bab58d93cba
BLAKE2b-256 168d3a11c7d134675cf1165b6db7138e3ed83e39824442d89be791889aba4ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d25bc130fcbffd04fcc63b4e9d7c612b51258e1e8384da512bdb2e75a6502a9b
MD5 9cc8cd579505ca0d5414a0c46351be71
BLAKE2b-256 1b21981279248ca59c2991f3ab7a50301aee3049a51f4d01642dfd032963453d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff9b49740402dc82e2a896d9f7700ba15e57bc89c1f0c218fe84cbf948b6f0f1
MD5 3adb2d59c4a7d835f29d0e8614c4ee1a
BLAKE2b-256 199a90f81cc1ae518e8c0f609b745160a83d6b84cdfe7defe864dd60f69ace82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 039d242e99f69750c03c0a86bbe276be26ec4de54759ea86b021d66d725c79d6
MD5 f094f3b0b0757342892c0e477fdddb8d
BLAKE2b-256 6e025cd9a1cbc82213a440578baa3ffe54db27e12012d988a5df430f7ad4c547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e437949bea376e6d8acd740330107785d978a787d723c9547c2bc6ebc7e5e7e4
MD5 444fedf6b2061565179e90bf62dcf1a5
BLAKE2b-256 3a3fe471e68f99e4f9760c8a245f18880619f7948e9180b85d31c08fb16f5176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1826142eda1f5813001855ccf928b16815a4aa7623987a3d26d4d5ca73bcdec9
MD5 da03efb124cdf93398f3b440ce20c0b6
BLAKE2b-256 2cf0cc78bd885b490228dddb4d127d766c082482d136d197539b7d1b6b6e1f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bbc98c4252a1e59083332d10c2eb3bb007d5ef73422858c73fe083d2fbb7ab7
MD5 466168bdda062c78ed37c1566c52155b
BLAKE2b-256 e777381c1938bec9684161082e9d7788f1c3e24ae0b9239c8c444412f9ab78de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81ed7e80ed876e4cf591d884c62838797051992ba98d53ec38aea6d7d239abb9
MD5 cf2917a379f73c40617dfbc786794cb3
BLAKE2b-256 d7ed014da85fbc9025c4f7c824d39464b64e2b933ccd171bf420f71ff30a3f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caa45f5e17d178d34a6a6b8c8db69ba338799cc27ebfa3ae5f52212f57a7c79f
MD5 7417bab51496c83ea94e5af733a4f7d6
BLAKE2b-256 d026a50e52e3af5c8913dc3f4794277bbbfc351a380ef8edf040097205b6139c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bde9e3951d9c30cb2d595ee2e29716eabf966d91c07998dfdf6acc52137e9ac
MD5 b906ae87406e17b14a993f82db1a51b3
BLAKE2b-256 3762a4a32246d216dad75ea42a3a59d0c01e9d33e1d19229babd539e72e06819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9b8be7d7a3423065e96d07eab0c4b31796a1b2dcf6ba22a8428cc493446eb65
MD5 d141ebc022d742f1e4747fc4e2f67111
BLAKE2b-256 65ec5e89738986ac6d47cfc865d977ba01f33f5bf3029df6d28c343af0f03151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbc4c239b82c8134d6ea6ce6700761494b901db7b0e1a5c33796f871d545098d
MD5 134c0161fd9ee839864e771cb35c9620
BLAKE2b-256 d85cb94c95455e9e380761c89dbd6b3ecc01163841868797999aac0ed25dc700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 414b5914df287c0de5f77be57ef3f21f048ecd49278699707bc31eb719d1147c
MD5 1b190e4089087ed0e79c36c49d458e2d
BLAKE2b-256 fca393d201a816c67cf37776c0df345d50284a215773405bfc123e12ff3d7267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91f5532c6ce2ad2d86474040b9517a5deae3924929b0e5c141d31b2818820c9b
MD5 e263965e9b6b9d01aff0d3647b2b0f90
BLAKE2b-256 e261201d4452d243f9baf0e6a334862e6899d4d1ce1ff5b2c49f0b4c41e5369a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 367f0d6eeb426d14a6f20179ba40c2d6b84f7eeb80da0f1cfe8fa3dd79adeab4
MD5 0c8c0784e9e8fa251304da73a19865c6
BLAKE2b-256 0fe07eea7f098a9f26a19e90da065c98f936e509fd959835e8ebbd340bf4fa6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3411792c1c957d2889828b97a6fcee4c842005c621982129d93e056fdc97c2e9
MD5 b036455b5a52ad87f1ac5cff17a48008
BLAKE2b-256 a931a67c79515017974748f069b5092d764a518d781b06b27d11ddf5c68f63cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 461ff7a220f96cc3b0486a9dc66a19d89327a93ce330f4de034a71d6e693f910
MD5 543f366a0f2084d65815c5665a678f38
BLAKE2b-256 b281444cc0aeae6d04b54cb1739c4fcf1d8f0b68250a5674479b744efef76de5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eee4a108f4348469a9bec969342bf02a86509a881cf9d499f5a64c313b49e5c1
MD5 d2e4ea1264cb96dffc5ad41e5167932c
BLAKE2b-256 dd81e650d15f0f1f0d07e87e59aae73dffeeecf654c81c3a97db42046a891b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ecdfa9f6502c9f613a9e81956eec4f1196f7d9f54b91098f577b9cd1445157cb
MD5 47b00fcec3dacde43304eaf85cd63036
BLAKE2b-256 f020dfd51e1f6b2264978c7fb59570a9fa9b4c18849c67aa81563053fddb8062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e866504db15ae3e5dcc2328f01a49ab0ee3d18b7a3717d09822bc4a2d3d12dd
MD5 f75bb270aca0d1d6b0f4976466b37ba6
BLAKE2b-256 699cdc0111a09fca766ef52a284fd9e887759612551a9babe569d506e59e6efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9b9552652e6a1cd48e13db77a750a714ae51812ca0e3cd86e56e7b72c2770f1
MD5 35174871ae753cbf5e2fd4d88f64960a
BLAKE2b-256 718d7c7e2f5b64bd5b9c8770a879e4eccbc29b4e93667ad0118c20182294c9a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f3260a441850c2c48bacc807f2479bb35cda07f92ee1d020e729db101a4283e
MD5 0ab0ba2b1bbd3b9a8ad7264b858d19a9
BLAKE2b-256 70633da6c1f6fdfdc86c69f172d628a54c08b6bfd87eaaa012eea550eca5d27a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1117bb81c9f065e0e8223558d69b811c45458d05f50bf3447e960e1fa70ed91
MD5 c9cfda30bb702c1c91da1c68e7a828ad
BLAKE2b-256 1b58985613529e4d812002f616c0217c21229e795f438868923c3d79a317f417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0adc83ad766717a1f4f140850adedd0a2365d50f814ab4c50feb673760e24321
MD5 0ca22803338c6c83ac6a3a1f1a8371bd
BLAKE2b-256 1a424f93a170927db85b3501965e39716ff7fdc6f9d44b8a88d5016d2dfb26cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad937f64e9936f2af756f366b9cf9f730a8d7f2e43ef11af4edd46c3aeda47a6
MD5 b80726b6e4eb259a2b7a99d9b09c2832
BLAKE2b-256 4b46d21733d6456789581f4d03bea95927d5155c19e8fc7b871b6cb4566c8049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08c8d28e3bf5a223c63e72e2839ffbf31c7556a2257716a295472631fa1f2fc6
MD5 70b538e21c7215d14a902cd1e15d180e
BLAKE2b-256 b8bb9fd4391af2997bb17630dd8ef4bfe9562653260383c33b6b8b6dc0a4f3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1534d1e5c9aa734218720b00d27ff432cb2652e4f2830ca0ac3bc7c4ed2ec0cc
MD5 fb1f5a5d8130395a53a1f2d82df5c679
BLAKE2b-256 ce7e75bfb3f0acd96146777084959e3156f31b7515b91169847563cf6b0142d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d97eae59dce0319f6b8a23851e01f6c62b2be6d163fa663c21051dd426246c5d
MD5 60b221a5a0041020ff73347c72fb0ffa
BLAKE2b-256 fa6b42b0419c32abc85622f10eef7d1780106cebd63c21c5696f7845dc156b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1bd730fcc5f22387f2a19ae72c2dcac8c7660259e5a4da7412eea09977ab5244
MD5 8cbc4447fa055872c4b4dbfd848b9073
BLAKE2b-256 30b53d74f5a7c0ce5c5b601123f384c331ab9f88f547862e06f337646b2841fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3756d1c40950063a07c408e05b3b1c3afafabd77bbc7bacb19f711bf11e5bea
MD5 b4abba421012d5f054609721ea454710
BLAKE2b-256 2607983a8a7b87529da8682d8150117da699563b9bda03a95fb709c4a12bc0d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee60fd474948330f8a31d253dabfe42d7c9ce1afdf8296a15e136f1444400950
MD5 c6a308c0348b004a3c87289702bd7185
BLAKE2b-256 3badd9826cc15a8df988b6bd98abec51ee894bf129b03b8c07b934a6344de7d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 303c60733576250776953abc8aecde8d7d61d480d2a72718f2575f6af23d697f
MD5 e01062c15d26d757efabeab77f18fc72
BLAKE2b-256 c62262653ffa76317ce7b6270a2f68327f0d8c0f9f5ecce4e851620ef217dc76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0158b20d7d363688ae47db276e4eb423f38e5788983566b5b32bbbf4bd19fe34
MD5 07d104c78aecfcc2f5fbe03b9c1a84fb
BLAKE2b-256 c6bff2425e6295d21bba1db3aeb61438740dafd386102a9bf27995222da0f4e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 177e781ccd8362d9534babc44db830dc4cbe0a4f14bd035279bdc1821f91b086
MD5 14ebfc289cbb8230940882a71d2291a5
BLAKE2b-256 d0a523b90afeca4a88ab22b919ea5c10181ffcf02d9b000cad5278ac34044bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf9be1d88f79818d7fea4b8524abaca54dafe4467f50753d30f4293ca607858f
MD5 05598dc9ca937570f1e3532711ce4d7c
BLAKE2b-256 dd3716b2ed3e153815445ba0d081f94069d085b7990552fb18050d9be0fea13b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 138ef5e2509ac36795f1adaa7820a6903a5dda4b799bc4001662e91219efe18c
MD5 5fee66cdfe50bc477e4515b2bb9facd7
BLAKE2b-256 3987a15aee8b83cd469c5b20155543ee23379f2c19950cc074ec02ea35cd512d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f14c75c618ee1680be8299a2bd34faa7afa5eeee93ae7c4099d854ce8d7968c
MD5 d7a1735e44e7c3d13a0c55006a32fe1b
BLAKE2b-256 58c32da2862fb347ed3671566e20de3ab7d1bd94aee056c9f52861e9de4ddbc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3616d41d32a9ee82cadc80c489e830788bc748c9aeb31eef3e4853c384393a2e
MD5 dacd020d885c25595531bf29c78d311e
BLAKE2b-256 42dd90c085f50d6af318c436284cf042141800fc50555be56e2ce84b3daf3f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48e529ec36d78cb567e0e51f7af4c1e2f54d598001c30002b65bc747d0548e72
MD5 c5b52f2b1143849d75557449a96247fd
BLAKE2b-256 38e00bbb3f2bb1f6a4647c65b7635c705e0fc37f5a107d3da5295a2e4dcae6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8262f99a5f455dcf7cb08231b5f7cbb1bdd6f65de0746ca8bcfd297a26d604cc
MD5 1120af6e6e7f43aaedb45957b4688672
BLAKE2b-256 bf25c78a96c7fbe80f87f0afa51ac707c38e0e37df90b078206338503b17527e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c29ed2177d17214343a6fb38cb20b98f8857703148c5f4029c76a752bf86b98
MD5 aae6380ce64978d0f24dad3e0ae14b91
BLAKE2b-256 212f21f6add0b0192327495e79b9f4a08395ebe8920f9ce91353d1aaeb0836b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab3980b0f518c0f956b7a851d7d3c6afdac96a582d0ed8272a1c521b392885df
MD5 ca3085ca2be23a2d255e04fdae8613c4
BLAKE2b-256 3df8ceb7862e77e93fb67b73391cc57c010dd57da0d8c110b96a364eef0a88a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ed1c20f1acfcd415043a07c8ecf9b2ed4186dc970c4dc86bf55d8bfdb3239090
MD5 5dabcb28754064d88bc6280a8aee47ed
BLAKE2b-256 f674b715bbf32bf6a858b3caf5c62865e92962a929523df8a54b95263ef2fc33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a54328771a35eb18c6df9040b05c37c5dd1acc0fa115fbf7530a9ff632153e2
MD5 a14b47a026dbe7065bf7e2edf0abbb44
BLAKE2b-256 dfcf7afcbddb543328fb159b215fd279c447c618482a36dabbef7bcabb7cc652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20cac0f2fc8919f0876890d44052e3695869a1ab5a90e7262399801f71089f5d
MD5 00280efa40ca42666d0dca300d04a8e2
BLAKE2b-256 3ffd9f03a386997af0844419ac04adc0b51aa1948b3f38eea2c4a490d9d9cfcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7bd84bbb6a36f33fa6f10e1352fdc62b86c620610805c2764496bcd0e84d5abe
MD5 769bf2c91008441c14b9ff21868e61c0
BLAKE2b-256 89c4fd123566ba26071f5fa45dac751e4df6881bef674fc92eafe93d29e47f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 92ec2b3cde6e90032266ed24a89155560f8dffccebc3162c367a9e6a9edd9304
MD5 52d4ed135f778e9fb6ef17e2be6be1ee
BLAKE2b-256 677e6cbd8a3710b808cdb62bf66b10114ff97cd1df2aada6aa218e3c2de3600f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39b22f9f1008eb0d3f05da5515cf3eab83f60bff5c965b0824946c3bd6ee4c2d
MD5 4725f4170d71c76fb061cca640f269f3
BLAKE2b-256 3aca8d070f10b84c30d8d686d9b0a47dc1b4019a518c457b557062d5b3fb57fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ccfc725c104de4134e46094b56a710c498742efc4a47c806cc58db5648fb68c3
MD5 872e11308a8f6e5d634862924e6ab0d6
BLAKE2b-256 8a78a0f86e5b1f8d1495be3844fee6e441896330ab158aab19b5de629f8d9577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c89f959b20c4a06678ea15f45ab59177b393aa3c7db9597f22a15c76d8caacf
MD5 9c804cfbf2d6c486029155b4947df939
BLAKE2b-256 26a7f900ad4fe9da738cfa076c5dad20f12dc7f4741b3656380b5ed0f5140226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27ca5418d6373cd2172c91c692cfb91a92218c3bbc724c322e995a1c4f672112
MD5 b71919331c8e44888cbfa5904d1f7a25
BLAKE2b-256 6b4c0b9e76637df41be6f65343e867f75519b132c368ea4312fe715ec7ea243e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 068c7d3e2e042cd4dc7fc4872c9e8e2849c4baa58b40288a0bf19592fcace39c
MD5 e0de71014d394564378c05093847cc66
BLAKE2b-256 fc7f6b8ac94ce65b428e8ceda0ad02ad6d40e9432b6072474a91246120dca56d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b5ca28759833a2f704e5ff1710f69a124da17aa31ee5636946cc1a417359c57
MD5 fe91a233d7871a0e8003d6e5e5259b25
BLAKE2b-256 39ecf91ae55eb6e0a00c3868e1fe0cf2d06f569a5b85ad8feef4cf411abb8c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8455180369c3aa7cfe11cfa4558f0a61134e804384ed83fac4cfaf09f7d3b3ef
MD5 2a6d0ff5acd7a455043bbc6538a6be3c
BLAKE2b-256 4765b96a84e2a1a918f2258b3318b77debc5c34fc19f6d8d050523e99afd0585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21a5174012b4fe1cf6f2f1036c36651c5ff980d8fdf12fb2a22ce19b1de65467
MD5 7c347f2bd2452bc10cd1e5633ead49b3
BLAKE2b-256 50fc9647c75223a679a27737309579889c1dd91cc4dd612ef784a6ec52372fba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68cbf289cd15c27e9c4556b652e887105d76134a9df806b1074f30264cc82ed0
MD5 8dc1449734c41ca83fceb7f072f05f23
BLAKE2b-256 2f4bc9d8efe50141c69cda424a2bc54baabb1edd339794fb64546e9fd0056dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32754335708de893d3cc203226874ec32842f476ceb6843f7c8e15140af7ef5a
MD5 f98945f3535e92287a6bd727a68ed463
BLAKE2b-256 003ed4eef1fbc1abd9c7b3d392aa6cf3352eb68cb045dbcbdcbe8d5bb1323fb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 598eb5683e6c97b852816a48c50e49870c1dcf53a4888f86e6a9ef0413f73f33
MD5 f44daeb7a1cd02b5975bf1a45fa9bf26
BLAKE2b-256 49e65e0fb8ece70c54e9f4e32c620ee2cb8145f69b664270061a7cb4fb70f4bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f9eddd7ab3b50a85f0faf6be3694494680113e8a5e44ba1524b31736d6b304c1
MD5 9c0e5a7dec9bdf5d703e3fe4f0b8921c
BLAKE2b-256 a0041dbb3e1efd9d231a49f862ab7f5fc7695c8526d0933a2b6aaed68d07bb36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c0ed866df800f693aec674bd16abe7550f362decf287c767ffc9cc02a9f5153
MD5 de465e63954111604d8b0a8fad020ed3
BLAKE2b-256 d40fa14c78b0e3f09d6972e0a60688d47c634681d343bba47850971a58d06590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95dca73d28936885285a849ce4111c8262d9b7cac1200c47ab048add1c70b9c9
MD5 feaec1db49d3a1c5cee82c28d235793a
BLAKE2b-256 fd61e6755892265bf90d9bcfeb4468576df108f458a8f31e5f2880e7c2611c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d31232fe4adf41a4920a09b71041aa666cbca625a2c805249b3073d048e86698
MD5 c1fb42f2f17c54500cdabe83f25fb10d
BLAKE2b-256 8b8d45cf58cd40c62308554c1d3d915c185d0e7563cf2b297e3ed3085a9cf052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dcc7e146e060c6da2ffc26bd2250a898063e97376cc423300520c2451c493c8
MD5 3ea5072fd26f7f738322bdb7f6641734
BLAKE2b-256 462eca4230329ff29f129d70d1e7d88d62fa9e8914a6740370b2ec338869e2b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bee554b570c87958fcc52fa8f1411d654f9db70aaf796c7396ea732707a147b6
MD5 d6754ef02d97f12a32e1ec2e48e37a0a
BLAKE2b-256 83da70c12647e2403cafeeb4a3d7fa5569e99cb87d3cd2407d709f977ecf69af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30b6086dc15d2063f5ee5cc57cbb90962bca90bd582667b7012354f89c136476
MD5 282766a541eef341d4b7bc1560f74fef
BLAKE2b-256 664b02cb03f2fac291b3922ef91be746347ceba1afb747f0e041356dc7541a90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5474e86a9e5d2db61dac068e29f059e23af96598b79c9db1618cd4b97224a005
MD5 f34aa937f4ba533257c67b28ef701a74
BLAKE2b-256 5fe6a5c517509d98c07e3e076fe41dea46b94e63cce470d7e86ee42c88b8a393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41bd2cb886120b60476e0972215aa30fc04d9bfb040d9d6060ce417d4666e20a
MD5 a2d4edbeff797a8fba49d20b05eb2364
BLAKE2b-256 e3dfc8941dfd4522693c94489aea1ab3db9480eb715ac2dd2b673cd004750054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f12e9e86818fca6a1c3bf9179068510a02370f6c30b8a03ac5a21981aec90fc
MD5 c72e7aa2c6a3d206265f9ed2cf33ff60
BLAKE2b-256 405c0eaa131d61425e0a8e8c2c62d2f7d6d85c54440adb77a44e3a96273c729f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 506a79e72f096ae3d745a2a6799f9703359cdb666ea7689733a775a6e89d51d3
MD5 439dda8203fcbf35ac005bc59c2a12ac
BLAKE2b-256 8d60642e25a5dc36c67aa1c28b90957ed74629312c4cfba5f19c72ac2f333c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 199b54b692b63e794aa8ecd64704abad809118969b20719507aff8253117cab8
MD5 84a0b0adf907a37311cdd81b04de4203
BLAKE2b-256 62e8882c00cbf8ad6188f6ae6c2743387a48afda1a6981bb83e23d53210dd99b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3b03e408aa97f538d7a1f959746994c47dfb4cd5ca312838417240ed77c0a076
MD5 bf0634cc537dc1151043fc18a51c6fde
BLAKE2b-256 01e37f2a52aeff79fc6a150d1236558f5e2b630eeb7c4c4b308321fdd9d0da72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a25f447437c89d524255c23176dfa6e01a921cad5edd00cdd17485aa22cde3a9
MD5 1b58f00ee99dc3a0df9ec8cc9d707c15
BLAKE2b-256 aacfe014744a3eeba4a0c2470ac0912a779e6abf7c5b1c9a7e2d633d8c6adeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68ee6b56ddca1ca223dc3918f4861cded97fbcb0b1ae83c2d4cb0d936c26d1bb
MD5 b8b68bf8dacd9e5ac5c17c6e5b3c0f15
BLAKE2b-256 9539c0d9e3207bc0897ce3c8b0540eed1faf2e30370f1d20c39756fc1548a779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a54653364c8ca13502a40f4a744db352265b360ac0b4fccc857979b386b57b3b
MD5 483c08010a280545085da7abb195c212
BLAKE2b-256 98ef309082487da38bc957ffd165c79c01709e5fbb2099aed6fb7466340949d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 567e6022709e4204c0a1e23e275ae8d49f26e77b52c5203b57c4ae291ce86d54
MD5 9717c359c93bbdaca3f740f248f63fca
BLAKE2b-256 0bf9074e37992772ce15ea33b43d3151950ebec057a69f3d846767fb58962f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19f3a90c7a9912078816fdb2a327c3c0fe810d10a5d4ce2feef69ee571eaa418
MD5 144fa6afe15bd83dd73d571073d9480c
BLAKE2b-256 de497840fbcc0adda20ddc109e622747a8b29eec1c2a0c5b67cb79ada7bad0a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d3c214e7374b01c41c69e743f7eec585456d38dba0a2bad9e186fc03d69a2266
MD5 a96ba9c223e40820b0e6db49cf2d75db
BLAKE2b-256 f4eef0ef0fa56456cfd1b31cc6b4fe863ca013dae46c4279f039e527ebceaa2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f241557ea1f54ed078fc18c6ad86449908b0b2683d46a98e16996c4338a2a5a8
MD5 a836eb49c865de5bf554c1febe078f3d
BLAKE2b-256 41b4d9213b8db86af2ed483590636c69062223e604464e5b1568ccea12008b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dfb46325135b016597f79691a4f0d23144bc930d353539bb5a0be52e0caefec4
MD5 fdaebceab08c0a81408fcb0181ba3516
BLAKE2b-256 1e8e3bfb5fc1f60ff428518c56520ab220c8eddc3677b488e0a39ef927369948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f487a47d0ff0e76f0803ed45d23b2e18d0fad7558a862ef04a8c41d625566221
MD5 4993c99bbfe19cddab93e98cbd1fc57d
BLAKE2b-256 bb786cb471579cb51adf4d57bbe31f0a114694679989a7d8775dba5bf12dcc97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 337dd3d69dd72f2086d34cc95ad019aeaa025814d4ab56ae33bd992743c92f73
MD5 fec9475394f4cf2420c7173880966226
BLAKE2b-256 df9f0048d50d2bb2697937f893c87dc33c093ab9aab3ce7b8fffe594a3c3e256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 652c39475df699fa00248a1a301ab2a6991f2b5c853318b63e1efded1b9122e3
MD5 86436bb6d687bd9ca31af91056d0f5a4
BLAKE2b-256 efbde56dc6d7ffc22c9abe8c81dced6ebf9654313ced33746caa89d35d5ae67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f895c2d9d18e103c392b268a40773f0adae8f630565108301126ea6852ce6a8
MD5 c9233909a468f98480e166c2d028c12c
BLAKE2b-256 a3e8cd583e8268266b7c9ba92455c7c4117bab034a39266221e5b81f96f8c4c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b0c937d624623fd727bd1f005b324d8dc2af50c9ff186ddebe542be3034ec0a
MD5 342053485fa8709e58405c9d5eb86fb5
BLAKE2b-256 11af4cacc20abfa63608288d3bf84177ed85ae6afc30ef283fd90e192595cef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 643449e2c135b6525a85a3d0ee9142b35f18c436297ff51ca11217408dffdb26
MD5 65babf9a8af2304c8d1943e853aecc77
BLAKE2b-256 2c76a73838628ecb222175d725757a9332d8a26c2fe21110b6ca0bfde398b205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 733737cab079563504afbdc2404d9eb3bf6d35c48241254c065949624b201f13
MD5 6ed889273cb7a3ac456cc1a9663f2223
BLAKE2b-256 205cf05062a45d6369f55a960142e7bd25cd2769f27b3c6060e1c3fd4937bded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41fb87756e488b09b84a2177a64a394134a9d941c5c62e82c775a11b3c3deca0
MD5 9660b1de52a4f8671a62e45f8b9be07c
BLAKE2b-256 da14b0b683e13dd6849293e111cb21460ef6f8397ad10158ec70b83a18356fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3cc9b91bf4e8f1a84e8a3ce1d5543d94466187c21193584987c602aba1acffc5
MD5 7c9edf9e6141a089a8ecb6bd2960308b
BLAKE2b-256 8980c8d4b7150269d36d91c615beeb5e2b60b0b784a29ee872ab133b9a90113f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 29c7071fc9b3efceb4a75d2c278d6318c4fa23412b8840ce85a2541b02695597
MD5 1cee98decd11484e098b0d8398480ce1
BLAKE2b-256 a9154e0fb0a20e5ce1ec1698aea762e6a4df039ea0fe95e359761c2d3eb3bb22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecd02881d4c03018744680c653f374ad5c77900cf862a5f92038b88308dc4360
MD5 03be0c26b1d21a4710cb2cd00404cbc2
BLAKE2b-256 dec8e074c47af02da87f86f3b641a9c649f1bc7d30d7ae7ea6f97e3644eb0b49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for color_parser_py-0.1.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8bea5e7ff13d43e475f8f6d571805dbd7575524f5b7cbaf218c6f439f1201058
MD5 14be87ea010fde89bbbf65bcf87ff7b6
BLAKE2b-256 75c0a5fb9357af0ef3df4b6c0d95059a9979a526497be5952125e4fe5634efaa

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