Skip to main content

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 and tinysoundfont for common platforms:

Windows

py -m pip install pyaudio tinysoundfont

macOS

brew install portaudio
pip install pyaudio tinysoundfont

GNU/Linux (Ubuntu)

sudo apt install python3-pyaudio
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.

Command line

The tinysoundfont package contains a simple command line tool that can be useful for finding presets, testing the validity of SoundFonts, and playing MIDI files.

Here is an example that loads the demo SoundFont and shows the presets it defines:

python -m tinysoundfont --info florestan-subset.sfo

(In Windows you may need to use py instead of python).

This results in:

Info for SoundFont florestan-subset.sfo
0 - 2 : Piano
0 - 10 : Music Box
0 - 12 : Marimba
0 - 19 : Church Org.1
0 - 21 : Accordion Fr
0 - 24 : Nylon-str.Gt
0 - 38 : Synth Bass 1
0 - 40 : Violin
0 - 45 : PizzicatoStr
0 - 55 : OrchestraHit
0 - 61 : Brass 1
0 - 75 : Pan Flute
0 - 87 : Bass & Lead
0 - 90 : Polysynth
0 - 97 : Soundtrack
0 - 109 : Bagpipe
0 - 116 : Taiko

The output format shows bank - preset : Name.

Here is an example that plays a test note using preset 55:

python -m tinysoundfont --test florestan-subset.sfo --preset 55 --key 70

Here is an example that plays a MIDI file using the FluidR3_GM SoundFont:

python -m tinysoundfont --play FluidR3_GM.sf2 1080-c01.mid

License

This project is MIT licensed, see LICENSE. For full license information about dependencies and test files included in this repository, see NOTICE.

Contributing

If you have ideas for features, bug fixes, or other things please use Github and contribute! If something doesn't work or seems wrong please file an issue.

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

tinysoundfont-0.3.5.tar.gz (372.5 kB view details)

Uploaded Source

Built Distributions

tinysoundfont-0.3.5-pp310-pypy310_pp73-win_amd64.whl (144.3 kB view details)

Uploaded PyPy Windows x86-64

