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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.13+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.13+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.6m Windows x86-64

pedalboard-0.8.5-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.5-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.5-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.5-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cc0049863fcdda19df972b15198b221075c6def87d6e6c73b480dabad1ec751c
MD5 313b207ad6c9beba00032b5e623ed18c
BLAKE2b-256 db51c74624c53292cf5a56b992aef119ab43db1eb4cc58e68c3f9000a58e36e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 247a1a2738414478ec43ff32bb696c53559d159e54ccc80a60ecf0442f975101
MD5 a294052e1233a470a67994cbb1cae3ea
BLAKE2b-256 79a9075bcf01aa627e7e4e8ccdac8f7ac75225433c1a2498e9d7e3c2ffcac31c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1c9965de519bd5c50472984e020911b484a3967cb047282b0bfa2f35e2c8942
MD5 07efb84eb072dacf3d90016880562304
BLAKE2b-256 a7be53acb8eb30c82487877542a85674867e9272046d40d6bb0b3ea0a6835497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp39-pypy39_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9490520323809fedff976ce176e74870eccc5e4efcbd4ae20dd6c4b98ad5cfca
MD5 8331cd452d0580c0ef28875babfb0ab9
BLAKE2b-256 d4f3767819a2dd6197523dc038245258de8b1d456f03a8caac980deca9a520ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f12a99ce8dc2d735037adcf551a74f675620e5ff5f5212e4acba931d369977b3
MD5 2083b2367af7ec826d5e70a0b35566aa
BLAKE2b-256 0be843a959f66daca87880609ee2ee0144fb1e9535a2cc57aace4fa61a46d31c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d4561ab6eb335152e948283f537c06480f92fb85bc1088fb6998116d4e6abf0
MD5 45573dec5dc184bec7251c3267639784
BLAKE2b-256 95781de725c4907f9a505cb71c2afca48a69f5332c4a4031f507a2b3897a9354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b4e5158cb77a1dcd83b405833923feb2bdacd88e0999797ad290dfeec742759
MD5 c9adda0939f6bdb6a5cb9f6254aac2b7
BLAKE2b-256 dbe13e1fb413b3ab908c9679c6f0e63a8b8fcb342d01a9c43acbf33a5587fdfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp38-pypy38_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c09e34b4b30b7d0bc77a0d02e55d662859e50b74fe6fc2298ea2e77f151c122d
MD5 7c32854884df2b85f5740db1ef032286
BLAKE2b-256 ccab58ee98954d16b5a3ec79e36e582be7a8f9d2ce5d64a49754810783dae423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c96770fd0fcd2976255a599be82fd082daa2ca015d56baf1c0e80c9710a413fb
MD5 c550fa041109d38b44dbffca192696e4
BLAKE2b-256 c28627928b4daac303babef341d5e466a0805478f3d7590b1e6d0a342eed5654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0231cc4a89c94b09ee9958ad74af81e69d74ceeeb6efcc35c3857138bd801f81
MD5 ac9e46b86ee624283ed8bf2f6b9b7fdf
BLAKE2b-256 f021f7eb2e00e19a3ff040a5c1e3d645f73bafd28993bd24b87a234f4d06fdec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aec3342087de75f36a468e2ac01d00e01f1c266c9234c8ba98088e4bf006168d
MD5 e6b75db71c0b4d6f35e8ea0dd62824af
BLAKE2b-256 d9b79a7a9ba82f83e7e7ecfc924b31adc19f2eb16f320bcfd9c308d858b717db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-pp37-pypy37_pp73-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0ea8b8af9b386ff37f67db66aa0fe3bcf7442863f1e0d51dd8c3a808f4101712
MD5 360e2880778826153ab89621e93dbcfd
BLAKE2b-256 672577ac63c09241b261a02ec745294bf3da9e0bb082df70bd9525f58988dd98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ece775eab8d31472679c42ddfd8f354440068c8868013e43ccaa63c291061b87
MD5 d55e31e86db851c0b0c959e70f25727a
BLAKE2b-256 de03d1f07a208fc1dea743eb8dace24b7bc2759fea056f5a70eb0e410d05bcff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f7091a8c93e45704b3368cb476cbf61fb0d66b94f31358347237d9907e702b2
MD5 19d6518a9a61da5d333f1c460874b9ed
BLAKE2b-256 56614f63d56805b2b248e310cf1fd5523b814fe5e2d7e73190270e71822360db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3d388bed229c9d739d263c5d1774179da9d4c7ea95d2db7c8280f9abd851e723
MD5 1af28eff65d5afdb1f22462e37508a3c
BLAKE2b-256 bbdb5e7579fb36448bfda9a1a51c51f7831ad5477689e9b7fd29a93808e34900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36ef7089bcfb84aa3f5d3c8e023e4b22a481266c57272f50f454e86e9461894b
MD5 eaee1c3f675f38d2eae49d9400ab2d5a
BLAKE2b-256 6b59efe614a6513d6d422d58e44ca0bf515f7473751ab6437bab98ee295902b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 106e115b58b85f78f9b04df5afe69274e9d26290572586d35dd62cdb33c13298
MD5 947d3da18ea419de97489a648f68b1a5
BLAKE2b-256 30751703de48f3a31a43c3741ebac650740c8279496066701648a7faeb038e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 551e4cfb0e44a1d0c4da849d04c01ed17cc0de9934b371812f7d44a944301e07
MD5 3b2758e5f165a5e526c76303e0518fda
BLAKE2b-256 8830d127585dca3274a5cdf4641e797daa677bb6e0ac5f73ffabc94c24491001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 431db6892f1dec235020b0570a626acb63fd151d6392fc92706d3897472cf9d0
MD5 8cd04953b382008a7a743e4b9b2a7c31
BLAKE2b-256 69de19f51394e708c5af5e121042e958dc0f7b078d864d944e249ff2727100d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8799bea27d54a40c030246c960e06d5313c2f2364c8303ebd1a1ada4670303ca
MD5 bcd640ce07422f43d30237878dba01d7
BLAKE2b-256 8c9d41f1efd57ae152ecdd66e6264c713c02abfc32bd3f4f0f9900185f4d755b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8cf972dedf1ec912b0099994baef3fdb3fb3d82f540c951cca38208e04fcc630
MD5 4c27c3dea40223092c14bd538f12703f
BLAKE2b-256 746e8154ab869d4f64d16e51d33f8088820faafd4ebe851a45eec4b7b71b9c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b814f0679e207e81a748c8ab6cf0a54fa7276f8929ab522ce5b5205074b96432
MD5 760adc72446f0dc43b67ccac7deccba1
BLAKE2b-256 c106b1dff40b2cc251dd8ed60aa380f38cab69ac4b591c30166372237a4d74ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 86272d6e37c6c732976bac9dd1ff2fba32461ab7417f3b6fa9987bfe268ee14f
MD5 b1a6e35a224c023172534a66a9d5ee89
BLAKE2b-256 35c0de0d22d7fb4e105cd4dd3f452b1d2bcb04281e691bd9fa00234c239de857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76bd8777acfc573cae98e48ba45fc41a7b208f4275754601a4c7c9ab0145c845
MD5 dd96b9d3ef4bc4f1b37a8d98e8f30b8a
BLAKE2b-256 891b3134b50a65103b1721dcd463f30c2c35653b17ad03a4f53561e6d00e814c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d628b0cdd18559ea8365909fb0823950ed68539c9d10d4cc8c4d40688cc07efa
MD5 c17a787ed337201760a56201831635d8
BLAKE2b-256 92af38eb4364f112b5d53a43c63311428588a6bc657fc44a872643123b55ec3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8837c786010c255dd1451ebc2829cff38958fec811837b0db4c275ed67fb8963
MD5 eb999de91c891f50663a4659d245a65c
BLAKE2b-256 799a9e1fc13ebe410550fa1ebe2ce597ebbf166df047e0d7943fa531c733d3cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cbff7d3efe1edc5bdba521bc54c4dbe94630797504f082edfd16bfe50743bb62
MD5 9c718ebc750dc465b9907c11900b73ba
BLAKE2b-256 a5fe9fc480d4794acfba8f04367a8bb55580a647b793d9ec6e5224c32cdd0b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp311-cp311-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 eb6bdeda5fc9b80db0b8c20dea9a9e36945ea32c5909139afe49b9cb60d746c7
MD5 9257c1a03e4424f162717cd43de4b55e
BLAKE2b-256 96fb09dccc60935ea9492df52cf5859fba79fdb7f9669d00477d7317c337a974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d8374b022f300467451dbbacba08a32396f5dc3b016814d3da982c26d84a9f65
MD5 30b69091762ad601c4ad92ceeb125000
BLAKE2b-256 76f98f9d5da79ece0e77259c81bfc0ce3fdabc43aeb6ea50d55f293782dc7d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 31468dbca29bd02c8d1aed4828a3552a1a41362b266dbc026ed103c09a6ae72f
MD5 c0b8f0a3274697930e8dbedcd02ac4ea
BLAKE2b-256 b852618e5f62776395a369a6dd3be1a8fed02ebea9f9ae77e42456c6bd7378a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ac3744f38cb4c889e7895c890317e26da779c1a638cf8cdade3869dcb145bf0d
MD5 e3ab6e996111ed1ac0cd8b0b94d91892
BLAKE2b-256 c1d7fced3e47811a0ae7ff17926db2de71f33a8441d32d993886b497b8b8d70f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee91494721465a58ec9115c28df1e886d919d3286ef7741165e1e108e2d2d5ca
MD5 9d889d7299b9cbe071faaf971099433a
BLAKE2b-256 307654e6ee7a555331163dfffea526b0b37299e9eb2ec151d27741fe6d434a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62e2074b3ae7434eb35e921ce6b43e6cd8f66627bf82cb72a4534da9f166d993
MD5 cfeaeeb89c97b19417e43db84b58a21f
BLAKE2b-256 f3cec8a226de07aafbdb3208630503657ce36a5f916d80d5493fbdf29e08c828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2714e1f9c3475359d7a6d53d116180099b0d3cb275e5088757d8f09c2eef392d
MD5 475a348fdc4bb7631c65bf4aec25ed91
BLAKE2b-256 c4a78a091fdbb4e132504d079820537e2dc9754b2d3dce519c5c8c8ed5c6a8aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b6ca9c0450875c83a7c56b70b28d14ef95daf6c61f5b67a8f4827ac73e8a0dbe
MD5 6f0a885908c37a672db58dfa6a7435b2
BLAKE2b-256 bdfcf90de10bd3489881b68510d4f9bc556e79f01d9a96c46e2edcfbc2e413ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp310-cp310-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e13f354e980bb592f7b6a10824f537d957cc420c663b6d2ce222cdec6bb478ef
MD5 b1b7fe3df54f71b27a18f53cd561a27d
BLAKE2b-256 480a63c495c12d8d3d175850f669c2f953f7c0cd2e61fd765f55f803f1b5fd3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9c21d40ccc7c00db295a5bdedbb58d782ac254dbd4b8e8cfe771e5b2b7c51987
MD5 696d14629e41a51146ceca54d74cd33d
BLAKE2b-256 27a44b3b843b2fbdc07aa4ae21c3a70260f7b0e842b14eeb2602897e0346898c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03752d87113f1eb85e994eb727f9255899b8dbfc52b6c237d99811bed19117de
MD5 fa63862feb87c10905595a01c1dca7d1
BLAKE2b-256 babdb3684e1ffc3b6fc4424a993a6577dccc953102c040ba3c9ec966b0b2cfc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3aebddf97f1cb51186bf663690f8b95aacf68ea7900a326dc9c7f393a36a210
MD5 b23082caae5ee3521dc1604cff3e1889
BLAKE2b-256 166e0bf1deb48344a019862e2aa61737dc8540c3298df0d31d00c9b4d78e2ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e3efdb37472077b32901b2006a2cd26462158793a9ec129a4dd23d622f1cc39
MD5 da7ec019c2c91096a6be89e6b7ecf983
BLAKE2b-256 2d2f0de18603f0c59fc8842f63637e2e338ec1e7b9eb1a0e58ddcd245d2b7e26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c7d159f435830e26b55480ebb51be6e85d8fb9fd4a96b77cba2c7c51249213a2
MD5 e7d8ecb93409fd6c2fd9dd8eab9bfadc
BLAKE2b-256 983f8bc9c3c58b387c9867b2eb67dccb27392935c97044511470258ba6e718f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp39-cp39-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7a40789718f41f9e748605744980d9623cbe232868cf5b4776eb03af9a5aabcf
MD5 25ffd9b73dbc7962c37ea22932179752
BLAKE2b-256 47071188c169973f2006c698adcfbfa175764d7bc779a2a8bbf51716280136a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e899bb7925454b3e4053826b828435bd198660ff543d4a52aba899180a48ffb1
MD5 32097a1de5f05ae23cffafb5aa1c1e2a
BLAKE2b-256 8a9d1c995e552ff1595d2800fa15db4f50cbbb629de55c40203bc3d073f54b8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 823bc388724a6a619c7d060c3f78f30681d82fd4f26eb29ca9603ab7d4174d75
MD5 a84510f00318a6756bf78541c01043b5
BLAKE2b-256 f3bdc4ca1f43ac19ba16034b3cf1d9865387c1bebb2eabe28ebc81a2b39e1573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6b889501a10488a9712a6bfd04d53dd29a44e170c44f4e2dc80ec9e7d06f3c2
MD5 000c70f22ce2707d47620243c4cef7e8
BLAKE2b-256 94326a02b09b8c90a3109c0854f13e82b8f79d38ef16dac80cce4e2d23855064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34b39426fd9ae48440b2a5df2edf82f7021ef02da460fc375654485e07183a79
MD5 7e91418b7beaf65ef2407dee5e3014fd
BLAKE2b-256 996fa29149df394365132b6eb52cba7cd24bf07a11939732fb6446d81d5add51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 02c189dc735ae4df8b89d9bd8ea77f9751d651179746b89cd57c70d5a90ff2bd
MD5 e6ac201b03cee97b8895f8947854c2ea
BLAKE2b-256 f596f63a05a27f863fbcbb4bfe4f0c45e21a4b171a25251baa25fe2eac5d28ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp38-cp38-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ad07981592b4b8248b3e2367f29614434d9b039559e62e079c53b2e492073835
MD5 780fcb9651e9812543fd3121f11a03c7
BLAKE2b-256 6b1536cac13accbf2a029fdc8d0f93b27b507ec37926244526ca97060eae38a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c2e3d3d0c4c4b8b39aca7f8c4a72863c3d50727c164e706ef912fa09fc02ebbb
MD5 1481035322058be778f7f8631cc24b95
BLAKE2b-256 1449ab000c39ddc7143e73bdb35a25e5a82ae98e887d0f448d33cc715219ee87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09f68d6b5feaeddd84fb1e8a9e35de22842e1a1c38a54e6937b469c3b4fd17c2
MD5 c5eb7287b0f00eed43cf7f7ba24c290b
BLAKE2b-256 e6228e4a8f40086f78e91dc665e2384892f70c99909bdc4e5441ef1c1be0d066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27592cca2d10ee210b4fa5d29020b7a85be9af21e00b5551ee5e1d21b45bff8d
MD5 9a06abf6d4070d2d8b63ade7b2171823
BLAKE2b-256 0f6a6f497b4df1c7bcf848d3578f24d4679b0922d2ec824c0d37385e251da838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3de05da1f9b244be40dec58f7108c876ddf60454e22f063d57507cf8bb1e089f
MD5 e95e5422a5b57464ce35961f27096d48
BLAKE2b-256 c5172dbe7dc2fafd2f05465d9672434f8304029e6193c6c1c0b67f0d14b6cc2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 19de0e1dff6e1ca333226702807c255d241ed1e704750e85e07b31ea1c7704c4
MD5 d2a501e77b855b6446632a8ef6030e75
BLAKE2b-256 4dec22e0b1a27cd23f3edcf887807fa50f5e017edb08a85c24da8852a57eaca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1efa026193737d4588a1b3e100faf82fd19662920ab507bb0c6fd6cf0ea16f6
MD5 94da83b480ab3af4ea1a167b174e0f8a
BLAKE2b-256 298b1adf5562cfe2798169be9a62294ab4fcc8a0a1bb37908b1f3821b192a0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f579eee047baab559966d32b60f528017f41f7dbb4cfe1d97734b2098b1accf1
MD5 7db2ebac6c1e06be10eac8c96979bbf2
BLAKE2b-256 b812f8d81930fa80f131a31add7108e3146dd0f1ae928430511fce281f7e13be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.8.5-cp36-cp36m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d9876863da16a71bc7f06d78c574dd998f9fada14f23e34d1fbecb897f2cce35
MD5 8235bcaf946f0ab233f1dd461b09b35e
BLAKE2b-256 44544e07f118f4f74e12b5f28e0de3aa726170df69ea620b783a4b5a508d6c88

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