Skip to main content

A high performance MIDI file parser with comprehensible interface.

Project description

symusic

Build and upload to PyPI PyPI version Downloads codecov Tests Page Views Count

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.md tracks the current v0.6.0 work 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, and pip install . -C cmake.define.SYMUSIC_FAST_BUILD=ON before running sphinx-build -b html docs docs/_build/html.

Features

  • Load MIDI and ABC files with Score("path.mid") or Score("path.abc", fmt="abc").
  • Convert scores between tick, quarter, and second time units.
  • Export back to MIDI or ABC with dump_midi, dump_abc, and dumps_abc.
  • Compute beats, downbeats, and piano rolls for analysis and model pipelines.
  • Apply vectorized transformations on Score and Track objects such as shift_pitch, shift_velocity, shift_time, sort, and filter.
  • Serialize containers efficiently with pickle and structured NumPy exports.
  • Render audio through SoundFonts with Synthesizer, BuiltInSF2, BuiltInSF3, and dump_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

  • midifile is written in C++ and can parse MIDI files to both event level and note level. It is still slowed down by iostream.
  • mido is written in pure Python and only parses MIDI files to event level.
  • pretty_midi and miditoolkit build on top of mido and expose note-level abstractions.
  • For libraries written in Python or with Python bindings, we use timeit to measure parse time. nanobench is used for C++ libraries and BenchmarkTools for Julia libraries.
  • The benchmark scripts live in symusic-benchmark.
  • The published chart was measured on GitHub Actions M1 runners.

Image

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


Download files

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

Source Distribution

symusic-0.6.0.tar.gz (16.2 MB view details)

Uploaded Source

Built Distributions

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

symusic-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (2.9 MB view details)

Uploaded PyPymacOS 11.0+ x86-64

symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

symusic-0.6.0-cp314-cp314-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows ARM64

symusic-0.6.0-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

symusic-0.6.0-cp314-cp314-win32.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86

symusic-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

symusic-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

symusic-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

symusic-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

symusic-0.6.0-cp314-cp314-macosx_11_0_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

symusic-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

symusic-0.6.0-cp313-cp313-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows ARM64

symusic-0.6.0-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

symusic-0.6.0-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

symusic-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

symusic-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

symusic-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

symusic-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

symusic-0.6.0-cp313-cp313-macosx_11_0_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

symusic-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

symusic-0.6.0-cp312-cp312-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows ARM64

symusic-0.6.0-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

symusic-0.6.0-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

symusic-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

symusic-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

symusic-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

symusic-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

symusic-0.6.0-cp312-cp312-macosx_11_0_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

symusic-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

symusic-0.6.0-cp311-cp311-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows ARM64

symusic-0.6.0-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

symusic-0.6.0-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

symusic-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

symusic-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

symusic-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

symusic-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

symusic-0.6.0-cp311-cp311-macosx_11_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

symusic-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

symusic-0.6.0-cp310-cp310-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows ARM64

symusic-0.6.0-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

symusic-0.6.0-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

symusic-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

symusic-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

symusic-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

symusic-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

symusic-0.6.0-cp310-cp310-macosx_11_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

symusic-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

symusic-0.6.0-cp39-cp39-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows ARM64

symusic-0.6.0-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

symusic-0.6.0-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

symusic-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

symusic-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

symusic-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.6 MB view details)

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

symusic-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

symusic-0.6.0-cp39-cp39-macosx_11_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

symusic-0.6.0-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Hashes for symusic-0.6.0.tar.gz
Algorithm Hash digest
SHA256 2290a4dd8adb77e6f9b66b75ee47182e426f63d34d83b8741bccc6f8bb49ceae
MD5 9d896ff1ab8cf1cd9bedf17c93116b56
BLAKE2b-256 2b3538e45fe17b428548d802950656dda72f06a7619233ed874a2f354ad8f9f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0.tar.gz:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

File hashes

Hashes for symusic-0.6.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc93ce5d0b5ca3c41d30d90e30bcc859a5c240437bb218619c1b6645b0257c40
MD5 3fc5c325aeaa16b52561563a298cb3e1
BLAKE2b-256 787e92802364f6edd7bdfcb5afaa42cfef944960eeee393a9d5abb215e36cb13

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 54df74c0f49e8802c9eba11acd7c81514cc953fa39619e53530cea3cc480c5c4
MD5 e3b603d8d833cadb3bd47a0ca00f3923
BLAKE2b-256 c801c8046bb2ee92e9733ec47bb01f85c3b2d3c00059eae1a0cc83a95cc96008

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f18bb1219eaddbb59d1a1e56f507300e50b8200464dcb5b2e9d10af0be716ba1
MD5 92a1843493d95bd975df29696c0db331
BLAKE2b-256 d6aa67895ad0080e39f7aa88819f733f49b5a932b9830641345bbeb85567dd93

See more details on using hashes here.

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

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

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

Hashes for symusic-0.6.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c500d7cdfc1b36a6ab59f9527a9ad0e34ba9e46d34695fe63cef526197b9978c
MD5 fcd39f9f9d56eb44c9b4a5a91bec46f8
BLAKE2b-256 6dbf661bf25332ff4cd58117ace691fcdf354fb20b2be4d1114926d62fd2a353

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp314-cp314-win_arm64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9f54d5ce52d702b42d81f68a624d6e91f3113f51f2d981cf8e3dc692f2074c0e
MD5 f215085d345f3e90397b339e1f9e3725
BLAKE2b-256 d7bee203ec0578a212566e0b3d07abd10d14e308ad43cab71780d492f03a74ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp314-cp314-win_amd64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6080976098f6543d620e7a6220576196e48e3ebffb1b913f16a4d1122c144fb8
MD5 1bb0e7bb0c96b9bc4a53d025b5597912
BLAKE2b-256 45c33e8d39f7ef2cbd15ac924390b81e7c360cc7ddf8aa155322fc35e3dde451

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp314-cp314-win32.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

File details

Details for the file symusic-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44004cccfd12ac5b4467ad4e3fe1736012d42f81c59a88cd84c4af5139fa11fe
MD5 cc9f34ef998097777846f2cf475a9384
BLAKE2b-256 5d59bdaf5ae6cb47bddfccd1c095a464cad31208fdb0627b81cb21422d7a3d83

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 352c5753229ebb6b8ca6cf00296101e21490ec4e206d0fef0ad37cc37b1a0a8a
MD5 a392f3bd3ab497c3f0461c93ed9314b0
BLAKE2b-256 56a89b8bcfbbd8d61d9ce3b966a551bf127da7852322de7859aeaed0435403e1

See more details on using hashes here.

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

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

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

File hashes

Hashes for symusic-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d8d18b0f7464c67431f5abbff0ae26bfa520c0e4fc9b7e2e348f53b08fd4adb
MD5 b0ec0bef0ca70d9bbd8e0199adccad74
BLAKE2b-256 de60fd53f08a52031f16cc54cce2e56afbae4a30db1837c7ab516bc480559ae3

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5204123dd158308396a4b8bffd846430cfd046abb90bff8a09d73e45c68a929c
MD5 a9d1fb97cd0b28f07ba0c15db6c45e64
BLAKE2b-256 114c72c7fdeab7c211495d832af18806ad3f0659a3a26ffbbf7c66087d969a4e

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5b0d4150bde94d7f99fad7d03ca305d114290a4d20b5f5befd8cce314f49d0b8
MD5 1b790dd1200380c2de395f5d62cc71a8
BLAKE2b-256 bbc2a9cdf88226d0823516349e490d98f56e0fc5c67ab21ea8989a583e2d9793

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 875fed98c50aa459dbe7fbef0dcf5eef690437bf433d3028bf28b2e39c111d8f
MD5 312eafa4b20d2027a29c5592e741cb58
BLAKE2b-256 fd79c0968d1e545efd97e18b78e64924b0caf951556ec4d0a170cdb2f261eaf6

