Skip to main content

PyPI Downloads

Material You color algorithms for python!

It is built in reference with offical typescript implementation except it's color quantization part, which is based on c++ implementation thanks to pybind.

Features

  1. Up to date with material-foundation/material-color-utilities.
  2. Uses official c++ sources for quantization backend, which makes color generation fast!

Minimal running example:

Run file tests/test_all.py as:

usage: test_all.py [-h] [--tonal-spot] [--expressive] [--fidelity] [--fruit-salad] [--monochrome] [--neutral] [--rainbow] [--vibrant]
                   [--content] [--all] [--image IMAGE] [--quality QUALITY] [--method {pillow,cpp}]

Material You Color Scheme Test

options:
  -h, --help            show this help message and exit
  --tonal-spot          Print the tonal-spot dynamic scheme
  --expressive          Print the expressive dynamic scheme
  --fidelity            Print the fidelity dynamic scheme
  --fruit-salad         Print the fruit-salad dynamic scheme
  --monochrome          Print the monochrome dynamic scheme
  --neutral             Print the neutral dynamic scheme
  --rainbow             Print the rainbow dynamic scheme
  --vibrant             Print the vibrant dynamic scheme
  --content             Print the content dynamic scheme
  --all                 Print all dynamic schemes (default)
  --image IMAGE         Path to an image file for color extraction
  --quality QUALITY     Quality for image quantization (default: 5)
  --method {pillow,cpp}
                        Method for color quantization (default: cpp)
Click to view result

Image Used, size was 8MB

image

It is recommended to use the cpp backend, as the pillow backend is extremely memory-inefficient for large images. Newer Pillow APIs such as Image.get_flattened_data() eagerly materialize the entire image into a full list, so quality-based subsampling is applied only after full expansion and does not reduce memory usage. While Image.getdata() allows sampling during iteration, it is deprecated.

The cpp backend avoids these issues by operating directly on compact pixel buffers.

Usage

Install

You can easily install it from pip by executing:

pip3 install materialyoucolor --upgrade

Prebuilt binaries are avaliable for linux, android, windows and macos. If prebuilt binaries aren't available, then you should manually build and install.

Build and install

# Install 
pip3 install https://github.com/T-Dynamos/materialyoucolor-python/archive/master.zip

OS Specific

Arch Linux

Stable v2 (Legacy)

yay -S python-materialyoucolor

Thanks :heart: to @midn8hustlr for this AUR package.

Material You v3 (new release)

yay -S python-materialyoucolor3

Thanks to @khushpatel00 for this AUR Package.