tinysoundfont-0.3.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (196.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (158.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

tinysoundfont-0.3.5-pp39-pypy39_pp73-win_amd64.whl (144.4 kB view details)

Uploaded PyPy Windows x86-64

tinysoundfont-0.3.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (196.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (158.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

tinysoundfont-0.3.5-pp38-pypy38_pp73-win_amd64.whl (144.5 kB view details)

Uploaded PyPy Windows x86-64

tinysoundfont-0.3.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (196.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (158.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

tinysoundfont-0.3.5-pp37-pypy37_pp73-win_amd64.whl (144.2 kB view details)

Uploaded PyPy Windows x86-64

tinysoundfont-0.3.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (195.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (158.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

tinysoundfont-0.3.5-cp312-cp312-win_amd64.whl (146.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

tinysoundfont-0.3.5-cp312-cp312-win32.whl (127.9 kB view details)

Uploaded CPython 3.12 Windows x86

tinysoundfont-0.3.5-cp312-cp312-musllinux_1_1_x86_64.whl (711.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.5-cp312-cp312-musllinux_1_1_i686.whl (771.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

tinysoundfont-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (196.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-cp312-cp312-macosx_10_9_x86_64.whl (161.3 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

tinysoundfont-0.3.5-cp311-cp311-win_amd64.whl (146.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

tinysoundfont-0.3.5-cp311-cp311-win32.whl (127.9 kB view details)

Uploaded CPython 3.11 Windows x86

tinysoundfont-0.3.5-cp311-cp311-musllinux_1_1_x86_64.whl (714.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.5-cp311-cp311-musllinux_1_1_i686.whl (774.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

tinysoundfont-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (199.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-cp311-cp311-macosx_10_9_x86_64.whl (160.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

tinysoundfont-0.3.5-cp310-cp310-win_amd64.whl (145.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

tinysoundfont-0.3.5-cp310-cp310-win32.whl (126.9 kB view details)

Uploaded CPython 3.10 Windows x86

tinysoundfont-0.3.5-cp310-cp310-musllinux_1_1_x86_64.whl (713.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.5-cp310-cp310-musllinux_1_1_i686.whl (772.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

tinysoundfont-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (197.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-cp310-cp310-macosx_11_0_arm64.whl (141.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

tinysoundfont-0.3.5-cp310-cp310-macosx_10_9_x86_64.whl (158.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

tinysoundfont-0.3.5-cp39-cp39-win_amd64.whl (145.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

tinysoundfont-0.3.5-cp39-cp39-win32.whl (127.1 kB view details)

Uploaded CPython 3.9 Windows x86

tinysoundfont-0.3.5-cp39-cp39-musllinux_1_1_x86_64.whl (714.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.5-cp39-cp39-musllinux_1_1_i686.whl (773.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

tinysoundfont-0.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (197.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-cp39-cp39-macosx_10_9_x86_64.whl (159.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

tinysoundfont-0.3.5-cp38-cp38-win_amd64.whl (145.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

tinysoundfont-0.3.5-cp38-cp38-win32.whl (126.8 kB view details)

Uploaded CPython 3.8 Windows x86

tinysoundfont-0.3.5-cp38-cp38-musllinux_1_1_x86_64.whl (713.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.5-cp38-cp38-musllinux_1_1_i686.whl (772.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

tinysoundfont-0.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (197.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-cp38-cp38-macosx_10_9_x86_64.whl (158.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

tinysoundfont-0.3.5-cp37-cp37m-win_amd64.whl (145.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

tinysoundfont-0.3.5-cp37-cp37m-win32.whl (128.6 kB view details)

Uploaded CPython 3.7m Windows x86

tinysoundfont-0.3.5-cp37-cp37m-musllinux_1_1_x86_64.whl (715.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.5-cp37-cp37m-musllinux_1_1_i686.whl (774.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

tinysoundfont-0.3.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (190.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (200.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

tinysoundfont-0.3.5-cp37-cp37m-macosx_10_9_x86_64.whl (157.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file tinysoundfont-0.3.5.tar.gz.

File metadata

  • Download URL: tinysoundfont-0.3.5.tar.gz
  • Upload date:
  • Size: 372.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for tinysoundfont-0.3.5.tar.gz
Algorithm Hash digest
SHA256 fddd0ea66c08ff2b63659c0423e42ef46f9eb6f36e31c645abe50d9acf4abf46
MD5 e0b7c7d0337427c1066292ebcdcd6afe
BLAKE2b-256 11329a2513d97cfe5b75ee5033aaf98158f86c5d6bce764ef8ab5ba2f594f9a2

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2c9f7230e0497e6e400979babc9191ccee6ac527def9f35e6a0e9f2153e04831
MD5 8d32677a4e426e702aac946d40406716
BLAKE2b-256 f249d490daf15bc6ebcc9ebcdcc4747beda4e6cd23a0ff9059613439eeb4ecb4

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcf839d9c28f2028ed48c18843f28cb99a9a61ce1ed97d2c9ec9274f2e6e27f5
MD5 8a27c2ef55cebadd34dad74a8e97068c
BLAKE2b-256 5262d225a4a656d29b0be250e33b82781440f663272b8bcc7e8c46a9bca12900

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a81770a9201b350ed287dfcff61f035d16ed2bc83a2342f750e12b1ce44d6b8
MD5 4e7d360e4b36763a4c6b1c9ac3cc8c0f
BLAKE2b-256 d98cc9b23d32ee4ad743f8fe8951ef1c36e537661315b5d27df754efd1f07fbf

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b020448dffd8cfa659496aa8b3ffc180138c3dd1b7aa212535f7fb3fb223daa9
MD5 98caeecb5b387d457651da2ad9f979d3
BLAKE2b-256 3418c3d296e50d32a8cc6e61abde2143d5e2836e127faa6d4a5d69a96d8aab24

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a6731c6c5e91368ce33e23267f7bc6237fd6f85a72ea55cc7b91688a66a9d70b
MD5 eccae204c82ff9abe8d7aede952e4521
BLAKE2b-256 1fc75bb1e83962f267c98fa97ed3917ff01befada2a4849b3f479fb693e02f9f

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8628966bc75ccfa2190319f76afa5197d5e4a36d2737e73cf6275eb846902d75
MD5 c567bff983c4752220996464448bb0ee
BLAKE2b-256 f686af920136c2a2a9b6ce8826d28d35abdb1d3364067c0d14dfdacd386692fc

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3f105359797d5d6366c62c3684dd8be9dd3b6a3b431e4cbe6310bddedebadbc
MD5 bd85d2a8573d6a56ff8618929ce55016
BLAKE2b-256 576884269f65115958a257a79abd0cded85f443f105898186f35c1b8a8250fde

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1dac863421067d8cf8e4f1002dc8570ffe32a66596507d2a5b02e7856a2d71e
MD5 8fc0880c7e040ae6b3c95f48be413d9b
BLAKE2b-256 4bed484a80ab2ae8ea45eaf147792f7bbffa2d53e0f4dd7a6289d1a6d62efc82

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 00307c8f6088f7ce38cfc9f1815a65cee66ac438757276d8444eb5ebb66703a2
MD5 a81bdbfcf5b7eb063d667d4106a569fd
BLAKE2b-256 0f52b8449c92469cc41e8664831b4a3222c9acbcea0a89f2a10168d9291369d8

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa415b795771ed70d5f491a39566171d26bc1f20f06157902375f91c754a7ed0
MD5 93d38918de3b151010b4d4110a7d0dde
BLAKE2b-256 f761411f7ca7e130126cbcb00e6ee504a24c077ad3ea320b2f6331d1c402c500

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11efff592dd15dac586b033f61be971902e1ff98b77a4527541f5ffd64603cf9
MD5 e5dbbeaafa40f60c5de3ff2efec3f795
BLAKE2b-256 5011a91c259ffa29858e9651009f73aa27af78c621d89b8c5ce066aa0fcdb0a7

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bee488da3e42168be2d6304b0a51e6009c8107fb4951274eec92d973fe4dab31
MD5 7693fcf814a40cade3eb2a6bbfddd792
BLAKE2b-256 6ccf0a3f0c6dce962681fc6306f03c76531eb3ee68b7277c986472811bc2976d

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 67300f6332c8ca640f2f713328985b0941479cd13a64f25c64bf3865313887d9
MD5 2d77f97e79d07ae18846d236d1f60162
BLAKE2b-256 ecbf3f4e53abb638b5339c1c9233b855ed58624ca42bca6c7ec6a863f37326c5

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d543975fd2e6b740aaa718ec121f138f5342cb2fbf05f093e2f5b797ded65b64
MD5 cfec67095560a1f3dfd2fda9c12baad1
BLAKE2b-256 922390fe2f52d403795c42f6d76380b3a79d2884ce04586440e8b9d00d82e46b

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f29dcfe6bf314badbea2c1395ee86838aa513dd1731ede2c1eca52d639e83ca
MD5 cfdfda66287ad3669d4e1adefc9a4843
BLAKE2b-256 9826f14e89cc60b0063e2f73b0007f3b214ea10bda8f5670da6611db0b24099e

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9387b41e9906ee5b32be0b21394eb3f4b22862a661ffe16208fd3ddadf88c76
MD5 7bebc9b6d2fd94f77498a96ce4dff2e3
BLAKE2b-256 5c026fd0c74e0cb5bd657291f949bb2646c844d9a7455dad44b89eff6cb45f4b

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 42a9d026871067cf2f52693733dc9f0efa064ea8c37a02e8986fbb69b34def77
MD5 2e28c733d11210cfb1663679f837def1
BLAKE2b-256 0692c30930a837a13962ab028cdc94f7fa6f85ec396e57907e04df179dfc0f99

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 511463efaf34aac021f682460e66059815f048d5284bec63983006fbc18dfc83
MD5 c674ab4004f5eb48cc1749f08a3ddbe1
BLAKE2b-256 1e4da0c9a6baf007d9e81d96a1b33e1c5b5a5153b5f82376d01c1031486d3409

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3ca48a5e730959c157a73972edf893b06b167af3b6298905cadafb68cc0236da
MD5 8db729a50438b322cfb15c6cb7855b75
BLAKE2b-256 35655f9db857333a09efc85daae077fb1a87d59a7cc51cedaac73f98e3430bdf

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 557a078abc25d333275c48b6a5cd533abe33b675157d6272b9e9bc3d24f292cd
MD5 6aef71e20938bd0b55eeeb80bf6406c5
BLAKE2b-256 25866df102821ac39a529c525a7066ec8d0f6d89f8215b19d59bc852e5dc875e

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d53c1daa76acfc70dd8fc831bcab372059d4adbee3ed52f82b8f3b72af8c0380
MD5 be36a5b77e8e409d5fa390f34e0594d1
BLAKE2b-256 2342d446835d3b92e0a291d69758c485a778191b863f19aa7f5c0780bafe473e

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40412b815df27cf9d6762b18ff1dbcdc6e986e2ee699efd758ed46d6a58f2adf
MD5 8a550041af35cb8839d282478c5e4c69
BLAKE2b-256 3aa71e185ec421d25a3eeb2a8ce2e967d1879ac2430f5c9bff20881207a8b8dd

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7c16698d080772baa76c22b1e8327e808beb69c0ce01fd5e8484a3afd1a6467
MD5 355b970055228b6bccda76595d38f3e5
BLAKE2b-256 6eb4e4789697a24424a954ef033d4129a70bae4eccad6da4a640a3f11b9dabc3

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5c573f8d668650b5401052d69b42a6b6b69f65067044aead85d3206daeaf978a
MD5 5b3859a4da301e5f3caebf2ecd0b7a79
BLAKE2b-256 63d7d88e61720851ff12187e82a8e9e570f03ba4ee93d92fb27850b05456ed08

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b5df97350a597f574697e0f2276a6474be23e8d58a736e660940bf720ed762f7
MD5 b3a3079ce71bc881fdc5fa8fbe4d8b54
BLAKE2b-256 2635541ba9bd43fa484441be7f100b80b326442b1cc5ff7eba9d4e4c7acabaab

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41b29150d1a01b58089fa2030bdcba1e3b42233290ad5149391022c604da9644
MD5 acdc4e5e38dbb815111402ac57f76d15
BLAKE2b-256 28c0e9dcb32c2da4cab75a0875f52ba71ba8afcb518e509f28c457a48cc73f48

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 354a3f917f0fb106ed1fab9f0184b236060d8fd522f274124c771bfd40722b98
MD5 003f0782f15b77512b56d433854a236d
BLAKE2b-256 34b2af9d05981c8ccb553d5c3b596e746597bf96b72d610b685372d7b976bde9

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2f7dbb8b901771a0362a0b480de90748e09eea90937ada53cf2d52d3cc5d217
MD5 25c886a093b824065881613e4142bd50
BLAKE2b-256 2b6911079842b820947fef3357af3c96402f7f4c1923eb0d50107a61811dd9e9

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7be72ddb88f9ed92f76a26a0f433ef9abeb643a761191aaba7df5857aa1a677e
MD5 dd40d600b4c48166ed8777ef0faf801b
BLAKE2b-256 44840ea2cbc7fade2279c87cf7a3195416716b0ff9b01fb86713ca8fa9bf8f07

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9839731f1a63f0fb87601b7e53df6c6d27e7a79f752ff765eccb3e181233232d
MD5 0ff1e98e66b6b158a3d5f4c3d8ea23eb
BLAKE2b-256 884973b8b54e731bb282e3aa7992a5ae2b061028572d8f166c6966e9cfcbcdd1

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f7b2e7fbb70ffbca2b15cb0547a79caad709327f017109f76e47db36e3ea22ef
MD5 9032f245dfe27fc2f9d03c9ef1af4e0e
BLAKE2b-256 5de68bfd08bf298e8274957383b7b4feda3c65faef08bb33b8534dfce74f8fa8

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c63c291f04f167243db93450c02e9a2adc541e90f5f6b820db27557608d3e2e0
MD5 62d75ecae04ce6835f84a9b0825eaef9
BLAKE2b-256 3290b5778d9c61b40b73b1bce947b6c2672c8744136dbcd85d0d4303f0f60150

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d1a6627293176de8ce15bae42f8442c8b660237aaf826e6ac811503674476093
MD5 aefb8e09ac4fb4c1d6c8aaf25044ae79
BLAKE2b-256 52346d76decef2e1a6ba2bde7ec1de2061c92b72384fc83ca61c8dab988bb5c0

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 41bfab9cba1f90c214592f8fd85e4749de42479e20301016cf631651927bf774
MD5 d970df7bcd107c2999fcc735176fc874
BLAKE2b-256 a455140f9b81aef20fa3074e7e20c6e5f079a959611f4314bf90b95e2f95843f

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 644c41d0a2a6ee1d357b042bfc24f13eb4f4e615b5852e2527b034a2baffc3ad
MD5 df6f6834d05ff50dd145921cc17851d5
BLAKE2b-256 e946ae5cb7b99abbd1f374f6a2c617dfb13195c700a6228b4cfdaf4cb1a44b29

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8abf8f99ae1f13658c4f16273459c9d587fe8e91c7af218fff62d1bfc14a09d
MD5 fc90d30e3e36b87bd732b1f88bb969f3
BLAKE2b-256 25a92996459fc609788b577382eff65fb55e94bd002f55bf5ff6db0fc0791f86

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94ef5c7fc6cc6a2d2d0e27038f7292c218cb11d60b0480ada4e3cb8bdcd2e21d
MD5 8fff22f6f8decf61c9e4655e64fc8308
BLAKE2b-256 fcb475cf08d2e6b88c4516d189c41fd1f7d33033053057d86806217eda51d683

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e76adff0708cf704c7eefee0029ec4a81188cf58e4010aed9e540b2662c9b05
MD5 a80d7733614fbb41e2533cba78b546a4
BLAKE2b-256 be9100c2eba08321f6a387e7aad568ce01881d4a6dcedf19cb5e465131c5be13

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4c753e12f05e0279badb343424ca6d5659228167cec0c00ec5babbd3475aadd3
MD5 c8888d8e8cb28d2067dc6cff4cd00e7b
BLAKE2b-256 173305746effc9f1e887a643b18a482d637a1d792202f490a2c1c1d134e7c370

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: tinysoundfont-0.3.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 127.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for tinysoundfont-0.3.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5f24713015ba8ca38a654267594830417a0186f06b38d79e379e312372e2a8c6
MD5 d759cbd56cf189164760968ba6d88389
BLAKE2b-256 581852bf20471c65d9ff6ad91216078623814aa5384e4d5ab3214835de3cdf6f

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a046bdf6f23b3ecd203e54f9c584208f219158330fdebbc9efc66c4fb4045c4
MD5 de041c858b8f8713bb56c49bced76d58
BLAKE2b-256 9f13bf4afe8c213a488e24131eb44f886b0185f4c3a1151ba1a4cb2e2d72747b

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 795c90e98e6bdf23e1807459b030394939e308fa6df6691ffa03ec43d9dde009
MD5 56b57ce57843f22c92339fb135ca0250
BLAKE2b-256 3ab2c63e15640a7da4c04fa9d9d21ecca8ac50dc30ce5d37751549a0f4f74498

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c1c110de3aa06f1dc0ef069d501d03a44d5b95e287cd453eb2102718b1e14f2
MD5 aa91054b0a5556334daed28a20e89138
BLAKE2b-256 fb4292a99c642566c403eb41b93bd788d8c15868240239531926a3a51979f661

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2acdbadd0a2e0e6de1959c991a0f593db38815b3392bd053a674a3681e8925ac
MD5 c67e6e7aeef5c8992db604ecdd1ec52c
BLAKE2b-256 0aaa4cc9322959a073fdc310fc448968b062486e3526eef71504f7d252052c1f

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36ebd1d54a86c9f63237773c408945daf326c30f9fd15b860da39199d15de622
MD5 4b86f6018f937f6336ad040472fafcca
BLAKE2b-256 c2811dccdead6759dfa3ca34bb6c8a5c0174f357a209058080c64b76d51717b3

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 200ea2c68aa85238d7c3a59234afee6551a50bdad81bce6c7c8f792e9cf48f95
MD5 9d2991d223556534613e84e82e6dae6e
BLAKE2b-256 07e582f1b204432d39e8d9c456371eea0c06a9991042d50aec3c4e62ad1c2445

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: tinysoundfont-0.3.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 126.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for tinysoundfont-0.3.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a989e1b74226cbaf8a16e589e8c7851d00feb7958c2dd71b686ff1b5a30fcb16
MD5 528bdc8e34352191424ef3cdc4a8c61b
BLAKE2b-256 72c95b9d00249ca9346539f5eb4066c60a7abc887a8c7943655198a7ff48a2ff

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e57607c938c74b65155e5fa11a1f8d9567a1063291a584a145c2939e2439989
MD5 7dbbb14a44b0cfbcf86df033a4145576
BLAKE2b-256 cd5cc27ccc62ba29d1e214b0932d57524fe7a25672ffa5198ae5ec959c5a4d8d

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d810606b98a05e0bddb6b68307fcc2daceb8b3473373ce5d96c000fb6f667276
MD5 75a0c8e2e0fa1c0728eb758b37ca3960
BLAKE2b-256 f0fa1cec3a3977e0c1bcfea14ec29136e2e0884aee710d00075f3a82f87f811f

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b547cb2076e96e003c4f6ed705cb01288052613cea1de0d96e84b843911d179
MD5 d016fccc6d95fdc652854d3d6beb1cd2
BLAKE2b-256 e943aeffff4fac141c134fb269982d3bc473c50a6489f5e545231db72b06e657

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1bc1b39941010b1e095312e8c7883e98db7979753b3ce5565bf971d3b848782e
MD5 a5d31f034c8607714d74a237c96dbbf5
BLAKE2b-256 276a77ed5247d4c6a3dd563183b9495d1bc4eb2775d4522dd39b438403794037

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 adec86c84c6631ec8a71d00dcef869b5f576f6ef594d6560e2131797ef52b62e
MD5 424192533ad4c633ed9449aabd0bb009
BLAKE2b-256 1b1c09913c3999ceb3e5fe9747f1eb1b2d2b544589bf646d83c24b4ca826f09d

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 05cf2488d703843ec1ba443efabb19847be76d5fb5e07e1918eb06c87d240fa0
MD5 4ad5a72ca1d02db6c4e274ce47b4e279
BLAKE2b-256 7e012ff2c46dc18fc7f69f4499dac383a0757ef0aea77324140883d7b9489b67

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a8177877cc383d2fc7faa3a3494fbb6aa3cd4b907405a421ccfb5d4454089ab9
MD5 c8fc01046a5c0e4c1e16f16dc74e6ad8
BLAKE2b-256 d5f5fccda9a2da1f5fabdfc3697b895f41f79344e07c85020072834a138b3101

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e959632e49b3f08a6bfb9dd46efbd3a65320d2a4dba1f84bd5ff359bf96291b2
MD5 91967446274286e5c05d8fc733da0da3
BLAKE2b-256 2b35c0dd302b18acc310c48b29af70298a708c2f8413c584844a5cdb320eaae9

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f75000f1cbb4359cbeb38a8aec19b1859358409dae35ac7179a4b896b5229c32
MD5 08c5739b9742774564f6185a7ccd4e39
BLAKE2b-256 23b352f48a13f7fafe6173c3a523b4d4459bd3060ad8e105cf53e62ef85b8b0e

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89418003d42dc04af7a17952ac59b4a4f319126e6da8028508bef2ab81481602
MD5 6598ee8a065563f8130062223b84d7c3
BLAKE2b-256 73df6c712edfaea1aa518453d32cf2fb8428a0c4cfd8dd84559c9850110657b9

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f7e2eb514fd8be022c1509f97acecf9d236836a23fb1ec72ce37cc013734b7f
MD5 b32bdc180fb267a993d78851a48114b8
BLAKE2b-256 bda7c375ca68e61ee30d29cac52b704694b34a4c45bf7afb609747bf3781635b

See more details on using hashes here.

File details

Details for the file tinysoundfont-0.3.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for tinysoundfont-0.3.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0723d9164c69ba814ac39ecaa0d48d5d58c092c09fa41c5a0035608739e14eca
MD5 82ace2e5e00a9925e69137128c3a9ebe
BLAKE2b-256 08d2a93b15625694e1fdf753e9ac099036f71c60f05183d76fb9941533a73c4a

See more details on using hashes here.

Supported by

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