See more details on using hashes here.

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

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

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

Hashes for symusic-0.6.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9a8ef8fe1bde03e03b51c55fd621018332c64fa74b0e290bfa5d8044e53a3434
MD5 363d4f9111f1da0b4aceba751534ecc5
BLAKE2b-256 2b35f71793667dcc155f9c674ec815ee03dafe1b509d05c2ac8589f97b8dd7f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp313-cp313-win_arm64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f5b406d4179c583a7cf8fa699958c7da231afd0b4825958a18f3ea2b9452bbaa
MD5 2fc22f9ba9c5bd5d036325bc3a7e6edc
BLAKE2b-256 25dfbc68d39181b04acac67e6116e2aa1aa3e809a364b4baaab63d1776d38b01

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp313-cp313-win_amd64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7e5371b827972d7d05cb85576e1ef8c376106f49b1614aa81c28462319c60bc5
MD5 2897bc5499e6283ff10158a3f3c2e4b9
BLAKE2b-256 26335a1cdaa98fbd3ecadd0035f84d687c97c9cd7b5996e939b401246cd51ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp313-cp313-win32.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

File details

Details for the file symusic-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f19f36a7f4aece2c6b0ad3530396ea08c70c4c779afe4feec3af96a9128ca3a
MD5 07cebaad2899a8e5ff2d8c2973b3f0e5
BLAKE2b-256 b881b360856597bd4adeab296b1f7996b2be98db9e6da9465107edbb34aaf381

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cb3a3a791b82f310f6f59209ee745057787b39ad9973b59eb1890a8563ce363
MD5 922759797b18ff9b18435b77212644c9
BLAKE2b-256 8df89361791a9c39ddb05500a4e6113ac3a27251ee61ba8b0fa7c895e53198f0

See more details on using hashes here.

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

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

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

File hashes

Hashes for symusic-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af1a20026d751e428430a787702d63a43453b8fcecb303618d66696d19ee4d42
MD5 b0b800919ca66b64c49f3625b1bf5d1a
BLAKE2b-256 5e11b80e606e2beee02fe1041ab3c6ee10a4a24e5ef95376616cef08f77bc49e

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc9039f04ed808271d2204475f0bd68727ec8f261fb9d5ccaa82c634a004202c
MD5 7ba16fc45a922a3ab0600a823221cca2
BLAKE2b-256 3bf5c3b6f91bc1a1286a2e70cea758e17e4aed382e5cbb36e4f790b7ee1fb2ec

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ea29dc9c6bc8023be4144b0ecf7ffed212b4a7ffb74517c9bd308f677b2c5d59
MD5 039b6c06e05812b3627c46b70fea2b5d
BLAKE2b-256 f2e80ad06db41e45fbf3356bcb8a9bdf4668f017dccceac96951bd39dd6b735f

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2940f03e9d1998041f093a2c5428c08878ea7b3b9d036687d03babf7002bd2c
MD5 e50b8076f542656ca7ca0f74a4358414
BLAKE2b-256 6eab9c4e65a9c51afbb159f1aeceedfea03cd4415f1200044956db8a86f22532

See more details on using hashes here.

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

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

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

Hashes for symusic-0.6.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a2d32f6066b3a433006bedeaa70c77c6127ee99c1724aaf952916d2263650728
MD5 ea90b93e12788ddabdac68949976e7b3
BLAKE2b-256 244537789a284d67dd1f76500ec0afd9511456bfe16184eae428896ac29c6239

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp312-cp312-win_arm64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 83d6eb28574f65c4a8a2b005eab3d632cf755aa83764a8def22e16b266522275
MD5 3d75ca3d4cf7506c15a435fcb48e4a26
BLAKE2b-256 dd284f0339667b3c1001b8c31b81b6e42b26306277f13b54e8fbaad280d3c84f

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp312-cp312-win_amd64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3ae473c7e0a20939b45fef5a3b3a7249ab3245048cf974b213b069d9280a9058
MD5 18fad547e4cf47a666502ae05e86f37c
BLAKE2b-256 d1eb4fd9d54e7b04ba3d0d8314c77fd36adfbaebd5124ea6ee571fa976309a82

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp312-cp312-win32.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

File details

Details for the file symusic-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aadb1b0a70fe9cf83f892322faed99acc7dbcc233a477da3cc7dd8b070c5b3b0
MD5 a4f90993a72c23a8c2f330b2a38e7157
BLAKE2b-256 d698cc60ee709a7347665afc28140b271d34a06db2e7268fae44624f02143dd5

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4bc11fd97ef86d4efceb0f10d815d69d464251a357f4ee0cbda4f8fdc7331d7
MD5 e81074dc8506152c90425d5256fa7434
BLAKE2b-256 cc859138bb91dc3d24cbf30c8e0682e1f1b50c5b32f3e65176656a7d96b05c9d

See more details on using hashes here.

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

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

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

File hashes

Hashes for symusic-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78b3799d99f662f16f7973b38492ead1dbf4acdff129788b560a183c2802581a
MD5 7f9f9f9ee283bcaa62a084839054f639
BLAKE2b-256 39dc5c9dfed294f8ae016f5592cbe47b34f48f10e020f786f76a3b592dc08a79

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5da4cb67a5388f68c2b6a1e8e476e973ce9cc69fece02b1e71c5b611610f1378
MD5 16ddbda424ac8e788db1288fd044c0b1
BLAKE2b-256 df0424d08ce719a3d5ff2b7c067a9b00bff971ae274409ca7b75cc5d3cdc1f52

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a368d155ea077c020809425026b130b2e29b86178cf2d13781cd606995620efa
MD5 76411b5089b2e16551987e2d3e12f875
BLAKE2b-256 9a7e0df8e3dc00e58e536bd61a23437d52e1fc31585684be404dd9997c10d6d7

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78e98e0c63cb3079557dcfd2d39008f3926dc31b1254ac09bae894cea938eeaa
MD5 8369978548353d75f408430d839daffd
BLAKE2b-256 cc1d4dcd8a040409c4b3c00a4817d7df828e5a1d683ea2a94f762b0adb07d887

See more details on using hashes here.

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

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

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

Hashes for symusic-0.6.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0a77dfd2a8ee32ef11b790ce26192b81b17de2784fd268aac76a57b5504a5dd5
MD5 42023eced1e9eb88c4216288df382145
BLAKE2b-256 275f88155c77adfb2aee438c2f5bdf789aecf30e516369958200c6d620c0a905

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp311-cp311-win_arm64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2aa87cfb889274dff06f08c87da25db67f635da67710743735f7aae70bc56b85
MD5 557a23d11e4fa760ae69c85123595031
BLAKE2b-256 c81ceff39dec6e879de30ab6e5d3814148ea982a3a90d472274e34dfbd59594d

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp311-cp311-win_amd64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 11c6e983e4dd4381e476a362bc15574ed2ce74778ae9631f706cf929eeb27d47
MD5 0d577ad5dcb85d3d5d5386c7a5d16ca5
BLAKE2b-256 0d4631cbf2ee75fe313186d10ed94471a74c078a5db3c87fe70e01c54c2d60f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp311-cp311-win32.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

File details

Details for the file symusic-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b8d9f752bba112785df22f38e718622edb7a2bd3c7b462523a88ed22d497b3a
MD5 5230efae8e222627ea62ab1b214c83f4
BLAKE2b-256 a45a34b1885521bb21a741812873ce69e417e22dc52beacb5cf62ba87846b3f0

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2058fd349ddf702a10d3f3dcc0c00022c86bd355d53181a1e74dd714e75af8d
MD5 df32ca68da3cb30ffd17592c96cc76b0
BLAKE2b-256 5f5d00ea7f4d117eff535c3912dfd7e35b28ceef764a260bbc7bb22bb466cfe3

