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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

materialyoucolor-3.0.3-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.3-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.3-cp314-cp314t-macosx_11_0_arm64.whl (211.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

materialyoucolor-3.0.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (207.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded Android API level 24+ x86-64CPython 3.14

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

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

materialyoucolor-3.0.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (207.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

materialyoucolor-3.0.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (207.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

materialyoucolor-3.0.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (206.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

materialyoucolor-3.0.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (205.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

materialyoucolor-3.0.3-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.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (205.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

materialyoucolor-3.0.3-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.3-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9765035e60eee11a874e41b96bfcf34403bc49acd8afa1a394690d2057a73b80
MD5 d83097bc1875e9dac52e73059a3c22ce
BLAKE2b-256 ceeeaddd74f26a56fa04f00868cf0d8319be70e5cb1790f81c683b16cf132e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 293a50395546eb8c6f4dafe33c5256f67ad4e19292281a529e16ecd6b1504955
MD5 6b1de7500268c6aebfbb4ce84c9cc06c
BLAKE2b-256 610432f7104288aa2a2af37fa2f010a4b21415008732ed0e91d2b371262bddca

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02783e86f3384b63e7e125c4868e5a485300e42680fabb958cc2ed196d91a40c
MD5 fd422e693c859dbd0d7ba1602ca44fbe
BLAKE2b-256 f35db4e391510b5b50a12aedba37423b1ce40fb61ece86e596ab6d55cf7c7be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 538282f4bf5bde979295f6b902c72c25b7a919e49d3e673518977afbcd88c8fa
MD5 1aa14555519be55f6c0e358db8118731
BLAKE2b-256 9f5e95b4e16ae706a6ca1b75e7975e1bc03500c959dc4e13c312132b33cc7ba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea4e3afa4887b827a80a7802b058915bb0be30124490cc10b38b6c935b6a399c
MD5 2ffcf2403d4f918820621a83b4fbe4d5
BLAKE2b-256 1d1b923c33eb12a380e99b0b0d47a8d846b1a2c9d644c6fc31dc16a6d1e082c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c24702e7a3ecf2b01af77bd9d824cbde9c60796e79ab75cd181cb8dfd4586258
MD5 59730e1c31b2b6f5eaa134662eb5f29f
BLAKE2b-256 7c00df81d35c47629d4312f0412f306c6b69da92ea1f4dff2d7ea6315b31aa56

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bf7a05dd88dc0cd5f4bfa75b18a290fdd2ef925bd8a1103dac31659aaccf101f
MD5 6eb3d475436410aa62e27aa365e7cbc3
BLAKE2b-256 9efa0487e6c356aba6ac5ce1bf3b10c238910b795471395af44f5f5b42ffe036

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e9e8b7cc79fccc841455bf649383dc9476fc70972728e54a228be5b1f053fae4
MD5 294b76508eec821737a9f8e036bdd181
BLAKE2b-256 17691c16829c1cd6f5cd30eca5934414bfa0e6e0f6375dd9c3ee5ea5f60cf330

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf4e737257ca23cf6447d4a43f858327caae16ed0ef4186696e5522f7517e99c
MD5 3d9ad2ec550bcd276dfe20bccbd02d61
BLAKE2b-256 88cd595a1f54898d8896f2635d05f0b1e08720fa2dacbd276d12663e28cc84f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a599f8f3f34d41332c548ca3bfdfa0c787088ddc461fd245458041de49b149a
MD5 821f6038aeb24e411f0459a6963ad56e
BLAKE2b-256 34572292d5e334d76263f93755fd50c0709f355d471952df72b9bde0578612cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5219aa8ebf4c733afdff12e717118499fad3e83338fa096cfa3fc54ef42ed109
MD5 5e8abf475eadb5869694c191ae5a7b46
BLAKE2b-256 7be1b1cdaf4fb4a0f635cd1558a92287cd6a8924ca67bad4ef3e70e9d8b1ba32

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 77ac14637ac5e6e1127332f195f2d0407d0a3b3914b884a0c9ba014a9cfe4af2
MD5 0d3ac8c4e2cc98819ca24aa63b74e254
BLAKE2b-256 606b394b5cdcff07633b3b472e76b5b0bdf8a83759bbaa3aba5bface93fb3143

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 cf03b4aaf3e8b3dd24549e54f533cb4fd284a0c8e50aff4b5970974381808b69
MD5 b962bef65ae037ef78053c93547e118b
BLAKE2b-256 008c71cdd6efb91ca253b11672af6d4ad30a745b869d3490fce8db86f4a46101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 9b9fd5f8af846d7d6372ee174cfbb8c15813562fdb31ad9da10365f293442041
MD5 9838ec0bf850495e07e2ffb498ebafc6
BLAKE2b-256 d3d6b0fe16bed199533efbcbe890201b69024ebe57a99f2a22d5ff98d0ad4951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 91dc5eb16bb289fcf19d65d4784baad53cd06192ebafb3967b1b827ad7cb7bc9
MD5 8158ab4f93b20ed47e058857155338b6
BLAKE2b-256 0a4db222e7ad801bfe9a2fd60d863c63f22ffee287b5d4a698279fee22bea3ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 09f26b67e03183a05deda4390e8166e62565cf09ae6116a6d4738f70a4cf8442
MD5 fa226218126a642b8d930efe0264d4f6
BLAKE2b-256 c679cd4616cc801b450949cf6ad1e0ab03b4e11390e13f0c32950200a5af4121

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faf65e7ff8885b0bd6cb13f5d0f9b8333222402c9c14530da53031e18ecaf582
MD5 7838f5323467aecfee4bb303f93b5bb9
BLAKE2b-256 c5efb4379797c7a910ef16c72ec55c306e6bee15b4ebe72c2e2dd4a96b03b2fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4cd85d01f56f7e201907571126125864f71180872c1ae2ddac866333cf77866
MD5 15eb24bb1a3c40d8212c4ef880589fe5
BLAKE2b-256 69fc60eb9e142d916a7f2c23ae0d1a20aa17a631b626ef71a3a8a440ab94158e

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f449eed1c57b87f6bc572ee3f2f137d53629941f2884457e17fa7857d58f304c
MD5 162c7a750969b3549a22130949354767
BLAKE2b-256 21b538e9f3dd9c5002faeb8c7db9c1bcf8f9aebf9d6f3fedb3270d11c56c897b

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90bf1d5cc7ac49dbfdd6f88a4639e6bfff5841a9e6ef805a5abf4c78c184eae5
MD5 d126cdb46e7ed997ed0078a7727c3dd8
BLAKE2b-256 b5243ebafa4f8bad7b6c69efec59363615f8b2fd3a9abd1460c76bc87a7e35a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e52d93c2e507b737b2a1e2505ce9504b9d0200eee652892473ec19d186673be7
MD5 e7d362d3434a45f3841e37da1c9df7e6
BLAKE2b-256 c89fe09ad72f72c5825a3211585c3500aecc222e8e646272d470cfb5d94eafe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0741c64fb1f5caada83d7e189329ad5ff4400c750c11132644c52ce46e0b0457
MD5 a1a9611ff2b4d17bfbe75c93d077f78c
BLAKE2b-256 672e2a26f32b00eff36858e8db1a9230f3f7fa75c9becf6ef493fa217519347a

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44ed946df2709d1923935a55803121dbf1711d62b716bdcd595e1f1e2b9de103
MD5 78b76d3e91153ab25ff3b381c20e1f38
BLAKE2b-256 ffcab8f8d6778f8804fc619fb9e8515be5ba47b2e7ff7f7c4a6c66325344e055

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50b3183f1117cab424717a4a1c140d4b34e6e4bfdfa633398080429398b08e00
MD5 c43713d5e586c45572c9637f5f5ef17e
BLAKE2b-256 66ec1adfca4a49a692384aef1ab25f5b206da7d1b9b8c730adba2869e0389acf

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85a4c287cc473b82100e17e1be038bdc061e25c6c9872309dd8c605c8ebdbcf9
MD5 8961ec727d995f30f1b7df397caecbff
BLAKE2b-256 0784accb3397a50af2c20c55704ac6bd55b996011d4f38a2b48f0997d83aa52d

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d9fd56e23f7957be579607034edb67e6fe7330f6ef490b48d616ca7a531f49f3
MD5 db7eeb69d366082504683cbed2775f1f
BLAKE2b-256 b486974fd2ea4add5858c03f897212272dc6ecd4b1edf697be3b21f370157cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 794f3438288e4d0eaa6922ec4859cd83e7d21eed33c39a2d3a75c35b16c084cf
MD5 6a91bb7dce1c851b8cac8f00c3d979de
BLAKE2b-256 acfb3e62b57aecb6f98356b75d7f0bcb385f2cc4067e03e3ba80e3a893759ee9

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 53c1854029274ea87f1a53070ab4df7494fea2d701276a63bbf4b73a407a6093
MD5 e4b5cfbaa484f10b53632b85f3eb8201
BLAKE2b-256 d9599d8643b5158124aa1e3adb5bd81b89a3c19246c832a75630f5518cba3dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17fa3f433f1e53dabbf452622d8c24f4d45913a80582158ed094ac3d2d2f9ec1
MD5 8def785d845d80919203e6e8d2554aaa
BLAKE2b-256 ac33033827eb1bfc2b2eea92b6d3e4c458def83a13ab9d1ea7398670b3266799

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb053d6e05aedf02916826975cd03b33fd716f03c2de599ef1064201300a7771
MD5 06164c0469258ef8c591ba15414a8e40
BLAKE2b-256 4350fe86b2b7bf22eedcf5bc9e8356183541e501967d900640997c9b2fbf92f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6095b9edf88c0c92636a46d9f462b4738943c75205c419047825361034f21a4
MD5 29cf19559982cda7437b457fc2085b77
BLAKE2b-256 ba6bf651b5d20ce4dda2f2cf5452b7ece467835a57590e1251e29e29d9e51478

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aab62e69634fd8c40304efdac4be78c6a22a9d5e566c156eba9aa07dec24d4e1
MD5 f55faf92620ec937b7190dff423a937f
BLAKE2b-256 36d149300afb02b8832ff6251c5f8095fb205196ed9a3e7e4e69427434a32704

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f4b0b8b3794df448add9433672121c71abd0530193dccf81f506cf71d940ec11
MD5 c2930e7c1250b71a7c0a5b5ab5f6728a
BLAKE2b-256 a50e1d043ff9afe011348b41b7bc82fdc34ec14063d81d7bce7086eac6649e85

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1439dd5e954d868b03984f7052bf30643ce77c8649dce1e959f1a464fb131ca0
MD5 058f44c0da136cbf7d61397eeef57381
BLAKE2b-256 f2c8dfc8f006f0240e9af2f73540e5ad47ff6efe4ad047e0297ddb0f71aefcd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65686c3d9855eba1618ccd3f254472d2150ca5bea8009b466b7e5a9c91fa81e6
MD5 a0b40959f8e698c9f819b3ed30ef741b
BLAKE2b-256 dc0b8ee5591ea7493e47a6fee5331d686ff307212c458e844ce186c8a2a467d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8be4d821256c8ad2320e1e3b134cbea38cccb7fdcb09393b8e659f07e7ef27b2
MD5 b030822e28c74faed6f45d1668b8186f
BLAKE2b-256 0c9e0b7e50af79c7a194c95c79a2887073913a61927750388499ddb1addb3c23

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 042065cf078ae062e1eab0422f98712abdbba803589caec7a2393994aab9b2c2
MD5 4e3e8076ec45a5cb4745b1f4128192eb
BLAKE2b-256 414e951c26a5698d1e02c460469731d3a755a7a5778349cf48a6879c1acfb2f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3153b9110f3d54c065f469f540c0a294f1adaf7318eacbb30190b3d61570c8c6
MD5 000e47983e4ef06cdac0ba020a50d465
BLAKE2b-256 644153cabac5e0a002ed00e3abddc8105b3c50e13d9f7a8440d625435947afd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c6427bbf6ffda819ff5bbe5c7a53951e406bacddb446e1a811975ef9f8e00c88
MD5 8b42e7e5343a757ac5a085e154e4c716
BLAKE2b-256 16718e7f4db79355dca68a2ba4e47d375b9b2ead108a07b4913ffe8195687c4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for materialyoucolor-3.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5d63f7894cbfdbeebe8448f2f697ce946eea10ebdd3071a9beb91d1e46c30fea
MD5 4a6ed888f634f20afbc4fec6059c2147
BLAKE2b-256 6cbe1ecbcf0a3b39be8d409ad6748af851de9e78034435c2ead64bf7b2a78c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4056e846d8206cd5619dd1a8fedb52e2e41b40800f9c5c2777d614b3540f4ce9
MD5 d5347a8a60181d95859d5a986f752a2a
BLAKE2b-256 1e69d59d5ccd0efe38ed7a00358972bb43b753a88801285b0242d309a9710644

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce398799ab6e915c27926ecd70665b92533e95292198a41a71e1f5f403d63ce9
MD5 2f4ab7f8143ced9ee9e6bbf9077d2cfb
BLAKE2b-256 6bbe9d514470dd5b4819b54e09c1b1d775ac6f5651933f7c6a027efaf0a062fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 876f0fa1ef90b3e621b8f1e8284dbc9a8a0aae2efefab88d34b540cc16f14ff0
MD5 4f6e6b4b33d347809472fd45cf619223
BLAKE2b-256 68d402de37e7dfcc740dff7db3deb62aa84eaee9c628914ed94ef742a9f1cc48

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for materialyoucolor-3.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48245d8e42eb2094e84484282feb86d3219f4cc34856d90ba54944bca96fc5eb
MD5 d0f577118431d2a5722dc55f6d11be6a
BLAKE2b-256 bb81cf84daf2ad541b8d689ed83c4bb34513eff6009b301a6339c27d41aa6013

See more details on using hashes here.

Provenance

The following attestation bundles were made for materialyoucolor-3.0.3-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