Skip to main content

High quality, one-dimensional sample-rate conversion library

Project description

Python-SoXR

GitHub PyPI Read the Docs

High quality, one-dimensional sample-rate conversion library for Python.

Keywords: Resampler, Audio resampling, Samplerate conversion, DSP(Digital Signal Processing)

Python-SoXR is a Python wrapper of libsoxr.

Installation

pip install soxr

If installation fails, upgrade pip with python -m pip install --upgrade pip and try again.

Basic usage

import soxr

y = soxr.resample(
    x,          # 1D(mono) or 2D(frames, channels) array input
    48000,      # input samplerate
    16000       # target samplerate
)

If input is not numpy.ndarray, it will be converted to numpy.ndarray(dtype='float32').
dtype should be one of float32, float64, int16, int32.

Output is numpy.ndarray with same dimension and data type of input.

Streaming usage

Use ResampleStream for real-time processing or very long signal.

import soxr

rs = soxr.ResampleStream(
    44100,              # input samplerate
    16000,              # target samplerate
    1,                  # channel(s)
    dtype='float32'     # data type (default = 'float32')
)

eof = False
while not eof:
    # Get chunk
    ...

    y_chunk = rs.resample_chunk(
        x,              # 1D(mono) or 2D(frames, channels) array input
        last=eof        # Set True at end of input
    )

Output frame count may not be consistent. This is normal operation.
(ex. [0, 0, 0, 186, 186, 166, 186, 186, 168, ...])

Requirement

x86 and ARM processors are supported.

Neon extension is required for ARM CPUs. Without Neon, it may crash or return inaccurate result.

Benchmark

Sweep, impulse, speed compairsion with other Python resamplers.

https://colab.research.google.com/drive/1XgSOvWlRIau1FYwQG_yRSAhDK3KB8bEL?usp=sharing

Speed comparison summary

Downsampling 10 sec of 48000 Hz to 44100 Hz.
Ran on Google Colab.

Library Time on CPU (ms)
soxr (HQ) 7.2
scipy.signal.resample 13.4
soxr (VHQ) 15.8
torchaudio 19.2
lilfilter 21.4
julius 23.1
resampy (kaiser_fast) 62.6
samplerate (sinc_medium) 92.5
resampy (kaiser_best) 256
samplerate (sinc_best) 397

Technical detail

For technical details behind resampler, see libsoxr docs.

Credit and License

Python-SoXR is LGPL v2.1+ licensed, following libsoxr's license.

OSS libraries used

libsoxr (LGPLv2.1+)

The SoX Resampler library
https://sourceforge.net/projects/soxr/

Python-SoXR is a Python wrapper of libsoxr.

PFFFT (BSD-like)

PFFFT: a pretty fast FFT.
https://bitbucket.org/jpommier/pffft/

libsoxr dependency.

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

