A high performance MIDI file parser with comprehensible interface.
Project description
symusic
ISMIR 2024 LBD Demo Video: YouTube Bilibili
Symusic ("Symbolic Music") is a cross-platform symbolic music toolkit for note-level MIDI and ABC workflows. The core is written in C++20 and exposed to Python through nanobind, which keeps common parsing and transformation workloads hundreds of times faster than the pure-Python stacks many MIR pipelines still rely on.
The project builds on top of minimidi for parsing, zpp_bits for fast pickling, and prestosynth for SoundFont rendering.
The canonical documentation is hosted on Read the Docs at symusic.readthedocs.io. The legacy GitHub Pages mdBook remains available at yikai-liao.github.io/symusic for historical links only.
Documentation
- Read the Docs is the primary public documentation target: https://symusic.readthedocs.io/en/stable/.
- The documentation source for RTD lives under
docs/and is built with Sphinx + MyST. CHANGELOG.mdtracks the currentv0.6.0work and backfills published historical releases.- The legacy mdBook stays online for historical reference but is no longer updated.
- Build the docs locally via
python -m venv .venv,source .venv/bin/activate,pip install -r docs/requirements.txt, andpip install . -C cmake.define.SYMUSIC_FAST_BUILD=ONbefore runningsphinx-build -b html docs docs/_build/html.
Features
- Load MIDI and ABC files with
Score("path.mid")orScore("path.abc", fmt="abc"). - Convert scores between
tick,quarter, andsecondtime units. - Export back to MIDI or ABC with
dump_midi,dump_abc, anddumps_abc. - Compute beats, downbeats, and piano rolls for analysis and model pipelines.
- Apply vectorized transformations on
ScoreandTrackobjects such asshift_pitch,shift_velocity,shift_time,sort, andfilter. - Serialize containers efficiently with pickle and structured NumPy exports.
- Render audio through SoundFonts with
Synthesizer,BuiltInSF2,BuiltInSF3, anddump_wav.
Installation
Use pre-built wheels
pip install symusic
Build from source
Make sure your system has CMake and a C++20-capable compiler, then clone the repository with
submodules and install it through pip:
git clone --recursive https://github.com/Yikai-Liao/symusic
cd symusic
pip install .
Or install the source distribution from PyPI:
pip install symusic --no-binary symusic
On Windows, pip install . will prefer Ninja + MSVC when it runs inside a Visual Studio
Developer shell. In a regular shell it keeps using the default Visual Studio generator.
For debugging, you can pass -Ccmake.define.MEM_LEAK_WARNING=True to pip install to enable the
nanobind leak-warning instrumentation:
pip install -Ccmake.define.MEM_LEAK_WARNING=True .
Python compatibility and CI coverage
The wheel publication workflow builds CPython wheels for Python 3.9 through 3.14 across the
Linux, macOS, and Windows targets listed in .github/workflows/wheel.yml, including win_arm64.
PyPy wheels are currently published for pp311 on manylinux_x86_64, macosx_x86_64, and
macosx_arm64.
+freethreaded variants are not tested yet. CPython 3.12 can still emit nanobind leak warnings
even when the build is otherwise healthy.
Benchmark
midifileis written in C++ and can parse MIDI files to bothevent levelandnote level. It is still slowed down byiostream.midois written in pure Python and only parses MIDI files toevent level.pretty_midiandmiditoolkitbuild on top ofmidoand expose note-level abstractions.- For libraries written in Python or with Python bindings, we use
timeitto measure parse time.nanobenchis used for C++ libraries andBenchmarkToolsfor Julia libraries. - The benchmark scripts live in symusic-benchmark.
- The published chart was measured on GitHub Actions M1 runners.
Citation
@inproceedings{symusic2024,
title={symusic: A swift and unified toolkit for symbolic music processing},
author={Yikai Liao, Zhongqi Luo, et al.},
booktitle={Extended Abstracts for the Late-Breaking Demo Session of the 25th International Society for Music Information Retrieval Conference},
year={2024},
url={https://ismir2024program.ismir.net/lbd_426.html#lbd},
}
Acknowledgement
- minimidi : A fast and lightweight MIDI parsing library written in C++, which is the foundation of this project.
- prestosynth : A fast SoundFont synthesizer written in C++, which powers Symusic's synthesis layer.
- nanobind : An efficient and lightweight library for binding C++ to Python.
- zpp_bits : A fast single-header serialization library used for pickle support.
- geek_time_cpp : Example code from the book "Modern C++ Programming Practice". We use metamacro.h from it to shorten repetitive code.
- utfcpp : A portable library for handling UTF-8 strings in C++.
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 symusic-0.6.0.tar.gz.
File metadata
- Download URL: symusic-0.6.0.tar.gz
- Upload date:
- Size: 16.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2290a4dd8adb77e6f9b66b75ee47182e426f63d34d83b8741bccc6f8bb49ceae
|
|
| MD5 |
9d896ff1ab8cf1cd9bedf17c93116b56
|
|
| BLAKE2b-256 |
2b3538e45fe17b428548d802950656dda72f06a7619233ed874a2f354ad8f9f0
|
Provenance
The following attestation bundles were made for symusic-0.6.0.tar.gz:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0.tar.gz -
Subject digest:
2290a4dd8adb77e6f9b66b75ee47182e426f63d34d83b8741bccc6f8bb49ceae - Sigstore transparency entry: 1252692963
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: PyPy, 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 |
fc93ce5d0b5ca3c41d30d90e30bcc859a5c240437bb218619c1b6645b0257c40
|
|
| MD5 |
3fc5c325aeaa16b52561563a298cb3e1
|
|
| BLAKE2b-256 |
787e92802364f6edd7bdfcb5afaa42cfef944960eeee393a9d5abb215e36cb13
|
Provenance
The following attestation bundles were made for symusic-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
fc93ce5d0b5ca3c41d30d90e30bcc859a5c240437bb218619c1b6645b0257c40 - Sigstore transparency entry: 1252694560
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54df74c0f49e8802c9eba11acd7c81514cc953fa39619e53530cea3cc480c5c4
|
|
| MD5 |
e3b603d8d833cadb3bd47a0ca00f3923
|
|
| BLAKE2b-256 |
c801c8046bb2ee92e9733ec47bb01f85c3b2d3c00059eae1a0cc83a95cc96008
|
Provenance
The following attestation bundles were made for symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl -
Subject digest:
54df74c0f49e8802c9eba11acd7c81514cc953fa39619e53530cea3cc480c5c4 - Sigstore transparency entry: 1252697344
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: PyPy, 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 |
f18bb1219eaddbb59d1a1e56f507300e50b8200464dcb5b2e9d10af0be716ba1
|
|
| MD5 |
92a1843493d95bd975df29696c0db331
|
|
| BLAKE2b-256 |
d6aa67895ad0080e39f7aa88819f733f49b5a932b9830641345bbeb85567dd93
|
Provenance
The following attestation bundles were made for symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl -
Subject digest:
f18bb1219eaddbb59d1a1e56f507300e50b8200464dcb5b2e9d10af0be716ba1 - Sigstore transparency entry: 1252697717
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c500d7cdfc1b36a6ab59f9527a9ad0e34ba9e46d34695fe63cef526197b9978c
|
|
| MD5 |
fcd39f9f9d56eb44c9b4a5a91bec46f8
|
|
| BLAKE2b-256 |
6dbf661bf25332ff4cd58117ace691fcdf354fb20b2be4d1114926d62fd2a353
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp314-cp314-win_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp314-cp314-win_arm64.whl -
Subject digest:
c500d7cdfc1b36a6ab59f9527a9ad0e34ba9e46d34695fe63cef526197b9978c - Sigstore transparency entry: 1252698508
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: symusic-0.6.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 2.3 MB
- 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 |
9f54d5ce52d702b42d81f68a624d6e91f3113f51f2d981cf8e3dc692f2074c0e
|
|
| MD5 |
f215085d345f3e90397b339e1f9e3725
|
|
| BLAKE2b-256 |
d7bee203ec0578a212566e0b3d07abd10d14e308ad43cab71780d492f03a74ad
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp314-cp314-win_amd64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp314-cp314-win_amd64.whl -
Subject digest:
9f54d5ce52d702b42d81f68a624d6e91f3113f51f2d981cf8e3dc692f2074c0e - Sigstore transparency entry: 1252695037
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp314-cp314-win32.whl.
File metadata
- Download URL: symusic-0.6.0-cp314-cp314-win32.whl
- Upload date:
- Size: 2.2 MB
- 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 |
6080976098f6543d620e7a6220576196e48e3ebffb1b913f16a4d1122c144fb8
|
|
| MD5 |
1bb0e7bb0c96b9bc4a53d025b5597912
|
|
| BLAKE2b-256 |
45c33e8d39f7ef2cbd15ac924390b81e7c360cc7ddf8aa155322fc35e3dde451
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp314-cp314-win32.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp314-cp314-win32.whl -
Subject digest:
6080976098f6543d620e7a6220576196e48e3ebffb1b913f16a4d1122c144fb8 - Sigstore transparency entry: 1252697447
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 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 |
44004cccfd12ac5b4467ad4e3fe1736012d42f81c59a88cd84c4af5139fa11fe
|
|
| MD5 |
cc9f34ef998097777846f2cf475a9384
|
|
| BLAKE2b-256 |
5d59bdaf5ae6cb47bddfccd1c095a464cad31208fdb0627b81cb21422d7a3d83
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
44004cccfd12ac5b4467ad4e3fe1736012d42f81c59a88cd84c4af5139fa11fe - Sigstore transparency entry: 1252696497
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
352c5753229ebb6b8ca6cf00296101e21490ec4e206d0fef0ad37cc37b1a0a8a
|
|
| MD5 |
a392f3bd3ab497c3f0461c93ed9314b0
|
|
| BLAKE2b-256 |
56a89b8bcfbbd8d61d9ce3b966a551bf127da7852322de7859aeaed0435403e1
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
352c5753229ebb6b8ca6cf00296101e21490ec4e206d0fef0ad37cc37b1a0a8a - Sigstore transparency entry: 1252694014
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.6 MB
- 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 |
9d8d18b0f7464c67431f5abbff0ae26bfa520c0e4fc9b7e2e348f53b08fd4adb
|
|
| MD5 |
b0ec0bef0ca70d9bbd8e0199adccad74
|
|
| BLAKE2b-256 |
de60fd53f08a52031f16cc54cce2e56afbae4a30db1837c7ab516bc480559ae3
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
9d8d18b0f7464c67431f5abbff0ae26bfa520c0e4fc9b7e2e348f53b08fd4adb - Sigstore transparency entry: 1252697908
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.14, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5204123dd158308396a4b8bffd846430cfd046abb90bff8a09d73e45c68a929c
|
|
| MD5 |
a9d1fb97cd0b28f07ba0c15db6c45e64
|
|
| BLAKE2b-256 |
114c72c7fdeab7c211495d832af18806ad3f0659a3a26ffbbf7c66087d969a4e
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5204123dd158308396a4b8bffd846430cfd046abb90bff8a09d73e45c68a929c - Sigstore transparency entry: 1252698363
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp314-cp314-macosx_11_0_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp314-cp314-macosx_11_0_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.14, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b0d4150bde94d7f99fad7d03ca305d114290a4d20b5f5befd8cce314f49d0b8
|
|
| MD5 |
1b790dd1200380c2de395f5d62cc71a8
|
|
| BLAKE2b-256 |
bbc2a9cdf88226d0823516349e490d98f56e0fc5c67ab21ea8989a583e2d9793
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp314-cp314-macosx_11_0_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp314-cp314-macosx_11_0_x86_64.whl -
Subject digest:
5b0d4150bde94d7f99fad7d03ca305d114290a4d20b5f5befd8cce314f49d0b8 - Sigstore transparency entry: 1252696409
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- 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 |
875fed98c50aa459dbe7fbef0dcf5eef690437bf433d3028bf28b2e39c111d8f
|
|
| MD5 |
312eafa4b20d2027a29c5592e741cb58
|
|
| BLAKE2b-256 |
fd79c0968d1e545efd97e18b78e64924b0caf951556ec4d0a170cdb2f261eaf6
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
875fed98c50aa459dbe7fbef0dcf5eef690437bf433d3028bf28b2e39c111d8f - Sigstore transparency entry: 1252693598
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a8ef8fe1bde03e03b51c55fd621018332c64fa74b0e290bfa5d8044e53a3434
|
|
| MD5 |
363d4f9111f1da0b4aceba751534ecc5
|
|
| BLAKE2b-256 |
2b35f71793667dcc155f9c674ec815ee03dafe1b509d05c2ac8589f97b8dd7f6
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp313-cp313-win_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp313-cp313-win_arm64.whl -
Subject digest:
9a8ef8fe1bde03e03b51c55fd621018332c64fa74b0e290bfa5d8044e53a3434 - Sigstore transparency entry: 1252695645
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: symusic-0.6.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.2 MB
- 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 |
f5b406d4179c583a7cf8fa699958c7da231afd0b4825958a18f3ea2b9452bbaa
|
|
| MD5 |
2fc22f9ba9c5bd5d036325bc3a7e6edc
|
|
| BLAKE2b-256 |
25dfbc68d39181b04acac67e6116e2aa1aa3e809a364b4baaab63d1776d38b01
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp313-cp313-win_amd64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp313-cp313-win_amd64.whl -
Subject digest:
f5b406d4179c583a7cf8fa699958c7da231afd0b4825958a18f3ea2b9452bbaa - Sigstore transparency entry: 1252695864
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp313-cp313-win32.whl.
File metadata
- Download URL: symusic-0.6.0-cp313-cp313-win32.whl
- Upload date:
- Size: 2.1 MB
- 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 |
7e5371b827972d7d05cb85576e1ef8c376106f49b1614aa81c28462319c60bc5
|
|
| MD5 |
2897bc5499e6283ff10158a3f3c2e4b9
|
|
| BLAKE2b-256 |
26335a1cdaa98fbd3ecadd0035f84d687c97c9cd7b5996e939b401246cd51ec9
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp313-cp313-win32.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp313-cp313-win32.whl -
Subject digest:
7e5371b827972d7d05cb85576e1ef8c376106f49b1614aa81c28462319c60bc5 - Sigstore transparency entry: 1252696323
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 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 |
7f19f36a7f4aece2c6b0ad3530396ea08c70c4c779afe4feec3af96a9128ca3a
|
|
| MD5 |
07cebaad2899a8e5ff2d8c2973b3f0e5
|
|
| BLAKE2b-256 |
b881b360856597bd4adeab296b1f7996b2be98db9e6da9465107edbb34aaf381
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
7f19f36a7f4aece2c6b0ad3530396ea08c70c4c779afe4feec3af96a9128ca3a - Sigstore transparency entry: 1252696687
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cb3a3a791b82f310f6f59209ee745057787b39ad9973b59eb1890a8563ce363
|
|
| MD5 |
922759797b18ff9b18435b77212644c9
|
|
| BLAKE2b-256 |
8df89361791a9c39ddb05500a4e6113ac3a27251ee61ba8b0fa7c895e53198f0
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
4cb3a3a791b82f310f6f59209ee745057787b39ad9973b59eb1890a8563ce363 - Sigstore transparency entry: 1252697096
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.6 MB
- 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 |
af1a20026d751e428430a787702d63a43453b8fcecb303618d66696d19ee4d42
|
|
| MD5 |
b0b800919ca66b64c49f3625b1bf5d1a
|
|
| BLAKE2b-256 |
5e11b80e606e2beee02fe1041ab3c6ee10a4a24e5ef95376616cef08f77bc49e
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
af1a20026d751e428430a787702d63a43453b8fcecb303618d66696d19ee4d42 - Sigstore transparency entry: 1252694471
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc9039f04ed808271d2204475f0bd68727ec8f261fb9d5ccaa82c634a004202c
|
|
| MD5 |
7ba16fc45a922a3ab0600a823221cca2
|
|
| BLAKE2b-256 |
3bf5c3b6f91bc1a1286a2e70cea758e17e4aed382e5cbb36e4f790b7ee1fb2ec
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
bc9039f04ed808271d2204475f0bd68727ec8f261fb9d5ccaa82c634a004202c - Sigstore transparency entry: 1252698122
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp313-cp313-macosx_11_0_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp313-cp313-macosx_11_0_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea29dc9c6bc8023be4144b0ecf7ffed212b4a7ffb74517c9bd308f677b2c5d59
|
|
| MD5 |
039b6c06e05812b3627c46b70fea2b5d
|
|
| BLAKE2b-256 |
f2e80ad06db41e45fbf3356bcb8a9bdf4668f017dccceac96951bd39dd6b735f
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp313-cp313-macosx_11_0_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp313-cp313-macosx_11_0_x86_64.whl -
Subject digest:
ea29dc9c6bc8023be4144b0ecf7ffed212b4a7ffb74517c9bd308f677b2c5d59 - Sigstore transparency entry: 1252694872
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- 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 |
e2940f03e9d1998041f093a2c5428c08878ea7b3b9d036687d03babf7002bd2c
|
|
| MD5 |
e50b8076f542656ca7ca0f74a4358414
|
|
| BLAKE2b-256 |
6eab9c4e65a9c51afbb159f1aeceedfea03cd4415f1200044956db8a86f22532
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
e2940f03e9d1998041f093a2c5428c08878ea7b3b9d036687d03babf7002bd2c - Sigstore transparency entry: 1252696019
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2d32f6066b3a433006bedeaa70c77c6127ee99c1724aaf952916d2263650728
|
|
| MD5 |
ea90b93e12788ddabdac68949976e7b3
|
|
| BLAKE2b-256 |
244537789a284d67dd1f76500ec0afd9511456bfe16184eae428896ac29c6239
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp312-cp312-win_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp312-cp312-win_arm64.whl -
Subject digest:
a2d32f6066b3a433006bedeaa70c77c6127ee99c1724aaf952916d2263650728 - Sigstore transparency entry: 1252693708
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: symusic-0.6.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.2 MB
- 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 |
83d6eb28574f65c4a8a2b005eab3d632cf755aa83764a8def22e16b266522275
|
|
| MD5 |
3d75ca3d4cf7506c15a435fcb48e4a26
|
|
| BLAKE2b-256 |
dd284f0339667b3c1001b8c31b81b6e42b26306277f13b54e8fbaad280d3c84f
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp312-cp312-win_amd64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp312-cp312-win_amd64.whl -
Subject digest:
83d6eb28574f65c4a8a2b005eab3d632cf755aa83764a8def22e16b266522275 - Sigstore transparency entry: 1252695244
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp312-cp312-win32.whl.
File metadata
- Download URL: symusic-0.6.0-cp312-cp312-win32.whl
- Upload date:
- Size: 2.1 MB
- 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 |
3ae473c7e0a20939b45fef5a3b3a7249ab3245048cf974b213b069d9280a9058
|
|
| MD5 |
18fad547e4cf47a666502ae05e86f37c
|
|
| BLAKE2b-256 |
d1eb4fd9d54e7b04ba3d0d8314c77fd36adfbaebd5124ea6ee571fa976309a82
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp312-cp312-win32.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp312-cp312-win32.whl -
Subject digest:
3ae473c7e0a20939b45fef5a3b3a7249ab3245048cf974b213b069d9280a9058 - Sigstore transparency entry: 1252694261
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 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 |
aadb1b0a70fe9cf83f892322faed99acc7dbcc233a477da3cc7dd8b070c5b3b0
|
|
| MD5 |
a4f90993a72c23a8c2f330b2a38e7157
|
|
| BLAKE2b-256 |
d698cc60ee709a7347665afc28140b271d34a06db2e7268fae44624f02143dd5
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
aadb1b0a70fe9cf83f892322faed99acc7dbcc233a477da3cc7dd8b070c5b3b0 - Sigstore transparency entry: 1252694128
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4bc11fd97ef86d4efceb0f10d815d69d464251a357f4ee0cbda4f8fdc7331d7
|
|
| MD5 |
e81074dc8506152c90425d5256fa7434
|
|
| BLAKE2b-256 |
cc859138bb91dc3d24cbf30c8e0682e1f1b50c5b32f3e65176656a7d96b05c9d
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
c4bc11fd97ef86d4efceb0f10d815d69d464251a357f4ee0cbda4f8fdc7331d7 - Sigstore transparency entry: 1252693203
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.6 MB
- 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 |
78b3799d99f662f16f7973b38492ead1dbf4acdff129788b560a183c2802581a
|
|
| MD5 |
7f9f9f9ee283bcaa62a084839054f639
|
|
| BLAKE2b-256 |
39dc5c9dfed294f8ae016f5592cbe47b34f48f10e020f786f76a3b592dc08a79
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
78b3799d99f662f16f7973b38492ead1dbf4acdff129788b560a183c2802581a - Sigstore transparency entry: 1252695326
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5da4cb67a5388f68c2b6a1e8e476e973ce9cc69fece02b1e71c5b611610f1378
|
|
| MD5 |
16ddbda424ac8e788db1288fd044c0b1
|
|
| BLAKE2b-256 |
df0424d08ce719a3d5ff2b7c067a9b00bff971ae274409ca7b75cc5d3cdc1f52
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5da4cb67a5388f68c2b6a1e8e476e973ce9cc69fece02b1e71c5b611610f1378 - Sigstore transparency entry: 1252698216
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp312-cp312-macosx_11_0_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp312-cp312-macosx_11_0_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a368d155ea077c020809425026b130b2e29b86178cf2d13781cd606995620efa
|
|
| MD5 |
76411b5089b2e16551987e2d3e12f875
|
|
| BLAKE2b-256 |
9a7e0df8e3dc00e58e536bd61a23437d52e1fc31585684be404dd9997c10d6d7
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp312-cp312-macosx_11_0_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp312-cp312-macosx_11_0_x86_64.whl -
Subject digest:
a368d155ea077c020809425026b130b2e29b86178cf2d13781cd606995620efa - Sigstore transparency entry: 1252694660
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- 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 |
78e98e0c63cb3079557dcfd2d39008f3926dc31b1254ac09bae894cea938eeaa
|
|
| MD5 |
8369978548353d75f408430d839daffd
|
|
| BLAKE2b-256 |
cc1d4dcd8a040409c4b3c00a4817d7df828e5a1d683ea2a94f762b0adb07d887
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
78e98e0c63cb3079557dcfd2d39008f3926dc31b1254ac09bae894cea938eeaa - Sigstore transparency entry: 1252694951
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a77dfd2a8ee32ef11b790ce26192b81b17de2784fd268aac76a57b5504a5dd5
|
|
| MD5 |
42023eced1e9eb88c4216288df382145
|
|
| BLAKE2b-256 |
275f88155c77adfb2aee438c2f5bdf789aecf30e516369958200c6d620c0a905
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp311-cp311-win_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp311-cp311-win_arm64.whl -
Subject digest:
0a77dfd2a8ee32ef11b790ce26192b81b17de2784fd268aac76a57b5504a5dd5 - Sigstore transparency entry: 1252696170
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: symusic-0.6.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.2 MB
- 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 |
2aa87cfb889274dff06f08c87da25db67f635da67710743735f7aae70bc56b85
|
|
| MD5 |
557a23d11e4fa760ae69c85123595031
|
|
| BLAKE2b-256 |
c81ceff39dec6e879de30ab6e5d3814148ea982a3a90d472274e34dfbd59594d
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp311-cp311-win_amd64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp311-cp311-win_amd64.whl -
Subject digest:
2aa87cfb889274dff06f08c87da25db67f635da67710743735f7aae70bc56b85 - Sigstore transparency entry: 1252693433
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp311-cp311-win32.whl.
File metadata
- Download URL: symusic-0.6.0-cp311-cp311-win32.whl
- Upload date:
- Size: 2.1 MB
- 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 |
11c6e983e4dd4381e476a362bc15574ed2ce74778ae9631f706cf929eeb27d47
|
|
| MD5 |
0d577ad5dcb85d3d5d5386c7a5d16ca5
|
|
| BLAKE2b-256 |
0d4631cbf2ee75fe313186d10ed94471a74c078a5db3c87fe70e01c54c2d60f0
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp311-cp311-win32.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp311-cp311-win32.whl -
Subject digest:
11c6e983e4dd4381e476a362bc15574ed2ce74778ae9631f706cf929eeb27d47 - Sigstore transparency entry: 1252697534
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 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 |
1b8d9f752bba112785df22f38e718622edb7a2bd3c7b462523a88ed22d497b3a
|
|
| MD5 |
5230efae8e222627ea62ab1b214c83f4
|
|
| BLAKE2b-256 |
a45a34b1885521bb21a741812873ce69e417e22dc52beacb5cf62ba87846b3f0
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
1b8d9f752bba112785df22f38e718622edb7a2bd3c7b462523a88ed22d497b3a - Sigstore transparency entry: 1252694370
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2058fd349ddf702a10d3f3dcc0c00022c86bd355d53181a1e74dd714e75af8d
|
|
| MD5 |
df32ca68da3cb30ffd17592c96cc76b0
|
|
| BLAKE2b-256 |
5f5d00ea7f4d117eff535c3912dfd7e35b28ceef764a260bbc7bb22bb466cfe3
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
f2058fd349ddf702a10d3f3dcc0c00022c86bd355d53181a1e74dd714e75af8d - Sigstore transparency entry: 1252696088
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.6 MB
- 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 |
dd84ea6e940d8dcda60ddc1bb9c55c0f85e9fd2b6280edfbe749d4bc0eb7c88e
|
|
| MD5 |
4fad591444b62ac3888c6216a9327cb8
|
|
| BLAKE2b-256 |
26a00331914057815a8aa1ef7abc35dd3967d544aeb48b30b500162edda06d7f
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
dd84ea6e940d8dcda60ddc1bb9c55c0f85e9fd2b6280edfbe749d4bc0eb7c88e - Sigstore transparency entry: 1252695943
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1a4ece4b0f0f8eff4f2395727ccb04f8a6762e0ed64189b7b8e1b2d1f11562c
|
|
| MD5 |
6fe7c850193c00b17e755076bf0e845c
|
|
| BLAKE2b-256 |
390f974ee6d57645a9574b47cc962d1b2a0f101c7b7ba474de0b0330668a62b7
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
c1a4ece4b0f0f8eff4f2395727ccb04f8a6762e0ed64189b7b8e1b2d1f11562c - Sigstore transparency entry: 1252695788
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp311-cp311-macosx_11_0_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp311-cp311-macosx_11_0_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea503f9fe21c23ee38decdd75735673d0f06d70bcf9ef81d0668d511c010840b
|
|
| MD5 |
3e11fd3c5491edba062ee9b3eefeb2ec
|
|
| BLAKE2b-256 |
be7733c72a1dbe19aaa951a607465f0ba58cf916b84caee520ad42add6fa634e
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp311-cp311-macosx_11_0_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp311-cp311-macosx_11_0_x86_64.whl -
Subject digest:
ea503f9fe21c23ee38decdd75735673d0f06d70bcf9ef81d0668d511c010840b - Sigstore transparency entry: 1252697804
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- 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 |
3ab9e6df78931f4e9e439cc9a0d570063a0907066c16e890a2ece495fa198d6a
|
|
| MD5 |
70204c36377ea5af1846810162b649ac
|
|
| BLAKE2b-256 |
142da6ced5d0b616c84e5303c3065bc5b4874a35f789ea45bf181f10886522af
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
3ab9e6df78931f4e9e439cc9a0d570063a0907066c16e890a2ece495fa198d6a - Sigstore transparency entry: 1252695717
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d331d8040b964753381382d37220d881cd948de382c9907b6cb6448787167242
|
|
| MD5 |
dc3317af51cd0f760d16f6b711d23d21
|
|
| BLAKE2b-256 |
072362abce98ed16441df82cbf43f0712eb5a7a81636cb09dd6ead683cd1413c
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp310-cp310-win_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp310-cp310-win_arm64.whl -
Subject digest:
d331d8040b964753381382d37220d881cd948de382c9907b6cb6448787167242 - Sigstore transparency entry: 1252695533
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: symusic-0.6.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.2 MB
- 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 |
ef368443fdf3bbe19a0b2e7523122a7938a46487560d8e912fd8ed02a048b5e4
|
|
| MD5 |
5cab748902748bf22b10e9709f909490
|
|
| BLAKE2b-256 |
e43d1b87d333a9690fce1666c95bab0b3c18aa5a35b46a6e749879f5af4dcbfe
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp310-cp310-win_amd64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp310-cp310-win_amd64.whl -
Subject digest:
ef368443fdf3bbe19a0b2e7523122a7938a46487560d8e912fd8ed02a048b5e4 - Sigstore transparency entry: 1252696781
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp310-cp310-win32.whl.
File metadata
- Download URL: symusic-0.6.0-cp310-cp310-win32.whl
- Upload date:
- Size: 2.1 MB
- 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 |
ff82b61fefaa2dcfede94857fe793c7739ef08b8be9a0c87d174d59fb9a8a07b
|
|
| MD5 |
6ab3c6b2e5c79123c2335f0e18ee9012
|
|
| BLAKE2b-256 |
5335241ae3f851dab391bf346ac0134e3f29834da0ab683a28d1c977b8a9e40a
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp310-cp310-win32.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp310-cp310-win32.whl -
Subject digest:
ff82b61fefaa2dcfede94857fe793c7739ef08b8be9a0c87d174d59fb9a8a07b - Sigstore transparency entry: 1252693835
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 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 |
3fa3d521f728b514c58b703abfb87401c0bb4a2cbdb5fc628b8ed061267668b1
|
|
| MD5 |
892f35f34dbeaa8ca92c9817f516457d
|
|
| BLAKE2b-256 |
1a771d522939c67ba0a7a70e79f026f3fc86c586986faa8aeffa293f9436317c
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
3fa3d521f728b514c58b703abfb87401c0bb4a2cbdb5fc628b8ed061267668b1 - Sigstore transparency entry: 1252695185
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9460b8285e3ddc8184bbb8e0c71cd46e1a02d3d02f77df4209399fef11186cd8
|
|
| MD5 |
8fbf585f20be95acb7f0bf9ab58b6479
|
|
| BLAKE2b-256 |
f764e0276069492bbe6385e7755bd9c740adf672934af7ae0caeeffff2cd0b95
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
9460b8285e3ddc8184bbb8e0c71cd46e1a02d3d02f77df4209399fef11186cd8 - Sigstore transparency entry: 1252695100
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.6 MB
- 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 |
0f379e4c4e86ffa4609b13e05d5d6c727c4e198aad9406ac99e1de0afc60c8d0
|
|
| MD5 |
1cb426ce90ce511a781ff56864a5cac6
|
|
| BLAKE2b-256 |
df16d9f2a04aa606d4decfd07f31c52164efc241ae4472371eab61085feec90e
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0f379e4c4e86ffa4609b13e05d5d6c727c4e198aad9406ac99e1de0afc60c8d0 - Sigstore transparency entry: 1252696977
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3784a4d29760e8fc41a744051ed63923810d5b0f387b1a71526eec4620ecf725
|
|
| MD5 |
7d6f3af9bdaee02da1e2004090ffef45
|
|
| BLAKE2b-256 |
0468d58f0b47c385d10bf6ef2de3072eaab542a16f87420ff14ade9bb49b7781
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
3784a4d29760e8fc41a744051ed63923810d5b0f387b1a71526eec4620ecf725 - Sigstore transparency entry: 1252693924
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp310-cp310-macosx_11_0_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp310-cp310-macosx_11_0_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d500776bc7671a74cc9ccbf9d760977005ebf80ada6ced823a50715ac837da46
|
|
| MD5 |
6ab1e7e718a8864d1818ed7be5969fc8
|
|
| BLAKE2b-256 |
c93f663203721639c4b9bcfd1cef4280d2ccc89ab4045d6121de9d8db8c4b308
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp310-cp310-macosx_11_0_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp310-cp310-macosx_11_0_x86_64.whl -
Subject digest:
d500776bc7671a74cc9ccbf9d760977005ebf80ada6ced823a50715ac837da46 - Sigstore transparency entry: 1252697182
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- 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 |
0e6a446ecdc7a2d40bbbbf271f8b0f81995e7d1014308f85cda77cb0f75113fe
|
|
| MD5 |
c617afa73725653fcf0ffeaa383f8c6e
|
|
| BLAKE2b-256 |
be8c03f95b37b4c7e255ec2a80ee0eea489d560ffd29e2545a279561c714f53a
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
0e6a446ecdc7a2d40bbbbf271f8b0f81995e7d1014308f85cda77cb0f75113fe - Sigstore transparency entry: 1252694781
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp39-cp39-win_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0ce354590a0fbc2e476ccfedb639dd17b19e513f97cb52f5230c4eeb28bb7c0
|
|
| MD5 |
881b73f5a81b4e046285b45cddf6ff15
|
|
| BLAKE2b-256 |
0d5106a7fdbb95d31f0f1f9bc51d32c1bcc473fa41664ffe1b7b2182c99d6e99
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp39-cp39-win_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp39-cp39-win_arm64.whl -
Subject digest:
b0ce354590a0fbc2e476ccfedb639dd17b19e513f97cb52f5230c4eeb28bb7c0 - Sigstore transparency entry: 1252696246
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: symusic-0.6.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.2 MB
- 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 |
9f4bddcb2f7149473ca7413874c8884b505ef3d663eeb1196e98eac2490cb85e
|
|
| MD5 |
43da1addb28e6f102194c6a989544365
|
|
| BLAKE2b-256 |
66cb5f9fb6be8ac5740f28598996c675a01401d850d280369a4f70f5e6f68be9
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp39-cp39-win_amd64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp39-cp39-win_amd64.whl -
Subject digest:
9f4bddcb2f7149473ca7413874c8884b505ef3d663eeb1196e98eac2490cb85e - Sigstore transparency entry: 1252695416
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp39-cp39-win32.whl.
File metadata
- Download URL: symusic-0.6.0-cp39-cp39-win32.whl
- Upload date:
- Size: 2.1 MB
- 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 |
200a80e748127201491632ce93cb6f381b0c06f13629998b66bf07990a2ca13d
|
|
| MD5 |
9afeb65ee88cedf51bf90e57c536ac29
|
|
| BLAKE2b-256 |
6b56479388b17126e5667c61dc198a679a7c68d5fc6b15dec0a60453269b8d42
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp39-cp39-win32.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp39-cp39-win32.whl -
Subject digest:
200a80e748127201491632ce93cb6f381b0c06f13629998b66bf07990a2ca13d - Sigstore transparency entry: 1252696592
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 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 |
01cf3421fc6a70ce3e945b0541d41fdaec6d4668020eba7f74217e56401ef2c5
|
|
| MD5 |
f0ac14dc249f30a5295fa91a69c16c15
|
|
| BLAKE2b-256 |
80977f4111106eee8f6c54ec5c55da3c82a9f93d05092152f4c240cfafc75b4e
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
01cf3421fc6a70ce3e945b0541d41fdaec6d4668020eba7f74217e56401ef2c5 - Sigstore transparency entry: 1252696885
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ebb5df137aed704d55d7fb352e50cfbf502c2f476d65e74d90939f6b2588369
|
|
| MD5 |
232b57ae23b561fc1758eaafa58eab66
|
|
| BLAKE2b-256 |
2996cc8cf8ca80026749f986eb3ab98df82f292a7956ec19288ae0c0d2b32483
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
7ebb5df137aed704d55d7fb352e50cfbf502c2f476d65e74d90939f6b2588369 - Sigstore transparency entry: 1252693295
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.6 MB
- 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 |
648a79d4db63f3e83d86f16b2b7fa78041d1a259f43ac0c4b2445df13d366842
|
|
| MD5 |
cfa9b1bd8ca37e86d89476d647c56154
|
|
| BLAKE2b-256 |
13bb41dd597f417d120d518ab3ec3790db657af98d8d1fb0076a20c84e99006f
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
648a79d4db63f3e83d86f16b2b7fa78041d1a259f43ac0c4b2445df13d366842 - Sigstore transparency entry: 1252697280
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: symusic-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52aeb24a4fc932e7c37c10c6ed0b38c2ce11716d5fe09e5375e6478f05e8d5a6
|
|
| MD5 |
aae5940dab38fd72d5302f714f7a6a42
|
|
| BLAKE2b-256 |
f6a146b9df8b2e67724e000775225a0cc026d1957370b5c8ec638b7b88790066
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
52aeb24a4fc932e7c37c10c6ed0b38c2ce11716d5fe09e5375e6478f05e8d5a6 - Sigstore transparency entry: 1252697621
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp39-cp39-macosx_11_0_x86_64.whl.
File metadata
- Download URL: symusic-0.6.0-cp39-cp39-macosx_11_0_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77815e7fe69c4664236580e70dc5bdeae68464bda636ac17eb5075046af8f454
|
|
| MD5 |
e893cad1e9c7e299fe342748a79709e0
|
|
| BLAKE2b-256 |
24e93d30d4839b0bdb90a967aedc17e3cc59660d4321ce3fdbcad4c2e0c9ea30
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp39-cp39-macosx_11_0_x86_64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp39-cp39-macosx_11_0_x86_64.whl -
Subject digest:
77815e7fe69c4664236580e70dc5bdeae68464bda636ac17eb5075046af8f454 - Sigstore transparency entry: 1252698001
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type:
File details
Details for the file symusic-0.6.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: symusic-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- 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 |
5ffeba194995e8e5b6a67964705aae4f9718ce6a68c4796faa0ffbceaa629c15
|
|
| MD5 |
6476af39199be8554dcbc698f600b218
|
|
| BLAKE2b-256 |
fa17a0aeb9b35f829de8f16cfc3eb66de6ef4c80d4b44f95c3c5c4739a4e2119
|
Provenance
The following attestation bundles were made for symusic-0.6.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
wheel.yml on Yikai-Liao/symusic
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
symusic-0.6.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
5ffeba194995e8e5b6a67964705aae4f9718ce6a68c4796faa0ffbceaa629c15 - Sigstore transparency entry: 1252693086
- Sigstore integration time:
-
Permalink:
Yikai-Liao/symusic@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Branch / Tag:
refs/tags/v0.6.0 - Owner: https://github.com/Yikai-Liao
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheel.yml@43ff25277abbc72dbd8d00fb5a9a14ec37fb7906 -
Trigger Event:
release
-
Statement type: