Skip to main content

High quality, one-dimensional sample-rate conversion library

Project description

Python-SoXR

GitHub PyPI conda-forge Packaging status 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.7.tar.gz (296.4 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.7-cp312-cp312-win_amd64.whl (184.1 kB view details)

Uploaded CPython 3.12Windows x86-64

soxr-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

soxr-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

soxr-0.3.7-cp312-cp312-macosx_11_0_arm64.whl (390.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

soxr-0.3.7-cp312-cp312-macosx_10_9_x86_64.whl (413.9 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

soxr-0.3.7-cp311-cp311-win_amd64.whl (184.7 kB view details)

Uploaded CPython 3.11Windows x86-64

soxr-0.3.7-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.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (390.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

soxr-0.3.7-cp311-cp311-macosx_10_9_x86_64.whl (414.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

soxr-0.3.7-cp310-cp310-win_amd64.whl (184.6 kB view details)

Uploaded CPython 3.10Windows x86-64

soxr-0.3.7-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.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (390.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

soxr-0.3.7-cp310-cp310-macosx_10_9_x86_64.whl (414.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

soxr-0.3.7-cp39-cp39-win_amd64.whl (184.8 kB view details)

Uploaded CPython 3.9Windows x86-64

soxr-0.3.7-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.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (390.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

soxr-0.3.7-cp39-cp39-macosx_10_9_x86_64.whl (414.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

soxr-0.3.7-cp38-cp38-win_amd64.whl (185.0 kB view details)

Uploaded CPython 3.8Windows x86-64

soxr-0.3.7-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.7-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.7-cp38-cp38-macosx_11_0_arm64.whl (389.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

soxr-0.3.7-cp38-cp38-macosx_10_9_x86_64.whl (413.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

soxr-0.3.7-cp37-cp37m-win_amd64.whl (183.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

soxr-0.3.7-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.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

soxr-0.3.7-cp37-cp37m-macosx_10_9_x86_64.whl (411.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for soxr-0.3.7.tar.gz
Algorithm Hash digest
SHA256 436ddff00c6eb2c75b79c19cfdca7527b1e31b5fad738652f044045ba6258593
MD5 5098dda6177eb8ef7033958eb08e14ed
BLAKE2b-256 4931f24193672d07964cbf85f2e7af3b45936e1c76e44eb5ad97199865e2dcf8

See more details on using hashes here.

File details

Details for the file soxr-0.3.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 184.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for soxr-0.3.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 42da0d9eb79c70e5a41917f1b48a032e241a48eb4a1bcea7c80577302ff26974
MD5 7957b4b10841993ae9507a9a8a5b9828
BLAKE2b-256 863315edab5cd5299238c2b5c67031472108374b8fbd4b488843919cc7a03698

See more details on using hashes here.

File details

Details for the file soxr-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea663b76f2b0ec1576b8a43aef317aec080abc0a67a4015fcd9f3407039f260a
MD5 5e257f48ab926c0d031c614ac60c961b
BLAKE2b-256 1b5154a6bbb3c0e80b7f59a7e30a4643fef18f43b75ce30512a6baf4afb8d490

See more details on using hashes here.

File details

Details for the file soxr-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for soxr-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48acdfbcf870ab54f645b1cfd641bce92c1e3a67346c3bf0f6c0ad2873c1dd35
MD5 2218b52e6916b22440e54d90fed1ace1
BLAKE2b-256 7a1a1287a8d6a470d1ce5084269ec7ac17dfc8eeb3e48bec3bd0be0eefed8ed4

See more details on using hashes here.

File details

Details for the file soxr-0.3.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for soxr-0.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb1e14663a43fe88b8fbc287822a159028366a820abe1a0a9670fb53618cb47b
MD5 a6f9c2cbec9a673b804076b6c0eb56e7
BLAKE2b-256 d65b14ff65df4ba5663b69ddc6e80bc10c0c98f67c3cfd9a3aa435ab8bde3b92

See more details on using hashes here.

File details

Details for the file soxr-0.3.7-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.7-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83c74ef6d61d7dcd81be26f91bee0a420f792f5c1982266f2a80e655f0650a98
MD5 cab89d35b8f9f3247ac71ab12e342b26
BLAKE2b-256 042adfb7e28335e9715d0494a7f896f4a5ae70e42761ca7740392dd52fa8c133

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for soxr-0.3.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 54985ff33292192d2937be80df3e5f3a44d6d53e6835f727d6b99b7cdd3f1611
MD5 633d59948b16294c29afc5b135489fcd
BLAKE2b-256 0d958398287a3a00d006ebbe5fcada88bb2536acde2beecce892ff091e1c1a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 286858e3078d76c11b6d490b66fed3c9bb2a4229759f6be03ceef5c02189bf2c
MD5 97dfc44f2e7ee3e0146f18f53537babd
BLAKE2b-256 2b97cbce72f9c8b5c9c667eb55dc55be20a87c610dba55c0466c77498c1a8c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfab27830f6217a15b83445988225c3aeea3bbccfa9399ced291e53e1b05925d
MD5 9808aaa80c63e2fd95802703951ae043
BLAKE2b-256 add76ec56e463e74764a9b9c2cc2645788991d7ce6c82cd40ff002e5fd6694bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cea63014ce91035074e1228c9340e2b8609faf964e268705fcac5135d05060c
MD5 5676179e45880512cbe3a61525fa248f
BLAKE2b-256 d079c93daceac24cd6830333d9f3d04716115240ef3be4e8d8ece511afbcf417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e811450f0e91972932bd37ac58e32e44002c2c99db2aa926a9e7ba164545034
MD5 e8400d0d088b6126a6e74921e20ef3de
BLAKE2b-256 1c5a61572e3d1f5dd4c9c0a32d9f7f57b7b6089222227c881fe0945cf955261f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for soxr-0.3.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e291adfaf9f2a7c4dd180a1b8c280f9beb1c84cb381853e4f4b3434d002ed7f
MD5 184707a2b627326f5692846d63fc51f5
BLAKE2b-256 3ce789951b917600d02f7389e760696c32b70a80a96301d0a018a70a317e4ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e47d86af35b942c92606fc2d5dfccf3f01309329475571ae2312bbf9edc3a790
MD5 f97869b8d0e680a094e120159158ef12
BLAKE2b-256 31f7d95b816c47dca6a068305fb7176b8c8d2c94bbc6cce6dcc296c6cf98660f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0cd6eb6f6bbda2e8de36672cf2f0529ced6e638773150744ef075be0cc4f52c
MD5 96c36ae42068c5104ccf0a1a287e055b
BLAKE2b-256 c02a1c492e2ffa0cddabef105332d488e647b8d1315a21cb881e3671a2812880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d8a2b3e7f8d0255e2484fb82cb66c86da6fb25b342ef793cceca9ce9a61aa16
MD5 ff3432853aeac11df6ab0b014bb0f90d
BLAKE2b-256 bc382635bcf180de54457d64a6b348b3e421f469aee7edafead2306a6e74cc1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac81c4af6a993d5b7c0b466bbac4835bad2b14ec32f342b2c1f83e4cf825e301
MD5 176abd1974d0b6db2cd9ca3b8ef336ab
BLAKE2b-256 2232c8f8c60d91db642ee2ecf86656a35bd5463b12b54cc72f3161750e2539d3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for soxr-0.3.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7221302b4547d02a3f38dd3cd15317ab2b78873c75921db5f4a070848f0c71be
MD5 5a1b3e0d6bb952203022b828398945b1
BLAKE2b-256 8ba1f1a343ff7d37b00931f76f629ea121df6b639d80765d67b41faa521ce692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0eed6bf58192dd1bb93becd2444de4d712689713d727b32fd55623ae9aae7df7
MD5 62ff321cbbe4d52411fe436bde13179d
BLAKE2b-256 be1a845d95266ea63ff402121ac5d1d48261bebfd20f45dbd24ce08fb712bf47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8ceeb74e5a55d903cc286d3bd12c2d8f8c85d02894071e9ec92ab405430907c
MD5 8efed6b0f4e37e8464c1d092a0eb6f00
BLAKE2b-256 ab8dd228996ae2d35944f7f79792e0a45a7446e59b4b09367380db5a006cdfd8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for soxr-0.3.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e39668c250e221db888cf3b290a16fbe10a702d9a4eb604a127f720040de583
MD5 ad5fbd0075d73912cc68a4f732a9ed26
BLAKE2b-256 3e867fd03c9f2a825a1434ba1a5097e793fdb431571beaefcd7030d013dca707

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for soxr-0.3.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5267c3ba34d4b873d9bbe3a9e58418b01ae4fd04349a4f944d9943b9ddac0f7
MD5 a31331f5299c3c8f5cd00c32743028d0
BLAKE2b-256 bba068de2c18fd5079f979ece27b40b86f388c3083f491386d47731c610f3341

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for soxr-0.3.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 07f4c0c6125ea1482fa187ad5f007216712ee0a93586a9b2f80e79c0bf944cf7
MD5 a0a0c8984369114a88775dcfa088eecb
BLAKE2b-256 e28fbd1c42ae58a41a7f30f908659b510d27b30657312e64d8005f234450d529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e87b58bc9e8c2caa16f07726f666bd043f0a49ca937baa803ce7708003b27833
MD5 0da2ffc531fc53914b56db4f844e77aa
BLAKE2b-256 ce6bf9ac173f4365d52d247df1e4727c932d241b4e8b04f0820b1d5c44ba18c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d994f1a7690b1b13ab639ea33e0c1d78415b64d88d6df4af705a9443f97b9687
MD5 44d22033adc2bb1182fd82e89c9d1a3f
BLAKE2b-256 7090872f5a4277fc43ca5643cd9919d8de8d3c392fdd03fc09861669e6c1f2ff

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for soxr-0.3.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cd65dc7b96ea3cb6c8c48e6020e859680556cc42dd3d4de44779530cce21037
MD5 8b31a0f45b68967c24797e0ddd85116d
BLAKE2b-256 d33d04a8be9e776bd7c39634066927f3eeed5134e3c3f6c1e6211ce6b69e6025

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for soxr-0.3.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce12b93747958f2769d6b297e6e27c73d9ad635fe8104ef052bece9c8a322824
MD5 c1636c2823bb2d80d9ce62759e57b2ff
BLAKE2b-256 3969b1cd2acc3642873b836e12197343e52cd5626d0820441092438c6890901a

See more details on using hashes here.

File details

Details for the file soxr-0.3.7-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: soxr-0.3.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 183.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for soxr-0.3.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 52467c8c012495544a6dcfcce6b5bcbbc653d24fe9bb33c0b6191acecdb5e297
MD5 ce5fc6cb293d98df9792295b88376e65
BLAKE2b-256 156f622f56320a24c7113e1d1149dc38e989cae171fca0d0d8b229a329f641be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27f2890528d2b2e358938ab660a6b8346802863f5b6b646204d7ff8ab0ca2c66
MD5 d0a948656aafb2493d0f9950c0d3eb1c
BLAKE2b-256 ba6d412ec405c89e3a11f7f3ea9bc1f535c989cd3585a67453ad5a996bd76605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for soxr-0.3.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a37c518c0b5d70162956d808d6c2e249bae0672e414e0dcfc101e200d8c31f3c
MD5 13d6e2a9abd2c579aa1d6d8dfbb5adc8
BLAKE2b-256 bc0484d07ef46ab0aa8d8aafe25de9a610f87d67703d3aa9b7ddc3a5ce49092e

See more details on using hashes here.

File details

Details for the file soxr-0.3.7-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for soxr-0.3.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 511c6b2279c8ddd83459d129d69f628f7aae4616ae0a1912963985bd89e35df7
MD5 d6980b487c3002fbdb1b61d3cd5cbe41
BLAKE2b-256 1b937d79c305d8af2ee1991155247ad9bfe5aa90babcc1104b954fad3cfb645c

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