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.8, 3.9, 3.10, 3.11, 3.12, and 3.13.

  • 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.

Using Pedalboard in tf.data Pipelines

import tensorflow as tf 

sr = 48000 

# Put whatever plugins you like in here:
plugins = pedalboard.Pedalboard([pedalboard.Gain(), pedalboard.Reverb()]) 

# Make a dataset containing random noise:
# NOTE: for real training, here's where you'd want to load your audio somehow:
ds = tf.data.Dataset.from_tensor_slices([np.random.rand(sr)])

# Apply our Pedalboard instance to the tf.data Pipeline:
ds = ds.map(lambda audio: tf.numpy_function(plugins.process, [audio, sr], tf.float32)) 

# Create and train a (dummy) ML model on this audio:
model = tf.keras.models.Sequential([tf.keras.layers.InputLayer(input_shape=(sr,)), tf.keras.layers.Dense(1)])
model.compile(loss="mse") 
model.fit(ds.map(lambda effected: (effected, 1)).batch(1), epochs=10)

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-2024 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.9.13-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ x86-64

pedalboard-0.9.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.13t manylinux: glibc 2.17+ ARM64

pedalboard-0.9.13-cp313-cp313t-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.13t macOS 11.0+ ARM64

pedalboard-0.9.13-cp313-cp313t-macosx_10_14_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13t macOS 10.14+ x86-64

pedalboard-0.9.13-cp313-cp313t-macosx_10_14_universal2.whl (5.4 MB view details)

Uploaded CPython 3.13t macOS 10.14+ universal2 (ARM64, x86-64)

pedalboard-0.9.13-cp313-cp313-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.13 Windows x86-64

pedalboard-0.9.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pedalboard-0.9.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pedalboard-0.9.13-cp313-cp313-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pedalboard-0.9.13-cp313-cp313-macosx_10_14_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13 macOS 10.14+ x86-64

pedalboard-0.9.13-cp313-cp313-macosx_10_14_universal2.whl (5.4 MB view details)

Uploaded CPython 3.13 macOS 10.14+ universal2 (ARM64, x86-64)

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

Uploaded CPython 3.12 Windows x86-64

pedalboard-0.9.13-cp312-cp312-win32.whl (2.6 MB view details)

Uploaded CPython 3.12 Windows x86

pedalboard-0.9.13-cp312-cp312-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pedalboard-0.9.13-cp312-cp312-musllinux_1_1_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pedalboard-0.9.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pedalboard-0.9.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

pedalboard-0.9.13-cp312-cp312-macosx_10_14_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12 macOS 10.14+ x86-64

pedalboard-0.9.13-cp312-cp312-macosx_10_14_universal2.whl (5.4 MB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

pedalboard-0.9.13-cp311-cp311-win32.whl (2.6 MB view details)

Uploaded CPython 3.11 Windows x86

pedalboard-0.9.13-cp311-cp311-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pedalboard-0.9.13-cp311-cp311-musllinux_1_1_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pedalboard-0.9.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pedalboard-0.9.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

pedalboard-0.9.13-cp311-cp311-macosx_10_14_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11 macOS 10.14+ x86-64

pedalboard-0.9.13-cp311-cp311-macosx_10_14_universal2.whl (5.3 MB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

pedalboard-0.9.13-cp310-cp310-win32.whl (2.6 MB view details)

Uploaded CPython 3.10 Windows x86

pedalboard-0.9.13-cp310-cp310-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pedalboard-0.9.13-cp310-cp310-musllinux_1_1_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pedalboard-0.9.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pedalboard-0.9.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

pedalboard-0.9.13-cp310-cp310-macosx_10_14_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 macOS 10.14+ x86-64

pedalboard-0.9.13-cp310-cp310-macosx_10_14_universal2.whl (5.3 MB view details)

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

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

Uploaded CPython 3.9 Windows x86-64

pedalboard-0.9.13-cp39-cp39-win32.whl (2.6 MB view details)

Uploaded CPython 3.9 Windows x86

pedalboard-0.9.13-cp39-cp39-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pedalboard-0.9.13-cp39-cp39-musllinux_1_1_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pedalboard-0.9.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pedalboard-0.9.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

pedalboard-0.9.13-cp39-cp39-macosx_10_14_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

pedalboard-0.9.13-cp39-cp39-macosx_10_14_universal2.whl (5.3 MB view details)

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

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

Uploaded CPython 3.8 Windows x86-64

pedalboard-0.9.13-cp38-cp38-win32.whl (2.6 MB view details)

Uploaded CPython 3.8 Windows x86

pedalboard-0.9.13-cp38-cp38-musllinux_1_1_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pedalboard-0.9.13-cp38-cp38-musllinux_1_1_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pedalboard-0.9.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pedalboard-0.9.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

pedalboard-0.9.13-cp38-cp38-macosx_10_14_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

pedalboard-0.9.13-cp38-cp38-macosx_10_14_universal2.whl (5.3 MB view details)

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

File details

Details for the file pedalboard-0.9.13-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97b7260cfeb64486cea00d3573ce6d5ff2dafcb7088244d2f5f10cec61f9f11e
MD5 4604e274709cc8d66dd9a84d781ed789
BLAKE2b-256 fd008087b139fcbd3e2e717e52c54273586cc2c0e8aad2157f01aebd80c1ea83

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff27cb5c985680a49d7cbfbb65502333d69204938c358c2028492fb7c90f5938
MD5 f644d741bdfcfd8330535b543a2f04f8
BLAKE2b-256 1ace1df9ad1921106872a0317e1a27f33c8705ea686c992bda5b0d921ae0f22f

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47da18a4bc57c2f199d2945a6e1b5ccd32afb0616c0e2755231b29619710fcaa
MD5 803ba892880f5c21b7bd243329f3e070
BLAKE2b-256 02fdbbdcf020694fbf20079a4d7e4b04151d3b57f65e0742270bf213ad2a4129

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313t-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313t-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 695a1793bc99f8a31fd0dd3819691cb7b9f10f251c429b553a5b593a8443783a
MD5 37c34142a0f6f3336e23d736c194ad43
BLAKE2b-256 3f9f8dd8fc7ff8f482a2e90f32667ab250ec6f05c8c9042d5ef4935ee7e901cf

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313t-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313t-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 6b84d162ca0ea825e86eb11bfe2a9b16bf15e609d0ce82a3e2c650c42df7b291
MD5 666fa21fc9e2259bdb1579c8f7feb4f5
BLAKE2b-256 014410a0f35d6a5121fa51ea2fb76a084c66e21f5af9d7f6c4e6d2c557c98621

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3ffcc3ba23a778b32f0e33dd1e24ca0f6aefc561e384d76515e2cf2931b55462
MD5 3914a15cb3ebce749609a1c9af33b7f7
BLAKE2b-256 0a1b09d7b61b25071dcab2e12e1e780e786b1d7d520275c48fcc3ea2fc5ec72d

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dd0d7ebfd8bd62abfc0c8169b8701cabff7a4705f9094740fbbf42af69c8ca8
MD5 9b1cd5363770e09b065ffc4843bb7105
BLAKE2b-256 6ac9ac797fd6c8bf356c25c6d11ceade8a3adc2bdfad07bbfa5057dda50f6479

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 128663f5a6da1e54bcc01b8e1845fc181531236a73309a21aa440aa5850763bd
MD5 4aaddd195322844a3fea86cb8452c455
BLAKE2b-256 16f33bbc38f680f3958942c5e93176daede808769a6db5b56c2ba8bebc7e46af

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfd8be23baa1fe27d5137413949bde96fa91d8242d310ceb2d0a782774fcc35c
MD5 11cadd293487774ced22009692fe7f36
BLAKE2b-256 124c059170eb124d154999e28eec224bc906b38162491c08a4b4a9a628860914

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9dec3476943c9ae8e21826c18ca7086f9c322c64a9c5b8bc38259f87f72d7e76
MD5 7e24e73e927a6492133feb1147e5c9f8
BLAKE2b-256 4f68317318a81ef06e07e8a9c364f6a44a873be4f50f36de8f97216b1c562ed7

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp313-cp313-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp313-cp313-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 1a96f034307dd073f7a61d441e76272d4a3c756446ce558ea72022e687d428e4
MD5 19db90c1a76418419e5400a486a51275
BLAKE2b-256 6e11fd99c2c5fe648bf4c5ca5db1b3d50d5118fda881010a7510a2e88a830c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a2927bfbfd3c89a81be59b2080390e9fb4fdd41df1d4d03594c049541c546db0
MD5 b8aba5505221c3f6705877b031322737
BLAKE2b-256 f6fb712fe882295b84543e05621dd61f2ef9d3cfdbdf55ba95ccb9eb4e1bcae0

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp312-cp312-win32.whl.

File metadata

  • Download URL: pedalboard-0.9.13-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for pedalboard-0.9.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 895433f4b443b583b38e0b3dc131ae4725b2bb8616ab78d495d8072d2e3677e7
MD5 6cfcba00a73c86c9db4fdfc01216ba28
BLAKE2b-256 f27fef664d9dce010c0f97ce01ae63f1fd76e8cf8783c6d786ac220a45f58f2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 635af964f08c0bd17b06e0b6fa0029f1920f46cee3dde9bb8c00131195a38765
MD5 19b3d7d193cbe5e80dab1d056c371d33
BLAKE2b-256 784dbdb442985acb41ac02fdab963408c4f4ff05044dcca3e29df976cb6db40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f3e9b168be12052ec42c2cf1b9ae0db3fa882144b97b85d019396df17e396980
MD5 655eabcd345026b69445f24460483555
BLAKE2b-256 9a1977defe3a3c234295cbe83bba86e1e84bdab211e79597b1e8341ab48acc44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce8b48b1939bb52a66568cbaa0c06778da0fcc4e1de8406eca782c2a55eea993
MD5 f3e11ea37b368fbff1da6636817f5793
BLAKE2b-256 56ba56c14b11bd2672a97f9dc431dd5975e46cbb03e1c016773b9a75c11f28fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 866fc31b0159f7c3f41d36bc56b22f06dffa333ddd1f1471f9fad734f04d2fca
MD5 98924a5b1ddc2c1afb39663f54b461af
BLAKE2b-256 8a07af61302d76da03353dd903800bdeca2583357c97a80a97553c2e64c18a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 408ef192e36541e7c987fe6fad147a6eb9db80b370ffb3e1b50758ebe262ae14
MD5 0aaa955ec945cb9ea039874a4d42e322
BLAKE2b-256 ce9f6718fd6638674624720acba9fd5114cfe3192cf6223c1011f61dbc38c5c2

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 383997b32b40385d90fff2b73105efb5ab730bf42e6ebaef73d89f993f4b1c08
MD5 7f95debd16eeb57f8ebd73a541149787
BLAKE2b-256 73b00a6d21b8a45f17dcf92926f70037e55129d9428ffd949c40d0a54cde15c1

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp312-cp312-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp312-cp312-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 d03e0022c53c447dfb62533b0d83fd88839b45e409d60cabf6dddaf39055af58
MD5 44322600e0bf99c04356147c18cd93a7
BLAKE2b-256 fe7029cffcf77b9f57b45aa1db3645d1df11eca916270c089254c9f9264c92d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df2b52de34bfabf4ae2efceaf561ea2a39dc363de273db413974a5e5eed6b089
MD5 16b3d74494a7c6bbe368223f9b5ec876
BLAKE2b-256 1b300506c3d811ad3b35b310e153674be07f385cf36940da39f6cade9b45255a

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp311-cp311-win32.whl.

File metadata

  • Download URL: pedalboard-0.9.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for pedalboard-0.9.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 711729bc4a4e28353abed8ea2bdf4ba20a3ce0f78dc2a9cf520ae17de81b4b4f
MD5 f38c559edc50aa0aee15c9c6aa51bc5e
BLAKE2b-256 f164ddcc51c7630d19cbe2bc462dc900bce77fd15d95ef104915d8ed4053b9b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 92925e8bdf9748c65143d0deca42f974eb3d4885827f81dbab1974b198507ef3
MD5 af34c1f0c543c929f902cfd1100bc891
BLAKE2b-256 58a8352632256a3b56bb26a0572a282a64f5db352fc99f3cb9efe88a756e1c95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 57d6d979f762859b2ea24861bb10d3a3c24790b6dbcdcdec9393fd5933298f02
MD5 f3c17888c51db0fd626afc563761408d
BLAKE2b-256 663e009c996656b001308573b541d84becf38a7cff3e2d826bf5d039d48c468a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 661ada0fc344db802318a7087f3fa91b59f7ae2a8490e6224f93ecd0a24f8752
MD5 2fecda23f987ef7e5b8ab459187e65e1
BLAKE2b-256 9de2645d53bb0305af2b5d2a01a20261a5264e3e1f01fda72e10c109ed27fbe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 863d45bc4d26cd3cf196a4213c423f7d1c18180527563445c4e6291674e2c531
MD5 be48cc1ae8b3bbd92a9b19b3ed2105dd
BLAKE2b-256 bcebce8d0ddeefd4bd1d1fe119c69f814d0038a524b8426349d57d0a5d802728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e69b050722df94e32dbf4b46d62b84d4a0d48ee3c125da9435b945e1c0d340a0
MD5 c71c8fd07f1508fd50da549bc53fe25c
BLAKE2b-256 8bfcb83025198b034b33cc0a0fb4d3ee116a83acb9aa8503b9af03ba1bfc4f7c

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bd6cfb1aa8088b8d21e1cd85c6c148d1e93a1da864b8b8e13539a089988a2520
MD5 937521a2f7d4e056356a30e5b6b87794
BLAKE2b-256 0232e5a2bf3b47f94067da8e9f89cc6ebc20f9c2f327c366786ede1c77ef1382

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp311-cp311-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp311-cp311-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 79fd1eb36ebab2dac65e77bb1125369d889a624804c19b1ece811f22b962039a
MD5 fac859e83c2df756a89174893ac4a94d
BLAKE2b-256 6912439d93b7f8b8b488833a79dc230740f1fdcc12da228aafa2d73f49fe51d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b9ec47bfe9cfc8a3c6bb9e53b6203d8d26d10f7efc8e57a82d4dc9019b8335e6
MD5 78bb7d1c40b3b2d727b2b77e01a94273
BLAKE2b-256 56fa1d8aef8ff1751adff63838e37c775e87ce9803f45a79961816bf50691e50

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp310-cp310-win32.whl.

File metadata

  • Download URL: pedalboard-0.9.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for pedalboard-0.9.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0a693b5209430f2537ed17dbb7db5e68e14736d415ae4e27bbb9cc486b1975a0
MD5 d339d275b6fe90e358003ebba3888d7b
BLAKE2b-256 0e8c285209cbc466d5e1dc09f10f98b1e5a6c79ce26c78a1394d82162a206a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c690024a7d97e4e24a00932d0e5637ac1d0441c7068d97b0733a0d8eed2f78d7
MD5 90802de9adfa066471a67ce426b5f349
BLAKE2b-256 481c6f1b7b94e8069ff5784930646e3605f4cf0168e221a0b0413fd3564f5ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 548b5cf03bc723659233cb02df0a314e2cc2d2a974d5255215c21c6cfc8f899b
MD5 6de194d9bb7e93ac7d67135c48861c03
BLAKE2b-256 855f064f66cc19b97f0ad8fc34a1478bcb2ee0d070ff9cc52c12ad732bbe0f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4445619c5ca2ec9ea6732f07e48a106ce0607090573a576f2e63c5a442e76ac0
MD5 73d6eeb77af3a289fdec23a200ca467c
BLAKE2b-256 23e5877902a218c67423ea9730216de292afdf58f300709e61e3d2cc5a6cb8da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eee53fc24c69986846a664c95572f2c634ae46e8d1685ed1f09337fe74965b0
MD5 866299c847fe1c1353d8c23d8e958d94
BLAKE2b-256 ae8b3bc85868608c2300baedbcafc92f6b35d9bfbefffe8a248df9f7d4376c3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1647d6fd1570f30e5ec96b33a0f7dcad594b5727ce93f21a14f52da72833d70
MD5 b2a0724bbc807e30898010ff73ba25f2
BLAKE2b-256 c1c8ab6feb4875af8e69fab0493f0100d6d57f2b2842b8429f300132ee33e8a9

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 99542bc6b83161a10de3c91553b8aeb33f093d3b07e20198d0a3e19e88e8a074
MD5 c3e2c68431d99ad2f39e78b37d4c71ff
BLAKE2b-256 a1e2b914c610554fbaa70077d150943643eeb1327c4978810758d6aa5fc5da14

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp310-cp310-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp310-cp310-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 37acc6a3c87be2e071f95d2a56da95c4dde6dad671add01535d48b54dae6ffa1
MD5 9607cfaa60ae440b2c6e3b79e17b09c9
BLAKE2b-256 acd003dbc2674ed03242bfef787677be2779607267e0a625b7058d9f885e8403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1f9c0870be65b71cdf60a09ee07ab88cde573a0adf9cda98d1f510f0a64c6386
MD5 796175eceb6244dbb540768dab012218
BLAKE2b-256 95a181dc63155541b10b13c7b83a548ab34d0b8dd2984cd65e0340eb3542e68e

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp39-cp39-win32.whl.

File metadata

  • Download URL: pedalboard-0.9.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for pedalboard-0.9.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b8e8c82f3b0eb0407fd5c55f3f2ae9ad1802e0baf6fa342b95398c9f2c12f198
MD5 27fbd2863f2585cc203ae46d229457a3
BLAKE2b-256 9d747ead2f2739a1e26107902cec666b234f8fe81c63875aa135f64f66c6ef1c

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 728f6f6f4c0eb6fa590ddb12f06564d3614b03d604b34017ce352631782c63a6
MD5 7563ceff32f43c516d598542117602ec
BLAKE2b-256 e342057a745d691efeea268a56b527c5c525407e8dbc44a500014cfd9fe03224

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ed59a746cd3a87c75fabf7e1110d56bf64c194ce486cf629d052c30a25358022
MD5 42516df1e3c046f2efd6564f6ec84a47
BLAKE2b-256 c7d16374b26f87589d7dde88cebb35ef873149786764634881eb067953b72380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c4d88159dd4a202e663802461ee6c5bf12d288374c4bf1d2c0cdbdb14ba5739
MD5 ecbda19b6372de56f18abe8dd0aeec0f
BLAKE2b-256 432cd376cc0f1d0644ff585508678828472ac89e52a01d6f7692a72ad54ba1f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 654cf7f48b9b83f5d5ed9e6f13256095331beb2abee1baa2e478f5d975474e6d
MD5 da513bdbe661f58339056fb47f6a6ef8
BLAKE2b-256 d5f24bb591f070336bc2ac7e7c2086e8f4cefa2df2c585fbec1451501b904f2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04d1a61e408ce65e67ab97abbf71cfafede110bce2323ec3fcaa57b97d033c7e
MD5 4847d80db8d48b2e87164a57b330891a
BLAKE2b-256 4a225798a754da76a28fef889963dc16915fbd9154c886af9a7a6134ab388203

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ff299b863b28bf378539b78f37a5367364fb8e81e294a641239361b9ffe45cb8
MD5 51f90c28a910fedf980eb051f891e820
BLAKE2b-256 3aafbbf45c23fcfeac83c8d894808a89b5a40c3ef19f4d2db2394ae1833d5611

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp39-cp39-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp39-cp39-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 49d8eae963984bee09e2d8632963faee904c6129ada0d9c9f9d8b52fe9e6d6ae
MD5 a793d26cecd3bcf146789fb4d335a796
BLAKE2b-256 455d72962be3c0258d9641aa1d4e52217cf4e15a27a5dc4f0b0b77eb0a190034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a3787bf75093e00eaa31eea576900aa2afab7cbe757be207b38e0bc047cc7052
MD5 0293a36909c2bddd3988809c36ec5350
BLAKE2b-256 68a2b5ece5ec4830b2d3ca2d3e6a1a6ed2979f0754698358e3e0d775ea047d61

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp38-cp38-win32.whl.

File metadata

  • Download URL: pedalboard-0.9.13-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for pedalboard-0.9.13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9fc27c365b388935fefd681e15422fb7f494e226686480fc0bcba4813ce30cc5
MD5 6b1b700a2c1b06242eadfbca688bc4fe
BLAKE2b-256 19371e2ddc43e6e3781f89458664a7bb1541c60478c75f02f09af94d8cf7953e

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 28657e99ebc01b54d538ff8af729212e3447a73b499919aed77ccab08a1a9097
MD5 43bb70b25408d39f9b90d87ae372c71d
BLAKE2b-256 ad59dbb351045bd2c111fb7fa1b57f170021926e9abbe0605dc6b8a51fc80404

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 86a3541c3111c74a98bdc3f9e15f46deafe2f92db0a690faa50711759ca08184
MD5 d503cc7b84c0a1d55a259bb8f6c5149f
BLAKE2b-256 7e074979560dae4ca54e4059732ba837356eed7d8c705de22ba7333efdb0b9ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfde207dada0ac5847b582f0a0a9fdcf4d05ea9bb352912a0cf6cbaafc623bbe
MD5 1eceb1dae1c22507a310c48923b6e60c
BLAKE2b-256 9af4e04d8316041e1ffae384d2745d801c4f1650854f6c982560e7c61fcb6b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 135af03a2c05d8c0ce53d2ceaa2c5abefd5c25553f6be5e954cf68873ec5ea6c
MD5 1b697b006bf893f789900afefe0d008f
BLAKE2b-256 1082a6ed114b7268a52acf4b364d44cad11e52c9b8d75151fdd05c79b65a710a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d12d2a54cdbb8d1a126b5de467e9472c6b9684283be26444f6936db8fe82c90
MD5 1f911b4c9e9351b6849ceb4df9993d31
BLAKE2b-256 96e768ac4c98feaf4ff0bca02b3fe04743d444ca0698e471bebcd5284e9f8d23

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 567d1514da997349d1082e35a2f02de4e57b6f52b16981902811e34fb9f7adc5
MD5 ce5b5ca0967948ab73b41982eec1d533
BLAKE2b-256 eb2c13fc0ddd5edb8fb304f9251e438c760cbb75a4d2003f3c2a935081d129a1

See more details on using hashes here.

File details

Details for the file pedalboard-0.9.13-cp38-cp38-macosx_10_14_universal2.whl.

File metadata

File hashes

Hashes for pedalboard-0.9.13-cp38-cp38-macosx_10_14_universal2.whl
Algorithm Hash digest
SHA256 88af0b85fbb3c4bdf29bb7a7c6369e2adaffdca3028eab07ff2007d0280f08b0
MD5 0dc0cd2763458af8911c7cd4eab75d0f
BLAKE2b-256 5c29c2f23e802228c57982b7415df6d5c8b6bf8860da13f0060c0a4da7d32e49

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