Python bindings for using SoundFonts (sf2/sf3/sfo formats), generating audio samples, and playing MIDI songs
Project description
TinySoundFont-pybind
This tinysoundfont
Python package provides Python bindings for
TinySoundFont and lets you
generate audio using SoundFont instruments (.sf2
, .sf3
, or .sfo
files) in
Python. The audio data can be played by
PyAudio in a separate thread if requested.
This package also includes support for loading and playing MIDI data using a
SoundFont instrument.
What you might want to use this package for:
- Play MIDI files with SoundFonts in Python
- Play MIDI files with modifications and customizations (mute tracks, change instruments, etc.)
- Procedurally generate and play music or sounds
- Play music and sounds in an interactive way in your Python program
Documentation
Main tinysoundfont
documentation
The documentation contains:
Installation
This package depends on pyaudio
for playing sounds. To install pyaudio
for
common platforms:
Windows
py -m pip install pyaudio
macOS
brew install portaudio
pip install pyaudio
GNU/Linux (Ubuntu)
sudo apt install python3-pyaudio
To install tinysoundfont
, for all platforms do:
pip install tinysoundfont
Basic Usage
Here is an example program that plays a chord:
import tinysoundfont
import time
synth = tinysoundfont.Synth()
sfid = synth.sfload("florestan-piano.sf2")
synth.program_select(0, sfid, 0, 0)
synth.start()
time.sleep(0.5)
synth.noteon(0, 48, 100)
synth.noteon(0, 52, 100)
synth.noteon(0, 55, 100)
time.sleep(0.5)
synth.noteoff(0, 48)
synth.noteoff(0, 52)
synth.noteoff(0, 55)
time.sleep(0.5)
Please see the Guide for more examples and notes about the examples.
Local build and test
Note that a local build and test is not required to use the package, only for
developing tinysoundfont
itself.
Build and install locally with:
python -m pip install .
Test in the root directory with:
pytest
You may want to build and test in a virtualenv
environment.
The python -m pip install .
will perform a compilation step for C++
code.
Your environment must have access to a working C++
compiler as well as the
Python development headers.
Editable build
To speed up development you can do an "editable build". This will cache a lot of
compiling and setup. First install all needed dependencies in pip
:
pip install scikit_build_core pyproject_metadata pathspec pybind11
Then install with editable.rebuild
on:
pip install . --no-build-isolation --config-setting=editable.rebuild=true -Cbuild-dir=build .
In my experience you still need to rerun this command when editing files, but it will go faster.
Packaging
Building wheels for PyPI is done by GitHub Actions and does not need to be done manually.
Documentation
Documentation is done using Sphinx. GitHub Actions builds automatically and pushes pages to the Documentation Page.
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
Built Distributions
File details
Details for the file tinysoundfont-0.3.4.tar.gz
.
File metadata
- Download URL: tinysoundfont-0.3.4.tar.gz
- Upload date:
- Size: 372.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a59a7e1919c930009eb3a71a39a95b78838a1337bc6dd664943c75eafe31a81 |
|
MD5 | 54704b243f40e45abf3b7348595a7537 |
|
BLAKE2b-256 | 7d88d8946587678ccaab847e92ea6e718043e47a66984d826ef755bb16cf2c3a |
File details
Details for the file tinysoundfont-0.3.4-pp310-pypy310_pp73-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 144.4 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 686c71a5204f391f63e42552032b2b95fb9ef4b9c9e313b460cd2a5861f344ee |
|
MD5 | c1f54f9905c858dc054c8887a0bf773e |
|
BLAKE2b-256 | e9d2b85cb2e9a6ef714bc5fd8c1f7707ad3c43931e1d060702eb22ee08e76660 |
File details
Details for the file tinysoundfont-0.3.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 187.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46eabdaa0122430881b31387de2a8dffe400af511148d32afae87c4705781fb0 |
|
MD5 | 63c1dd9636a929040c5b8c06754b7b57 |
|
BLAKE2b-256 | ecefd81c3c554d26c60664d0d9dcde7425f32ede0f0b24a60176ddf707c913f2 |
File details
Details for the file tinysoundfont-0.3.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 195.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34a1b65b65c7217851b4b4372cb693809bd03bdff4a5d390a551533e5a3bad14 |
|
MD5 | 157a65f45256e5478686b295c06ce92e |
|
BLAKE2b-256 | 4032e30e14f6b3b3457d04041915cc5fbee8ff55125c396c5766d385b61b90c4 |
File details
Details for the file tinysoundfont-0.3.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 156.9 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb3f5144fc94b45af5a12d6006fc4aec27d8de2ff88d9aedba0eed9c8a30b33c |
|
MD5 | 92b45b835af0dfd124ec47589082b77d |
|
BLAKE2b-256 | 78b3a631edf0b9be8ca2610af6b0570bc9c151ab66835e49e30db2f809b2fadc |
File details
Details for the file tinysoundfont-0.3.4-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 144.3 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01387dc2f5776bb2d07c07f6fc618d91b72659634756c75441fac0ac7c1682e2 |
|
MD5 | 1912a82108d6c24509455103ea4f208d |
|
BLAKE2b-256 | d4c555a5f07e16b4052c411713d3bb4a5278e400c923e0cf19b0531e0b5984a4 |
File details
Details for the file tinysoundfont-0.3.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 187.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e31114f9fe609b454af82775852e73d694877f5d9a9e189f9f3f1556549515bd |
|
MD5 | 74ea21359e37a825ed1b4db766c2f2b8 |
|
BLAKE2b-256 | 76a21534c2caa43bd1dcf14171244b38712143e59883eabbeec4725b3e1375b7 |
File details
Details for the file tinysoundfont-0.3.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 195.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 018b3ecb44f2c10cef558f68b9e49aac4f6b5875df0b8f82ed7f18407d4a862f |
|
MD5 | cb712fe33a61f6badade2ed7fbab4ca2 |
|
BLAKE2b-256 | 3889c7187e1a7d47a5cad5dee787cbec87577dfb02838e105f5e1a1aeb8091c8 |
File details
Details for the file tinysoundfont-0.3.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 156.9 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1e93808a6b85ca43224baec6403bbe5b394e52aea339c92be0467b126ccd08c |
|
MD5 | b1e94971307608ae88a8d655f2ccb930 |
|
BLAKE2b-256 | 54313493a54c1ab72f7db56f5d5300984efc7c913392ea679f54faac4521d1a1 |
File details
Details for the file tinysoundfont-0.3.4-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 144.2 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10c4af962808a22f8056205bcaf5631fe9c72bd17a6e712651ad25cd83b3d5f1 |
|
MD5 | 1437262d8492d8e1e660d1f31b4f0b46 |
|
BLAKE2b-256 | 690381fa307449ea838249a700ef7079f8a93259cdb1da1f0baa19271a38cf34 |
File details
Details for the file tinysoundfont-0.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 187.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 575e81987e9e9bf319a48a64659edf7ea82abc3ea2f42146846c07b1eda92a1b |
|
MD5 | 3ced3883631eb3db6052df1d1c3130e9 |
|
BLAKE2b-256 | 8dca2ddb391dc2d20d7cef367d406f3c2bff718c285f2e545215c3ce0f6cbb90 |
File details
Details for the file tinysoundfont-0.3.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 195.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7adcda0eb5958f61311e67db81f4b2357ca2c292e7bd23edc5eeec86825a6b66 |
|
MD5 | 0174c8ed22ee7276aa1dfd28c1b852f3 |
|
BLAKE2b-256 | 2b3209f2853b9e08e8a913da298aa8d60a636b5471e81463179f2d196976105f |
File details
Details for the file tinysoundfont-0.3.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 156.9 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cdbc011bfe499b477ecc3e5ed27e0d65d6ef5d2fb445f4b49f5faa708be005c |
|
MD5 | 9887bd8b78a437aff5206b7966427d26 |
|
BLAKE2b-256 | 87a526d9f67d913ead0134974bab962106e26088f49eaee73a533a97e1891f23 |
File details
Details for the file tinysoundfont-0.3.4-pp37-pypy37_pp73-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp37-pypy37_pp73-win_amd64.whl
- Upload date:
- Size: 144.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09e03b60a9f48c8231488d3e634497b6a6c3ce5f8cb5fd310ca86ec9642315da |
|
MD5 | 40dd80cbbcb095efa51c6006ee214212 |
|
BLAKE2b-256 | 468f03bc63a9bc27142b6a29cdb162c5292c40dba992e3f1108a3ebc05a630b9 |
File details
Details for the file tinysoundfont-0.3.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 187.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 353c6a74de7e46aa17686a7f10929b61b6155ffef7d3a2f91ed731b15c0f2754 |
|
MD5 | 1725230d1702a051e2bd316f9f82cfa7 |
|
BLAKE2b-256 | 7144d59069ea80c8f9c5df38139c050dfc7334bbcc69a5f48b1180783c6c44f1 |
File details
Details for the file tinysoundfont-0.3.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 194.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f819494788485c5ba174a9156701db25672cca4ee44f9cbeb4349f93d87b355 |
|
MD5 | 139c023f1d4d0f12d2fbccc47e4e4084 |
|
BLAKE2b-256 | 551f06f497f1b81e50d06d69ab81fea03fc8707370befa456edacdeaff852e6a |
File details
Details for the file tinysoundfont-0.3.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 156.3 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 784e0b62159f2d9ec357fde7bce80a39af494a0bc2b978e971769e342065706e |
|
MD5 | 0b28416dba9d577be6ef1768566e51ee |
|
BLAKE2b-256 | 1bc9d718875f592fe9805e8f905fc79eec99fde18da47e5c387d308a485b2991 |
File details
Details for the file tinysoundfont-0.3.4-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 145.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75a0c1e9a12b7eba18a466f78a5b57016eabdcb6e3788acce0cfadaca2a69ceb |
|
MD5 | 08182137043161bd7d1edd347b4183e6 |
|
BLAKE2b-256 | 6f75842366c1729c2fba79c6cad1fbba1456bc5f9cf081a939d31486dde404e6 |
File details
Details for the file tinysoundfont-0.3.4-cp312-cp312-win32.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp312-cp312-win32.whl
- Upload date:
- Size: 126.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df1d04d8c7e7d0c20d9409448897370f601c37fb52656f92136c134383f9bdaf |
|
MD5 | 6e2dad077019ad6736c3a04d1fca074c |
|
BLAKE2b-256 | f82807271e7ee42c1c5bc0f988b2473b7ec0a37f87e25f93ac914a8736089d3c |
File details
Details for the file tinysoundfont-0.3.4-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 710.6 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38965e6a2ec1cfa0d831fe0c76c67906b9ec33fb4c82e62e9b7d193f8fe5b420 |
|
MD5 | 0597f72ca9cbe8363cce62e09a29ad3b |
|
BLAKE2b-256 | 77de9da3497cdc186c44a609c1d70a7fca770d2dc82bc81781d7ccbe83bb4135 |
File details
Details for the file tinysoundfont-0.3.4-cp312-cp312-musllinux_1_1_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 770.2 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a8e4ff7257a6e3f0c7d36a095564003643ffcd60be9f056015b297051cc7f75 |
|
MD5 | 95047fe828df2d7d97e384d1165a6df1 |
|
BLAKE2b-256 | 1110abb91012d135de9b357e1ed71d6acebb9420a24dde387f87470e670aadc2 |
File details
Details for the file tinysoundfont-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 188.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20afe7d58a9ce7b1df04429a883449768de0ac07bd3675a013ea11427ed06a86 |
|
MD5 | bd4e73b40e6c1600f00d6b6dbb902523 |
|
BLAKE2b-256 | 82a3d6fbe05d165f95e201c4495cc6dda6e4ce6654a0c7b548a2d578f3a82e7f |
File details
Details for the file tinysoundfont-0.3.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 196.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1e20e719c544a75d4aa6d37b39943a7d5118a9e7037168970506d1eaea8e450 |
|
MD5 | a59280c8fa9be136c62ffac68458c4b6 |
|
BLAKE2b-256 | c4bcc48f91fa137a46e9eae9337415477f359e101d8cea7b359b1cdaee26b077 |
File details
Details for the file tinysoundfont-0.3.4-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 159.6 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 742352ff52715550cf42abe61a5c4e8dcb332c1e2df3e4ac521dbaae787dfb7e |
|
MD5 | fbbc4636f60eff64af975aa44bdf41ea |
|
BLAKE2b-256 | f77dc6c9f264628b4e4123a7e057b934041f3b248de3b86f90142081a4eda728 |
File details
Details for the file tinysoundfont-0.3.4-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 146.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1b2d61b293ffb3e2042e808d6283f2a1fc1e5d4431025d2e206ef9d7a65148b |
|
MD5 | 33f03bec59077c9ecde8b5c5991b2389 |
|
BLAKE2b-256 | bbf8be08042f342d9387238f96ad12627ffe3b09c6d6bdcc7fd30b71501bad7d |
File details
Details for the file tinysoundfont-0.3.4-cp311-cp311-win32.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp311-cp311-win32.whl
- Upload date:
- Size: 127.7 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7147ffc548edc357a2949760db521d2afe44eb651ef99aace37ccc8fcdf58f58 |
|
MD5 | 0d4db31294d275ad1455a48d9dac5f4d |
|
BLAKE2b-256 | 5e11fb1f8a459c63b997a072b670c82c11165d6c7cfee4bd6732c5da3c987953 |
File details
Details for the file tinysoundfont-0.3.4-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 714.1 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d5b9ed7d3f245d7b48a9e222938d8586a8cf30cce86b18bfd7f37a6e6621bcb |
|
MD5 | 4ef871784c618e2b2900752390baf477 |
|
BLAKE2b-256 | 38574b29fa2a0244a1d388947e34cd734b2645324cd4a9040825065ac5d061ef |
File details
Details for the file tinysoundfont-0.3.4-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 773.3 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7dfee4fcc1f0a8bcdffb161017f1533e5ddb358d2e247cbc18fc7f73729fa186 |
|
MD5 | 9a7b8d66cccd59c67e11e2fe85bc6d76 |
|
BLAKE2b-256 | e5c5c83f28f864760cc4e2507629925ae97ced7e701b440832bb546bccf5f2ff |
File details
Details for the file tinysoundfont-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 189.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df6bbe33816c4b98f466bf47e1bbc2b2ff1a91762c0cfc9f2cd8d24132e32806 |
|
MD5 | f9b9cfcc164c7ffc8d02605b87d183f9 |
|
BLAKE2b-256 | c678a3c89930d672e8aa4be901156e2a655fd84bfb0932bfbe50023162117517 |
File details
Details for the file tinysoundfont-0.3.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 198.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 364da135ff6603f00b6e860d12caf7400e3b172d79252bca31ae93601dc053d4 |
|
MD5 | 6338ae5814587959be2130dfca4d4a9b |
|
BLAKE2b-256 | a7c473de8ddbc609a661316f1be21eafc12b3f9f5c1f6a5200ddf29ed0b7a7f8 |
File details
Details for the file tinysoundfont-0.3.4-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 158.4 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c18fb33a34ab67d65cf6d5e9e085373ab1b2ba0339e15cca95738398698a5e08 |
|
MD5 | 356f116fe03d7f2035aec57eba53a2ab |
|
BLAKE2b-256 | 17e383f1551fbd140c009bf36b743b5bd3b4b3d0e150b081b213e53e82ff78a8 |
File details
Details for the file tinysoundfont-0.3.4-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 145.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a851289a35e794d59899e17371d169be08842d323af4f36ee58e7b24b1d6d0e |
|
MD5 | 646e8632c85685d6f0a7d0dcb48cd2a1 |
|
BLAKE2b-256 | d372bce0771fded19435f31297c127bbbc9565aad5671d8dffe33e5e18bec239 |
File details
Details for the file tinysoundfont-0.3.4-cp310-cp310-win32.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp310-cp310-win32.whl
- Upload date:
- Size: 126.6 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ebebd5da2d89cbdcafc1bd87d116a85da03ab89d90165f8ee90e3b2521db0c2 |
|
MD5 | 661d3a402b6be37770cac88a57592bff |
|
BLAKE2b-256 | 5e1c312228a9e78b0caa00eb1919871af0c88ea0dd0c290e296d5f80d7f37499 |
File details
Details for the file tinysoundfont-0.3.4-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 714.1 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 64a524b10e7151b0c8cc7ec3b0b8f48ed36e3279f96af66ea206c0848c53eb39 |
|
MD5 | c07b0ca3d69fea8eab762936c56d2a41 |
|
BLAKE2b-256 | 03f7042d7384aa48364ffc2b5d1bdbda426bb3354d9e00828ad4111391e03e38 |
File details
Details for the file tinysoundfont-0.3.4-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 772.4 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66c1ada5ee727c41fa5e45ae66cc9b63dcfdf8d8d20bd12eb1fae94dfeeb8ce7 |
|
MD5 | 7af1d4ee8d96259cef03b8a22b240d5e |
|
BLAKE2b-256 | 47f9b42e060b081d1a7daea661201c1a5796f95ed18d487980429f6cc726e946 |
File details
Details for the file tinysoundfont-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 187.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1933023b29281e5faeb2de9556d6d27982d94731e07d7a9ce91bd1a27ddb67c7 |
|
MD5 | c814c08a4e3094717d25de7a1e7fcf78 |
|
BLAKE2b-256 | 14c55f01049f0d7935d308dc7566585d427ca5e252dade44d42d17171bfcf0b0 |
File details
Details for the file tinysoundfont-0.3.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 197.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 124b357ae3729178703fe8716e2cd09f8bd3c867ca302d02009d7b7cbd2ec018 |
|
MD5 | fe157c9f8d047cfd6d523bae3dc03c9e |
|
BLAKE2b-256 | 2a2529288a01831c34ddb51220d81b9bd3ed98fd856cdd7e17d23d632a4446f1 |
File details
Details for the file tinysoundfont-0.3.4-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 156.9 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3503e0bec5919a33c54fd86fb3734490446d2fed905c265b80aa2ca6b94dd794 |
|
MD5 | efc239b0d7677b50cf79962752c1ce55 |
|
BLAKE2b-256 | 146228412b7b93bc1b41cc9b391ee17247de8f9aa598d58de116e8be9538cd96 |
File details
Details for the file tinysoundfont-0.3.4-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 145.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 805a0d1733595cbfdfb6c8e07247e17f56ba0a24599133fe95430f0f30a902ff |
|
MD5 | 805fe63dd6ee5af5f6ab7fe95c080be5 |
|
BLAKE2b-256 | d5bc60132908f9640a53a7315b13516eecf95d4d76ebd3127d7f09dae3f3faa1 |
File details
Details for the file tinysoundfont-0.3.4-cp39-cp39-win32.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp39-cp39-win32.whl
- Upload date:
- Size: 126.6 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52ce81351f73c1b3cfdc5e2ed2a9b7dda788edcea4862f7f800ed4fc09a960da |
|
MD5 | 2ce9f8f0a2417fa51125199cf051e3d2 |
|
BLAKE2b-256 | 60be75fe82198443366326642d5c66cf5d90e98e82ccb4633309b0421f90f367 |
File details
Details for the file tinysoundfont-0.3.4-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 714.4 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e7f3637532dfd73815bd65bc83421824c6de4cb2df53ba195dd165d1c16843c2 |
|
MD5 | b17aacff0175b89901fb9f2c94909bbd |
|
BLAKE2b-256 | 8d6e7a6118804538017d85e7d07dd8263d1cf0c00952e3bc8308c31634560d20 |
File details
Details for the file tinysoundfont-0.3.4-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 772.3 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7686a9e34f4c5f926dfc96a95af6c806fb6e5e56ebfb777e510d74112ae8319 |
|
MD5 | 8ca4ec83739523e8a1fd6696bf40224d |
|
BLAKE2b-256 | 04060bfd4d707290d2a23471afed8bf2e904e5e02e14c67faad5964b17e48bf5 |
File details
Details for the file tinysoundfont-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 188.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d75c6aec3f3def780343c70ae09650662817d23f2e8638398b69b69c72ba3118 |
|
MD5 | 6b4193e80b0c44e28f8e4a560603871d |
|
BLAKE2b-256 | a436d1501b0dc6fe14c8a85767ff689fd6c0fc76d7a77f38b99dd7128f0ef697 |
File details
Details for the file tinysoundfont-0.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 197.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f57cd1f87ba672d6ede8e4d808e02558812db7144df763c98a965267d64d6d6 |
|
MD5 | f1d3299df852b5de1077f28663d8ef54 |
|
BLAKE2b-256 | 56ebcdf6c6080ef2bb54f18639056ac59e3503a1dfb8227898dfcd9731edab9a |
File details
Details for the file tinysoundfont-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 157.0 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c62082fad18ffe8b49f86b12281ea768f23d40cc4138012589ccb77fc379cb2 |
|
MD5 | 458bbdddecb8115c0ad1ff6e0c5e3cbd |
|
BLAKE2b-256 | ec0891c87a666c25ebe131fd57c47b800c42e98b1c230cb7038b5b9d5c6cab82 |
File details
Details for the file tinysoundfont-0.3.4-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 144.9 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b60ce61768ac0a4ebd8a93554a27f1b900365940efae9a2657b1faafa159b43 |
|
MD5 | 7b43b57d2a4b3566ae97040c48e3afc8 |
|
BLAKE2b-256 | ad28e96d253a0a962defc31381933484f74eb14a881286beee6c084df795459f |
File details
Details for the file tinysoundfont-0.3.4-cp38-cp38-win32.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp38-cp38-win32.whl
- Upload date:
- Size: 126.4 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4dc4c831a5e6c1d5f357e543088d1ffbc872cc5dcca11a54df2693a8793e052e |
|
MD5 | 211b6b3663b7d6d8abcb467758bce818 |
|
BLAKE2b-256 | cbd5964b525b50df22ad2bdf64e4147422aad4a0f4eb84e21ccdb171113c3c93 |
File details
Details for the file tinysoundfont-0.3.4-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 713.4 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1128c2625e7f50bd6bb7e86401d1bdd83882fc6c5dd1815a6fd4f257db1292b |
|
MD5 | 3c852943291272daa494fe16f1440da6 |
|
BLAKE2b-256 | f1328d278de90830791bd91f5bad515ccba08f9d8c6b31992df434c97f12a10e |
File details
Details for the file tinysoundfont-0.3.4-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 772.0 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 705360963af0673646e728bcd3692c6a110b21eb1778c4abbadc2f8e8c67fcad |
|
MD5 | 15aeeb085253e6d52b22f46d6e5ccc27 |
|
BLAKE2b-256 | a8a50219b8068c30ccf3256192cd1486c98016deeadcaa5149c85fcc744bb5a5 |
File details
Details for the file tinysoundfont-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 187.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 373c3d1c306962fc9ad5c533047bff1d37cb685c26a1c1793f4e31ed19202115 |
|
MD5 | 7fb2c7f83b9316aa5fdb58f02c6e66fb |
|
BLAKE2b-256 | d24cbd4ee43f6512fa126bc6aa2d89f12b73854be25041beedea22b40d909c82 |
File details
Details for the file tinysoundfont-0.3.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 196.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4d4d6554b3fe9e18a564261f9178ac97e6d6aff3b6b17011d5d18b259e5a3b4 |
|
MD5 | 15fc830a2da07d42e45b7d31f92bf58d |
|
BLAKE2b-256 | b1eecc16ed9d301467f991cd089d0f92662780973126d1fd6c776541aae0af54 |
File details
Details for the file tinysoundfont-0.3.4-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 156.8 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf942b09bf2b285c8bc7aa184b459ef01462dab50c7563be1135dc51515a5af5 |
|
MD5 | 4f5c5ebf463e21116003c22d33bd8e19 |
|
BLAKE2b-256 | 94959f9593c5ea7446096dd4cc479d25ba41cdf3e74b6bcc2d64dc29ba637c90 |
File details
Details for the file tinysoundfont-0.3.4-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 145.3 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38740192052903d5d1558972fb4db3c406367ca13be2223c797e779ad9d99bb6 |
|
MD5 | 49625c5d32406843f0e90e43c6026ca9 |
|
BLAKE2b-256 | 317c32035effda9fabb357d55047c949f958c7e2b5fdfe49a5d846d81f290d68 |
File details
Details for the file tinysoundfont-0.3.4-cp37-cp37m-win32.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp37-cp37m-win32.whl
- Upload date:
- Size: 128.2 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1745a20d248c5d3c04966f5ef1ec58b962329a82742f7b4b51bce559fe1b9c82 |
|
MD5 | 512c57dde4617f3cefa0f41b953f295b |
|
BLAKE2b-256 | 82698dc45e6e6b8d8ec3b770a00c369406f4ff0b84de06dbc6fc8f2f12c41d06 |
File details
Details for the file tinysoundfont-0.3.4-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 714.6 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b9ee49c7ddb31dc55fcb188b7aa290c5aac3a4e02ccb72e6ae21f9d2a5434cc |
|
MD5 | 3f154d124f180b152493dcf98c5c3b46 |
|
BLAKE2b-256 | ffa10744a1ff8684c944ebc5ebc0dd30ca91b280fa1dc88afcf6fbd91d2f023c |
File details
Details for the file tinysoundfont-0.3.4-cp37-cp37m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp37-cp37m-musllinux_1_1_i686.whl
- Upload date:
- Size: 773.8 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b4bc081246fcd67a337a8ab0512e61063f31c459b06a25ffebd74963c15f978 |
|
MD5 | cee3a132fc98d309563f8cb50bbc4db0 |
|
BLAKE2b-256 | e07d829ac55af267ba9615a91c5290a1a193a75ee98e48beb8eb855bedad0965 |
File details
Details for the file tinysoundfont-0.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 189.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b23fd6305c413d63f01e4d2edb137e9cb3f1ec39cf50e5a9548c7f69a72b9ad5 |
|
MD5 | a9426700f36f1d1b1dba43f485a9efeb |
|
BLAKE2b-256 | fd689b6e08acda5c114817293b55baeeb452568dbaca96d01a714f74e2c26196 |
File details
Details for the file tinysoundfont-0.3.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 199.4 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5ab4a6fb24360331d3d2acc4020999ea2f5d1b1ee4766f51b5732fc0caf6fd7 |
|
MD5 | d8f7a06b257f5ac0912d1359a075ae7c |
|
BLAKE2b-256 | 66dd24609577448b24f0480711afb4294ad6d1d6447d85cea6a20db79239a915 |
File details
Details for the file tinysoundfont-0.3.4-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: tinysoundfont-0.3.4-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 155.3 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09d6128cfdc969b76854abfcd20274deaeb5e7737d148477d1a80b0f0ba14cfe |
|
MD5 | 24835a0015734420c9cc84cdfd3cfa95 |
|
BLAKE2b-256 | 66bfa3d406cbfb2cb3b408fcf2b9e68910b79635448d05c35ac1c84605e13a83 |