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.3-pp39-pypy39_pp73-win_amd64.whl (3.1 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.13+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.13+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

pedalboard-0.8.3-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.3-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.3-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.3-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4c59190e0340966aa27a8389c839df173299292fc40b4dcd961b9553e807f704
MD5 dbcc1e481cf45f6ef923e02198468977
BLAKE2b-256 26b5d8f4d6cc68c5c136d31303292dcc72150b50418334ad77bc3ccf5c56608b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc0bae55fd0ca7715ab54fdbf2d639bba817eec94799d44ef7ca0d59bd92bee0
MD5 0454715cd308395cbfdcf137d53cb8bf
BLAKE2b-256 981fd410b453369bedece5f88cc426722915abfbfdc33324ada343ea4bc69ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8592d9e126151c1e4ebdccb4b78c8106a0978503faca445d1082eed071c96b8e
MD5 937f0918688cc91c0d3d9b1b00d56b22
BLAKE2b-256 5a6284c77e23eeb1155d71b3269d566f26164d917e0b06379b57aaa5e6520b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp39-pypy39_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7641a8991069abf455c13c959841762e94cdbd513462e3d227f3a324ebea4905
MD5 fd3150730be301ba1fe3cb029d749b80
BLAKE2b-256 e7363cc39e81d3ef04956dd0eb72001c08fd89422e297374b78c00f05c2999cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f8f0a2d85d5f5af08ce0ce72235b688a4772fd26c445753b6404278da27b4f68
MD5 e5656c8f7dbe7ff0a2caf6e32d3ee903
BLAKE2b-256 bda851e347925f36356927b1437437afe7cad2db91b002e58fe146ef410ee1de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14d9183d4a8ab8f778f9bb00cc0b34d408c64ea14785062cfe7b40946b461a6b
MD5 ff772b4f2ac34555fdd13ee4e6c65da8
BLAKE2b-256 0cbf3def0cb271682ef42100d6b5e1d29f23ebe3927d23a75d47c5ec5dd6c94f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43a7d1033d1f2892d49a70eea113d05d139b3b6f862d23623df534350e65333c
MD5 22d8fa86b081149c5423b01c0e192887
BLAKE2b-256 4f1725f2ded602194d899970f34f58f8eadcdc88d953ad86598b3c438ad62d7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp38-pypy38_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f848be0db2691927f69dca5f3bf1bd216377fc8673437d224d70d184ff2e40b5
MD5 26a0872b2571556757c561d40732a092
BLAKE2b-256 4994f0fba76b9c390060a0c448d8794637636914fdd500c5baf9e4cd2afc0715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d19ebda38f2f8ab54db8fc0e61a1d0ceaab53f55f8888242578aec6b7048b234
MD5 548981318e93b2a7123f5afe3cce2545
BLAKE2b-256 60d96d99ecd4984f3e29ffbb31ee7c360fb51090b9672748d8d74edf306fb98d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7d0aef54d4078cb03a8f8df9c5b8730f10db52499523358a19cfe2fc7b74351
MD5 abccdd1629be92bc77772006170aa981
BLAKE2b-256 6bf89c98a2b79496fcc8f74beb24e33aa8041e9062e632eae4dded7a46a91782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8931fc5b62da9b52c16b4a76dfa91345fec4da3a280538d6e6c849868b73a6af
MD5 abeba750525fd827f7191b69203ff077
BLAKE2b-256 41b759d4a5e546cb9a63d0fac9580a14190f5ded737aec7bc4d67d0247c1712c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-pp37-pypy37_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 694b9836498aa3a573d813feb23367ff2d135f7517b051760b906b66fb4c0c22
MD5 5259ca532400ffb5cefe0b8e77afc571
BLAKE2b-256 2035bfb5019c3f17a2ec793249ee66b3627a48900bc96831b13863de764a86d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a53a721ca66d3f785abb963b609545667378bab6da36f9f571fddae9afd47546
MD5 f75b84e094a945eaac928ffc0f7ff4b1
BLAKE2b-256 54c05a57e612ad4bd20e50838fff98939a86081419057c0543213218538df303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd3f9de1cd4ec50643acb89f9db63ee569fee859e2975c335ae68b3e07b3e162
MD5 c2a27c2aa21d8d2cb07514eb4640bebd
BLAKE2b-256 9e987ac1228168507ccfb1d45bcd844b5cd0efe72a35fb19ccc5a4ec49b27d12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 40060e639aec947c117f55b95a028d8c5347bf285a473cb3a79de886033f3beb
MD5 492aec24cdb55d1da5b138ba65f4f0bd
BLAKE2b-256 cd5602b77c91476d2376dd090af5a77cc38259384c7f55a7fc5dc237aeaeb881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5c67e3704e0b7956e3db0f9085a407b888a6c0aa31c5c09d8cf52a0c858821e
MD5 f12e0855b9f6d0c91dbcae0647af607b
BLAKE2b-256 21eab60f6f758c3a4adc627f2a724a3c6b2725fdf4171239d39abf4ae614a838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c8d6d8d8aac4f3dc86228d6508aefd5f64d34661fedee43ded332c31801d04a
MD5 5c91178c6b86a954e52790c94e0c2785
BLAKE2b-256 8c1c9512fe43d1a6ad2add47e8073ad7381047cfc298a7e0716eeaf7195781f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86df057b47662a81c13281709d5dcd70fdd9f7cf7f9f9382d832ec2db537219a
MD5 f9777615a20cbac05ca4b8a91a0d509b
BLAKE2b-256 17f54927a7a23d8b1649f0472ea234f491831b7c90e3c3e997d85bdbec49e4ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a28f81f06375fce6db2bd7a3aabf759141b2e1ba78ebc1edc936cd0471369fea
MD5 0f5860f1235c01841e42516b133f3527
BLAKE2b-256 798d8b19730afd0fac1ba528aa90158155a32808ba2b2bd679028b18d1253352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 13a92fc17d211917e5e9dd7a7e8ed3fa804d99d4786a6871d8c07b2cc6a9dac0
MD5 d135d7da32674a790c8dbf6846980a7f
BLAKE2b-256 e86f10d41a3e6e15957e4b40137d1c407d56e34606f1a44f2889c411abbffdb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0a49e8cc00b8b29dc4dc6e0810a6cf3d385b9243a89bf9c7a7b4385ae8a70b1a
MD5 1b1d806ed0a8e960df518ae1fa1f1f50
BLAKE2b-256 e0d45561ce7450665adf2ba4ac275eb3a9cbabfc0363634dba9dc6d599dfd1fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 068af69efb0128f39a3bac173a370e0ba268004fe73e68b0f4fe08e8ef80a142
MD5 0c31b3ded1a89060188bd7ade6ac7985
BLAKE2b-256 92462e171199f69286b06dba2ecec029c73299811f5b8b1ccb6ba708c0e6c346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8824dcc12cbb3d3ee4d140efff22f172603162927064293869ef97156c067cf7
MD5 dabcc0c71c613fa2d4231517b551a6bf
BLAKE2b-256 f4caaab59d72763fc5df129b1d52286fe899ef522bd79304ed8485f61b84f6e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8584f34b3735adee75b3c1c2dc47486b18f262cf104b15d63e1a8a49436f504
MD5 c475d443e1fbdd5d4b92cc45da561119
BLAKE2b-256 b43d6961afb51daeb91300238562a6555a3d1c061ae6139bf5c9b713997e3bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d5913af790d5fa6c82a2151a4ab715f0b024f1a95eb62a9d3481920b49ad1a3
MD5 d4859ce5f2f26e078b2d5a1936fb726d
BLAKE2b-256 a752746dd77a2c711209abf4047de18035cb9f6b8acdec2eb3b916b9e0620724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2af29dfac931df8e918b893dd25a76c1c2fe0148ce2bd69776a6b8b9851f51f
MD5 9fa7fbd74dc475298b8f49ae30ad422f
BLAKE2b-256 d844272390ffa8c5e46bd8b73ba483551bcd6a378929c71999542e65518ec89c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c8a094ae6298947acb008600f6125bceafb919f8e88ccd291bb48a800193458e
MD5 cba9b2133f267913567e75f254c03a89
BLAKE2b-256 4baed1bfccdebd1db32016577c2914df2d0405056eee1e160e6348979fcec6e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp311-cp311-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 bd257fe602ed771b7c6d7342e715192d5103f11c1118e676badda8f4b1db0e2b
MD5 f05373f042f6eff4e5cc121cd7258f9d
BLAKE2b-256 c5a89c883f6554a9149b1c92bffd47cd2c8c50ee46de085824a332f1262ffbd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7455104fe3b24f769ad96355010747c0536c4d1a8e58a175512b6e3988cb7197
MD5 2e7393259dd40937c65752fd013f9c9b
BLAKE2b-256 4e19a2fc71784d39aa07d2cbb630685fb710f476f083b5f575e0b425b1412b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 457517d1b7b3756fbc07d65010d54ce41153a7ceafa39b58091d7cf9b55c8a4c
MD5 3b4ff61b6ce07bc5789e020b094cd9e9
BLAKE2b-256 f88835fb177c10984833a1568f0a4a5a4163e3429697cb5f20f974d469b47252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9ccb05deba14881477c90e215f261c8c0460a528cd4ad5d8464fdd4688fb8e85
MD5 673ef1cb1aee4389ed93cf31b16615d5
BLAKE2b-256 018201fe26bedd0ceb662c322e5d148c92c4b088aed79cd434cb72714a3beab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4bdbd6476f5be5a0aa7fb06ae37334099430e0eccad762316634f2743e7f03d
MD5 549e206f6bff4290fbf56b5e84ee2d92
BLAKE2b-256 b4e03cf4d360c574173cf2a2a48c8914eb929219e1bb529d4bd9610dae7f78da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb8ce61dd96c98379c2f550e77e736ff5196a278a704e44a717a4b7e0ae39f5b
MD5 52a0cd56df68f9f61972042a74c393e3
BLAKE2b-256 a7e20cbf8bb264ed724409b1033ba4d208b531e48ac3c3f71436a09b8e263b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20a1c66f1c5f3bbfbb19c1a365851a4ac349e63d28e24d516c34f4c2080df12e
MD5 b1546f2035c70acd24678bc9c7a93be4
BLAKE2b-256 69be07d8cd77f2c3df200d30d061e60039b02ba3d6d7c4029eb0b8fb348b6371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 988a91eca3ff85d2f2e09fb79ebfd39a76c1ca0193b7b711da219f0667613346
MD5 41fc257e56098ef70e9796324560c11a
BLAKE2b-256 8a82ec11b6e26b67323154f43b38346ece62900ed518dc04c07219b4a487ffcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp310-cp310-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3aae30436c55e100f1487faaf83b99c0860b00592ca2e7e9311f4778fa8d4f32
MD5 b1676f595c01bc99af79fe0582c116e3
BLAKE2b-256 cda42902ff5835a5bcbe0a4d7bb0d6ed18084224873c81c2d2e585cb8739cb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dc8ae01474977184fffc037837aee34f83423b994802a58786fb62cc34b73db3
MD5 5481648eff8fafd76a49f6a9394e30d9
BLAKE2b-256 74f644ad2dfa47f3d037364ab50d93a88a8b32cd71ebfb577a4bac08c6a765cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dd0616bffd9a5d0ff89c843dcc5182b0ef957c4c3b177890f1004229174c16c
MD5 b27b5ae367a507b0ffc5c47852699820
BLAKE2b-256 8c5f4eeb81208082b2a5d17bd51d016fca8f0df9303ce81d9ffc0039fbc92bce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eefb9a865289da5f3e8bbb2fd457de20e038c058a85bd99c2bb0c9949faac7ec
MD5 a4887b56f0e08adfe488971667172547
BLAKE2b-256 6b4ff34633aba942612810578403487585fe040a78748efae88a6a32701b9f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63381808a8b775211b447599ca7871f5a2dc986ad4b2eb725db6bd2b1d0518ff
MD5 8d82fe7fc682d8adda37bce2ffaa1ea1
BLAKE2b-256 6c8c10b08ba89f4f305449763c82f30e818eb703abcd0be1d45819f123f8da95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7e75380fc91efe6940d0cb28d8ce07f2c9661ad8bea1664128cf18ff1036d4c8
MD5 c2be6c6986e8e1eef83ffb9df148526f
BLAKE2b-256 dd90db0f7a663f2053396ffe82dd67b13f9fa4414f06b2d6019ed9baf47d267c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp39-cp39-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 23e0c0516d8fd7103895d81c64943d5a0bd64652a86ee0716517b620eebd766a
MD5 c3c067f4e9ce5e0b73a864c484401ca8
BLAKE2b-256 e90527ba6ec858f6c4e844b46bb3848d6aa4a54708750be7552f699c9086499a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0065bba007aaf31980614a7f0b9951959822c25b0f98aae52882d225e019e375
MD5 edec6683e572834264d704a019cbaeb4
BLAKE2b-256 c5ba6d2903f88e98fef19973356b5561646f93d8de1ca87a0e49df0256e1aa43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97d179f819c0fc02b016918d958090dd515d00149183e4501ca13c680c7b8054
MD5 813787b37bdd642123f7afdc0db05d13
BLAKE2b-256 ce2f3fc019ef4d7ae6a72da747da4dc87bea465b6ee819c52d23224b79e15f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d1303e258a893e66fcf0af0efe30a72402d2164405bb25c1ef52135581566db
MD5 70aa8b8c686eb19f3f454884690e2cb3
BLAKE2b-256 6ce89c10dd5a5d18ebcf6cce7e7b7b1b5741e9a32cc691cb369f71990bf523b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f3bcc724f45b034d6af98b87af2fdc545a0de78471af88fbccf09d24b803e27
MD5 db559ca9a5c21c95876231eeb5ff926e
BLAKE2b-256 69e9f7e0bf0b6651744171b72a66a1c7b26f7b1a860893f16bed376f63f5c3ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e02d123cbcdf31a61b63adb7e8e94cf2bfb5b6704413d6795afe25b653acca0e
MD5 795b888417a3ab4d903d4a165adfec96
BLAKE2b-256 b4c1d998bd37dc981b3bda529d3bad8fd1fb36268f58ad9c541703783586f552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp38-cp38-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 43e0f04fd3ca2888134255b58dfefe11597dd376a2e70f4206afc916a58182e2
MD5 fa08c0fd9a6adc9b765eb48cb5183fc4
BLAKE2b-256 482b479f1064ae6e5b57327f2fa62e53c8d5b1455417df3a0e9a6c08d4b07e7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8f45accc179b70d39a43c58b5d29b8fc51e18050a20f3ce0ae3b8d820ed575e0
MD5 60ba2dbf8ce3aec4067f6daee342de9d
BLAKE2b-256 9d18b05f7d7925a8639f07783b02ada05ca24566372f7545965ff020bcbed163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1fe73b85f45c63c96d3f638def928a9354a33ce725efd205112efd1158bbe87
MD5 9b1f173d2b1add0b3bc0ad5c793fd01f
BLAKE2b-256 2756dfd90b477f41b8f60ddd5b32fce74705489dc137247a6a3c061f526427ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f302182ac91c8008467f4823bc5f45fb469b9e7796fbf03c6e2c7b1f826b407
MD5 55abd168461ebb5962c37d4581a0ff8b
BLAKE2b-256 defde297cdc459ef53048e23b6c137d3e13fa1ca113663b51800c77d76369d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 80bbb68218746fd373787135cc256f8b9b7272b20e1f8d111538923756e01d7e
MD5 90181876adedbc58f0f16d3d6faa9d13
BLAKE2b-256 bc17b37caec7f955433b2721ad4eb3ef49526fd71b47653f0bae8b0b53fd1199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 890c52166abaf160cefb486366488ed46cdeb3921c4aef42e8c5719c4d3d2cc3
MD5 80286e3c8ba24c213f13bf0395bf5e4b
BLAKE2b-256 ef9c313f956fc2b1fc890b0c3245e9da088d688f8ec9f4a1f161911775832664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b5104c5c93d4932b78e8bb5f7c3b5f857411a2e918b64bd5a3d4c706bd59c38
MD5 62bc2031ed0e64915ba8d3918f71e10e
BLAKE2b-256 a940f459b3a4c157240c2f353920e52c11aeecbb0323c5309a80274f71971bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c3bcf34555a8b71ff2e0cb08df047bfeae8e2b846c4a1307a4ff6a108e76b8f
MD5 433468459ff26d29d2fcf876f0f8af8a
BLAKE2b-256 e30b754d98cec61de1c8927feaf9a1b16d370cf95fc8fd939247701e4051fa00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.3-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 17f4622dd151b78de6ba4b4517a2b8372ce32ca3a66f807230a6336bef056420
MD5 8204e8cf6c5cffe0553652e028612b71
BLAKE2b-256 a28c40660e4c5ab2ce8201fae4dfd6b432b4c2969361a489288cd6e3fe77aeaf

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