Material You color generation algorithms in pure python!
Project description
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
- Up to date with
material-foundation/material-color-utilities. - 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
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 (OUTDATED)
yay -S python-materialyoucolor
Thanks :heart: to @midn8hustlr 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.
- [
EarthFM CLONE]
This is my private project where the theme colors change based on the album art.
FAQ
- How it is different from
avanisubbiah/material-color-utilities?
This library is up to date, fast, and uses a hybrid system for image generation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file materialyoucolor-3.0.2.tar.gz.
File metadata
- Download URL: materialyoucolor-3.0.2.tar.gz
- Upload date:
- Size: 127.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2c892ae23dc0732c32307682002884616a282de5a350088aacc23cdf885e822
|
|
| MD5 |
a929ea580d26fc5b758503fbb5eabbc2
|
|
| BLAKE2b-256 |
c0472db3504a71e6e7bdad8e4dfdcf4b62a575cb4229c32a3a612062b39cf6cc
|
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 186.2 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a31030706af9b1f3d3916ce26b44e1b6a822cfd78a50083ea2451497d24863d
|
|
| MD5 |
0fafa173deaf9a262132a1ed0633e70f
|
|
| BLAKE2b-256 |
4f67c58c72b176c30585ae2e1055580fa5c7229b25bf88ad0205b5a5e070435e
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314t-win_amd64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314t-win_amd64.whl -
Subject digest:
0a31030706af9b1f3d3916ce26b44e1b6a822cfd78a50083ea2451497d24863d - Sigstore transparency entry: 976290981
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314t-win32.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314t-win32.whl
- Upload date:
- Size: 168.4 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9995eb30c16388c2069213f7446a6840e365420f20f1dd0ecb9d5e9ce746056d
|
|
| MD5 |
82163f54bb9264b3156738de00ec83b9
|
|
| BLAKE2b-256 |
c969ab0c433163bdec5bc5a08ab7c022dd06fcd978cd52519024046e1eb65d41
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314t-win32.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314t-win32.whl -
Subject digest:
9995eb30c16388c2069213f7446a6840e365420f20f1dd0ecb9d5e9ce746056d - Sigstore transparency entry: 976290929
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f80ed46bd57f6217b66a37f10a57ff2c2d405ca8842ed4a64cfe4d6d5c554947
|
|
| MD5 |
53e16336a5eed9af3f701a052ad397f7
|
|
| BLAKE2b-256 |
f146138de4eecaf29bc42d56c6427b62632cfa5396d8446e57a3c14d21109246
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
f80ed46bd57f6217b66a37f10a57ff2c2d405ca8842ed4a64cfe4d6d5c554947 - Sigstore transparency entry: 976290890
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 233.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
250a07f4847e6d5ab54554a0bf310c00ae8ae492244127a84d8101719b6994f5
|
|
| MD5 |
81e991c17de2e1fa22f3670327fe2d18
|
|
| BLAKE2b-256 |
fbde741a3682b82a0beb9254e030f780644b980c88e65c50212ca43e19b858bf
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
250a07f4847e6d5ab54554a0bf310c00ae8ae492244127a84d8101719b6994f5 - Sigstore transparency entry: 976291008
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 207.4 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a922b46d14311688487c493ec8135f6bc3d59c03c38130b0b8e757671aa93a5
|
|
| MD5 |
99f532a8dc98d7af0a52f8ceed7319db
|
|
| BLAKE2b-256 |
e792fcaed76a04445c71339165f159524b0f52f763aff46a3ae94bdd88636f90
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
4a922b46d14311688487c493ec8135f6bc3d59c03c38130b0b8e757671aa93a5 - Sigstore transparency entry: 976291011
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 217.7 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f14660be800f7d7844400dabc1fa0a777a3b7c9fbe62f353db31bfab85e60945
|
|
| MD5 |
da22735eb81b4de0fb91d98aaabcf5a4
|
|
| BLAKE2b-256 |
85a605ffd5b338a67f5ae9c33eed09bb51d03df4694b25ff65e17bb8514ccd38
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314t-macosx_10_15_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
f14660be800f7d7844400dabc1fa0a777a3b7c9fbe62f353db31bfab85e60945 - Sigstore transparency entry: 976290953
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 180.6 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdc919d66abccffc01293a29065ad05c0b04ac745a45fe386879e80f92222640
|
|
| MD5 |
e929cb078e97f5c41bbbcf56d6ef0ad5
|
|
| BLAKE2b-256 |
b331da2731a3c963df8041785c1901f961f1466fd6db4adb51899b120281da59
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314-win_amd64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314-win_amd64.whl -
Subject digest:
bdc919d66abccffc01293a29065ad05c0b04ac745a45fe386879e80f92222640 - Sigstore transparency entry: 976290998
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314-win32.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314-win32.whl
- Upload date:
- Size: 163.9 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
420c537a9829c92b0baa47d15dd375e9fc6a7fecfc203204d1cbcc31654d26f2
|
|
| MD5 |
b449998fd90aac9b7022c8d9b454b21c
|
|
| BLAKE2b-256 |
33a5d819932a25edfa1b7332a9dbb507c7da2274039682b89d2eb6b5b8cc1d4c
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314-win32.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314-win32.whl -
Subject digest:
420c537a9829c92b0baa47d15dd375e9fc6a7fecfc203204d1cbcc31654d26f2 - Sigstore transparency entry: 976290966
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ffb0dd15f7c3d9821bd94f04e376135c56854734c0008e238fa78a58f67278c
|
|
| MD5 |
bb43ec672cb1a3550952845557f79ce9
|
|
| BLAKE2b-256 |
d2000ae789137ab411880a808c462e3d0512da7b7ff77b46174a6e5df99fe5d2
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
0ffb0dd15f7c3d9821bd94f04e376135c56854734c0008e238fa78a58f67278c - Sigstore transparency entry: 976290918
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 233.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91a02dce74057262c6890ca308b33f04c95fbb7831c1e439e2c94662e7bcb88b
|
|
| MD5 |
c71238e4988ef7d7fcb7fe78d66f6bc2
|
|
| BLAKE2b-256 |
208427f5ab8a9b5824b238939b9d11361f78ce1d03511e3137df030938933020
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
91a02dce74057262c6890ca308b33f04c95fbb7831c1e439e2c94662e7bcb88b - Sigstore transparency entry: 976290911
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 203.7 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2d52554ca52758a318016a52da4f9f7d8024280eb303ec9df8033261ea6099b
|
|
| MD5 |
dab50efab5cb93afd0c2ca42c6fc7d8f
|
|
| BLAKE2b-256 |
1fbf7dfccba92d8aeb4bee7d29c6e3a39be49c654e56eb20b0e7608aebd6aa38
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
b2d52554ca52758a318016a52da4f9f7d8024280eb303ec9df8033261ea6099b - Sigstore transparency entry: 976290969
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 214.6 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d913024cf54f7ff76c8651205994421798016ee99dc4a267c6ef85bca5af0bf3
|
|
| MD5 |
026c6be1bc460dc8420cb0674c501f48
|
|
| BLAKE2b-256 |
a76900a69bc4359add916dcd7fc3e18af088105532bb702f1adbfca1ed901f80
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
d913024cf54f7ff76c8651205994421798016ee99dc4a267c6ef85bca5af0bf3 - Sigstore transparency entry: 976291000
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 177.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32048938b7735fdb8496fcc6561a5a0c04f74160f8f41674f08304b0942740e7
|
|
| MD5 |
1f5494378028161aad8677f005aca455
|
|
| BLAKE2b-256 |
5502f7c7a953b33f64979b97c02bccb0b23226a433d55e5696193e27cdb923c7
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp313-cp313-win_amd64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp313-cp313-win_amd64.whl -
Subject digest:
32048938b7735fdb8496fcc6561a5a0c04f74160f8f41674f08304b0942740e7 - Sigstore transparency entry: 976290952
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp313-cp313-win32.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp313-cp313-win32.whl
- Upload date:
- Size: 161.3 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fa0ae5ea849b0d120e998b157605aa098b1388a035ecd019c8424fd14fc23b9
|
|
| MD5 |
709cdaa0c0d87bb56b344f13f37917e2
|
|
| BLAKE2b-256 |
07cc5b3252893277c03ee231d147ce877e5a348b60c628b185433f9e75c40b9d
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp313-cp313-win32.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp313-cp313-win32.whl -
Subject digest:
8fa0ae5ea849b0d120e998b157605aa098b1388a035ecd019c8424fd14fc23b9 - Sigstore transparency entry: 976290917
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92c56bf78cd7008a925b9a928c2784e30266b3c6a56e5a481f627d51c82ed2f8
|
|
| MD5 |
0499c37a8ce7ced4265cc340c0cf2c02
|
|
| BLAKE2b-256 |
ace68d83bd8366300a79b7d529ad65cb523f904481a45c9a7720705174f81352
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
92c56bf78cd7008a925b9a928c2784e30266b3c6a56e5a481f627d51c82ed2f8 - Sigstore transparency entry: 976290939
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 233.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4d302e0b309d9b45548074c8a348903733df8bc4101283dc969f0ff157afde5
|
|
| MD5 |
ed1c3971ed8b29e35a1bfaa7620fdd77
|
|
| BLAKE2b-256 |
d858a030f46147f3847c7cd3dcda2bc2c362f7275b771ff61e622c547c29f63a
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c4d302e0b309d9b45548074c8a348903733df8bc4101283dc969f0ff157afde5 - Sigstore transparency entry: 976290988
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 203.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe03cf51df6e21acf1986810052cf35fed3fbc759c1ab0d7c5a9730ee2890029
|
|
| MD5 |
ac363a59725a9cb11bc0daab5c478dcb
|
|
| BLAKE2b-256 |
d242a12606b88d0d991276bfcd8084e66e06c302d3713db3f8929a0be99e9244
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
fe03cf51df6e21acf1986810052cf35fed3fbc759c1ab0d7c5a9730ee2890029 - Sigstore transparency entry: 976290893
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 214.3 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
311c1484832c00b8be7ef7781e3fc9e6f17b311f899f6657f4523a1ae067d168
|
|
| MD5 |
fc36b70444c4219f370f40c66d609d51
|
|
| BLAKE2b-256 |
4b94da86904173a5af7c6af33cefb47365f68e2769f740442d5aaa676fce52ed
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
311c1484832c00b8be7ef7781e3fc9e6f17b311f899f6657f4523a1ae067d168 - Sigstore transparency entry: 976290932
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 177.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4013952e770c2c8f5bfc5b96a3db31bf0f964cbf9a02ff476eed1f0f4a1c8235
|
|
| MD5 |
15f0aa599446dd83dc60aa0b9b5f5641
|
|
| BLAKE2b-256 |
1b9636700714b69754b19ffa669d11285ff1df9c3cff4896b7a83f0b2d2f81ea
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp312-cp312-win_amd64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp312-cp312-win_amd64.whl -
Subject digest:
4013952e770c2c8f5bfc5b96a3db31bf0f964cbf9a02ff476eed1f0f4a1c8235 - Sigstore transparency entry: 976290996
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp312-cp312-win32.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp312-cp312-win32.whl
- Upload date:
- Size: 161.3 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9a24f185f83100149de9ca3c799c9d0ace96389dfa4404899ae7d66f7f7c3ea
|
|
| MD5 |
ae869cda931783c993004385a2644562
|
|
| BLAKE2b-256 |
facb1a57eabd1bc0811dbf89e2db060cdcbe31156a884c0873e65395d7b75cdb
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp312-cp312-win32.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp312-cp312-win32.whl -
Subject digest:
e9a24f185f83100149de9ca3c799c9d0ace96389dfa4404899ae7d66f7f7c3ea - Sigstore transparency entry: 976290991
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6692115e570c383202f58c6e3fb55c34840cb37aa2cae7f9a76eb4baec47534
|
|
| MD5 |
298ba246314c18bd9c626aa3d4505c4b
|
|
| BLAKE2b-256 |
beb7bb69d6519d42f2e3bbf14315e594cefca5cf68e86160e0bdec18dd82c1f5
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
d6692115e570c383202f58c6e3fb55c34840cb37aa2cae7f9a76eb4baec47534 - Sigstore transparency entry: 976290942
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 233.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f675b95c106db547e9eaf59a08eb01689b8df6dc7bdd21ef58837cb0f20242c
|
|
| MD5 |
c0a3ee80348e1a7a0ebd495a88e55e4f
|
|
| BLAKE2b-256 |
9fb3b82b40d5d300ce15db4c6fe2a8b3c768f588cc5384d3b1e391a651af93d4
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
9f675b95c106db547e9eaf59a08eb01689b8df6dc7bdd21ef58837cb0f20242c - Sigstore transparency entry: 976290886
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 203.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4d69e3ecfe7e1fd5dd0886ae33ae2ef46ac819affc50540a33416816f432ac1
|
|
| MD5 |
f26fc33bebbf84826e100ac4bd5f167f
|
|
| BLAKE2b-256 |
e24b59dfbbc44cec67e7da62555c8e3434f515ffc80dfa82860a8a21ce2289b5
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
e4d69e3ecfe7e1fd5dd0886ae33ae2ef46ac819affc50540a33416816f432ac1 - Sigstore transparency entry: 976290964
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 214.3 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be9def0be02a9e96fddb8ce601158970da4f27da2761acb4c16ee1f05a7394ce
|
|
| MD5 |
bbd8ecf6dce0687e32e914b10098ecf1
|
|
| BLAKE2b-256 |
be71ec9df620ed29a8a7176955788d699b954356a41983eef82f3110fe5d0629
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
be9def0be02a9e96fddb8ce601158970da4f27da2761acb4c16ee1f05a7394ce - Sigstore transparency entry: 976290976
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 176.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c80bc9d478a0c4846bb8d955ab580af9e0c2fe849bc5494a050d05fad44fa2a
|
|
| MD5 |
b4dae2aa636e789f5f7bbdaf8f65f5ae
|
|
| BLAKE2b-256 |
fe364c0ec9042030e92d6780872439e84ba4e790b7acb89eb72689ae026659db
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp311-cp311-win_amd64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp311-cp311-win_amd64.whl -
Subject digest:
4c80bc9d478a0c4846bb8d955ab580af9e0c2fe849bc5494a050d05fad44fa2a - Sigstore transparency entry: 976290972
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp311-cp311-win32.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp311-cp311-win32.whl
- Upload date:
- Size: 160.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5564ec49f011d0460dc3407c3788684d509807a362c44403f10b3b0eccb0496
|
|
| MD5 |
3753bf8192b951db151369cd17010ade
|
|
| BLAKE2b-256 |
ee244378fc16c63d9a93c0c6735f463fc55fc5134a37136f2c1d5669333dd240
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp311-cp311-win32.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp311-cp311-win32.whl -
Subject digest:
e5564ec49f011d0460dc3407c3788684d509807a362c44403f10b3b0eccb0496 - Sigstore transparency entry: 976291010
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
feef0d178c865a5425a1add2fba797e5e5edb6b0fff15a8494346e917934e7c7
|
|
| MD5 |
c8e5370d54a248ffe62f5dc31b8c9aa5
|
|
| BLAKE2b-256 |
dc68a60e7ccc7b2400675e2c2f91f7c6d789ff9ca7af7514523ce55cc7ec7986
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
feef0d178c865a5425a1add2fba797e5e5edb6b0fff15a8494346e917934e7c7 - Sigstore transparency entry: 976290960
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 232.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7449488306d4ec275a0ee2de0dc18bf67519a9e5bea1c25726ba1932f353e526
|
|
| MD5 |
8d4d2d21d942010deed8a86aff27ce97
|
|
| BLAKE2b-256 |
be881c1faf0f7cf6d90b1f4b99dc0233b0e7786cd58b77763aa8595ccf151a3b
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
7449488306d4ec275a0ee2de0dc18bf67519a9e5bea1c25726ba1932f353e526 - Sigstore transparency entry: 976290977
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 202.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d58f1989ba5c7fe4c68b01c23c0b42996403b20ef7b46b1a53be2e05a4bce28
|
|
| MD5 |
837ec23ed0a2e45605939b600fa3080a
|
|
| BLAKE2b-256 |
022ddcf231e0d53b22c14ad8a658512824e4190a4f53a7f7cdc8ca6568c579ed
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
6d58f1989ba5c7fe4c68b01c23c0b42996403b20ef7b46b1a53be2e05a4bce28 - Sigstore transparency entry: 976290897
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 210.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a516a9acfe9b3906e38ac36f7c9da7134a47da05731c4323096d711e1b1df2e2
|
|
| MD5 |
0b83830aca8d06a7ace67fd58ba92b8f
|
|
| BLAKE2b-256 |
15d2cae5e18e4fb6a2f3889510de3b2aee58a2adb17bc07cd48f0075a9945e35
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
a516a9acfe9b3906e38ac36f7c9da7134a47da05731c4323096d711e1b1df2e2 - Sigstore transparency entry: 976290950
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 175.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2931fd9bd29509a04bb98d58fd8eb3933ea1b40db18583189a993eae5909a9cc
|
|
| MD5 |
49665e26a8d1f2d64e4f37048880579f
|
|
| BLAKE2b-256 |
32358184767188a11280efd80aad077542325619304d24bbcc008f3a85dfd3fe
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp310-cp310-win_amd64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp310-cp310-win_amd64.whl -
Subject digest:
2931fd9bd29509a04bb98d58fd8eb3933ea1b40db18583189a993eae5909a9cc - Sigstore transparency entry: 976290982
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp310-cp310-win32.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp310-cp310-win32.whl
- Upload date:
- Size: 160.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
645088b9e9888bc4a43c00ace89b6f8b01b29dde1db12aa37a920f5b898f7a60
|
|
| MD5 |
8261f8d855b53c449d5ed586b4327ddd
|
|
| BLAKE2b-256 |
eb940c7fd253da29d63c1a7d6265b43cea2f1e933a910b71a49cea10a027af3f
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp310-cp310-win32.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp310-cp310-win32.whl -
Subject digest:
645088b9e9888bc4a43c00ace89b6f8b01b29dde1db12aa37a920f5b898f7a60 - Sigstore transparency entry: 976290925
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d8bdb722ae476572869a73b18eca6ab2f7a55be215bc0d620feadfae7e68183
|
|
| MD5 |
17d6239487c1c3b018f4552f1fdd47c0
|
|
| BLAKE2b-256 |
b0899d0870e0f221830b339e56c25fd842afa72e7951156104a442ad08af707a
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
5d8bdb722ae476572869a73b18eca6ab2f7a55be215bc0d620feadfae7e68183 - Sigstore transparency entry: 976290909
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 231.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
753def6d149d9e074aefc95b4b8b6af4046ff7330ab0302f9f5f840f70468300
|
|
| MD5 |
401db365880d98afef11c2800ad3890e
|
|
| BLAKE2b-256 |
8fb586a09b3aab96149df601a14e1ae6f1a1b5b8cfe30d1fea63cb9aea1471d2
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
753def6d149d9e074aefc95b4b8b6af4046ff7330ab0302f9f5f840f70468300 - Sigstore transparency entry: 976290948
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 201.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8668667c16d2ff8dee80dab68867d9ced91753d78ccf93ee7339e9d8512e75a
|
|
| MD5 |
3d4fde284ded1df61d4e6c95d6c57796
|
|
| BLAKE2b-256 |
2ce9c9ef01d8f910269c882d1145019ddb1424632cc6edf8d24d40045794ec91
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
e8668667c16d2ff8dee80dab68867d9ced91753d78ccf93ee7339e9d8512e75a - Sigstore transparency entry: 976290994
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 208.9 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f982c8b2c4c058a00ee9ef7d069958606b2f869960768edadff6216cf4b2a73
|
|
| MD5 |
035f0450dff85a51c6215aa1d87c649b
|
|
| BLAKE2b-256 |
680ef0d55834354117e54c75c507ef33c8f86ea329a1e66304df7eb2b58482be
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
5f982c8b2c4c058a00ee9ef7d069958606b2f869960768edadff6216cf4b2a73 - Sigstore transparency entry: 976291014
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 176.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3023be22fd72ebc3f99e9e4146817c50a19b4d09a0d9698bcef0cb481e5e388
|
|
| MD5 |
01102e2e7103710c4bafd82535cc5d1f
|
|
| BLAKE2b-256 |
21619af7a03a4a3b62ebd884b8000a46e4d32728f4de59530f535ca3d3c88cd9
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp39-cp39-win_amd64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp39-cp39-win_amd64.whl -
Subject digest:
b3023be22fd72ebc3f99e9e4146817c50a19b4d09a0d9698bcef0cb481e5e388 - Sigstore transparency entry: 976290881
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp39-cp39-win32.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp39-cp39-win32.whl
- Upload date:
- Size: 160.2 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2749cbce638dae11dc1f2809e679f3426d75fbe0e7756b9b7ff554cf02e3fd77
|
|
| MD5 |
53e7ab74b71c51987d9e1f2d81936f38
|
|
| BLAKE2b-256 |
250d6ec0a7492ec83da2e7b6ef11f69b5c7fdffc61cbd86fdd65d7fcd63ad022
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp39-cp39-win32.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp39-cp39-win32.whl -
Subject digest:
2749cbce638dae11dc1f2809e679f3426d75fbe0e7756b9b7ff554cf02e3fd77 - Sigstore transparency entry: 976290888
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b62926cf8871c06f8de11c198e112a79950d9b106722a8b19a80d354096915f
|
|
| MD5 |
42ea24b601a190c70d0ab276588c258f
|
|
| BLAKE2b-256 |
ef387e5cbb7b50d08b8b5d5d205c9ea9ef02ea33700196aa70f85e31e11b5d31
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
8b62926cf8871c06f8de11c198e112a79950d9b106722a8b19a80d354096915f - Sigstore transparency entry: 976290944
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 230.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9708f20b003ebe6d9a738534357462973e645b56d297b59b15817195583e2e9f
|
|
| MD5 |
b14bb9d413dd6431e60eb7246e5b030d
|
|
| BLAKE2b-256 |
59713dd0ddbf44d9cfc14ee91e469081090941382565e14d950a3eef3a7b17a1
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
9708f20b003ebe6d9a738534357462973e645b56d297b59b15817195583e2e9f - Sigstore transparency entry: 976291016
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 201.9 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
780847de4960b2abfcfac292dcb548f366f80138237be31456cb9ae38ecc2148
|
|
| MD5 |
8f6a88ac2e4e166d284015db325161bd
|
|
| BLAKE2b-256 |
b14712a90799c7582c227730ab83bd16b95cfb7977faa7a824449b8001d1a641
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
780847de4960b2abfcfac292dcb548f366f80138237be31456cb9ae38ecc2148 - Sigstore transparency entry: 976291003
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type:
File details
Details for the file materialyoucolor-3.0.2-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: materialyoucolor-3.0.2-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 209.0 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5c21b5a8b3da67a45ccbbaf73e22d572c92faff3a2636dd95ac2c9950488233
|
|
| MD5 |
7671f9850b23f86c51c37b4aecee209f
|
|
| BLAKE2b-256 |
2523fc1dbb8624faaa3606a116caa389fda425629c550e2e2b11fc51c37a3fb2
|
Provenance
The following attestation bundles were made for materialyoucolor-3.0.2-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
cibuildwheel.yml on T-Dynamos/materialyoucolor-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
materialyoucolor-3.0.2-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
f5c21b5a8b3da67a45ccbbaf73e22d572c92faff3a2636dd95ac2c9950488233 - Sigstore transparency entry: 976291004
- Sigstore integration time:
-
Permalink:
T-Dynamos/materialyoucolor-python@25fcd947db53cd8719301d01dbec6e6e707131fa -
Branch / Tag:
refs/tags/v3.0.2 - Owner: https://github.com/T-Dynamos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cibuildwheel.yml@25fcd947db53cd8719301d01dbec6e6e707131fa -
Trigger Event:
push
-
Statement type: