Skip to main content

Audio Processing Platform

Project description

sudio

Sudio 🎵

PyPI version PyPI Downloads Documentation Status Build Status Python Version Supported OS License Open in Colab

use case of audio processing and manipulation, providing set of tools for working with digital audio files. supports operations like time-domain slicing, frequency filtering, audio mixing, streaming, and effect application across various audio formats, making complex audio engineering tasks accessible through a streamlined, Pythonic interface.

🚀 Quick Start

Installation

install Sudio using pip:

pip install sudio==1.0.10

Basic Usage

an example to get you started with sudio:

import sudio
from sudio.process.fx import (
    PitchShifter, 
    Tempo, 
    ChannelMixer, 
    FadeEnvelope, 
    FadePreset
)
su = sudio.Master()

song = su.add('./Farhad Jahangiri - 5 Sobh (320).mp3')

cool_remix = (
    song[:40]
    .afx(
        PitchShifter, 
        semitones=-3
    ).afx(
        PitchShifter, 
        start=2,
        duration=0.8,
        envelope=[0.8, 2, 1]
    ).afx(
        PitchShifter, 
        start=10,
        duration=0.8,
        envelope=[0.65, 3, 1]
    ).afx(
        PitchShifter, 
        start=20,
        duration=0.8,
        envelope=[2, 0.7, 1]
    ).afx(
        PitchShifter, 
        start=30,
        duration=4,
        envelope=[1, 3, 1, 1]
    ).afx(
        Tempo,
        envelope=[1, 0.95, 1.2, 1]
    ).afx(
        FadeEnvelope, 
        start=0,
        stop=10,
        preset=FadePreset.SMOOTH_FADE_IN
    )
)

side_slide  = (
    song[:10].afx(
        ChannelMixer, 
        correlation=[[0.4, -0.6], [0, 1]]
    ).afx(
        FadeEnvelope, 
        preset=FadePreset.SMOOTH_FADE_OUT
    )
)

cool_remix = side_slide  + cool_remix 

# simple 4 band EQ
cool_remix = cool_remix[
        : '200': 'order=6, scale=0.7', 
        '200':'800':'scale=0.5', 
        '1000':'4000':'scale=0.4', 
        '4000'::'scale=0.6'
    ] 

su.export(
    cool_remix, 
    'remix.mp3', 
    quality=.8, 
    bitrate=256
    )

su.echo(cool_remix)

Remix

Listen to the remix

Original

Listen to the main track

it used specialized effects like PitchShifter, which allows dynamic pitch alterations through static semitone shifts and dynamic pitch envelopes, Tempo for seamless time-stretching without pitch distortion, ChannelMixer to rebalance and spatialize audio channels, and FadeEnvelope for nuanced amplitude shaping. The remix workflow illustrates the library's flexibility by applying multiple pitch-shifting effects with varying start times and envelopes, dynamically adjusting tempo, introducing a smooth fade-in, creating a side-slide effect through channel mixing, and scaling different remix sections. By chaining these effects together with remarkable ease, developers and musicians can craft complex audio transformations, enabling intricate sound design and creative audio remixing with just a few lines of code.

Explore Sudio

Get started with Sudio processing in minutes using Google Colab!

🎹 Key Features

Handles both real-time streaming and offline processing, allowing for dynamic applications like live audio effects as well as batch processing of audio files.

Allows integration of custom processing modules.

Flexible audio playback, precise time-domain slicing, and Comprehensive filtering options

Advanced audio manipulation (joining, mixing, shifting)

Real-time audio streaming with dynamic control (pause, resume, jump)

Custom audio processing pipelines for complex effects

Multi-format support with quality-controlled encoding/decoding

📚 Documentation

for detailed documentation and examples, visit the Sudio Documentation.

💖 Support Sudio

I don't need your support. The link below is fake! Don't click on it, and don't pay anything. I mean it, just ignore it!

ko-fi

📄 License

released under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sudio-1.0.10.tar.gz (5.1 MB view details)

Uploaded Source

Built Distributions

sudio-1.0.10-cp313-cp313-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86-64

sudio-1.0.10-cp313-cp313-win32.whl (2.4 MB view details)

Uploaded CPython 3.13Windows x86

