Beats, downbeats and bars from neural logits — a fast state-space decoder.
Project description
metricon
Beats, downbeats and bars from neural logits — a fast state-space decoder.
metricon is the decoder half of a beat-tracking pipeline. You bring per-frame
beat/downbeat logits from any model (e.g. Beat This!,
an RNN/TCN, your own); metricon turns them into metrical structure — beats,
downbeats, tempo and meter — with a state-space HMM decoded by Viterbi. No audio,
no neural net, no torch: just numpy.
import metricon
beats = metricon.track_beats(beat_logits, fps=50)
print(beats.times) # numpy array of beat times (seconds)
beats.to_tsv("beats.tsv")
From probabilities instead of logits:
act = metricon.Activations.from_activations(beat_prob, fps=50)
beats = metricon.track_beats(act)
Downbeats, bars and meter (needs downbeat logits):
# one meter for the whole piece (the best-scoring of the candidates)
bars = metricon.track_downbeats(beat_logits, downbeat_logits, beats_per_bar=(3, 4))
# or let the time signature change within the piece
bars = metricon.track_bars(beat_logits, downbeat_logits, beats_per_bar=(3, 4, 6))
print(bars.times) # beat times (seconds)
print(bars.numbers) # position in the bar, 1 = downbeat
print(bars.downbeat_times) # just the downbeats
Constrain the path through events you already know (the rest are filled in) —
beats for track_beats, beats and/or downbeats for the bar trackers:
beats = metricon.track_beats(beat_logits, fps=50, anchors=[1.02, 2.05, 3.07])
# force bar lines without pinning the meter — the decoder still picks 3/4 vs 4/4
bars = metricon.track_bars(beat_logits, downbeat_logits,
downbeat_anchors=[0.51, 2.49, 4.47])
See docs/api.md for the full API.
Why
Built from the published Krebs/Böck/Widmer equations (CC BY 4.0 — see
docs/algorithm.md): the efficient bar-pointer DBN with a fast, low-memory
decoder that comfortably handles long, high-fps tracks.
Status
Beats, downbeats, bars and within-song meter changes all work today, decoded by the compiled float32 kernel, plus "fill-in" anchored decoding from known beats and downbeats.
Roadmap
- Arbitrary beat-in-bar anchors. Beat and downbeat anchors work today (force a beat, or a downbeat / bar line, at a known time). Forcing a specific beat-in-bar position — e.g. "this is beat 3 of the bar" — needs per-state masking in the decoder rather than the current per-column masking, since the beat-in-bar lives in the state, not the emission column. Planned.
License
MIT. See NOTICE for algorithm citations.
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 metricon-0.0.2.tar.gz.
File metadata
- Download URL: metricon-0.0.2.tar.gz
- Upload date:
- Size: 22.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f234206dfce0e340e52966e8db16c7c323fd1b5a34a1ab51ca1e14ea75d8bba
|
|
| MD5 |
db95a3e604655ebb8387a2ff244d0849
|
|
| BLAKE2b-256 |
a6141a5e264d9f9377dab0064f12837db82febf4f35b3a3bd611440776b0d416
|
Provenance
The following attestation bundles were made for metricon-0.0.2.tar.gz:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2.tar.gz -
Subject digest:
2f234206dfce0e340e52966e8db16c7c323fd1b5a34a1ab51ca1e14ea75d8bba - Sigstore transparency entry: 1695356855
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: metricon-0.0.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 98.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d351bcf2a0891c3a0479400a4bf4b0713cb27c170cb49c8fea795e3b6cf95ed1
|
|
| MD5 |
a67a3f6eab85a5741041479d69c77e0a
|
|
| BLAKE2b-256 |
3bc0d4a7f20ad3044b025eaec66430d3a8f4293bc497320c640a8eddf2c32313
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp313-cp313-win_amd64.whl -
Subject digest:
d351bcf2a0891c3a0479400a4bf4b0713cb27c170cb49c8fea795e3b6cf95ed1 - Sigstore transparency entry: 1695358578
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 623.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
259838d86ebfd5c1af624225d3a66657cd42d97fda490969bc3577a1ed3f1a97
|
|
| MD5 |
08ad14e4cf94b8c8e37e8bb03e9c0adf
|
|
| BLAKE2b-256 |
be5ae10cd5f414b11e9f41412356c550c349f76bcc089b6a5a4d00ee2ba19fe5
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
259838d86ebfd5c1af624225d3a66657cd42d97fda490969bc3577a1ed3f1a97 - Sigstore transparency entry: 1695357367
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 599.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a60d001d818dd62021a1dec449f1df1310095aaa1fa1b1839add73b6566b7fa1
|
|
| MD5 |
20410080a0feb426cd09848f5ee006bc
|
|
| BLAKE2b-256 |
4a676ea09c57dbad3aec035335ac6e4f9cfe1258f9d3264c0855ae2f09488f7c
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
a60d001d818dd62021a1dec449f1df1310095aaa1fa1b1839add73b6566b7fa1 - Sigstore transparency entry: 1695357621
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: metricon-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 101.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be827c55567ce3316c96b3e98661d489b37f7710bb05345cdbf8777d63394048
|
|
| MD5 |
36ca6c91fd41ebd3e65af0df5993fb52
|
|
| BLAKE2b-256 |
efab5bb90d421087824917edf7cd98fbd9cf4719fb6465f70f87977a3e58d42c
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
be827c55567ce3316c96b3e98661d489b37f7710bb05345cdbf8777d63394048 - Sigstore transparency entry: 1695358113
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 108.9 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
179c409916d1a9677b7e841b602300fc7e5bed40babe1a223ae426cebd3c9987
|
|
| MD5 |
9d3d07fb661294a11d5bab0d18af55ad
|
|
| BLAKE2b-256 |
f7f1ebe80e86090e374342cf68afde46f0194f532a633f910d4790904517ea11
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
179c409916d1a9677b7e841b602300fc7e5bed40babe1a223ae426cebd3c9987 - Sigstore transparency entry: 1695357903
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: metricon-0.0.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 98.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0009e3dc316af4f24a05a12c16972bb47ffb94f01ecf744fdd92a873a8047b79
|
|
| MD5 |
b9423257d67fbdf6163eb0e8410e3c1c
|
|
| BLAKE2b-256 |
976fdfd773da67a5d0a84d5f09ae4a264ca00d096afdad041845ea7250ff9cc2
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp312-cp312-win_amd64.whl -
Subject digest:
0009e3dc316af4f24a05a12c16972bb47ffb94f01ecf744fdd92a873a8047b79 - Sigstore transparency entry: 1695357290
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 625.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e6f5dfdbc7eb84cbf53aca9cdfcd94c897e63398b6e2e0786a75ba659de4bce
|
|
| MD5 |
da8c1a45da75cb8075f1559c56e87436
|
|
| BLAKE2b-256 |
63ec36f9b14158064ea26084c1d2adb94d28d4bbfcb6e6879b9e2efa4b323b6f
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
5e6f5dfdbc7eb84cbf53aca9cdfcd94c897e63398b6e2e0786a75ba659de4bce - Sigstore transparency entry: 1695358226
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 602.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06660a7a16311053db2df6eea53773741ac095be2ec80bd90c48a49fae905504
|
|
| MD5 |
432716436d6eee0f2bfb0a9618554e84
|
|
| BLAKE2b-256 |
e3f580b4325691a4be9d3f59ec392a6c7a77cbb6a91d732d5a2ed0dfb36dfa87
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
06660a7a16311053db2df6eea53773741ac095be2ec80bd90c48a49fae905504 - Sigstore transparency entry: 1695357121
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: metricon-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 102.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69ce75d9120088f4cca1e90866f7f849625f48efca20f17f9cb2c1cdcd28bcc5
|
|
| MD5 |
fbdfb187b6682084cc81bdaa5604e248
|
|
| BLAKE2b-256 |
21c7e394b718bea141a64679a55a94098fb317cc94034995937d58cea3585a04
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
69ce75d9120088f4cca1e90866f7f849625f48efca20f17f9cb2c1cdcd28bcc5 - Sigstore transparency entry: 1695357691
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 109.7 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4fa193bf617c9d59ed5391b1d073f030e5e63b2d4c1460e558d6cf796c384bd
|
|
| MD5 |
dd1b000ab416ef9d3175a1868293936c
|
|
| BLAKE2b-256 |
f327809029e82a8f72975097b5dc10066a3cac3fb55c20b9195f1dd5e05aa383
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
a4fa193bf617c9d59ed5391b1d073f030e5e63b2d4c1460e558d6cf796c384bd - Sigstore transparency entry: 1695358299
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: metricon-0.0.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 100.7 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cddd0b1772f918465bf9bc9372d47787386519db9c825c453c2ecfadbf77dda4
|
|
| MD5 |
661497ba7f6ddf85da073400756dd9ea
|
|
| BLAKE2b-256 |
2f5271a9b815e46358d9f40a500cca3d30947d6c1e07efa98d1312976d05f96a
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp311-cp311-win_amd64.whl -
Subject digest:
cddd0b1772f918465bf9bc9372d47787386519db9c825c453c2ecfadbf77dda4 - Sigstore transparency entry: 1695358174
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 651.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2d95c03b5bfe3e6ac08416f2bf488b2d73a22b4cf54bf5a21906e21021ea355
|
|
| MD5 |
3b7333b6fe225a5bd33a37927428acdb
|
|
| BLAKE2b-256 |
94c54871558d9fd03bded849242f7b2574b1b561d1c2d379811f0a97899fe775
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
d2d95c03b5bfe3e6ac08416f2bf488b2d73a22b4cf54bf5a21906e21021ea355 - Sigstore transparency entry: 1695358448
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 627.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3bfcf4382d776b3636b457bb752023bd1b4aeb49d0b625884c2df351df616143
|
|
| MD5 |
17fbf450766785aeb8422db731cdbc94
|
|
| BLAKE2b-256 |
816196b3377e404a2b9a6c084792f30461953ff65ba6f06142c01ecb87bfdb3c
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
3bfcf4382d776b3636b457bb752023bd1b4aeb49d0b625884c2df351df616143 - Sigstore transparency entry: 1695357053
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: metricon-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 104.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d85067bd97af45ebdb866fcb72e765164062e3c138a5321e07dd2d913833e18
|
|
| MD5 |
9317ca02aa593fc3f01a9bd4756e6b21
|
|
| BLAKE2b-256 |
912d47ee8b9073cb5a92993039beb5e51f34945e91d3c630f506af47f52028fb
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
6d85067bd97af45ebdb866fcb72e765164062e3c138a5321e07dd2d913833e18 - Sigstore transparency entry: 1695357764
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 112.0 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f16692da69acc67943534ffdeb62e10d3daa768e6f569376fc80d93f7de6cf44
|
|
| MD5 |
236a5d36b09b00e3b40adc73fdd90978
|
|
| BLAKE2b-256 |
bf8205be8c0e1e1142006f7bbea5ea6b54c1c90358eebd1e8fe80fa97170ad72
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
f16692da69acc67943534ffdeb62e10d3daa768e6f569376fc80d93f7de6cf44 - Sigstore transparency entry: 1695358061
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: metricon-0.0.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 100.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5143d27dc2891f526d8870fae24a82fd77409dce8e1672df5cacfa7eb968acfd
|
|
| MD5 |
db437e3dcc37b4630da4c894d62e4414
|
|
| BLAKE2b-256 |
8838c0aa18bcd1cf00ce0200450003ba47c126368c5aa2bafa8ef81a5911209c
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp310-cp310-win_amd64.whl -
Subject digest:
5143d27dc2891f526d8870fae24a82fd77409dce8e1672df5cacfa7eb968acfd - Sigstore transparency entry: 1695357836
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 616.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbb26e6759747ec74976cba1c6ef8e4141da03447a977b19782bf668fd021a29
|
|
| MD5 |
78f6bd1fc618c441596080fe17a49676
|
|
| BLAKE2b-256 |
465ef2a0f2dc25b6eaae153592a68003aec608f871518c41b3e7d4670016029c
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
bbb26e6759747ec74976cba1c6ef8e4141da03447a977b19782bf668fd021a29 - Sigstore transparency entry: 1695357992
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 591.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df8c4925cd692b4260acd3080d7c1a26cea36cd8e9d693730e709cec72bf99e2
|
|
| MD5 |
5ce531b280e8c5bc7c05e695fbc5f777
|
|
| BLAKE2b-256 |
6234e4c091b57d7a329b1876d6226045727fe98a2cb7b5bc4abd795ef52443af
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
df8c4925cd692b4260acd3080d7c1a26cea36cd8e9d693730e709cec72bf99e2 - Sigstore transparency entry: 1695358385
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: metricon-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 104.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fad7e10136cdc81becfdf66591caa473a5dfdeb21d1f4e3890d25d3f66146e0
|
|
| MD5 |
5f760972cb3aecaa459ee4acea7e2b2a
|
|
| BLAKE2b-256 |
a7f9bb51f4877488190558eb980774a7cfab0541886e6a0aec98e1db3ec9a46c
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
5fad7e10136cdc81becfdf66591caa473a5dfdeb21d1f4e3890d25d3f66146e0 - Sigstore transparency entry: 1695358652
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 112.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c775a052b96f8882eee616971ec5d74a7919939f5f2a1525260f4410af298992
|
|
| MD5 |
1063bb22e8bef9ecb3ef4375279523f2
|
|
| BLAKE2b-256 |
69ccea1028d0e15888bc3abc895b9162838aa9b208c65c24789de7b2f869cafa
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
c775a052b96f8882eee616971ec5d74a7919939f5f2a1525260f4410af298992 - Sigstore transparency entry: 1695357219
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: metricon-0.0.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 101.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
803d52c1d243cf9389e0b22b7d10cc26f32d7b785dd58e7be24f8fde5f38815e
|
|
| MD5 |
547bd199ce64e39cdffc26957e368a95
|
|
| BLAKE2b-256 |
b3724cc42ab3b56480c896711220c889748058fd4d8d60077709b695a0993ff2
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp39-cp39-win_amd64.whl -
Subject digest:
803d52c1d243cf9389e0b22b7d10cc26f32d7b785dd58e7be24f8fde5f38815e - Sigstore transparency entry: 1695357473
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 615.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94faacc049d38bbf120aa1b1143c633b5a04a9ba432bc4f94e8a79c53c68d34b
|
|
| MD5 |
73b31e7b890924dc97693e8b481d60a0
|
|
| BLAKE2b-256 |
7251d992412c955dfb3c0f3dd74909322afff4cb0aa6f5e702aef3f129810ad5
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
94faacc049d38bbf120aa1b1143c633b5a04a9ba432bc4f94e8a79c53c68d34b - Sigstore transparency entry: 1695357552
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 589.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d3141e370249a3ab206fbb007639a3b65061f50628db5d1976a3be73eedc540
|
|
| MD5 |
488114a8009032b1a56bfc7d520531a2
|
|
| BLAKE2b-256 |
35dd8bd7acf4b4bc2ad4075d0ab898cbd044c28c37f4493b6430adb446446144
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
6d3141e370249a3ab206fbb007639a3b65061f50628db5d1976a3be73eedc540 - Sigstore transparency entry: 1695356955
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: metricon-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 104.8 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
630cf27708926667cfaaaa7e9e833c21f78a77b962883f51fe38ef106e3aec1c
|
|
| MD5 |
8147009dadafecdf3c959e42a5b83693
|
|
| BLAKE2b-256 |
d52076183e3e08fb244296544f6d6061a58530d8ae7d0ae7421fcb538fd1a6dd
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
630cf27708926667cfaaaa7e9e833c21f78a77b962883f51fe38ef106e3aec1c - Sigstore transparency entry: 1695358523
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type:
File details
Details for the file metricon-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: metricon-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 112.9 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
690feb084a47cdb15dbaad4e136a6db070852a5e1df066c6b209567214f1ce5f
|
|
| MD5 |
b24cc4013983ed00cc915a3438d21f96
|
|
| BLAKE2b-256 |
39242e5290243a1f8142a2473766e8c8ab7cc6a50ad597e5f99492662108cb27
|
Provenance
The following attestation bundles were made for metricon-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
release.yml on auvux/metricon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
metricon-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
690feb084a47cdb15dbaad4e136a6db070852a5e1df066c6b209567214f1ce5f - Sigstore transparency entry: 1695358713
- Sigstore integration time:
-
Permalink:
auvux/metricon@7cc9bc33639913034d5553eb787e11458ae36051 -
Branch / Tag:
refs/tags/v0.0.2 - Owner: https://github.com/auvux
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@7cc9bc33639913034d5553eb787e11458ae36051 -
Trigger Event:
push
-
Statement type: