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, and 3.11 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.2-pp39-pypy39_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPy Windows x86-64

pedalboard-0.8.2-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.2-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.2-pp39-pypy39_pp73-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded PyPy macOS 10.13+ x86-64

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

Uploaded PyPy Windows x86-64

pedalboard-0.8.2-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.2-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.2-pp38-pypy38_pp73-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded PyPy macOS 10.13+ x86-64

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

Uploaded PyPy Windows x86-64

pedalboard-0.8.2-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.2-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.2-pp37-pypy37_pp73-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded PyPy macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

pedalboard-0.8.2-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.2-cp312-cp312-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pedalboard-0.8.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pedalboard-0.8.2-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.2-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.2-cp311-cp311-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

pedalboard-0.8.2-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.2-cp311-cp311-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pedalboard-0.8.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pedalboard-0.8.2-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.2-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.2-cp310-cp310-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

pedalboard-0.8.2-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.2-cp310-cp310-musllinux_1_1_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pedalboard-0.8.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pedalboard-0.8.2-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.2-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.2-cp39-cp39-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

pedalboard-0.8.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pedalboard-0.8.2-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.2-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.2-cp38-cp38-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

pedalboard-0.8.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pedalboard-0.8.2-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.2-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.2-cp37-cp37m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.7m Windows x86-64

pedalboard-0.8.2-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.2-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.2-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.2-cp36-cp36m-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

pedalboard-0.8.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

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

pedalboard-0.8.2-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.2-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.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f70d7bc047379b987ae7bf52320a76d96fbcd67854df7c0d3ebe1dbb1bd8af30
MD5 459de370aae8a982ba4b199c5ab2736b
BLAKE2b-256 a13879d197a346401f2376a18d5c648ddf2977fd70b4a3dbbc59da6d0f87a8ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f109db62dc911b5fff79272c0d93d3932f569907162ed1ff9c2e60cbe513ffa
MD5 e4936d686bd5daf37a09bebf3be84018
BLAKE2b-256 92a7dd68e1a67cde892c81207328999eeeaacd6716f3809b425900dde4a26704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59bf877103d9f1b48c0cf61cb44e167f52f075b17abfb996af1b3d8d55dae914
MD5 a268fe83335be336e3f09318fd07cf26
BLAKE2b-256 64e840ad718a8aa546b9dd8b7a92fa04a10c7d47c48f2f13fc35b99c47d5e0e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp39-pypy39_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 558dc4a37a7f15564f947bc430916bf0437581460282b0b52bc61c390c8894b4
MD5 c862cd30f3ba06bdc4c730f9e51b44b0
BLAKE2b-256 e674d6d04fd1a9f3b095a8cb02bb67d43b12f1ee6402c08d5ea947f43977985f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 80821ad3f6d30fb118c742874b6c536e96a111ad1289663513f15b3b118cec96
MD5 38b6f697021075f8cb425200a451d9d1
BLAKE2b-256 d35b971c5e401d2ee9bf1533c193e0932cc7da57d291c2ad2b7a2d042e41eaf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64164f59d1b1967a3f480fd41df6e38c55af70b404bcd01452d2845349497958
MD5 fe27161ca337edda2f6cdf8d0de43553
BLAKE2b-256 4aa0bf6a46428840cb4282f8cfd27d9f25d052131629984ab17ba796d2a35daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8ed1444b3715d36380cee6264aa46d8865c69353f6e41e2b279a87477244174
MD5 a5c8908e1d3aea3ab6bc9f95e199220f
BLAKE2b-256 3f41d883b6ea7c6a6df93b4d36b48a8e83753467ca7bd94c842e127358b844f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp38-pypy38_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5620a8e7af79c3be67a85e7fbd5b03f23303b65ec85d88d5ce2d383fbd22aea4
MD5 2bd08732ae5e4fb42d1c9ce77abf3620
BLAKE2b-256 75c59231005e4fe573192848a9bc1d4793ffb16de92fea20e6c7249e7e1018a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f11fa3edaa7917a8e66cfb105a3de2f16079068c20f6d74054c4c1d133d12d30
MD5 47b64c2e72ae794e433b834ad9281226
BLAKE2b-256 9b47f33773c57bf30cf06dbcabc30e01df872876ea95876589c448d1bcfb3f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d091a332db3f5f41a28b3fb04b6b776cb69415b5d92df37c0e715cd7743237fe
MD5 a669f7a7427548a8599b397b3ec2ef11
BLAKE2b-256 8e5217e3d2f9ffed461e2e1c606be2038465143eb008d2dc0bf78ecdea39d974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7caf3cbe838f5891a6dbaf21f9ccfcf9f37e2e4cb8f6a82f0b4498f77d139de
MD5 bb8a7698b0053c3c769023281a1f38cc
BLAKE2b-256 4b8b34e18747ef4bea730cea26e73ffdea64ebc3b5d14f9a90001b705d1a1f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-pp37-pypy37_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9557b32058855d94d7b9dc489c024e2f176e15b9998539e53591b3e92bb7afe1
MD5 51d19b25ace5690b456c7c9dd24e650a
BLAKE2b-256 6f7f205a09d272ccd84e5b1fa47c088c612abff80a6e972a70922eb5895f2b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 373d39a66cfb7866812893f14c742b10957ee0ae94506d3e393d69f02e6b0066
MD5 050dfabf7b46bf053fac0af43c046e0a
BLAKE2b-256 45ebc3924e668af6064de09e0e1eab5d7b55852d65625b64222100c833091ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 56aa68f0037d27ead859ded51e1b5d9ddcee67ded943ab07c71e59f4d32ca96a
MD5 ab1d4def083f5a8be0a5142004d6674a
BLAKE2b-256 3f664b007db78065eb619830b274c760cbb183d10676d23be8eff2d97219cf66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 94f1cba05831bb4b945e277c64cf959eb4d685ea9dc05c7963669973b2e54104
MD5 ea76e82a2af16632536b4bcda7bcae29
BLAKE2b-256 719cace5fa53720986fdd597660b3908da039c950a82c79d702140118fcdb587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 627110b052e9991e72aabf9d5d6ca745ad9dcaaba314ad9da7738471897bd217
MD5 0bad615b641cda4d9b7b2276f8c992bc
BLAKE2b-256 fcb3babfcd67a73f2840648563079aae506d3981c536f21d5aadc4a1eeb92da4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab68714bc034f3f18e2b89267feddf22a65fb4da81053194ae6711d5b5beec62
MD5 6dd679d016e6197e2b551d7961684fdf
BLAKE2b-256 dc31e8245431b3d2e784ec42df249712b9716d2388a40b88248d73e75ac96127

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee3d14e3bd352ee193364ce186c3a3b9d4b65afb829abc2934f8bf0bad03cb0d
MD5 b0dbcecae1431324ed8854318d22dc51
BLAKE2b-256 87335c56ca7e938178dc9a03d253ad6e110498077b4c952837bb9a185a3fe841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 56a81ecae81795c8b0b89680668e521e3a492d15db7c75e57c915af134249554
MD5 f5cd518e08973086df2d6200916076e1
BLAKE2b-256 cde1f03bc651f92fb2108f6ba9cfd24d0723c3279c35401a84a9868f9061f0aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3de8bec4d95a4b8887359ac01635ab3e7b31a94b1d8448a5305c02b920991515
MD5 2c4bc7c4f09c7234ed126aeca3379e89
BLAKE2b-256 31993329e09ce0f20c88f8e7830509bedd3f1309b0260a982a93c7c258d6b496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 06ba9dd120513d25a4446012af790ab0b42734a82bfdef06796f52ba932406f9
MD5 0f17df3e475ae9dc7a950fbc62ca7eca
BLAKE2b-256 25fd44760d7620c11014119cf8de531b4b0fe3e14ab415eb57592a5bf37088ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 df51bea1a1b59de3071fd5f833f2a92d25776c94c15bd1f7b154d40a4151acfe
MD5 ae5ee2a4d5ea2ac91cc6db8d376e1289
BLAKE2b-256 1cd7b30e22ec58486f1256c3e7e191d1ad126e64284b15cdab5bebf4fec7a05f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f0e5d5eb5401b5a82530354f3fffdfd536328d7e0387cf3decca6826c5ede71b
MD5 8214bf97fe51a28f3872a55dd34d78a8
BLAKE2b-256 cc6509d001baa30718ef177e59cf35b948366d3ffb5dfc7766b381eda164d8e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9627c016f655620ae44938541a0048c7724968b56cc905bdaa453a665fe8220
MD5 b799c0b2d11c9a89cfe54d0553b2e27b
BLAKE2b-256 83579ee7c185dd22c170d4031b110dfee6a74d1371462a85633f5f3ad5fad051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88af5c5d5b1d6cb6c163ea73f3b80e4cf74dab4e44bd6631995cbe6428aa8d42
MD5 89f6c1086abab80c739faacfbffd2576
BLAKE2b-256 f1f56e78bfe3c16f5d5fb49432ded323707980eca2fab1525972d2db214b8cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eca851f5116f707d9921ac925957758c3a14ccde86c066f5775b07e872eed7eb
MD5 f1ef87ed1f59d04ca45b4be29f3d4257
BLAKE2b-256 6e49bc1fb99ebbaaeab7eccb1a5850f609963db86ee62f6dd81373a0d4865f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 05552922ce84aa1b2fe33f1308d1285a2e3c988b5108b014d92d9a0a130e3218
MD5 0e984291ef9ad0f5e3e80d610e297c6d
BLAKE2b-256 b456c9d074d481309d3bfd249e404cba19b0c813700519269042c3ce7c1f82a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp311-cp311-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 81f34440d34a26db5d9a85236c01d459f3d16ce79cc1f1df285cedd7d49de582
MD5 2128126233661bb4abbf60b3a8da54c9
BLAKE2b-256 8512a41a960df071e70cf4380dc20db9bdf59dae3de11fdd95a4ba351891dd1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d3167f0c926ec2dc963f85c23e1f60bbc75b2926a0afffa0b8efca5628ba777
MD5 360af0f9769230e2399719db6d00520e
BLAKE2b-256 10f178017b500173387e8b5b02adec1e91fc254e89f5af455f589fe809a47054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e39c3453515f18b45c1094945ea5599a8fb7aa34665b91b539a66fbf006128e
MD5 73de9b56ce3f9e765cfcb34c7c31fd97
BLAKE2b-256 6ce765ac1fd97e047064f6b36c6666a4c72552fd6baaf4109e3511a311e8aac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b71f43c332710f75eacb954fb8e1e150e7a5f1827fb17089683aeadf83965f7b
MD5 c15f67618805424eccef3e9c814c79c2
BLAKE2b-256 3b1cd811f248dd0035b7f03abdeb03f00704e33c7d67e64a34622ca8266600d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8f798bb8e8c312fde19d1af36ef1e48a1021e3f89d3364630687a193a36509a
MD5 e635b07d23f11387261d50ff208e0052
BLAKE2b-256 3c42b83237464c682488c95e7c5e9e9c4559dc5713dfc9adf082a78e75e76615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2d56b3fd73b0d38db1bba274ff85460db48c0205a141b915519c6a84dbb037c
MD5 a7f5b8c25ac62cbb3352cfd3ca2fe986
BLAKE2b-256 ad99727e6d9a3b87fc62037486b6bbaa5e7b5292e5f4cc51c6847cc8c60b958e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a80cf59c1f554abcdef6274a0f9864bb49f7e8509a6f72648bc3b1d971408b20
MD5 72396aef884c18999838bb5c19156864
BLAKE2b-256 1c98c8a0f86d8723fe0d6374c0ef1f91afefd0dd87220ed385084496c5de52be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f1f57a9b9055d09ccd4ed38071a757179cf69722aad2a1d7eedd70e1104e4a99
MD5 19509d717130cb9902694ce3ac4fb8f3
BLAKE2b-256 f3bfe0d2e41967d3ac180e53a80933d623f07506aeb30516d84823d9d9f94883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp310-cp310-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 701e94b16d5af82642602733e4dd80970266462c80f1fd21ebda88a097f93112
MD5 5dc54b9d9b1a70d1a504f1a4a251101a
BLAKE2b-256 f6552173e9690276790549525598eecb9e80bb05966b974eef41eae60324c13d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1f3011341a74da5c31d03bcdc2747c3bc28648e902f339efb8c6054fe2b8a003
MD5 1cf177869dfa826796e807d6a8c3a167
BLAKE2b-256 12b41442a5a99b76be8377d5d75e0ad60512e81d8a53593c3d9e5623dcfc02fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e8c15dca5910e52fcd2098818ab8b49db6b784dfd85143a32805f0dc101c7a8
MD5 ed324518633c5338b30d24d6284199fa
BLAKE2b-256 11c9456e44399c94320c8868d4297b2e48f36e2d3bd9b349a28d6d0d2abdfda8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaca9a442b5d9c21bfdbdbcd2094139d59980f76441371567d5376eb273af4eb
MD5 7debf5afa3e15c93c40a74ad6d0cc5c5
BLAKE2b-256 58c355db7ebc62fa1de2fa716e5435017a929c751312105cf0b74e86a19c9bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80ed16dbe042dd10a66c0c72f5fcab6c94069dfe2f11dac915f0d65ebcd34421
MD5 d158df3b1793653075ad8b44f9e8703f
BLAKE2b-256 5d88f4b82efb89583662251fe1ef19f8dcba1981c0f5129612c2a8749c404999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b9f3d23bf76e5510f01f3689849188fec37ac49ea5de967cf2d426bc30aab439
MD5 57b7b019d824f6673f3d28f41a3025b5
BLAKE2b-256 ed8ecdf75f475a7d8c2c46ec9c5dc7e61a01890507f59aa8c9c0e16433dd2b3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp39-cp39-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b11a3db72ceb752885e7d419c6cca9653d00d8561e94f889c29acd657a0fd7d9
MD5 7d0bc08201981daacf8512692afc45d7
BLAKE2b-256 2e257afa2760fb7ecf019d4231e7fa75fa03656cea24500f7a9ed4a461a1690b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 61187a66b45a2d96562038fdf66eddc4e8a8b521858bf8e7ee3661fbbb0a0f4d
MD5 baa4b13683f2f666ef76f1d87c29cd42
BLAKE2b-256 963affe83926541806d6fa1b5ffaea8aab3eb5cb6f82e41b7ec26c2f318aef91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a833f8fc974254fb5ad16e69edf4944085094f1c2fa68868f5685a74c8e66698
MD5 ede76c4d8cb72b0eb5a0dcea883bcfc4
BLAKE2b-256 7de76e20f2819d4a66e7e1f1691425fbfeab6961a9e1ebbfb98fee7babac387e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b308e040f95e8160ee1f1485ea075a781ca67d2a619be1d4604ed135e220843
MD5 1b9e5c1caf6f365ae855da547c50750c
BLAKE2b-256 7a477704145cfea501a11265df60fdba92895877690f55062d2829df43f48d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30fdbee51e257449736f91ae994bb4b8d16be1045279663c05c3aa51c77af031
MD5 ed61df5a81ffacebc7128ff06d778649
BLAKE2b-256 29c5f86a6cd1b62698254d645fd98421e83575378e79e5117956f4696b4b930d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c7b3edd9aa26fa5789762f176eeb4e867fa9e73457b0442ab9a267fd19378330
MD5 e94f64ab38184445f4fced42ec3bc374
BLAKE2b-256 a646bd4de8d4b0be60ce10c4799fa29b564199850c8fc46544475503e7102d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp38-cp38-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3aad893716d70bfd7c0e8a02842076676f46dc4a120d25f3ebf995ff15dbd5cc
MD5 55ea008b7dbbff0686c61dc9d9f98c4b
BLAKE2b-256 8582887134b66c665d124b8e8d2ae2ba4bdb630ec7a5755bb372dbe8eb4a7385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 68879ffcbd82e64c9fd817389636b74813e5c63f468bd445cd3dd8a89f96e584
MD5 60de1503ad990d3e240bbd347e942cc2
BLAKE2b-256 bd605381f1e6a4a045de2f033e7b9b68276358a0de1d50af883b588b1d470f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad2c547e4d6859ee20a786c360e94445fc705746a2736f425cdc42bf62569ce9
MD5 b6633bbc05b62375f3e75b1bfbbb18dc
BLAKE2b-256 a8e330b917157840202f909d2d9f803f041872de76a76c2aca6a38bffa328d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd06634e4a2adf5294826f4d28fbe28b807e4170a441d880ba95bd7abb571a31
MD5 e08b83b40e0d38a27b5ad6ec35518f8c
BLAKE2b-256 90c8be25afee7f6e5470cf580cac44fc24a55e37b927a083afcbb756f4c53cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 32ea536ed26c2fbae0fad777fb453ef5a6df17792cf23176c629cc238c86303b
MD5 b1e0052f23bc1dd1bf1c39dd34be9dd3
BLAKE2b-256 f8c35128ed9806ee1328df025d303149bde5cc379caa8796b3c70309b290f7de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 48e7143c6b0b2abafb778969eacc5098654a6d6c2892af38744a17d073e2e814
MD5 7612389836b078da42855263b6767efe
BLAKE2b-256 75fd6ba6ef1feb3e800d8c7c789f9217af21a09d64caa0d319d5161193e7d45e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42e1bc09bdeea885648aa7bacd6b20b9251378f19480d01db6d3df545fb41dce
MD5 eca61da257b139df010bcdb8d7779f99
BLAKE2b-256 33425891edbebe008807dd027d5a5d594aa90e095fe203852245f5baf54cb03c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 561c45c2173ae0b7c01343740f70d9c706505805268f312e724539240a10455f
MD5 3ebaa87dd9b2e9293754171cf5151ade
BLAKE2b-256 0c43387363687986a62e71dd52a48e61e87446962e4f2ea3ce10c47805ef0920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.2-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0fa91af258d6ea8d5c3b7024d35fbc7c7ddbeac7ec78872ae62b6e9cb2ad20bd
MD5 8f49fc07b08c6543b2ef5efef2123c5d
BLAKE2b-256 e683a1d96e405d2d89fc09d53463e758b197d65f2c05752dcda362e3df1453b9

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