sudio-1.0.10-cp313-cp313-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sudio-1.0.10-cp313-cp313-musllinux_1_2_i686.whl (5.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

sudio-1.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sudio-1.0.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

sudio-1.0.10-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sudio-1.0.10-cp313-cp313-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sudio-1.0.10-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

sudio-1.0.10-cp312-cp312-win32.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86

sudio-1.0.10-cp312-cp312-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sudio-1.0.10-cp312-cp312-musllinux_1_2_i686.whl (5.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

sudio-1.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sudio-1.0.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

sudio-1.0.10-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sudio-1.0.10-cp312-cp312-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

sudio-1.0.10-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sudio-1.0.10-cp311-cp311-win32.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86

sudio-1.0.10-cp311-cp311-musllinux_1_2_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sudio-1.0.10-cp311-cp311-musllinux_1_2_i686.whl (5.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

sudio-1.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sudio-1.0.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

sudio-1.0.10-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sudio-1.0.10-cp311-cp311-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

sudio-1.0.10-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

sudio-1.0.10-cp310-cp310-win32.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86

sudio-1.0.10-cp310-cp310-musllinux_1_2_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sudio-1.0.10-cp310-cp310-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

sudio-1.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sudio-1.0.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

sudio-1.0.10-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sudio-1.0.10-cp310-cp310-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file sudio-1.0.10.tar.gz.

File metadata

  • Download URL: sudio-1.0.10.tar.gz
  • Upload date:
  • Size: 5.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sudio-1.0.10.tar.gz
Algorithm Hash digest
SHA256 420bf67c7a9a59aa9bc7a046f2a88c31eebc3e7de167620033ef64ee779c34ae
MD5 754434e2f3e986bec38113c568b1e1b8
BLAKE2b-256 0d13bc761119eee620cd5bb4be70efebcdd700cf8dfde7f5d0d3051079679b62

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sudio-1.0.10-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sudio-1.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ce05d4297c1cb80b31af58bc019991feca1fff4db236a712d09df4ea0a978f35
MD5 4549d54854ec8c66dcc875a56278c737
BLAKE2b-256 6ab4c2eddbd6d0f2c15d537d943dde9c76af15b9397b64e7ca7fa517fe3e6692

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp313-cp313-win32.whl.

File metadata

  • Download URL: sudio-1.0.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sudio-1.0.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 72049a0d8dc060d49bf7d4059ca85e9885afd33719ec2eeade2d1b28103095e7
MD5 2e682be5cd933a837b523a4d5298efec
BLAKE2b-256 f7d8f1510a5471174892131a63c79ee8868bf9fa7675d9ab6143479966fddf5c

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50125f4e9d2b055da009c0e51ca07c5c2859cecc3869ab0a2d6a05b73caaab88
MD5 334ed963529a82b5eaa13b227235fb7d
BLAKE2b-256 52b2e3fffd72014bcd30a00bc45440fdb252c7849218afddd0fbfc4b46021636

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55f8e63e5779f42d329b9e9b87030a2ffc351b41535dc2886d1b23fb295badee
MD5 fc5530c5d9a53424563a2b604f42a105
BLAKE2b-256 1c25a7903e3368ed5c1c55accb1190ce783b97d3e2e76de1018ac4b2f06a5265

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59c14de20c7a20fcfee484e427b2d6fb530ca62938e4e3d398e7d04f3a71afcf
MD5 19a70b0ba7295f23f4d1c72cb15a8698
BLAKE2b-256 fbdcd8457802886f64094ea1b3e9c00ab73b9a185d528e2fb696a4831eb2efeb

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9441135b5711a28f5fbc949e605b4f7ad3506d0c1a4584b2af02fcebbcae2158
MD5 fcddbb5fe4a9db8eb8e04f26337d2f6a
BLAKE2b-256 c09b2a0e702704c37ea2f15af96eb83fc9194bf211f41453e742de6ae196384d

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e43fb6887a477a6f4caaad9a92abfe2b4f343501c4fec48bdff64a6fdf946e0
MD5 9ed4e015a25be10b2eaa888d7a5867da
BLAKE2b-256 452ba45a1d2325bc1d84d8a7d1425f1385c086ee5d1ed7eec3998793755df390

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2e28a9f8bfc33e14b6ff0607833d06d0597ad73a7f8ea8d4abbd63205fd7f45f
MD5 2af63cc960690cdb1c9223f048d91cf9
BLAKE2b-256 ea47d184b9c225ad89e4f089478177a6ce8112c9e1815794fb790aee398d17ed

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sudio-1.0.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sudio-1.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4cf842dcab6ecddcb8d1698c1f7387d4ea7be874c9ed2550d98016ae812d0355
MD5 72be35fe6a187a9d603785835416b88a
BLAKE2b-256 564cd7bc4ed8682c0f83204674c159c42a523800246b8ffd4517fcfef46481c7

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp312-cp312-win32.whl.

File metadata

  • Download URL: sudio-1.0.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sudio-1.0.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 adbe3bea63326fb0cfd1f177590bb17cbe8c768114d9213e0f81ddbc3aac784d
MD5 72e076592e202ac00e464c5938f1d86e
BLAKE2b-256 100dfca5d04110784e39e7673606488b6fff8ce1ec5c77c4f7db7349ae2065eb

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bc4f1ea26327186d250092c98be47765c035e4a97958ec595fe1ef1982957b6
MD5 4a3de1c10bcf66b766f817469cb36014
BLAKE2b-256 f1c1219700b8ff61046de7f0e1356692a5b290debd0462fdf4efce864905bef7

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 119e4f0f5d6332f19a03bbb0f86403742be50ec37ebc2b17c2af262347bdd3bf
MD5 2c98a9d6ee639d8f8f551dc6a3a82a39
BLAKE2b-256 f2ffe35a03378c1fa342d721baa7d867885d514f4ef6da8518a4ef4aa452abbf

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a43b67526be27b91c2c298c0f7a40cddd75c4bbe5da26ba12f709a6336b67b0
MD5 dbf9ed893149853d82624ec6d4de8817
BLAKE2b-256 6c99c07cc9aa9687de30e01b06bf233b931332cea9d923cf96bb28960ccf4f6d

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebc769c16e93008c9a7a0d0f4438cd4f3a09eaee18ffa50a8ced6cc17f0c4d36
MD5 38a9e324a41d87fe79ace31c243fe99a
BLAKE2b-256 723ff58cef15e5a463b4346321a8d5bd187af2b5a7f2d102f4491a9c1b766261

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f92fedd682fdc47b0214b546bb793d38e3fc3351a9995d09e5c03efea9b6e93
MD5 4f721feed693ca5dcd05b66303daf583
BLAKE2b-256 c14003f217bd6c9aa360c9bb5caf235f48de9528420dcef0890a7609382091d5

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0c22d8feb154fc8da55cf359ef6dc95a256778f77d707eafd2b60f062febb7e1
MD5 b654c8afa59f201582ef19599308c557
BLAKE2b-256 35ca922730ac6ed8c98e2bd81ffb58d47f56bedfde95ad85f1310692a16a199f

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sudio-1.0.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sudio-1.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f71c76027fbe3b591799e18d84e9952ec6f7d5f2b3535be2a13948e7906c03e0
MD5 c5e67b541d854e8cdee09356ced22153
BLAKE2b-256 4641ffe901151ac1d40f914d100a44f5ad6e812c1a8210642b1b13537ad32de7

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp311-cp311-win32.whl.

File metadata

  • Download URL: sudio-1.0.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sudio-1.0.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d2dfdeae2f1597d5d685d1a3698a0e45a394e4f5abc999026b66de10b4497223
MD5 9e3b87fc74b0781b623736dc94a776ed
BLAKE2b-256 ef3e8c01392a7d134fcc41d28a247c48bc89cd28fbf187a9ae0e0ff1f2b528a2

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4623149a197e758fb08f15e400eee6bbe0415acd16e6879bac42d09b22e61e2a
MD5 f99f1fbe3b49b186d7fa484647e4632f
BLAKE2b-256 a73818fad6c8ba9ffdc519493c6f4389107189496be58f263e4150c1e907f0cc

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8581f8dad8e5ad60bbdf0329f5cb72b2848482eba7c2cc0fb4fbea3e0328c615
MD5 1fccd76916b8b091a9490794c5808012
BLAKE2b-256 85bfab0781fbb5b99c1034bdc1c5e3369c0b00445f185e4740800ebd4f299b10

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14541d3a81b75b1fe6d980fae38e2dfc86a78cc3df25a48cab014ed996979c28
MD5 2d9496259a9f76ccc70e5cf180000be7
BLAKE2b-256 726b6b948342571e0d013bd2c25b8c58baac8a17504fa7912b170f0bb39cc966

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab1f5e592ecb7cda1e3ef6e3c7875c36e7f04e0245c3656dca97c34d9c77b605
MD5 b6f969d7071386cb149888794064842a
BLAKE2b-256 c9a04d494931fcc9c9f447b30b2ee8dbdc55e7145a759eaf03199a814c4b63d5

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1db01c413492e6fbf6dd5248ebf9acfa7ef623e8b7fdc2dfc6f3c5805cabd507
MD5 47e070da9e205693de11bf064dba6140
BLAKE2b-256 ca53cf09d4e7037443a3b82a65a4a0e0522a01651b21cf257b96330c38bf7061

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 831f64a956400c3c841af6a87f4d76df910eccaae59aa03040eba658bcfe759d
MD5 997aa1d19fe14efff51f3b121d0b220f
BLAKE2b-256 054a45887e38eb4229041c5ec990dae1ad58171e7e17348ae9110a5662b90b1b

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sudio-1.0.10-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sudio-1.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c1a2855fc85f604fca80ae408dbf32ec1cb0605274278f847c017ff5c28ea33
MD5 70567fbc647c873d031dbad48bfaca6e
BLAKE2b-256 46f078713d10c7f25432fad5d191a495b7b995ed362671e1192d160a1c29cb52

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp310-cp310-win32.whl.

File metadata

  • Download URL: sudio-1.0.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for sudio-1.0.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e316d749bb14ba9572b3dbafdd22130b53746be5bc75ae7bd412f42399b2e35b
MD5 ae8ff3f548c441f7bfcbc4472a603b8d
BLAKE2b-256 effaf5ece2400404111ee33d0dd54614891fa0ccf77fc95358b1d64eab1015ba

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 372c8fff943bc0980dae1414bb8ba53966d515f7d4fdd05803fae3f1c57ab0fb
MD5 ac8b6fdba4c085bf2a16d637bf231f92
BLAKE2b-256 7f6f9bbe3fb7dd8b315b6eb45758b67d8dd2428db68dd28cbcc1ff6b5b85f645

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2cab2b8f9344077b1f0a07b3ee9fdc4df908849f8c2fa326ff46a7b24f5eaae
MD5 a38acb7e3431ba9216cd4903b68ab9f1
BLAKE2b-256 a9f6915643393dd0a49247dc57a93a5b6b5ab5694c189223a783cddc45f5f924

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5aeafbd28587656820ac144e4b5eee8dab58ca44ae513be376110ffd8ba41d03
MD5 14fa6d137d589a1b6b28a794a5007869
BLAKE2b-256 a1852844bdb972a5424212006b0e6b1cc0f249e755a2b274484a55e9e45b8489

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b49a08d66a96e49f84c6c53dbeacc49b330e4269df1f5d5cfe038f699b2a01b
MD5 f02e21f2e4a63fd265275e1a16797ad1
BLAKE2b-256 3ad3e5bbe75c691781e19e0578017bb6fb94f1004496d79547c897f38a13d939

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83499f87af4d42a58e22bacd96a84d2f7862802cd850724bc433ed1139082f0a
MD5 fec1f8b7754331bf3bea980f8c1d9c1a
BLAKE2b-256 e177dfe7429904396787cd35568e6f6568dc652207cfac204100293ded4d9a7d

See more details on using hashes here.

File details

Details for the file sudio-1.0.10-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sudio-1.0.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c35510c54eba1b5609b93d9a4abe33668b5d17aa8d9562a03f127d0700d84ae7
MD5 28c979e474f79ff4c5db87e16ede99e7
BLAKE2b-256 269017624be5fa63ca5900e6d751180a63cbb38580852e8dc5df279a1f819f9b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page