Skip to main content

High quality, one-dimensional sample-rate conversion library

Project description

Python-SoXR

GitHub PyPI conda-forge 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.

in Conda environment

conda install -c conda-forge soxr-python

Note: Conda packge name is soxr-python, not python-soxr.

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.

Python-SoXR uses forked version of libsoxr. See difference here.
These changes does not apply to dynamic linked builds(e.g. conda-forge build)

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.4.tar.gz (288.1 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.4-pp38-pypy38_pp73-win_amd64.whl (173.2 kB view details)

Uploaded PyPyWindows x86-64

soxr-0.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

soxr-0.3.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (373.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

soxr-0.3.4-cp311-cp311-win_amd64.whl (185.0 kB view details)

Uploaded CPython 3.11Windows x86-64

soxr-0.3.4-cp311-cp311-win32.whl (157.7 kB view details)

Uploaded CPython 3.11Windows x86

soxr-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

soxr-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

soxr-0.3.4-cp311-cp311-macosx_11_0_arm64.whl (382.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

soxr-0.3.4-cp311-cp311-macosx_10_9_x86_64.whl (406.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

soxr-0.3.4-cp310-cp310-win_amd64.whl (184.2 kB view details)

Uploaded CPython 3.10Windows x86-64

soxr-0.3.4-cp310-cp310-win32.whl (157.1 kB view details)

Uploaded CPython 3.10Windows x86

soxr-0.3.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (382.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

soxr-0.3.4-cp310-cp310-macosx_10_9_x86_64.whl (405.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

soxr-0.3.4-cp39-cp39-win_amd64.whl (184.5 kB view details)

Uploaded CPython 3.9Windows x86-64

soxr-0.3.4-cp39-cp39-win32.whl (157.5 kB view details)

Uploaded CPython 3.9Windows x86

soxr-0.3.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (382.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

soxr-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl (405.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

soxr-0.3.4-cp38-cp38-win_amd64.whl (184.8 kB view details)

Uploaded CPython 3.8Windows x86-64

soxr-0.3.4-cp38-cp38-win32.whl (157.7 kB view details)

Uploaded CPython 3.8Windows x86

soxr-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

soxr-0.3.4-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.4-cp38-cp38-macosx_11_0_arm64.whl (382.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

soxr-0.3.4-cp38-cp38-macosx_10_9_x86_64.whl (405.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file soxr-0.3.4.tar.gz.

File metadata

  • Download URL: soxr-0.3.4.tar.gz
  • Upload date:
  • Size: 288.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4.tar.gz
Algorithm Hash digest
SHA256 fe68daf00e8f020977b187699903d219f9e39b9fb3d915f3f923eed8ba431449
MD5 ae46ef7294cdfdab597528bf6714d2ff
BLAKE2b-256 d396ec8828162bcff97b70e99dcea82205ba93fd2dda1cbd4ba2a149d2bd7a8f

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a680bab57adae462cdc86abcc7330beb5daa3ba5101165583eedcda88b7ba551
MD5 037f007c48d6d6ec9a4786722442cfa2
BLAKE2b-256 5d86fe792cfd2570991211709974212baaa8f73df62227b97afb728e650d1428

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0063d5f9a4e1a367084f4705301e9da131cf4d2d32aa3fe0072a1245e18088f
MD5 2dd407a89a03e63c6be6fdd807e21d17
BLAKE2b-256 c990ea881677e2c564e0eec17884a5eff5558119533f1ceb505dbd85dc3e1e5d

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe8b5f92c802f1e7793c40344f5368dc6163718c9ffa82e79ee6ad779d318ac5
MD5 721b8100adf593071368f7b9f9bac257
BLAKE2b-256 048dadf526c43f535372058b33daa9b5b7868e2d3023b25121713fc12686f223

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 185.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7c8350acd7150f74261a0569b47ccb1bb4aa39b2d575860bc97cfa69aab8aead
MD5 ec7aec232f162deb69d98c0e41a00343
BLAKE2b-256 477f93259c77f5f6b30356f277781ec83ebf953cd4f90b2be87e09ba477cd095

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: soxr-0.3.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 157.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e57e9703c2bff834cabc06800d3c11a259544891d2c24a78949f3cf2f5492cc5
MD5 3a5e1a2708e21340dd94cb2fa21dd7b3
BLAKE2b-256 5364de52356e0d0c33536d8e0f84a01178add23de46aabce02d8e3e17b166327

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e7396498a5f5b7d8f23b656f65c24517a6ff5bdc3ee0623ccd491036a43ea08
MD5 e9c7f834295653a78d9e9d07eaff440b
BLAKE2b-256 bea2634107c5ea48f4d088afaca7e9c887c80bdd4ade785d27e9f603baf64c59

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e23de4dfe54ac30e583bbc9cc3feda1cd776fedce13206bc4b3115b75ecab82
MD5 666aff140d8e00b72051b4016f7ae8fb
BLAKE2b-256 1e9b7b82a148ce4b9fff08daf9ed0cd729d62ea3317ae8bbc81574cc37f1dde6

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11bd1396052049e6d389225a0e96a9df15f706da501c619b35d3c72ac6bc7257
MD5 2ab02c1d88ac0620845d4ec8f73ece2c
BLAKE2b-256 667483a7c5976e462be5b8dd3908c906b8ae979c7c0637fe517c33fe9d49ffc0

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2678d2719e7496803983584d661eb5fddc7017154a8dda4a774407c56ff07973
MD5 4651902698ba4ed58d7949f8e6e89a0b
BLAKE2b-256 867ff2f766fc6011d0df4a15d1e73c48b790a7b5ab5be60853419533f96bca4a

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 184.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1e95c96ce94524fae453b4331c9910d33f97506f99bae06d76a9c0649710619e
MD5 4ed6f2517ae61ec8098df0df4a558076
BLAKE2b-256 11bc4fe9e8f991bb2ec5900df39e321a5077cb7117e993725e01214229f2af10

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: soxr-0.3.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 157.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 182c02a7ba45a159a0dbb0a297335df2381ead03a65377b19663ea0ff720ecb7
MD5 0c0c33910e923d8003aa66e7ffb0e3f3
BLAKE2b-256 21906c6185c2b0a2f8340dc1e7f5a98750a0dd8134fcfd9f68d9bf0bdaf923b3

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e613cee023b7c3f162b9da3f6b169cd7f58de345275be1fde9f19adc9cf144df
MD5 d5283f248f207e8376c2cd2047f7f127
BLAKE2b-256 8b800804aec980abceb431f895acfd42f5c8328e1a967e317ed885a8307246f1

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4a1b4019c9972f57612482c4f85523d6e832e3d10935e2f070a9dcd334a4dcb
MD5 ecdedf62123ff5520346c9665906299e
BLAKE2b-256 cd126e5536f3b50244ec73522fb5c3c50511fe89a2a5f4fa481e2779ed010009

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 380d2d43871a68e8b1ef1702a0abe6f9e48ddb3933c7a303c45d67e121503e7c
MD5 cd76feb9d4d20efbed2ae336b50dbd31
BLAKE2b-256 4aa389ceb80e0dcf10378ee1433029ec1a4e5b514b22ad30e3f4c7a073dd2685

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7b84126643c063d5daa203f7f9137e21734dabbd7e68c097607b2ef457e2f2e
MD5 4105b76d73836dd5cbeb8bee190a94b9
BLAKE2b-256 52e4f747b38e61be13501aed78a3940cddee4fbba616222424ee89678ae3d9ca

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 184.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2082f88cae89de854c3e0d62f55d0cb31eb11764f5c2a28299121fb642a22472
MD5 b2a0dd955c1c9440ad6d65d83ba0824a
BLAKE2b-256 b1a03d0371c80952dc21d561d84c34dfafc2e7ccd30223a70ce54c024fefdcc8

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: soxr-0.3.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 157.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 83de825d6a713c7b2e76d9ec3f229a58a9ed290237e7adc05d80e8b39be995a6
MD5 a03a2ae434e7ac1d67f9d3b46d9ae761
BLAKE2b-256 4e21e3e90fdfbb4316a63a1edf884da198cc2002df4611e0a527efae4bf5fe33

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3479d265574b960e12bca0878baba0862c43278915e0319d84679bb4d4fcd33
MD5 6f65cf878cd29de7bc9e36916a12831a
BLAKE2b-256 92b5312c0db7c1ca3109895626832302beeda80e54d15b0846d1e056b09825f5

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84e590e75b7e5dca12bf68bfb090276f34a88fbcd793781c62d47f5d7dbe525e
MD5 ba0be62a1db0436136b716ede83f12e1
BLAKE2b-256 6d1f1b74c11ea2e0c80c210136bdd95a6149962b7d4a2bd6d8b4dffd99fa276e

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: soxr-0.3.4-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 382.1 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78090e97abfb326b7cf14ef37d08a17252b07d438388dcbbd82a6836a9d551b1
MD5 04666e8761e3c64ef57b709fd03f95ce
BLAKE2b-256 fcd9ca1e4f24c4fa49552b187b10162938ae2d3ce1a1b65fd42ce4960dc36c53

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: soxr-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 405.7 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20130329985f9767c8417bbd125fe138790a71802b000481c386a800e2ad2bca
MD5 b7cc86a1880044f885e5ba152ede036d
BLAKE2b-256 52a64811e2c1564ae628d5915382669c7b16d3428586c288ce24e8e5c4f7a637

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 184.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 068ab4df549df5783cc1eb4eb6c94f53823b164dc27134fc621fc9f5097f38cd
MD5 69fa1425f94fc9939d53c39444c689d3
BLAKE2b-256 e8f5bfcf99a10250381ed76793d930da816836f2ac8a276de48522001271cc98

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: soxr-0.3.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 157.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d858becbc1fcc7b38c3436d3276290fae09403cdcbdf1d5986a18dab7023a6c3
MD5 cfbb6d6efc2e3aaa772af7ee22d294f3
BLAKE2b-256 706102aced07a55887f2362f7e14bfbc797f13b1f30a3f980c1df3d29edd338f

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff15853895b54f1b627799c6600be1ce5f7286724e7a93e4b7b9d79e5d4166f5
MD5 4d9a1b257043317221e12a418551d92a
BLAKE2b-256 7462ff187091de089fceabf32992815478fdb7bb1bf665c12ae373b0b9c04ff3

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bb6d4dc807d04c536674429e2b05ae08a1efac9815c4595e41ffd6b57c2c662
MD5 6edb17aec588418a1e3e31c62474baa4
BLAKE2b-256 53ae14b702e2e50429ec28a536c31fa57d18754b1e1f400cc36fdb3cc4b25dbf

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: soxr-0.3.4-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 382.0 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00fdbf24f64d8c3fb800425c383048cb24c32defac80901cde4a57fb6ce5d431
MD5 97b9e9ca70b0939043bdf8e58d5a1a4c
BLAKE2b-256 ebced5e5222b17abf581469619eafff59a3050b317c93552a4d701bb0db5f274

See more details on using hashes here.

File details

Details for the file soxr-0.3.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: soxr-0.3.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 405.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for soxr-0.3.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 941f7355116fe77fe6a82938fa7799a0e466a494ebc093f676969ce32b2815b1
MD5 b18b54521ab6d19020079ec1701e5f4e
BLAKE2b-256 6dbaea014aed6162ec943eb7be0de28f0a8c3660d30306e76edbe952b41fd368

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