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 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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

tinysoundfont-0.3.3-pp310-pypy310_pp73-win_amd64.whl (144.4 kB view details)

Uploaded PyPy Windows x86-64

tinysoundfont-0.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (187.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (195.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (156.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

tinysoundfont-0.3.3-pp39-pypy39_pp73-win_amd64.whl (144.3 kB view details)

Uploaded PyPy Windows x86-64

tinysoundfont-0.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (187.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (195.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (156.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

tinysoundfont-0.3.3-pp38-pypy38_pp73-win_amd64.whl (144.2 kB view details)

Uploaded PyPy Windows x86-64

tinysoundfont-0.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (187.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (195.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (156.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

tinysoundfont-0.3.3-pp37-pypy37_pp73-win_amd64.whl (144.0 kB view details)

Uploaded PyPy Windows x86-64

tinysoundfont-0.3.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (187.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (194.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (156.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

tinysoundfont-0.3.3-cp312-cp312-win_amd64.whl (145.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

tinysoundfont-0.3.3-cp312-cp312-win32.whl (126.8 kB view details)

Uploaded CPython 3.12 Windows x86

tinysoundfont-0.3.3-cp312-cp312-musllinux_1_1_x86_64.whl (710.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.3-cp312-cp312-musllinux_1_1_i686.whl (770.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

tinysoundfont-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (196.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-cp312-cp312-macosx_10_9_x86_64.whl (159.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

tinysoundfont-0.3.3-cp311-cp311-win_amd64.whl (146.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

tinysoundfont-0.3.3-cp311-cp311-win32.whl (127.7 kB view details)

Uploaded CPython 3.11 Windows x86

tinysoundfont-0.3.3-cp311-cp311-musllinux_1_1_x86_64.whl (714.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.3-cp311-cp311-musllinux_1_1_i686.whl (773.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

tinysoundfont-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (189.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (198.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl (158.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

tinysoundfont-0.3.3-cp310-cp310-win_amd64.whl (145.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

tinysoundfont-0.3.3-cp310-cp310-win32.whl (126.6 kB view details)

Uploaded CPython 3.10 Windows x86

tinysoundfont-0.3.3-cp310-cp310-musllinux_1_1_x86_64.whl (714.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.3-cp310-cp310-musllinux_1_1_i686.whl (772.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

tinysoundfont-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (187.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (197.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl (156.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

tinysoundfont-0.3.3-cp39-cp39-win_amd64.whl (145.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

tinysoundfont-0.3.3-cp39-cp39-win32.whl (126.6 kB view details)

Uploaded CPython 3.9 Windows x86

tinysoundfont-0.3.3-cp39-cp39-musllinux_1_1_x86_64.whl (714.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.3-cp39-cp39-musllinux_1_1_i686.whl (772.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

tinysoundfont-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (188.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (197.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-cp39-cp39-macosx_10_9_x86_64.whl (157.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

tinysoundfont-0.3.3-cp38-cp38-win_amd64.whl (144.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

tinysoundfont-0.3.3-cp38-cp38-win32.whl (126.4 kB view details)

Uploaded CPython 3.8 Windows x86

tinysoundfont-0.3.3-cp38-cp38-musllinux_1_1_x86_64.whl (713.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

tinysoundfont-0.3.3-cp38-cp38-musllinux_1_1_i686.whl (772.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

tinysoundfont-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (187.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

tinysoundfont-0.3.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (196.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-cp38-cp38-macosx_10_9_x86_64.whl (156.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

tinysoundfont-0.3.3-cp37-cp37m-win_amd64.whl (145.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

tinysoundfont-0.3.3-cp37-cp37m-win32.whl (128.2 kB view details)

Uploaded CPython 3.7m Windows x86

tinysoundfont-0.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl (714.6 kB view details)

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

tinysoundfont-0.3.3-cp37-cp37m-musllinux_1_1_i686.whl (773.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

tinysoundfont-0.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (189.5 kB view details)

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

tinysoundfont-0.3.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (199.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

tinysoundfont-0.3.3-cp37-cp37m-macosx_10_9_x86_64.whl (155.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4b711cb96555ded2952d6e417df0b505dd0ea9417ef3bc9f120c3ef1f4ab4ff0
MD5 7d85b9ccf6b5cd41f167bb7c4fccd01f
BLAKE2b-256 2b10866dfc3b64bd039e9240b0fd28349d4be66e65d4064f63b0d3ea52cad640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d06478f723b3755fa86148d018f27bc25e786f059f1df9dbd865276654926c2
MD5 f7902a33d61f74ece86d75405d854789
BLAKE2b-256 b09f58b805bd73704dd923d2c19fd84f2c6783f67bdd2af3677a698ef0d4f732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4d2d33a25e66c840b93533d0bf0c84087eb14f90acdd1bb6a0b5937d27da2fa
MD5 409307104ea3ab77b006e1ac74ee0109
BLAKE2b-256 dadad424363a18121fe284fc54cdb6efda4eb220f20b82d60ef460d446a2c397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c73b3adf2d648240285c41a31225312f7b37285251d75e087df9265f13ad37c4
MD5 b211f978b5aaab958b57f38ff6fb9f26
BLAKE2b-256 8947b641f710dead2d8d1e9bb8e621c1542bb1f09cae24ed2706a4806a3e6c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e5ef18a3962196d47902466c201900195ef9f7bd289a372590638ae6cd6f4a9b
MD5 09e2bd7437833abd09feba53087e612a
BLAKE2b-256 ad1d008096ec80b599e5e4f5fd28ab79be27909be9fde5cce52cb59a79aa0b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1b81adab4380dca573e18df8a811244bd6126a5eed4c032cd18cc1528f69a81
MD5 39507b6039bab0e29748ccae37743461
BLAKE2b-256 692edbf5d3d916bc9afbc1c5a7192bd62d2366b67ab653f2af052c2669455188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1de387b8117d6525e14e66dc708603601650867fa48f5faeef30a491f8c2fb11
MD5 55043a0fb3343f06ff28e381fcf04ddf
BLAKE2b-256 6f6ce419ab20f5705c91e9a62fd2d484e3705795d08f19e0bda09e3c73fa9f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f85f2a568c86530ed38c843b3b79efb612321076a18e514d332f31f318bca3da
MD5 24d19b1b9038f47b7a99efb9c33aaea8
BLAKE2b-256 017371715fa88ad239c459b11684611cdb5af2585d6fcfb23531b229aaf311b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83cda22f77818690bedf959b0e7cb67bad54f98c8dd3b1ff0a665f460672b556
MD5 c1ada22cef3d3af89e3b10506f5ada34
BLAKE2b-256 01fd7c5c945e34df9723b2e80415f794c9ee095823fcd61c760607fce3bc3921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54d7c227547c8223aca8d61ee68f7171be5bb723cb7f249cd799a141c1e58293
MD5 7b36a2def4a3011782adcb74c1541a13
BLAKE2b-256 bdb974af95114a4f3f9e7b023f5861197782d52c62611f58e7341214ce6a7de3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6738dd662a2db5e9c5fa50cd55899095403cc775189b4d4decfbc3bdfa20f2c1
MD5 e8cc922fb88d064799fe6cf45a1398e4
BLAKE2b-256 1354cb3c0b426e00b78957c8abf4f77760f924baecbd963ad1280346f0c9bef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56ab1718e1a235d51f9f242fa74432fda6100c8b1eb74cb512c131307033f13b
MD5 845819d6f57007e5e6938575b3968711
BLAKE2b-256 bf026d826a96df55d6ead16a5cb2d39e8fa01105cfd399409c87dc0e55ae6759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d0bae643d4098f2d5a3e9e7160754fa74a645a58dd3cc2cf1b02a20d205ca9c3
MD5 1c744191e98698ae52355596f8e42d64
BLAKE2b-256 394f9842027caa4d1837a63b4f538eb6ee684c25a05b025610ad222fa2c0d45d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 325681c62760d6b384d536a27ecbfe02782dae209525a7f0e52b9db467c1cbb0
MD5 2477bd8d77f28aca8c1a2cdcb3dd4d3b
BLAKE2b-256 97655566518aca44d12ef0a2e69839be1feb7a4120dbfd41d1ef218cc7874d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d35ca3351facf565f6e12510fca9c7dcb9cf2a1f8aec2a5d75c2101b4a06518
MD5 3f0e81cb4497c1289365ee91bb76b3ae
BLAKE2b-256 97603363670cea3e7e1b54b2593d2ffccc3705e4675fd88fd3e07b47c91b9001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 095824f27b40d51148c1bdd4ea7330f6527827d425c1c27263479b01e1e3d05d
MD5 26632d01550d4ffd5fb645d83a482116
BLAKE2b-256 1056b7683ef472f72746b8e6736911912960bcbf60819336214a3779bddbeb7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1ffcacbb9819b2736e28c1f4a72e6bae87b62c460f5df984047d44d5cb4654e5
MD5 ecb0b3819035369bd750810d8af224a3
BLAKE2b-256 be1894628ea4c5b5b4fc8eaf80b51b9b8044e4298d5c68ee33ea4d0ccb2a2790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5925bfd275bcee31007ba55539f5b040fc120898f3a963430c147436fb73a3a7
MD5 1894d05cce1f39f2dc95c0462c06a46c
BLAKE2b-256 8ec52a69ff13d0bdffa61b29bd3907df3abe27fe3c9d5339cf69f6279e603ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 027bfcf096da9d08df834b477702af5b93c281aeeacf8194da8e0511469720ce
MD5 0afc5d141faf06a9fc33f02ae1c7a998
BLAKE2b-256 854e412c46ce72d79b278d99f6662b3907e128f33a12d547231e3434250d108a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4bbd184a09bb110f2b6a84e407324fc5f71f7491e713e14755be9db90ab30f0c
MD5 9605190e6627ccf40ca2cfeeb16d5759
BLAKE2b-256 63d5883f35c7a113b4e564e037ee412b4eb26bb26afd1b473d801904468c8036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 301ff7ce180a2b51fb00ac77d976e60e88cbd408bbe5d76c3fdd3d7a419c3efd
MD5 910178329b4396b36c89896cd2436e70
BLAKE2b-256 811638330ce384ada749b146fbffd53585f93d2d0701a3704ac01e5c16b8cf26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d58c9b4414c53c03ec69f452c749380f04871a31a80498b66c77a7b18c0ede3
MD5 ba3524bacbdce86a9b7f13726408e0fd
BLAKE2b-256 9efc54d3e823900b5dea63652e520718e9623c3a5339518248ae0c24f1d28bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 013576f80f146a3b4c74c755bbca56198955c91f619cd1d4a4cec863e8753d5f
MD5 231b6543c72f89e599051535db9383bc
BLAKE2b-256 34eb07104bada531a91a9b5c106e8ebd36f428772955b917e299aab72c171d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8af0166a47693bda64a3c112a8ea1c7cd42a27cf7b845309d7391b784ab946d2
MD5 81cc888f3d6a66e8a7500214a68beb5c
BLAKE2b-256 bfa363593c83b1d722945814a00ef7692961cb5b9b9edfedb1afbc066b5b090e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 55d9e9ff51fd3ce783dbaa6dbb8b5eb534cc5204acb40efceb7f47c12a1aa67d
MD5 bb676f4844e24090f65a689ffcbf690d
BLAKE2b-256 617a5c302e46aa25339223cc4d08261e0fa79464c845fb40a92c3948782d4867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 87581303c914015e59e457d1aed2e58eaeb7a813544e7a5ca5242cebcf1b7d43
MD5 54cc1b875ff718b7f986fae38611b36f
BLAKE2b-256 62056ea3b04c346d252841b279b7c20e1cfe2414362db1109b782244876a413c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fae53496b6f2f0fd4c3be79414fa115fe4b0963300e62fce6a6d5796623c1906
MD5 8d332fdb049c7ac160846d38954d250b
BLAKE2b-256 eb74d68e71e3e45f0969b7de64aafe3f6a103cb6a881e09a81a55dc94f3fa1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d15a901b01949df0fbbfe516b78d456acc6c05e149dca814196f8bb8eacd115e
MD5 7adc6cb483c5f1b4a89d8d4bd8d90f03
BLAKE2b-256 85fbe35add916fb691dd5b68da724f214a6cc12783cc5fe5898d59a6dd99ad96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76da753c0809fe0de56b55faece00d9ab36fcb3311faff319ca404133fb7276d
MD5 bf4755981aa4ddf2c344606a33cee30f
BLAKE2b-256 c896682d57b446b346993f0e0a33cb71f11febd96ebf43b8a1f990194da03d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c5f25ed875d54118593c26ffc2ad3fb358897f192367a7ed83ab40a0cfe5282
MD5 6ca6a049d0d263c6351e4a083ae87d1a
BLAKE2b-256 591c92b195af16870c1d45412b8c3bdb6f6dcfc0970c4190ce7229cf66becb9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 673dbd2ebf22062df57467290fcd2234cb946c30fb2c505164aafd659b78c964
MD5 118f8950a4a5524f699a02a68489f30c
BLAKE2b-256 5a58dc498df0d98a25cc3aacf334742d09781b198a4044cb40dbb7a9ee4d2f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 eb3039d787cc1ffaf49d7a38b685417ae3d48277eb7ce809787429a5641a4977
MD5 e96d24e840fcabfe4a5087cb4352a970
BLAKE2b-256 7df76f9af3b7fe583e85a91e58dee6bc31f882e74f2b64fd8354a1eed5eb1351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b792381fbab884b6bb86fc6ba257eece3e4ed0e52d3f490d47016a036bdee4fb
MD5 9dbb2f1920f6a2512f30f414e02f387c
BLAKE2b-256 f5acd6b64a9d3cd6ae38bc58a39f4521f4f96a72b05a082a578196a6f15c2e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 95bef3a3946106b766acc188857410d1d0c93526479b4c1b5da82343e685ed92
MD5 d751a8d988fb3c1dad32628b6d441e78
BLAKE2b-256 f440a56866c528c9653345a96ced85f2be53e3dc3eb7f8ed9967f963fc5dcc9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a03972828ce3f976ee9c7dfa7d457abf7b4e04239f06a0fc7642d66eeec83da
MD5 9637491a7ede50ec4672c06996fbb03b
BLAKE2b-256 8e2dc83d2955905828cf49001b9c5a4b7ee4177720fa1377a0ebeefd43f8329a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7876c24c54c3a4ea5fb265b245aa227fc994a600172003f59b8a031f706d83f9
MD5 a27f914bac0e7c3170ed8d25ebf6c348
BLAKE2b-256 d0096b6cb3eabcc1d4159bb861462ea4037753699c45685d76632e7feb51760b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b364707c25ab76ba0981a9c83aaa347b59811fa8c24ff0427608dcb07ac1f22
MD5 80071a5827f977bd80637d180e900b0e
BLAKE2b-256 e774061c55b80799d46a56ec3689025a7668ddeb662cda803c4632693c15f12d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 49a9d61fd9de58d0f843dabaa36bf48e94380435f8959966f00695c60366dd43
MD5 b921be32079407f656f8eb1e2f8b3098
BLAKE2b-256 7a7a6451342981a654697303363b07f7bbc04d3d6d2c623ab39c6ebbadba8693

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tinysoundfont-0.3.3-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

Hashes for tinysoundfont-0.3.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 dfc3c3fb71b9010507f70a7126b48f1d17fbb202ecec45f88c07a97a19037dee
MD5 56d0f1695ddcb18f086b7afa165ea874
BLAKE2b-256 67378c9fa7281d37faa9ee0bcdc611479e07100fde6ce8e680b45244cfa794ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f68cdf481524af7baa7a5a5ba43f6f7ed8cccd7d1616119a4d0f78173f5ea67c
MD5 27e86dfe9d74833000c13129e7e2bba7
BLAKE2b-256 978b39593b35ec142137a2580e5ebf5876d704697cbc72b63594f13fdd1e7351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f8139e07c9c5164570a7335cf16464eb0b0443fbe79064feab98922eb53bb527
MD5 8a70fe90e48f90e61e932d6ff4d7b95d
BLAKE2b-256 1c7372bb672e2d7676da9bd81d4fb4a51bbfc665dc2b30896d7f90cabf2f9030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d519b8f3aed5a6d35bbcb4929c75ac67ec44a6f6471bdb6b9cb354dd8a307360
MD5 f2a2d4f3feae27744acfa16f293f4426
BLAKE2b-256 7e9e26e7e9c30c487101695fa9da0cb0d1ad0a0a72ee61e29907935e68d6e113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a6ca25427e81df0825a2fbaafe928605416065f98ebeb35718a78184f01c3b5
MD5 e0aefa4f041e1c5711f0ca8caa349382
BLAKE2b-256 a3055ee835814b317db40e7951745e6be50f1ffa9f6ac859794f0d54e4f576d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ef80fd218cc2d4d7d0dbd119e9f9ca7c23b2dd97d258c9928da3cdfaa88f4ef
MD5 b21509be2b490707542868b8b7faadde
BLAKE2b-256 3fc7ec913d33d88f2566f81c9f606802637444857e74d7a6c954a13bfb870357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9557c07a7785e52ef315bb3181386feff37ece69fb139d1247e06108188f99bc
MD5 1bc93842f6a14e6c6e79a3581d773cd1
BLAKE2b-256 93ba3e67b10260e11e8fe403f61f2e43c3282f5ce39c7c2cf74e9014dfdefd29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tinysoundfont-0.3.3-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

Hashes for tinysoundfont-0.3.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7fa9d9ab9c0065f064f2c6ca962a874c32518944cc9bd97d2372a037de6e22bc
MD5 45ecf1c272ea0a96617643400087a96c
BLAKE2b-256 a3ace9ac22b2db5dbcb8d1a4562f6dde4fc5e010c6b2dc614bced573a695efc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 310ca2f01bd63fa4d0e76ac30b9b8cf8fd27155ac19c47364e154bcdae9ff2eb
MD5 c6ef5925616a34232c38361a8443a798
BLAKE2b-256 87d0ef82ac04577ca266444dd3566f165fb36348c2170ea0dc98373ddbf8e4fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 92a9ace335b692d5403e9b7ab195d1c7cb1d13bf56c6ee18bc7d4cf05ffabe48
MD5 0971f2421a6ec365169cd55e5535016e
BLAKE2b-256 58ad45786c835832867887dd95cb6a2963ca45a0c5b5be22930815193a10094d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2506f116a5de42628ee21dcb0b5a496022d55b4f19602746b6708402526dd575
MD5 9771b5d39ebec03e1d5e503541b6d97d
BLAKE2b-256 a7faddf3b7cb4465f2ee85b25e9302065114690583c49225eae1e7a59ac008f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a64632b5eb19fb07b010302a1f16805ff1138e4878e8dc8dddd3122f5dd464e9
MD5 21be69b5f96d688e4f76a5a227a84dd2
BLAKE2b-256 ffb77a74b278299e8a3418c214b908091ab3053dc35924231d300b89028f20a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d7ca4a91d6360b073b3615ac1dda717a33b341dd763f760e0dc6bbb7bb42c4d
MD5 f30f0bd1c03290eba720f8f1da717bdf
BLAKE2b-256 23672459c1972b9586cec704d260858c4d3dc9226a368baff16d1eeebeffb4db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 101822237e7324cfbe0a229f7798c75653a030587c9897ead4d98613908ff1a2
MD5 dc750fd485137b33f59db27faab0537d
BLAKE2b-256 c3d043fcef707a45fb116b8989da461cbe94661dc16f8fe5833c3ac70e35f378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6f62eceda0b15006a9a3c391c6d3d5ad74a47e8c88929b1b1a59f82d0f233aca
MD5 04cfe2c21d88b1300acac2a34928931c
BLAKE2b-256 346a68afa2a51f21fe728f97f94af9fac43ffc14fd99a108ba53b1a098b4d8d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bbc56c0393013ed25f53b5550dbbea72c8f9a38446cdecb065bab9d7e8b71728
MD5 03cf450b4dd8720c63dffe0e235b97e7
BLAKE2b-256 5354e2707c08e721261cee90ceccc7774e0689c570c8d22a5c6a556717880967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d7595463108b2fcd237cb08eda6f4e31bf4a5217dc8b9a8288a99aaa4dfe26de
MD5 baea8cfb457c812fc55aab32d42f6017
BLAKE2b-256 809c5a4da37c09b3f8d5ec6788a5394af1aaadda56ebc373a6e6750c4c91246d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82215b776163b77964fd876a4fff999fa4cbb59bdb03fec23c2f8f8197926107
MD5 a8a097445b3dbee22ff040b5e78e7a2e
BLAKE2b-256 601a96b2f695b7bfee6f6609ca59c4137a3415dce88ce686f68541ad287f4e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a521cfa011fc8843c4a219fbbd94fd8be1c0377ef47e35aead8181e361e6e7f
MD5 16a5e61cfb9ee4f83450d2e84dd9ab12
BLAKE2b-256 959cef678c58a97ecf8218306cee803c3dc3341cd50ef0ed4f83e2aaa0bca050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tinysoundfont-0.3.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfa14350f6480f195fa972194c32b3a95cc1c7d5efaabead9d165cbcb6f7097e
MD5 47a2acee9acef4d1703c32f3d90ed6db
BLAKE2b-256 232fb2d9da88457542667f31d4bb7b5ab8b235b27043590aa1502176f38bc7a9

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