See more details on using hashes here.

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

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

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

File hashes

Hashes for symusic-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd84ea6e940d8dcda60ddc1bb9c55c0f85e9fd2b6280edfbe749d4bc0eb7c88e
MD5 4fad591444b62ac3888c6216a9327cb8
BLAKE2b-256 26a00331914057815a8aa1ef7abc35dd3967d544aeb48b30b500162edda06d7f

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1a4ece4b0f0f8eff4f2395727ccb04f8a6762e0ed64189b7b8e1b2d1f11562c
MD5 6fe7c850193c00b17e755076bf0e845c
BLAKE2b-256 390f974ee6d57645a9574b47cc962d1b2a0f101c7b7ba474de0b0330668a62b7

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ea503f9fe21c23ee38decdd75735673d0f06d70bcf9ef81d0668d511c010840b
MD5 3e11fd3c5491edba062ee9b3eefeb2ec
BLAKE2b-256 be7733c72a1dbe19aaa951a607465f0ba58cf916b84caee520ad42add6fa634e

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ab9e6df78931f4e9e439cc9a0d570063a0907066c16e890a2ece495fa198d6a
MD5 70204c36377ea5af1846810162b649ac
BLAKE2b-256 142da6ced5d0b616c84e5303c3065bc5b4874a35f789ea45bf181f10886522af

See more details on using hashes here.

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

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

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

Hashes for symusic-0.6.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d331d8040b964753381382d37220d881cd948de382c9907b6cb6448787167242
MD5 dc3317af51cd0f760d16f6b711d23d21
BLAKE2b-256 072362abce98ed16441df82cbf43f0712eb5a7a81636cb09dd6ead683cd1413c

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp310-cp310-win_arm64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ef368443fdf3bbe19a0b2e7523122a7938a46487560d8e912fd8ed02a048b5e4
MD5 5cab748902748bf22b10e9709f909490
BLAKE2b-256 e43d1b87d333a9690fce1666c95bab0b3c18aa5a35b46a6e749879f5af4dcbfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp310-cp310-win_amd64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ff82b61fefaa2dcfede94857fe793c7739ef08b8be9a0c87d174d59fb9a8a07b
MD5 6ab3c6b2e5c79123c2335f0e18ee9012
BLAKE2b-256 5335241ae3f851dab391bf346ac0134e3f29834da0ab683a28d1c977b8a9e40a

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp310-cp310-win32.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

File details

Details for the file symusic-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fa3d521f728b514c58b703abfb87401c0bb4a2cbdb5fc628b8ed061267668b1
MD5 892f35f34dbeaa8ca92c9817f516457d
BLAKE2b-256 1a771d522939c67ba0a7a70e79f026f3fc86c586986faa8aeffa293f9436317c

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9460b8285e3ddc8184bbb8e0c71cd46e1a02d3d02f77df4209399fef11186cd8
MD5 8fbf585f20be95acb7f0bf9ab58b6479
BLAKE2b-256 f764e0276069492bbe6385e7755bd9c740adf672934af7ae0caeeffff2cd0b95

See more details on using hashes here.

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

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

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

File hashes

Hashes for symusic-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f379e4c4e86ffa4609b13e05d5d6c727c4e198aad9406ac99e1de0afc60c8d0
MD5 1cb426ce90ce511a781ff56864a5cac6
BLAKE2b-256 df16d9f2a04aa606d4decfd07f31c52164efc241ae4472371eab61085feec90e

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3784a4d29760e8fc41a744051ed63923810d5b0f387b1a71526eec4620ecf725
MD5 7d6f3af9bdaee02da1e2004090ffef45
BLAKE2b-256 0468d58f0b47c385d10bf6ef2de3072eaab542a16f87420ff14ade9bb49b7781

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d500776bc7671a74cc9ccbf9d760977005ebf80ada6ced823a50715ac837da46
MD5 6ab1e7e718a8864d1818ed7be5969fc8
BLAKE2b-256 c93f663203721639c4b9bcfd1cef4280d2ccc89ab4045d6121de9d8db8c4b308

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e6a446ecdc7a2d40bbbbf271f8b0f81995e7d1014308f85cda77cb0f75113fe
MD5 c617afa73725653fcf0ffeaa383f8c6e
BLAKE2b-256 be8c03f95b37b4c7e255ec2a80ee0eea489d560ffd29e2545a279561c714f53a