soxr-0.3.2a1.tar.gz (288.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

soxr-0.3.2a1-pp37-pypy37_pp73-win_amd64.whl (165.6 kB view details)

Uploaded PyPyWindows x86-64

soxr-0.3.2a1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (386.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

soxr-0.3.2a1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (383.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

soxr-0.3.2a1-cp310-cp310-win_amd64.whl (176.1 kB view details)

Uploaded CPython 3.10Windows x86-64

soxr-0.3.2a1-cp310-cp310-win32.whl (148.7 kB view details)

Uploaded CPython 3.10Windows x86

soxr-0.3.2a1-cp310-cp310-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

soxr-0.3.2a1-cp310-cp310-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

soxr-0.3.2a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

soxr-0.3.2a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

soxr-0.3.2a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

soxr-0.3.2a1-cp310-cp310-macosx_10_9_x86_64.whl (402.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

soxr-0.3.2a1-cp39-cp39-win_amd64.whl (176.4 kB view details)

Uploaded CPython 3.9Windows x86-64

soxr-0.3.2a1-cp39-cp39-win32.whl (148.9 kB view details)

Uploaded CPython 3.9Windows x86

soxr-0.3.2a1-cp39-cp39-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

soxr-0.3.2a1-cp39-cp39-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

soxr-0.3.2a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

soxr-0.3.2a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

soxr-0.3.2a1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

soxr-0.3.2a1-cp39-cp39-macosx_10_9_x86_64.whl (402.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

soxr-0.3.2a1-cp38-cp38-win_amd64.whl (176.7 kB view details)

Uploaded CPython 3.8Windows x86-64

soxr-0.3.2a1-cp38-cp38-win32.whl (149.1 kB view details)

Uploaded CPython 3.8Windows x86

soxr-0.3.2a1-cp38-cp38-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

soxr-0.3.2a1-cp38-cp38-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

soxr-0.3.2a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

soxr-0.3.2a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

soxr-0.3.2a1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

soxr-0.3.2a1-cp38-cp38-macosx_10_9_x86_64.whl (402.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

soxr-0.3.2a1-cp37-cp37m-win_amd64.whl (175.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

soxr-0.3.2a1-cp37-cp37m-win32.whl (148.1 kB view details)

Uploaded CPython 3.7mWindows x86

soxr-0.3.2a1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

soxr-0.3.2a1-cp37-cp37m-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

soxr-0.3.2a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

soxr-0.3.2a1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

soxr-0.3.2a1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

soxr-0.3.2a1-cp37-cp37m-macosx_10_9_x86_64.whl (399.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

soxr-0.3.2a1-cp36-cp36m-win_amd64.whl (193.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

soxr-0.3.2a1-cp36-cp36m-win32.whl (159.4 kB view details)

Uploaded CPython 3.6mWindows x86

soxr-0.3.2a1-cp36-cp36m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

soxr-0.3.2a1-cp36-cp36m-musllinux_1_1_i686.whl (1.1 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

soxr-0.3.2a1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

soxr-0.3.2a1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

soxr-0.3.2a1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

soxr-0.3.2a1-cp36-cp36m-macosx_10_9_x86_64.whl (400.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file soxr-0.3.2a1.tar.gz.

File metadata

  • Download URL: soxr-0.3.2a1.tar.gz
  • Upload date:
  • Size: 288.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1.tar.gz
Algorithm Hash digest
SHA256 40d30f714c0ce78dda34dc057a18d8364706281cfdf24f1bf55cf4999f2c125b
MD5 9e4b93c430ecfe24398c192a5051a0aa
BLAKE2b-256 43866e0bff16e0c6df13b0d9b3639784c0f0da6d04f4b9b635099be31dea22b4

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0511d0c15c46f2f4a3176cba2f6da618729207d0350b6abc3414b4daeccf501f
MD5 d362f5ca2cde81c6fe01ee90a106aaae
BLAKE2b-256 14327a1e821149ac198d6f623ca8148c247805e13c2b496efb4b77d403196112

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 028681643a76653b5508da139b8bfd2f3c1346f55ea74eaba440109b43eedeea
MD5 070297b2c0ad906836e0de63accf8023
BLAKE2b-256 bc042ca97667e25d2d30fbe1f6936a1e261eb3be58c948871edb716479d58a81

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb8a85be0e125241210d1fafde90ffa88c8bc412a40e084eb46b9c624094059f
MD5 8ffee35a4865423111cf77bdbc639c7b
BLAKE2b-256 7fa9866d61eed35079ca34575f6c77636c3a5b56c6490fd4a466835778001aab

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 176.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3593096cb5a7061ddebe7549d59ea44b41164b13059d88f95cabe51596ebf481
MD5 3c690f0f697ea15e4a8252af9a9d0b49
BLAKE2b-256 95e84414904680f2a156c87cf44a4471d4cd5fd2368ff0adec6db3be5a66ae7e

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp310-cp310-win32.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 148.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3c485b7668e45b10f8353c701d4aab8a3fa847736cad1f96c334ec97a6eed763
MD5 94bbc9f20a6ca0f7dd407b39911b398d
BLAKE2b-256 d19d4b6abf577c510f0f2f7e59d9fbea43733f52e720fec537f5035c109612d2

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aec7c89aeca88c6bf18a75f793aa6efb9def7294f574c4c03e7e7786b2d92c82
MD5 316ec91661909ffad7efb37d82aaa7d3
BLAKE2b-256 1428d967e59ca0708f8489a78af0295776589973d628e94479a6d70b3fb7f544

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6124799439ea1e31ffdc9946b61681426fc0173045915f7ed0fa3f01f3301d05
MD5 912e5ee33730580a496623de85ae4827
BLAKE2b-256 ca5974beb8006b45687103c1aecea552bfa5a019fa75a2c8ec8647c6edf1530d

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 222b51caf01afa9f9c6cac6ae4b9a1df59700f07aa4f3638c99c80b89cde77fc
MD5 e2ddc5ba6799f1fccd66779de3c22d70
BLAKE2b-256 fdf5965e9621a3a96ebbb7f2d2265045b21a805c74168f78f321cd001be715c6

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aea79dd707551d8d9c1805cb2c8d3b54e0893e1f8bccbb3164c334b02f181900
MD5 8cc04e6cf435632036a715eaae0288c5
BLAKE2b-256 3677a789e985db66ba3203b82a5dc5d01e9d94ef37a0b7d7085b0c153013c228

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc08a77ae65f9ab16a32787756533a15be64fe12d5a0c706bbebd66ea7d1a84e
MD5 b9c97ee324ae68e5cd8b7b480df318ab
BLAKE2b-256 86611fdd5a04d6d0e7758bd1a70aae2df5253efb00f5bf205e39f5efc460047b

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e9d4961a2839ec45134261cffa09177098ddf889c33e6893b840529bb4ab9d00
MD5 6b6b8e35ad99b08df2a17832d4df7086
BLAKE2b-256 ed1dfd45d5edb1304d49ef9491f8b762a4ea54fc44994074a6bf37b142cdcbb2

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 176.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ed30e4461bee101efde322009f82cfd508a574bcc85897d50c16a5c1ccd2f572
MD5 58c6de3dbe4417e7acd9823ea73c47b2
BLAKE2b-256 7d2b3fde6824fa3cf8d0b5385472afcb5eced9a87d20fbe2425e3d65011c9776

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp39-cp39-win32.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 148.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4a318ca4445023ffbbea1fa6b39e9ecab4a914de2a1c4f53f2e4255fe9a975f1
MD5 6413292a93acba124cca1ed8784f6810
BLAKE2b-256 3191adb199594f3f21d30cd4e18446e6677972e3c1503b89b04619dbe8dc69b5

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 483a7bea2b8c91eb747661f4a26833b856ac9fe8e954f0ed1a8b0670f7c32f65
MD5 f327a8474767428c9c9537a88a4120da
BLAKE2b-256 638e14b9674e9f652377fd270cac24d469f220ca8d95b1aea14ec5d6cf0289bb

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 85850b38a41f925d3c5d0b6800f16576073c2b0034ccf6b0ac930ea73b86295e
MD5 2375ac5ac39f01c90bac3a1834f052c5
BLAKE2b-256 ae972802e7e22769adcda6fc48dabe95c2953857d2d99c53a5fc3ae5675e470c

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e710422b3089508ceff539bca3fd8e6ac5f51239a9f1d484f3ba634f6ef1b5f
MD5 a358dee28e7e6ee7fc8d7bd2531316a9
BLAKE2b-256 3b2beb4144cccbed7fddb19c59850032a37a44420076015d1967e359ed066a5b

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d7a11627ab491637a7b581e5f818f82661b905a0fd9e0458f5982f0938cdfe6
MD5 142460b97a08d04a8cb81222e406948d
BLAKE2b-256 2d524bb94792f6ea47cfdff009c951dc2620fae4cd3c813012c43b9d65caf5c9

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04618a1c1cc0c56352d6849d2e4e0b6a85cd2e36bbcd214bd19ccb1127aca747
MD5 971c6f05fdde22b1f8697189bb436204
BLAKE2b-256 d2c11212ea977be3185934865703dc87d2a46adcdb08cb9c01e37a969262d24e

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0145fa724897e9d33d835a5f42e98f1bb5c09f215fada2db498eec997ce21f53
MD5 c904db4b411e6ce46e5c74eed8959d36
BLAKE2b-256 b3acedc7a57e6faea275454971f2b04771fe06dfa38fe9971a95eae1db0d78af

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 176.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 332cdc7712ae6515d40c11d3b9a102c86301978427704847c3ce22b1334a9b62
MD5 ff98ed5d951c7be2cbe642cfd8223f75
BLAKE2b-256 c83e65193eb0eaa3260fde01e0397fb4e645fade70bb4a505d439fa287f93b4c

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp38-cp38-win32.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 149.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 db152a9904bf9c259310209d506fd036a3026bb488ea5500bee158bc141b3ff8
MD5 bd0c7cfb0de2fb26ca9bb6ac672ca4ac
BLAKE2b-256 15f26f3ccb71937fb203d1b4f8dcaaf1cf3560ca5906187e38b816462d16ed31

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9fe5cefced428082be649aea4a3bb8da44813d0451cbaebb229f25911b48a456
MD5 14738f3bc6f45a5fddfb24ad94f3a784
BLAKE2b-256 3222afd91394ae8c62747dcac66388e6af423500cd4a177ab8da78e6de30609d

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 10d9bb0b9dc01d34ec787ef5c1ecb949812ae6e0a5e60891bb35b0f5d11212e7
MD5 4bda21715778bbfac179637ee8eccf47
BLAKE2b-256 acaff024ac992365be282622951dbd2d358038cafd82104b564551740fddab43

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14cc5e6827238ec0f46d855fbf42ec69645b52162a5c831a2f515d489365e5ec
MD5 15c44a05577c25bbeb630595aacdb130
BLAKE2b-256 d8bf524497c1ac433ccfaa60f5da9124f64c3dbd7528b89bf1b784c31d471261

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 307b15a3147b1916e48bbe09848d5bd1075b703c994469a6744597c961dc1832
MD5 140fdf46caeec41366b16bbbd5d5a332
BLAKE2b-256 d5688fe8d2df57fb7e16cf80e42f981bc6d789640ef84adc58e3da699f897730

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f0d263663f9cf4ab5538f34f27e32895798abcbd584272b2b41d2d35d6fdde5a
MD5 ad159749149cbd87a15cb41e459d9757
BLAKE2b-256 a6469bcb8ffa5e85807d004a8194b2cc531b954a4509dead0c7f0704470586d9

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84c6cd8b91858d30989c0707a1d85a13e20f3f242650f0d3dc02d8620208b851
MD5 868dc953e51678f282b325267cbda182
BLAKE2b-256 213f240ce67643513120646ffe28a24a7e40a92ab9d5edff35d3a072b427e8f1

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 175.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ead968bc12f99f98f19a73cf393dcd38e3973a312b46f101f43053a2749a6436
MD5 ac249fb08f31ec9543e2ff4e57f7a360
BLAKE2b-256 b82bcd14dea615e681cc0d1a3f47827c91aece1494d816c2ea2b02d0e0bf831d

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 148.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8e653e43bd3bc7f0bbffefad38baaa725467707c11eaf4e25083bb135731ecbe
MD5 c60358629d3ad8d4fe73e23f8024c0cc
BLAKE2b-256 054c16ec685ff4b955acbda945977beafc96ba7d14e1464362d1c4611d7f1321

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9920cddf918439666f3644c9d5bf958f9357ce63e7b00a03b44473ebd22c8560
MD5 c61cbe77945f0b6bcd29098ffad1d620
BLAKE2b-256 1dd6b03a98878ddf1ae9d58a3a3a074c6b309705cc7debcdf2b846dfc3ec2fa8

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9690c7886661752b7acf3bd0f6a0bfe41e5ceb0e40bef5ded0783dd93dca938e
MD5 2d30e92402b6b104e90ab632f4959638
BLAKE2b-256 d126d7f43b2034708e15ae85e035d7211a436f77294b2ce919e8130cbf68f794

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed287d6949d2c1c2f82a08413f5114c02ed3d06ad4599669c623ff8cac6ad352
MD5 f592043769988f0ba974ab4c070eeedf
BLAKE2b-256 b73afcfbca54d48ca86b3d050030411fe845e9686669ebced45ed936ac62cc27

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfd723c388ad2e65e7f12011e01fe4bc82e9e5e6703792fc0cc24c7067b60f01
MD5 e63f6d4f216d10b5fcbdccdbfdfe62d5
BLAKE2b-256 13967ccabd30348b96e51f642caada38cb388ee0967b9ecec928060b05e8e8e6

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8658172645e5076417cd0713754fbe577ab3ffef76af5704229cc39dfe6f0ace
MD5 3a6090da688fbac22c05e4580677e158
BLAKE2b-256 2b15b47fa8053d7092254adee96b581f0292207c4171181fc45796cefbd33db1

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0b6cadcd03ac8e3652f9ad9417b7b0e0da30fa26e23dc2717e19a38c424c527
MD5 899b868853971b1ea9ecfca66b627d82
BLAKE2b-256 62dc72995d0c8b50a430f24470c4793bae64a5efb8ea3ab06d071ba224c3d2f6

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 193.2 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 275d0e5ccc6bd22ad1f61fb97991cf722f5f89de09616e231cf9d48cafec5753
MD5 e2588a1e459b87b93b8da641165a3f3b
BLAKE2b-256 08f409ed7ecc74c0f2cfbf333562249d73a942d81a15ad17860645f46a39abb0

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: soxr-0.3.2a1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 159.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for soxr-0.3.2a1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f3598ce9719ef53073eff59548ccde2522ee49545eacd9ca3a3e4ade909827b7
MD5 89152ae5264cf5be32432bc8e15f5343
BLAKE2b-256 e1b71537f94bead2945d59be450e6c1f01891a063be6297a3b87e55baeb80d13

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6ef62e8de9a67e434424fdcedd9436737a6eb8842715c24d5f0e34697db805a9
MD5 305f2521a62b99cd0638ce399c75ac4e
BLAKE2b-256 baf076e9a52cbc29129060f1fadb887eb7264a42cad876deb7b50d69d7d6645e

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eab7ee9b605e77b842c9b1550d3190264a8b1373ce5bb546fd2ec84c1c94c3ce
MD5 258bf49334873e2ade2c555c52dcea8a
BLAKE2b-256 9086fa81dcc8f05d6be85a993015e803f3c6c6de125d79e09a6e2868ba65d28e

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d46474abd952a43e35df4ec7fe3fe61e08ee7ddfab24881e2f95e4b7e9e4baa3
MD5 eba89488fa5b6f717da1a7629f12d42f
BLAKE2b-256 3362e151b0cf376ac28ebe48ec5cec5dbb5030211c476d711707aa1b99d781dd

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f71044650e3a8801750fdbcd02aee997e767a7a8368d343dcabad92ab0c8b797
MD5 3f640c99ffd28960faa1ea7e6edea0f6
BLAKE2b-256 271f78d7d86fe17621b02a3c4937e3b0978d224383d86a8433e1945309a910eb

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60352cf9809f8eeb3557fc7e6e61cf8562b1a4ef50c1acb83938883c85441625
MD5 452012d389050ffc5a708f2cc299eeba
BLAKE2b-256 ecb664961d0201ffe5c28a51caa97dc5f2377a0edbbe60316f652fb72621d793

See more details on using hashes here.

File details

Details for the file soxr-0.3.2a1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.2a1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65c0ea13ac199ee106e666c6d7b961cf4e20b816ddb9f4da985c3ea80b60c5a0
MD5 cab4eb76ce1e81d3f10b92ae63ec5022
BLAKE2b-256 95f352a80ec9b0e897d0d3bcf870a31190db954b6b3491e4185bc30c9261ce80

See more details on using hashes here.

Supported by

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