Skip to main content

A Python library for adding effects to audio.

Project description

Pedalboard Logo

License: GPL v3 Documentation PyPI - Python Version Supported Platforms Apple Silicon support for macOS and Linux (Docker) PyPI - Wheel Test Badge Coverage Badge PyPI - Downloads DOI GitHub Repo stars

pedalboard is a Python library for working with audio: reading, writing, rendering, adding effects, and more. It supports most popular audio file formats and a number of common audio effects out of the box, and also allows the use of VST3® and Audio Unit formats for loading third-party software instruments and effects.

pedalboard was built by Spotify's Audio Intelligence Lab to enable using studio-quality audio effects from within Python and TensorFlow. Internally at Spotify, pedalboard is used for data augmentation to improve machine learning models and to help power features like Spotify's AI DJ and AI Voice Translation. pedalboard also helps in the process of content creation, making it possible to add effects to audio without using a Digital Audio Workstation.

Documentation

Features

  • Built-in audio I/O utilities (pedalboard.io)
    • Support for reading and writing AIFF, FLAC, MP3, OGG, and WAV files on all platforms with no dependencies
    • Additional support for reading AAC, AC3, WMA, and other formats depending on platform
    • Support for on-the-fly resampling of audio files and streams with O(1) memory usage
    • Live audio effects via AudioStream
  • Built-in support for a number of basic audio transformations, including:
    • Guitar-style effects: Chorus, Distortion, Phaser, Clipping
    • Loudness and dynamic range effects: Compressor, Gain, Limiter
    • Equalizers and filters: HighpassFilter, LadderFilter, LowpassFilter
    • Spatial effects: Convolution, Delay, Reverb
    • Pitch effects: PitchShift
    • Lossy compression: GSMFullRateCompressor, MP3Compressor
    • Quality reduction: Resample, Bitcrush
  • Supports VST3® instrument and effect plugins on macOS, Windows, and Linux (pedalboard.load_plugin)
  • Supports instrument and effect Audio Units on macOS
  • Strong thread-safety, memory usage, and speed guarantees
    • Releases Python's Global Interpreter Lock (GIL) to allow use of multiple CPU cores
      • No need to use multiprocessing!
    • Even when only using one thread:
      • Processes audio up to 300x faster than pySoX for single transforms, and 2-5x faster than SoxBindings (via iCorv)
      • Reads audio files up to 4x faster than librosa.load (in many cases)
  • Tested compatibility with TensorFlow - can be used in tf.data pipelines!

Installation

pedalboard is available via PyPI (via Platform Wheels):

pip install pedalboard  # That's it! No other dependencies required.

If you are new to Python, follow INSTALLATION.md for a robust guide.

Compatibility

pedalboard is thoroughly tested with Python 3.6, 3.7, 3.8, 3.9, 3.10, 3.11, and 3.12 as well as experimental support for PyPy 3.7, 3.8, and 3.9.

  • Linux
    • Tested heavily in production use cases at Spotify
    • Tested automatically on GitHub with VSTs
    • Platform manylinux and musllinux wheels built for x86_64 (Intel/AMD) and aarch64 (ARM/Apple Silicon)
    • Most Linux VSTs require a relatively modern Linux installation (with glibc > 2.27)
  • macOS
    • Tested manually with VSTs and Audio Units
    • Tested automatically on GitHub with VSTs
    • Platform wheels available for both Intel and Apple Silicon
    • Compatible with a wide range of VSTs and Audio Units
  • Windows
    • Tested automatically on GitHub with VSTs
    • Platform wheels available for amd64 (x86-64, Intel/AMD)

Examples

Note: If you'd rather watch a video instead of reading examples or documentation, watch Working with Audio in Python (feat. Pedalboard) on YouTube.

Quick start

from pedalboard import Pedalboard, Chorus, Reverb
from pedalboard.io import AudioFile

# Make a Pedalboard object, containing multiple audio plugins:
board = Pedalboard([Chorus(), Reverb(room_size=0.25)])

# Open an audio file for reading, just like a regular file:
with AudioFile('some-file.wav') as f:
  
  # Open an audio file to write to:
  with AudioFile('output.wav', 'w', f.samplerate, f.num_channels) as o:
  
    # Read one second of audio at a time, until the file is empty:
    while f.tell() < f.frames:
      chunk = f.read(f.samplerate)
      
      # Run the audio through our pedalboard:
      effected = board(chunk, f.samplerate, reset=False)
      
      # Write the output to our output file:
      o.write(effected)

Note: For more information about how to process audio through Pedalboard plugins, including how the reset parameter works, see the documentation for pedalboard.Plugin.process.

Making a guitar-style pedalboard

# Don't do import *! (It just makes this example smaller)
from pedalboard import *
from pedalboard.io import AudioFile

# Read in a whole file, resampling to our desired sample rate:
samplerate = 44100.0
with AudioFile('guitar-input.wav').resampled_to(samplerate) as f:
  audio = f.read(f.frames)

# Make a pretty interesting sounding guitar pedalboard:
board = Pedalboard([
    Compressor(threshold_db=-50, ratio=25),
    Gain(gain_db=30),
    Chorus(),
    LadderFilter(mode=LadderFilter.Mode.HPF12, cutoff_hz=900),
    Phaser(),
    Convolution("./guitar_amp.wav", 1.0),
    Reverb(room_size=0.25),
])

# Pedalboard objects behave like lists, so you can add plugins:
board.append(Compressor(threshold_db=-25, ratio=10))
board.append(Gain(gain_db=10))
board.append(Limiter())

# ... or change parameters easily:
board[0].threshold_db = -40

# Run the audio through this pedalboard!
effected = board(audio, samplerate)

# Write the audio back as a wav file:
with AudioFile('processed-output.wav', 'w', samplerate, effected.shape[0]) as f:
  f.write(effected)

Using VST3® or Audio Unit instrument and effect plugins

from pedalboard import Pedalboard, Reverb, load_plugin
from pedalboard.io import AudioFile
from mido import Message # not part of Pedalboard, but convenient!

# Load a VST3 or Audio Unit plugin from a known path on disk:
instrument = load_plugin("./VSTs/Magical8BitPlug2.vst3")
effect = load_plugin("./VSTs/RoughRider3.vst3")

print(effect.parameters.keys())
# dict_keys([
#   'sc_hpf_hz', 'input_lvl_db', 'sensitivity_db',
#   'ratio', 'attack_ms', 'release_ms', 'makeup_db',
#   'mix', 'output_lvl_db', 'sc_active',
#   'full_bandwidth', 'bypass', 'program',
# ])

# Set the "ratio" parameter to 15
effect.ratio = 15

# Render some audio by passing MIDI to an instrument:
sample_rate = 44100
audio = instrument(
  [Message("note_on", note=60), Message("note_off", note=60, time=5)],
  duration=5, # seconds
  sample_rate=sample_rate,
)

# Apply effects to this audio:
effected = effect(audio, sample_rate)

# ...or put the effect into a chain with other plugins:
board = Pedalboard([effect, Reverb()])
# ...and run that pedalboard with the same VST instance!
effected = board(audio, sample_rate)

Creating parallel effects chains

This example creates a delayed pitch-shift effect by running multiple Pedalboards in parallel on the same audio. Pedalboard objects are themselves Plugin objects, so you can nest them as much as you like:

from pedalboard import Pedalboard, Compressor, Delay, Distortion, Gain, PitchShift, Reverb, Mix

passthrough = Gain(gain_db=0)

delay_and_pitch_shift = Pedalboard([
  Delay(delay_seconds=0.25, mix=1.0),
  PitchShift(semitones=7),
  Gain(gain_db=-3),
])