See more details on using hashes here.

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

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

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

Hashes for symusic-0.6.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b0ce354590a0fbc2e476ccfedb639dd17b19e513f97cb52f5230c4eeb28bb7c0
MD5 881b73f5a81b4e046285b45cddf6ff15
BLAKE2b-256 0d5106a7fdbb95d31f0f1f9bc51d32c1bcc473fa41664ffe1b7b2182c99d6e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp39-cp39-win_arm64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9f4bddcb2f7149473ca7413874c8884b505ef3d663eeb1196e98eac2490cb85e
MD5 43da1addb28e6f102194c6a989544365
BLAKE2b-256 66cb5f9fb6be8ac5740f28598996c675a01401d850d280369a4f70f5e6f68be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp39-cp39-win_amd64.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

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

Hashes for symusic-0.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 200a80e748127201491632ce93cb6f381b0c06f13629998b66bf07990a2ca13d
MD5 9afeb65ee88cedf51bf90e57c536ac29
BLAKE2b-256 6b56479388b17126e5667c61dc198a679a7c68d5fc6b15dec0a60453269b8d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for symusic-0.6.0-cp39-cp39-win32.whl:

Publisher: wheel.yml on Yikai-Liao/symusic

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

File details

Details for the file symusic-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01cf3421fc6a70ce3e945b0541d41fdaec6d4668020eba7f74217e56401ef2c5
MD5 f0ac14dc249f30a5295fa91a69c16c15
BLAKE2b-256 80977f4111106eee8f6c54ec5c55da3c82a9f93d05092152f4c240cfafc75b4e

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ebb5df137aed704d55d7fb352e50cfbf502c2f476d65e74d90939f6b2588369
MD5 232b57ae23b561fc1758eaafa58eab66
BLAKE2b-256 2996cc8cf8ca80026749f986eb3ab98df82f292a7956ec19288ae0c0d2b32483

See more details on using hashes here.

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

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

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

File hashes

Hashes for symusic-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 648a79d4db63f3e83d86f16b2b7fa78041d1a259f43ac0c4b2445df13d366842
MD5 cfa9b1bd8ca37e86d89476d647c56154
BLAKE2b-256 13bb41dd597f417d120d518ab3ec3790db657af98d8d1fb0076a20c84e99006f

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52aeb24a4fc932e7c37c10c6ed0b38c2ce11716d5fe09e5375e6478f05e8d5a6
MD5 aae5940dab38fd72d5302f714f7a6a42
BLAKE2b-256 f6a146b9df8b2e67724e000775225a0cc026d1957370b5c8ec638b7b88790066

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 77815e7fe69c4664236580e70dc5bdeae68464bda636ac17eb5075046af8f454
MD5 e893cad1e9c7e299fe342748a79709e0
BLAKE2b-256 24e93d30d4839b0bdb90a967aedc17e3cc59660d4321ce3fdbcad4c2e0c9ea30

See more details on using hashes here.

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

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

File details

Details for the file symusic-0.6.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symusic-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ffeba194995e8e5b6a67964705aae4f9718ce6a68c4796faa0ffbceaa629c15
MD5 6476af39199be8554dcbc698f600b218
BLAKE2b-256 fa17a0aeb9b35f829de8f16cfc3eb66de6ef4c80d4b44f95c3c5c4739a4e2119

See more details on using hashes here.

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

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

Supported by

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