Android (using kivy's buildozer)

Ensure these lines in buildozer.spec:

requirements = materialyoucolor==3.0.2
p4a.branch = develop

IOS (using kivy's kivy-ios)

Install latest version of kivy-ios and use as:

toolchain build materialyoucolor

Usage examples

Click to show
  • Generate non dynamic colors
from materialyoucolor.scheme import Scheme
from materialyoucolor.scheme.scheme_android import SchemeAndroid

# Color is a an int, which is made as:
# 0xff + hex_code (without #)
# Eg: 0xff + #4181EE = 0xff4181EE
# To convert hex to this form, do `int("0xff" + "<hex code>", 16)`
color = 0xff4181EE

print(Scheme.light(color).props)
print(Scheme.dark(color).props)
# Props is a dict, key is color name and value is rgba format list
# {'primary': [0, 90, 195, 255], 'onPrimary': ....

# Same way for android
print(SchemeAndroid.light(color).props)
print(SchemeAndroid.dark(color).props)
  • Generate dynamic colors
# Color in hue, chroma, tone form
from materialyoucolor.hct import Hct
from materialyoucolor.dynamiccolor.color_spec import COLOR_NAMES
from materialyoucolor.dynamiccolor.material_dynamic_colors import MaterialDynamicColors

# There are 9 different variants of scheme.
from materialyoucolor.scheme.scheme_tonal_spot import SchemeTonalSpot
# Others you can import: SchemeExpressive, SchemeFruitSalad, SchemeMonochrome, SchemeRainbow, SchemeVibrant, SchemeNeutral, SchemeFidelity and SchemeContent

# SchemeTonalSpot is android default
scheme = SchemeTonalSpot( # choose any scheme here
    Hct.from_int(0xff4181EE), # source color in hct form
    True, # dark mode
    0.0, # contrast
    spec_version="2025"
)

mdc = MaterialDynamicColors(spec="2025")

for color in COLOR_NAMES:
    _color = getattr(mdc, color)
    print(color, _color.get_rgba(scheme), _color.get_hex(scheme))

# background [13, 14, 18, 255] #0D0E12FF
# onBackground [227, 229, 240, 255] #E3E5F0FF
# surface [13, 14, 18, 255] #0D0E12FF
# surfaceDim [13, 14, 18, 255] #0D0E12FF
# surfaceBright [41, 44, 52, 255] #292C34FF
# surfaceContainerLowest [0, 0, 0, 255] #000000FF
# surfaceContainerLow [17, 19, 24, 255] #111318FF
# surfaceContainer [23, 25, 31, 255] #17191FFF
# surfaceContainerHigh [29, 31, 38, 255] #1D1F26FF
# surfaceContainerHighest [35, 38, 45, 255] #23262DFF
# onSurface [227, 229, 240, 255] #E3E5F0FF
# surfaceVariant [35, 38, 45, 255] #23262DFF
# onSurfaceVariant [196, 198, 208, 255] #C4C6D0FF
# outline [142, 144, 154, 255] #8E909AFF
...
  • Generate and score colors from image
from materialyoucolor.quantize import QuantizeCelebi, ImageQuantizeCelebi
from materialyoucolor.score.score import Score

# Pixel subsampling factor (quality = 1 processes all pixels)
quality = 1

# Run Celebi color quantization on an image.
# Returns a dict: {ARGB_color_int: population}
result = ImageQuantizeCelebi(
    "example.jpg",
    quality,
    128,  # maximum number of colors
)

print(result)

# Rank and select the best theme colors.
# Returns a list of ARGB color integers.
selected_colors = Score.score(result)

print(selected_colors)
# {4278911493: 276721,
# 4280550664: 164247, 
# 4280683034: 144830,
# ...

Gallery

These are some libraries which use this library for color generattion.

image image
  • [EarthFM CLONE]
516392752-7f8a2b2e-d81f-4c2c-8550-c55dea07c5bb

This is my private project where the theme colors change based on the album art.

FAQ

  1. How it is different from avanisubbiah/material-color-utilities?

This library is up to date, fast, and uses a hybrid system for image generation.

Download files

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

Source Distribution

materialyoucolor-3.0.4.tar.gz (128.9 kB view details)

Uploaded Source

Built Distributions

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

materialyoucolor-3.0.4-cp315-cp315t-win_amd64.whl (390.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

materialyoucolor-3.0.4-cp315-cp315t-win32.whl (365.8 kB view details)

Uploaded CPython 3.15tWindows x86

materialyoucolor-3.0.4-cp315-cp315t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

materialyoucolor-3.0.4-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (237.8 kB view details)

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

materialyoucolor-3.0.4-cp315-cp315t-macosx_11_0_arm64.whl (211.4 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

materialyoucolor-3.0.4-cp315-cp315t-macosx_10_15_x86_64.whl (220.1 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

materialyoucolor-3.0.4-cp315-cp315-win_amd64.whl (386.6 kB view details)

Uploaded CPython 3.15Windows x86-64

materialyoucolor-3.0.4-cp315-cp315-win32.whl (363.1 kB view details)

Uploaded CPython 3.15Windows x86

materialyoucolor-3.0.4-cp315-cp315-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

materialyoucolor-3.0.4-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (237.4 kB view details)

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

materialyoucolor-3.0.4-cp315-cp315-macosx_11_0_arm64.whl (207.5 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

materialyoucolor-3.0.4-cp315-cp315-macosx_10_15_x86_64.whl (216.9 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

materialyoucolor-3.0.4-cp314-cp314t-win_amd64.whl (390.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

materialyoucolor-3.0.4-cp314-cp314t-win32.whl (365.8 kB view details)

Uploaded CPython 3.14tWindows x86

materialyoucolor-3.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

materialyoucolor-3.0.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (235.5 kB view details)

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

materialyoucolor-3.0.4-cp314-cp314t-macosx_11_0_arm64.whl (211.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

materialyoucolor-3.0.4-cp314-cp314t-macosx_10_15_x86_64.whl (220.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

materialyoucolor-3.0.4-cp314-cp314-win_amd64.whl (386.6 kB view details)

Uploaded CPython 3.14Windows x86-64

materialyoucolor-3.0.4-cp314-cp314-win32.whl (363.2 kB view details)

Uploaded CPython 3.14Windows x86

materialyoucolor-3.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

materialyoucolor-3.0.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (235.3 kB view details)

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

materialyoucolor-3.0.4-cp314-cp314-macosx_11_0_arm64.whl (207.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

materialyoucolor-3.0.4-cp314-cp314-macosx_10_15_x86_64.whl (216.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

materialyoucolor-3.0.4-cp314-cp314-android_24_x86_64.whl (398.1 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

materialyoucolor-3.0.4-cp314-cp314-android_24_arm64_v8a.whl (420.5 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

materialyoucolor-3.0.4-cp313-cp313-win_amd64.whl (376.3 kB view details)

Uploaded CPython 3.13Windows x86-64

materialyoucolor-3.0.4-cp313-cp313-win32.whl (354.9 kB view details)

Uploaded CPython 3.13Windows x86

materialyoucolor-3.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

materialyoucolor-3.0.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (235.3 kB view details)

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

materialyoucolor-3.0.4-cp313-cp313-macosx_11_0_arm64.whl (207.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

materialyoucolor-3.0.4-cp313-cp313-macosx_10_13_x86_64.whl (216.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

materialyoucolor-3.0.4-cp312-cp312-win_amd64.whl (376.3 kB view details)

Uploaded CPython 3.12Windows x86-64

materialyoucolor-3.0.4-cp312-cp312-win32.whl (354.9 kB view details)

Uploaded CPython 3.12Windows x86

materialyoucolor-3.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

materialyoucolor-3.0.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (235.3 kB view details)

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

materialyoucolor-3.0.4-cp312-cp312-macosx_11_0_arm64.whl (207.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

materialyoucolor-3.0.4-cp312-cp312-macosx_10_13_x86_64.whl (216.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

materialyoucolor-3.0.4-cp311-cp311-win_amd64.whl (374.6 kB view details)

Uploaded CPython 3.11Windows x86-64

materialyoucolor-3.0.4-cp311-cp311-win32.whl (354.5 kB view details)

Uploaded CPython 3.11Windows x86

materialyoucolor-3.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

materialyoucolor-3.0.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (234.4 kB view details)

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

materialyoucolor-3.0.4-cp311-cp311-macosx_11_0_arm64.whl (206.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

materialyoucolor-3.0.4-cp311-cp311-macosx_10_9_x86_64.whl (214.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

materialyoucolor-3.0.4-cp310-cp310-win_amd64.whl (373.9 kB view details)

Uploaded CPython 3.10Windows x86-64

materialyoucolor-3.0.4-cp310-cp310-win32.whl (353.6 kB view details)

Uploaded CPython 3.10Windows x86

materialyoucolor-3.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

materialyoucolor-3.0.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (232.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

materialyoucolor-3.0.4-cp310-cp310-macosx_11_0_arm64.whl (205.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

materialyoucolor-3.0.4-cp310-cp310-macosx_10_9_x86_64.whl (212.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

materialyoucolor-3.0.4-cp39-cp39-win_amd64.whl (374.8 kB view details)

Uploaded CPython 3.9Windows x86-64

materialyoucolor-3.0.4-cp39-cp39-win32.whl (354.5 kB view details)

Uploaded CPython 3.9Windows x86

materialyoucolor-3.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

materialyoucolor-3.0.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (232.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

materialyoucolor-3.0.4-cp39-cp39-macosx_11_0_arm64.whl (205.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

materialyoucolor-3.0.4-cp39-cp39-macosx_10_9_x86_64.whl (212.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file materialyoucolor-3.0.4.tar.gz.

File metadata

  • Download URL: materialyoucolor-3.0.4.tar.gz
  • Upload date:
  • Size: 128.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for materialyoucolor-3.0.4.tar.gz
Algorithm Hash digest
SHA256 30b8dde034dce180845b0eaf52f72c5b22cd5b60bd7aff96804febae4e266276
MD5 b639022ffbc0dd9386440495fc1288b8
BLAKE2b-256 eb232e63e7bdfcc1aa7ba955386ad09e3bd8a535a1092d7af501659b63cb6282

See more details on using hashes here.

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 42299074741e0eebb50eaf2e91156379f785e220c5d3c5f98c8a08bcafb7f12a
MD5 c0a96cee9a3d9a714c06eff0e57b5f88
BLAKE2b-256 09704032965878148702cf09eb93d38c503633f1e9cb07e3ca8c6d592b0adb18

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315t-win_amd64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 2762518ce94bdf0f5bf8bd5f8b71d1925c7142cc26090fb03ed882cb4cb57833
MD5 79aae2fc90519454c0b49ee466e3ad1f
BLAKE2b-256 33baabe7d4408fd95841bdf65173b324bd3756f72d86f919310a8a68da24a3c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315t-win32.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53719a2c91c674cc483f48f850c6a20f21556c765a6bf00961500c294fed8f00
MD5 561a4fb85560027717a9587bb98ce63a
BLAKE2b-256 65f6be2dafe1bd7d6f8010fd074178589ea79686ab557ee6d40e50cb26fea735

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1ee29003870cb4b63ca29a667647d04452471293368e3174f5cf4e6cab70949
MD5 a53cbe179cbc5bede49884d85ef80406
BLAKE2b-256 008dd4839641bff562559951c3c5c73137288f36876e3e349632281943c8cafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20b6bb8c0c205f2479830547dab89253e932ba0f24aaf9824517dcd37060a556
MD5 2e31c6d0d575df010a9205230b2cd324
BLAKE2b-256 d8e0a987c70e0f5a2fb8d66fd2c73b3c6b5de92bafaa2ba424cbe2eaf8085bf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 53e910b2bfde5dcb44bd42367aed81f89abada739a98ac7d7149eaafc8b62f6c
MD5 17c12f65e3440f10a11b6fae8b09e6e2
BLAKE2b-256 bc90ec1b63e87c0c5a27a0906dea6fe42e5f310b9e0cea87fdef1df5dfd4ffbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 412504c55803bd6850377d5a0b17846746cf900da70f9beb51e92e8be8992d5a
MD5 6f166597cf3d8cd52e59cfd26b2d2100
BLAKE2b-256 fa457596a68ecaa1ba9e6be1c2d444bb19ee312e9cedef8ee65bfda79413c395

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315-win_amd64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 566fe1353b4408783d77477055e8b6a9b25941cad8e2de75078fcc1947facb09
MD5 03e4c3caf630d54cfdb4d3232661b644
BLAKE2b-256 67d1e47df3c5494ae9c6d0028f26a09ac2c46ccce3f53d0bbd73c3924364bd44

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315-win32.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77bb2f5139a94c49f645e04383026c1c17a0e1764ae98d6e543be0e2dca0a180
MD5 adb16fd0bafc54ebc6d1470533258531
BLAKE2b-256 ec07a99a150e1666a16780ad7e79b80a4a8cc93bd82892ec98bc49edd2ad6493

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5f4f2f3eb6333dfa4c24b75f3f26584ed7e7ef6ceec40da7d7f6698093fc181
MD5 96aa2b874cd261c7f8b30f90f107954a
BLAKE2b-256 049c9b88075657e11fcc6a846b21277e6d0eed5e5afd0728f4001dfd0a06d2b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03a70858fa9f5a284c83cfe6d8b98a429b7081acb2c85aa18ce6b794ec55a790
MD5 f8fbe43b35ebe25d10b07f1eedc3d82d
BLAKE2b-256 4c0f581ea4902dfa7f594190d7fc72d381c59396c289bd771358deb83297f3fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e97b91e998425e6175fa40f936777d118934edd22762db2d0e034ead23c722ad
MD5 9490fbe67e508c608bc2274552a0a4ab
BLAKE2b-256 3cbc9521e7805a25cabc50a9f8470f0542d9600676abcf55ca7dddc7b6a36255

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 845352eca361f64d8dfda18f8751c40d29c582597957d8d0600975b30d7640f4
MD5 0bd4679524339e0a4a93a2213b423121
BLAKE2b-256 2a17076a0418c3ffcefbdc94743ce29dcde73e120641f22b54c4c289f46daab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314t-win_amd64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 636eaf4982aadd4a7b7015b46823b678b91387ec4e4fc070b97c4eb0719c10ad
MD5 11165d4be63371e86cc428dde1e67ed7
BLAKE2b-256 7b183aa6743c838bf7c5c2fbbdf77312ec5eb6fdba48287970df2279976a2c82

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314t-win32.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89f37261bb8cd4d35712ba5aad60e00780fc778ca10511aa1c1af17b6170955c
MD5 8c682173a6e56c0c95d7b1ea1678be78
BLAKE2b-256 11029ece23bb287ccdc67c9cf44bc6921c68f7e5133c52898d08c0200e0bb59b

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be9b4a3ba54f9bd206e492c4c4a72931207f0936b7f420b2a1f0398b496b8c7c
MD5 7c2f4e8d7e73719612ff5d5d64b6b636
BLAKE2b-256 ce2f9e27db764daba894dd97e50f8eb66ef8bb2ded506675a2a8d1b6e18a5eff

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 922ad5ec97a2470945ed98c08c6227bd914f1f5c54d365ab93b80964745276ca
MD5 472cdd2e7ec3ddebc59a0f1d76dd2dc0
BLAKE2b-256 412b4a9244b610adccaf450ae43d7845464f34048007730cc2a522a0ada24e5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1ad75c73d9c77dd123d7efadf0a531d3c3674e603ee352024eace0023fbf12c6
MD5 17af71a01cc671548a9f4794a50c8fa7
BLAKE2b-256 583a3d7e2332ef7e8ef504b50e13a6fbd6419b363f4012941102d99a1e2c4a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4d3bd19fa9dca51410f8566dcaf93d16f0c007b39ad98e0609abf9206f66c274
MD5 74fcb54a38f1539ec91df92c1d3f9ff2
BLAKE2b-256 0c9d19eb831087920e5a2b5c585658369bfa445158e1e6c3339d64ca26cac82d

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314-win_amd64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d423a05b1b29c0ae677215508c5a8e55c61ea5098683e0186e3e0d6fa2a16387
MD5 cb2e76b599dcb33f64c1bbc1bc5cc7d4
BLAKE2b-256 dcef1c04bbad8e3543bdd4758f874742e4fd5e33da26bcbcc56a01ffb72a178d

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314-win32.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69373753a3ae5dc8381be27edb7ea14dc8670399ffbce87b9e12dc3830c7d2fb
MD5 e3a3979d84eeb77e84e04286a221419f
BLAKE2b-256 a070948662443591444c4e101a4058a29e0e3ab8db643af0ec01d9261d4caba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf4494a5741527927071098cb9527ed25531339b838594b493357cb54c0ca352
MD5 b6758b0477e2fb717f28b28bcb805672
BLAKE2b-256 91f1f7d17fd5825a283778c6529c3a2af57eca6fbb9d1ee8a688210ce8cae239

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7b79de72f75c850ceca2c387b5c2099fffa6774352aca53b4433e2ea80d9e9b
MD5 242f3cf7c8afc00f1d84be6277e26c55
BLAKE2b-256 3b179a2b30a417b2908aead3bd0218fb0e58683a88fff8d5979364dc04f3422f

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8669170b05c9dad7ea429d92a8ac86921fdcc3d4fbb73f1326f7eabfb8b07e4b
MD5 193dc775eeff072c45388c5563e8161d
BLAKE2b-256 713e592899bd120dac8bd722e586661f5f2b74d58174e12d4ad831455e2bc0ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 76b325ef0fc89d21f828acc7e309ce3a8b14908b8922a99022aa1384acae2b19
MD5 babd5a9fac6453e848cebebcf4efee7b
BLAKE2b-256 b1e8ff5b1d0635a67545e7d765c50826fdb293536b690a28bb302be05f675fe7

See more details on using hashes here.

File details

Details for the file materialyoucolor-3.0.4-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 8afb469e297b6d3ee47f8e6149943aaa8829838d934e5bc53caf4d4d2f599713
MD5 e6254bf5d76688ee6da39ff4fd4f1eb8
BLAKE2b-256 7622209bdd523c8f710ffc76558194d900c7fad004d43ebc46066c215e7b6761

See more details on using hashes here.

File details

Details for the file materialyoucolor-3.0.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 df9815c45912003ec6802bc60b1d95b46f666592339a20f37334d3f97e87884f
MD5 855aedaad03360335804c0081ff08dd4
BLAKE2b-256 9d446250e936e9a431a87833ea197db9a97751b07bb87655a1e3fd488fb253c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp313-cp313-win_amd64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2c9e6029dea17748f1c99f5315a10657833d60c5abb348e948a438cf56e83659
MD5 65a6fcead5d6a95ad469f108f320e302
BLAKE2b-256 f453aeaf7115c8ae18704d094f05d68f26a6ec2a510bc1272294cfeb33afd84b

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp313-cp313-win32.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 616c84dca4f8506512e2e2a473e5f21ce06b95b84d009b9d9a3065cfdeb848c1
MD5 1ae68034713adbb321917edf5ccaeede
BLAKE2b-256 533e1177b645651dfb1da530133fb9c096b0702f05ef5ec718eae18fbd36e679

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb7a7fa56467fbda693d2337c9752b1b306fec5c59d304bae3f4b4e8f283ee0d
MD5 90c413166fc791d96f361e0252c44d8a
BLAKE2b-256 4ad81ed47f8e29fc6ed999eb9ad20e9a0d44514151eab1f1803af3368d5da7d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 267cc6e99b6b98d5e7d0cc15a56a6ea2015fae08ce17c13acaef28d3fc0e22c3
MD5 5860221321f8de20a44395deb7d16e58
BLAKE2b-256 d817b1be2318cfd66e23f548baa8d45a1c6cabb146a88e8a33c6efc595489a00

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 18c401b2ac4b31733b9ece45a64efa8536d35af12eb44f16378cd8f9337d24ab
MD5 a15d1b520c1f59750ed8ba31a9eadc49
BLAKE2b-256 c6da51e4cb0376a2cc7188f029bc961a78970402a1782b75269e5c2b887b12da

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6715a636eb4c38a66a55c2404667b67136cbf3ab177f245851898f959dc3cede
MD5 150ee983bc2d9d348ca064143fd0c611
BLAKE2b-256 5e82ef3f65168e5d08e5533388898cc0567a2f3de4132b81d9cf8e95a790f223

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp312-cp312-win_amd64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 60471c364271e8376dc17443766a0b6016be81a5bd48f3d6a7288204d62d202b
MD5 bf74499d2f353657a3d605ec387fac31
BLAKE2b-256 902ed9a19b50e42b4d57b5cdd219767d48c2950f1abbd07bc41e12bf07505f59

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp312-cp312-win32.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4fd5cda653da8dc585353dff3909e605b7f5eedadc685acf9e76dd5d226c784
MD5 6d59f1f45d28b6c1cf29617f4ea48464
BLAKE2b-256 8771054b6a435f781961b18a968392cc12ae22fd2ffd23e694c951a65963413f

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f98b2625ec1c3f8330569dee54c827729ce7d29f6cbc1807f21717961a3b0937
MD5 879d4396c110b52ec4c4eda54123ac41
BLAKE2b-256 fa2d80fa01836807ab1a7376c35ab6c22ac0bbaba58738809457fa5b997d7e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4381d71a4d82a015697408f8b6fa1cf2a4340a3395c3305e462ffcb3bb76ae69
MD5 90098d3e4049a8157334e77f2e62563a
BLAKE2b-256 9f8a12c6b10054b5890728028b5c695e1a5d882b6cddd0cc0f80b4b1a939d078

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 31fd419db1e4f4eaaf8776b32908637657a3749ffc530e07cfd33b4f55a889f8
MD5 3150862760a2e51321119e945db6ca88
BLAKE2b-256 32ada65deb27ccb3b858932515ca5c65cf070e81b6c1aafcbbcf39925c58ab46

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cdd2e22418c1081acebe5e65884c49002df2e405b3e3c062df7b61a492786b88
MD5 a2ad425b3ef019eb1a988c036701bf4a
BLAKE2b-256 00f8eff81f10a6109b702d21031c69b17ca3fac0860d6236eb80ae04f1b62d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp311-cp311-win_amd64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 09dd26d958c7512fd9ec7568c5abd6915a976f77b32d985a750b4efb5da5256d
MD5 be68b4c30c7db30c800452aeedd2936e
BLAKE2b-256 fa5f2af490d3471500aff092fc4952aecf2c1cd9d6ebbb49be67328cfb436994

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp311-cp311-win32.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f249e588f3ac9688db685c1e565bb5704ec58fe6f51d8b7190a9381b344508ac
MD5 9ac7f44f4e7e98bd51d9231b512233a9
BLAKE2b-256 d3720b8cd43315598e6ef0bbd228c7464cfda9e8fd7f27c7f2c7b40a2b28a775

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d26092fdaaff6a87cb298483e75bdbe633fdc5e8db082125c488192f5e4de87d
MD5 63eaac4ad94efd04087f3638f4a7794d
BLAKE2b-256 bc77bf9a87042019f94d0de467ee58b9c757ff8ef98840fee511948999e899ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab7a8d1e2ed740a16087a42b37c86cc8694cd17d2e43d140faec9765bc345d37
MD5 7312b941938d91260f2d2a9737a42b56
BLAKE2b-256 7eea16890c5de00461971439029fbdd520a90c615c643fc0c77ee8e6ea5f43aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 072e13f96f1668c0a0a5bb37f00997a84cb4a0d4486a7e79bbea8195ee2a139f
MD5 301f9232036102929fed57c399e535b9
BLAKE2b-256 e14078a2fdeb1a5a93ab67475175b5b61377ea158e09fe0a30b8f62dea51c082

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bed52c30ef0b0a1bf93e0f68e09dfe7f1050b12bc529aca4c8f4d13d9ef0b27e
MD5 0b09c1606632c8c3be32b78e56fd1b2c
BLAKE2b-256 da0fe0c0931ebcf6484ebd8d5fe17141fa66da3633d00e3c5ad9ac8f1721276f

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp310-cp310-win_amd64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 30e19613c3783fd7594e0adaecb0f8fd71f4105ca4d69fd43bcb576c8cbca431
MD5 9a0523a23daec1dd3f0603efc8f896f6
BLAKE2b-256 be31d62cd4fa24754f0c6d29223301c37d92202dd2b348c8251273bb3af79168

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp310-cp310-win32.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50c228039c132510d1c33923d2fc98e7d555a7f960b587ca2f2523604b97b42b
MD5 304384009b092c9b307c73f15d9c1e7b
BLAKE2b-256 05247d2122102734293758f1518c36cbbdc4026aad1f5c6ac90294ffac88c645

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7b9e863103bc737a23f0e787526e5f000d9fc0a667ce31030b0679af584ba61
MD5 79126f6364c373f80e0f6317a9f64896
BLAKE2b-256 1ae8d7bfbfbb1a6cddb5e4f54d887a1e8fd198845b3aa2c2894dc8df94b515d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90996c8c3b5f84b87211d607540aa1c66522602f5338dc1067b657d94158d89c
MD5 5e147584a0b5d50027753da7797a21e4
BLAKE2b-256 31d7335a788d25d93075971ee16ab5da85e748c756cf71f7d9303e07a20e2f8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 567b9b83ef7d2227de4b337a33818ccafc88cefd42cd7c553aee54ea9dd4cb5e
MD5 1b09f57b783eed3e9383da15947dc674
BLAKE2b-256 2f40641afa080ef64d50a67e201e4c5a09ea55565b7db084e13a9064677bfaae

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 152ca73257e75fa30f0d69ff93b6506f85765b811fab5f512a446acb0fa8fc71
MD5 65d91643b5f11d7fe739d43cbe54d731
BLAKE2b-256 dc598e38a9e05fda7963e743a9420b529778907f39d5aff9639e95b546f91a5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp39-cp39-win_amd64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: materialyoucolor-3.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 354.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for materialyoucolor-3.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 145e9a38818bb19401686e2b7e89ba27682317186902c4564755b79aa94299ac
MD5 90f4c54f1ecc402e66a5d5ab527ed25b
BLAKE2b-256 e91f614d2fea972301f4e92ecae172b7c124014c1f5789a1121033bd51dddc6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp39-cp39-win32.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53684427dfc138ee2cf84bcb4717c5e228b13319342f6d828b346bd80b923101
MD5 80b37f1f8c82892a2a28cd0f129429d8
BLAKE2b-256 fd1d202da60b72a90e72f09a57539c8d4fb4061593de400c8d8686d177642e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9eb9bccb642677f3052c2ba45b94e13a7f06ba97fd7be00bc4cfecfce976a79
MD5 80966e331462a9a8d593265475e9f056
BLAKE2b-256 21636d5a43b3673cd76244bb556913f67be71926d2eb201fe52b7893fe4241aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17842a5376c599487016e03e575204f688850049345b8c42a434ad9408bdbacd
MD5 5146825f7b1320f0d0089f4307025174
BLAKE2b-256 a6aaeea8c95f966ab0ffbce1e77f4ea111e71b72b231e6578ef05ad5e3e09e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

File details

Details for the file materialyoucolor-3.0.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 674034a7ffdf65269972837d55021449eae3f97065c8abac08519086004bf9c4
MD5 21b52485e646594dc5a0a0bc222edbb0
BLAKE2b-256 2e75e9c4364e79130efbf472ec9d37ac030445e4e4e24e0e588ae559258ad6ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.4-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: cibuildwheel.yml on T-Dynamos/materialyoucolor-python

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

Supported by

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