delay_longer_and_more_pitch_shift = Pedalboard([
  Delay(delay_seconds=0.5, mix=1.0),
  PitchShift(semitones=12),
  Gain(gain_db=-6),
])

board = Pedalboard([
  # Put a compressor at the front of the chain:
  Compressor(),
  # Run all of these pedalboards simultaneously with the Mix plugin:
  Mix([
    passthrough,
    delay_and_pitch_shift,
    delay_longer_and_more_pitch_shift,
  ]),
  # Add a reverb on the final mix:
  Reverb()
])

Running Pedalboard on Live Audio

On macOS or Windows, Pedalboard supports streaming live audio through an AudioStream object, allowing for real-time manipulation of audio by adding effects in Python.

from pedalboard import Pedalboard, Chorus, Compressor, Delay, Gain, Reverb, Phaser
from pedalboard.io import AudioStream

# Open up an audio stream:
with AudioStream(
  input_device_name="Apogee Jam+",  # Guitar interface
  output_device_name="MacBook Pro Speakers"
) as stream:
  # Audio is now streaming through this pedalboard and out of your speakers!
  stream.plugins = Pedalboard([
      Compressor(threshold_db=-50, ratio=25),
      Gain(gain_db=30),
      Chorus(),
      Phaser(),
      Convolution("./guitar_amp.wav", 1.0),
      Reverb(room_size=0.25),
  ])
  input("Press enter to stop streaming...")

# The live AudioStream is now closed, and audio has stopped.

For more examples, see:

Contributing

Contributions to pedalboard are welcomed! See CONTRIBUTING.md for details.

Citing

To cite pedalboard in academic work, use its entry on Zenodo: DOI 7817838

To cite via BibTeX:

@software{sobot_peter_2023_7817838,
  author       = {Sobot, Peter},
  title        = {Pedalboard},
  month        = jul,
  year         = 2021,
  publisher    = {Zenodo},
  doi          = {10.5281/zenodo.7817838},
  url          = {https://doi.org/10.5281/zenodo.7817838}
}

License

pedalboard is Copyright 2021-2023 Spotify AB.

pedalboard is licensed under the GNU General Public License v3. pedalboard includes a number of libraries that are statically compiled, and which carry the following licenses:

VST is a registered trademark of Steinberg Media Technologies GmbH.

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

pedalboard-0.8.4-pp39-pypy39_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPy Windows x86-64

pedalboard-0.8.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pedalboard-0.8.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-pp39-pypy39_pp73-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded PyPy macOS 10.13+ x86-64

pedalboard-0.8.4-pp38-pypy38_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPy Windows x86-64

pedalboard-0.8.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pedalboard-0.8.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-pp38-pypy38_pp73-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded PyPy macOS 10.13+ x86-64

pedalboard-0.8.4-pp37-pypy37_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPy Windows x86-64

pedalboard-0.8.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pedalboard-0.8.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-pp37-pypy37_pp73-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded PyPy macOS 10.13+ x86-64

pedalboard-0.8.4-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

pedalboard-0.8.4-cp312-cp312-musllinux_1_1_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pedalboard-0.8.4-cp312-cp312-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pedalboard-0.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pedalboard-0.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pedalboard-0.8.4-cp312-cp312-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pedalboard-0.8.4-cp312-cp312-macosx_10_13_universal2.whl (5.3 MB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

pedalboard-0.8.4-cp311-cp311-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

pedalboard-0.8.4-cp311-cp311-musllinux_1_1_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pedalboard-0.8.4-cp311-cp311-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pedalboard-0.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pedalboard-0.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-cp311-cp311-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pedalboard-0.8.4-cp311-cp311-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11 macOS 10.13+ x86-64

pedalboard-0.8.4-cp311-cp311-macosx_10_13_universal2.whl (5.3 MB view details)

Uploaded CPython 3.11 macOS 10.13+ universal2 (ARM64, x86-64)

pedalboard-0.8.4-cp310-cp310-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

pedalboard-0.8.4-cp310-cp310-musllinux_1_1_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pedalboard-0.8.4-cp310-cp310-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pedalboard-0.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pedalboard-0.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-cp310-cp310-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pedalboard-0.8.4-cp310-cp310-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 macOS 10.13+ x86-64

pedalboard-0.8.4-cp310-cp310-macosx_10_13_universal2.whl (5.3 MB view details)

Uploaded CPython 3.10 macOS 10.13+ universal2 (ARM64, x86-64)

pedalboard-0.8.4-cp39-cp39-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

pedalboard-0.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pedalboard-0.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-cp39-cp39-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pedalboard-0.8.4-cp39-cp39-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 macOS 10.13+ x86-64

pedalboard-0.8.4-cp39-cp39-macosx_10_13_universal2.whl (5.3 MB view details)

Uploaded CPython 3.9 macOS 10.13+ universal2 (ARM64, x86-64)

pedalboard-0.8.4-cp38-cp38-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

pedalboard-0.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pedalboard-0.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-cp38-cp38-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pedalboard-0.8.4-cp38-cp38-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8 macOS 10.13+ x86-64

pedalboard-0.8.4-cp38-cp38-macosx_10_13_universal2.whl (5.3 MB view details)

Uploaded CPython 3.8 macOS 10.13+ universal2 (ARM64, x86-64)

pedalboard-0.8.4-cp37-cp37m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.7m Windows x86-64

pedalboard-0.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

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

pedalboard-0.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-cp37-cp37m-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7m macOS 10.13+ x86-64

pedalboard-0.8.4-cp36-cp36m-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

pedalboard-0.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

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

pedalboard-0.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pedalboard-0.8.4-cp36-cp36m-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6m macOS 10.13+ x86-64

File details

Details for the file pedalboard-0.8.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4bd00fa3bf2ba478885aece5f39ce0b73b3a3b379fe7a5593638d22cd8cc5744
MD5 d2cc3ce95fd2baf8d82edde6c914c021
BLAKE2b-256 cabb0e9428005363ea2f4e7225104b9d1c208f0a1eb181b772c2367be86a1b04

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6afc8d7e91499139086174eede7c3434ab142b5163a5774a3a39add83d652ec
MD5 ddb3c9710bf06b57e9ceace643af37df
BLAKE2b-256 3e92b61ff1746e84e29d98c23fcd55d81af156818cb8bca5f2e62f9ecfb1b6a9

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d32eab0ba14248092422a6df37c0f964ae6773ae3c6cb0ab659e72fb57fe04bf
MD5 7247e59110bc9e12a30c4638d3c5de2b
BLAKE2b-256 639eaf13baea691726fd84ff57df50dc1ebf7fcc3ba8194d087cc3e4dd6e286d

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp39-pypy39_pp73-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp39-pypy39_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3595180d5e76f2571cb510eb1078f8d4b5127f06ea5ed0b1f7e507a902739a15
MD5 65efbf9466835c6711a8b38756dcc959
BLAKE2b-256 852e521d0357028f620745073f6ba21b05d66b26ed4315591f5ce55e67f1e200

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d70f9da874cd359cab3362fabe061ff1e44c125c2080069645a8d1907304dd4c
MD5 cd39ccd19aba0745b64fb7b53addb519
BLAKE2b-256 5c847db373af1cc319a790d4ee9579d604ab086f361b50dec39b1c08c4ca012a

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4409006ba79d183653cbe45e94153844a723ecf7cd2708fcd5112d44eca22ff4
MD5 e085ba058e33c236c389fd52dcdde7cd
BLAKE2b-256 ea0207d1700e438f35d89c35a5e61b68f367deae42758e245557028a5f36d4c6

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edc3769c429e76a3503005ec43222d9ff9741cf727dafaee117496166e4a3b97
MD5 57e56fce1bf0843601621d0516aa3d26
BLAKE2b-256 9bde4cfb2d16b01e7aa5c7d1c61358409c448f289a20ca23b614347c8c3d204d

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp38-pypy38_pp73-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp38-pypy38_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5ca733fabd9feb32ff7b28ae0704ab067268200e5c556b764e983918074b6b70
MD5 d113f0de9c8ced4df89e60cd775fdb77
BLAKE2b-256 3999ec2d4a32fe18259a1c27bd6a5553a2990f93dac02c3ccf9917efad235f41

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0916a4023b133bd8b21eb86e19e38e6951caaed1c8316d02a639226ef9e18a65
MD5 1b9ff0b2d1146bc7916dc05711164d4f
BLAKE2b-256 37a8a99b761d931f8b33a9f0f336129172a4db6ceb4b2297ee4b67875b4b5cce

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3673509e79a196a7b00aa38e60604cdc54c7bedd0b6d1b9e5db111b25811ac5
MD5 aa7254d8bc05a468c48e9704c4911ff0
BLAKE2b-256 d26dfea8b0260d92e5f10b20755179ed8b84d48faedcb72056575c1a86ec2576

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 471d51331c05203b707ea0787d37e3a438b93e1c1ba38de7c592139e473334b9
MD5 030596b84c0718201f3648644b60a768
BLAKE2b-256 dc490afabddb04c04759ad6f3969586ea0361173a066cdda6f7eafd834e010e6

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-pp37-pypy37_pp73-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-pp37-pypy37_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b385ebf64f4f36bff254c828615a55af00b86a1bfd1cbd3d01edae80fd85069a
MD5 91202a69f1fb99f0523a73920a083772
BLAKE2b-256 2e463df6135c5b7c698f37cb00a430ca099178c118441c2a1bcca49d8c0548ff

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 664934d02e631cec5d4762d291374f3624d855e4f768381455f6c0a370605c49
MD5 ae0fe4080aea8981efd3d75846e63881
BLAKE2b-256 d856692c6625b49bb2ea9f4a38269494c287eeb8dbfd3de1840512f48b21e0f2

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c1ebcc0e70ded6e1c3e13c5060aa4e04a9d2bf10817ce64ddfb16dd14f5796d
MD5 6f32c0f9d46a0c0e0bf8733e1e7281ec
BLAKE2b-256 fa1d716cbd9761627179886c7e21940aa6cba9dff63ed3bb8430148f1b83b3eb

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c4cd105614eb81976d478d433d5c99b278d274dee81cc4820bac57aeba056fe0
MD5 92c37fa8de7620cf1c954ae83d51142e
BLAKE2b-256 7159937157bc39e15db71501f7cb0ec8c48c061c21d09013f7442a90e74d536a

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7176a4a5e7b1c4d6ed5289255231417568fc1230a865d37e325d1c451aa2d7b
MD5 a98d306286a7e6c7311c0b04d626c610
BLAKE2b-256 da08d2aeafa2313094dfe37c94e49a56182bbdb6c70cd65132deed92a30059ac

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92b0a6746db6d24f0634b5fc1f0145961ad827baab501bb273f434d985285213
MD5 608151e7ef259d650a7fb236a4323337
BLAKE2b-256 1848c15ab9c924da6cb02e109b7607d64c345601f5c52708e17705152cd373b4

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4f3bad8abd6428a88fee84578c2ee05f245d81009408b1c0aeda1eca405832f
MD5 c5962c54b3258ede060f852425216d8a
BLAKE2b-256 a8992e614cc865a85f89a5e48e12f5f234ae9c790cbdce9453c131338daa743d

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8d8ecbd316c4b050e62159ec086bd93db0fc00e9917437cfb291f502cb0e2e32
MD5 5b5a284707ede782835ad0e73070a028
BLAKE2b-256 ede91b58d632315884cd44e20348e0cb9fc76a061b4e79b4bf1287a47cad9fdd

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 65baf99d8ffa67f86aa9d4f1dc41aefb175dfee8df6df66df5f3d2e6e5377df4
MD5 0ee2ae7df2eacb055408a7f09da87d31
BLAKE2b-256 d369a7dbf9ab25deb4c8f039adb2896ff5203950ab8a6fc39a8f1659baf98a00

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 85eb0e841b9a0e1ba6d6b15de196452d50964f39e185e4ad101e4370bec669a0
MD5 db9a7bd543c7892b5f2797966b322cd9
BLAKE2b-256 83f041b8958ba3caca63eacf56d370e2e95b63d0e07155c312d4a1d73aafe7a3

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 65c44dcf75337dc5af8a8ae241639ec65df91ad5744eb0e3734d9b95ceceec72
MD5 86e708e4d36b73d982f78472ba6178a5
BLAKE2b-256 aa5005b051b34551663251aff221cc44574555445b62a5e4e7a88072cef15936

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 583d4891930805b3362d594d6e909828d1503213b6e648782a3981d75866602f
MD5 381b88c89947c2dc236406eca370dbb3
BLAKE2b-256 748ecb542be59be329b505fc49acc978b3bf95d925037bcb40dd1946bae43218

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb52b2d81a8f834983879e237be64241bfbb84722f470b32b98c5e31d7a2667f
MD5 a98b2f1a523c8ca2f2029c996f443fe8
BLAKE2b-256 804c887cf8cd445f8ecaeae64a1a69cd2f55b54b104006001a5d08fb82b4f248

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c5de60339cf3e3758905428ad6c3dd0b52474551c84f42312f36d12f2c3cfab
MD5 3ef341af0515243efd50295502bacf9a
BLAKE2b-256 ae9780e31e81a7ae180cc6b70a39fd38e0a7489d57b0e1885b9ca8214437dac5

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 360c873e0e6519503de9a7e4aabb2c503eae31051a50fc16e8d082b53d1c9bca
MD5 e61cd627431591dedfd93603634b67b6
BLAKE2b-256 034b1d9d888ec22789dfc012df34be86304550c00f06cd775e7a8f02f7de7848

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eb3bdb45a63f824ae473a7e2c1e8fe43b55f411a263f28985557fa407ab8cbf2
MD5 50a53ef71396d8422f2edfd50902d4d2
BLAKE2b-256 e79f8e4cdfb315091d9f57b4cda710ef053139c21cce30f80368f184b96ea340

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp311-cp311-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp311-cp311-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 14310b23610231c40689fbe778f81f873bb25d364801d18e51261f27f79ecfbd
MD5 65751e1bebb131b35eb859bb9e36dacc
BLAKE2b-256 bb4bb19c015377b538a53190aa302d04a7a806df9017dee631e89f2330d336c6

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 29bdcdd3ac4754f081f20f56f1d4732814f7766745fa7c7c39c81b21af002fd5
MD5 e2ad7222fe52d3a3e96acce3778c4f5c
BLAKE2b-256 1ac07bbd8c78d8ad2fd20c9d258a86b7c64568ae8a6c1f1c650b72e9e26fe5a1

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f8495698567f05fdf9ae7c474c374fad68dd8c2aba47232fe11191e416cbea1f
MD5 d8403080eeba4596830a1d334c5acd10
BLAKE2b-256 73a6276f6323b64a8fced2a225208eb259fa406fd80c33b561f7288035695b08

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8be42e63db9767c5b24caa870f4e44894538bd44389dc72b53585e1253e19bbb
MD5 2b664bd53a4bb7d4700e956750ec49fc
BLAKE2b-256 a3adba75c616803f9147cd05b896ef41439da6f0805801d59d8315d9fba15a6c

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3be2a5621077c3f655ab50497979a5887f200c50e6622dea358e5e5b5fe08db
MD5 aa38c5bf2d394ff4f06226e2b50b8351
BLAKE2b-256 b23bcee84e56cd3c462b24bfd8bf689e1d96bf263149dc188b4bd4b77034bfcf

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fafa07be21675449d98c7b65484dafc0574b3569ba3c40c4dd02562e86d4d302
MD5 dc6e15c9e3345d2823a658dc002cfdb3
BLAKE2b-256 27880438764db52862fae91b2ea6de823fc6986fd88c4ecd33071cf99c550b7c

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 736b61e9ab3b2f2a74f96d8490361a363a94d1ce54226f2659e4c378d0876a1c
MD5 54c047b2d24e0fb9838778e610da4190
BLAKE2b-256 377a15e1e2881be7822b13c8b3273d5b674e62da662aeaedfa3f1de8973fb1ec

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 33dcabb22927314f8a9c420560185fb6a3eda520c136ec830687b04c1cddb1c6
MD5 f32c9982d2d8a97c948dd1b7b0504fd7
BLAKE2b-256 ba2826eddd5b127feb18ec33798656a09a15d2d6975d2f23a526ab62739f35ec

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp310-cp310-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp310-cp310-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3b7947e09447d26d92f92ac056ab89448c0b3196fff46cfe6d4c375d6f922bfc
MD5 b2e391dfa47d3ca03363dc37b061a4db
BLAKE2b-256 16585700392f07d0eb306c78d7b5ebd4bd8965de409011f2609d1185e0beb447

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c7111ff7447f194e759d7fb1a6351a22715524843effefce95e8439c558a91b1
MD5 3a732d6e4bc18b5ac4167753ab3fe62e
BLAKE2b-256 7e78a741697026244d5f38fe7c24daed043f21a325534ade9f43cd26fdbc2d62

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa230944ba3f8906c2c9e833a92e69c1c9d048b8150502b62ca49cf17505af82
MD5 6f94c4bd1176e6a3fb77ebb6dc1fffe7
BLAKE2b-256 7f7a3f329f0c490e6f2e0eebaa14bb4b16d0ff337425e7379b0b23ab3761d2ec

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 996626e00beac09f61c94541e94962dabefb5246e31a94b56ca2a834d162f538
MD5 c4370a8bec69eecb41fb2d3cba195c61
BLAKE2b-256 37b9a94a07b6b5a4596ff976a4927800f53a87a2e77b8cdac28a82749dd1cb79

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c883610afaa96fe8b8f68ff2f91788f437f8aba83d808065d098aa100f574459
MD5 1d3abb5a1d5db34a9166a6295ae5c414
BLAKE2b-256 930c3b9d76ed307743ee2f3cc2edb56a3d296e81ac263167cb0f7a7906f9ed2e

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cb8737a21d5b3169e02768640ba706093bc62114798a0be72e9b5519d4ac9716
MD5 3de2502f39e24b8f36b6f3d2fd18d305
BLAKE2b-256 bb4c1977ada6add587838ec8482e66edf2b07c2cfdc301e6e7062bf10df44833

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp39-cp39-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp39-cp39-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 fa10100ad1d5e912acc71239221e170fc2017e4c2a36b327bb76f8881a50d5c6
MD5 1d5cbd7fb2fcbe081450472de41da900
BLAKE2b-256 7f340be034cc3166d2dbfb27f3ef1face689852954327bdd80867391c5a128e1

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 713b58344a68d93e93b6ab9f30cc87246b1992a0a5ec3d55c15e3804206ca75f
MD5 c0eb276a0c678a7ea6201c9ea96d275a
BLAKE2b-256 8e7f8dd8f42abea48fb0c91928d7513ffdc554baefe46261cc7f75547b9ee11f

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27f49b2c18ce2fdcbf8e2d00a7db15c42c3aaaf22ded9d664c364e5805128d6b
MD5 66ce1bd188ee72ffcd575551692bf45a
BLAKE2b-256 1c9eff3ac4cd2ebc5b9aad7e0ad8391165c8535fe4da5039381c8153159f6b8d

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f96f4042e9bb91692775900d87d2ce1595e94570c7da882a0e417c390cad92c
MD5 650d3cb4193464a21dc357eefbf7f334
BLAKE2b-256 e69a2a83a92a67fc464f2b9b3c4b27d0fb48feb708785d6ff7e2efafe96f8428

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 762b392590d63e9fda817c1204ecbfc77f9acd7f8307981ac612fbf479ee1016
MD5 f5587e451bdc849a20573d1932714964
BLAKE2b-256 d93964b08888bbaa6e6073fd870cf7915877b0000534232817c0ed44b7f7b33d

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 56aa401cf658be10b01463900abf5e2ea4aa28134031c936afc8a3315d11b2f5
MD5 0b4b46322f3d47b19fad8b65fe0e1abe
BLAKE2b-256 59489e5401dbba106d266675c45c6bd223636faf7f03f8851b3bb408957266d6

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp38-cp38-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp38-cp38-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6b160565211ab530fbff90310af515086388b06e4c388e4d56cc662a70a019e6
MD5 a45e58934fbb91bd3ea501f420220669
BLAKE2b-256 9da9b7840c225899a5b4665b493d128edc65f42f29a777ddff198e82e4ee88bb

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cb18f6702401bcf904bd93fd68138564137e0d3b4d50c46649e27ca8f7ed7155
MD5 b7666abc5735374c972ac55e62671068
BLAKE2b-256 fd9300211ac009d482c4dbecc11cd959e15e4af560f72a79c9d119688be24e67

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b2ef42929c0ea83d78805c5abfc22b85725ac2b987c543a0989624f4600a5ec
MD5 4048a1355d6e2220871a1c5f95f2a794
BLAKE2b-256 7d524806dc6788522864dc000b49f92020a665e7be28e01becf09fb000055a94

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6797d1d788e840985b81b4e45ea00b7c83300f0f012dee94b64151f474f592c8
MD5 196a33fcf732a6591628d7c93db7b8a1
BLAKE2b-256 485a582c3d682c6fc8e9470c6c2310240de7a3c823578b5ee241a43f3e782cfc

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 05aecadc86f39d26ccadd80f58521a04266534a2ffb72af6f7b906fd4a33f415
MD5 0925e6450ec15ed0be0fa534bc4dc7b4
BLAKE2b-256 5063e62008290494ba6edbdfad47c44028ce160d52f654752194114142e7f7af

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 471bfea12e6a63046845109a8fef6164949695cf072c68866395f5e7dd3f656d
MD5 a598c90543918c5da83a5487f77f20bb
BLAKE2b-256 7a776e922373d2d503d0fa5d40d1a158fa7165f81b9dbbfd5d1f222e65abc09f

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dd3a36be78388c647cb322f3bea2f4a704b3c5d7d82ecafd92e81736148f6d8
MD5 db9743c3cacbfccfad214807f4f3462f
BLAKE2b-256 80ee645a091efa1cd65256e270192ca09925808f32273107e3e2cd461603cdf3

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ff8747107a60c4014f8b1620292aa4842e3127cf958c140259dcc0acd90af7b
MD5 57a0e375dee033dddd705f20735da5f8
BLAKE2b-256 86698098e59c4491f79f62b5735698da98042e747c5a8e240204648c1fa2352f

See more details on using hashes here.

File details

Details for the file pedalboard-0.8.4-cp36-cp36m-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.4-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 65dc61b5ad7e27bb60cd805a6bfc7b856f32e53f77013b81706ffe70c06582f1
MD5 7b0e2d6f2320e745b64008568e94d8c9
BLAKE2b-256 8e71a66a797c9c146716d6275275a0b6e04b6e58834745a33a0390d1df153cdc

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