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,          # input array – mono(1D) or multi-channel(2D of [frame, channel])
    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,              # input aray – mono(1D) or multi-channel(2D of [frame, channel])
        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, ...])

📝 More code examples

Benchmark

Sweep, impulse, speed compairsion with other resamplers for Python.

https://colab.research.google.com/drive/1_xYUs00VWYOAXShB85W1MFWaUjGHfO4K?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) 10.8
torchaudio 13.8
soxr (VHQ) 14.5
scipy.signal.resample 21.3
lilfilter 24.7
julius 31
resampy (kaiser_fast) 108
samplerate (sinc_medium) 223
resampy (kaiser_best) 310
samplerate (sinc_best) 794

Technical detail

For technical details behind resampler, see libsoxr docs.

Python-SoXR package comes with modified version of libsoxr. See changes here.
These changes do not apply to dynamic-linked builds (e.g. conda-forge build).
To check the version of libsoxr, use soxr.__libsoxr_version__.

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-1.1.0.tar.gz (173.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-1.1.0-cp314-cp314t-win_amd64.whl (187.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

soxr-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (244.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

soxr-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (211.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

soxr-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (169.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

soxr-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (208.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

soxr-1.1.0-cp312-abi3-win_amd64.whl (174.4 kB view details)

Uploaded CPython 3.12+Windows x86-64

soxr-1.1.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (240.4 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

soxr-1.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (206.5 kB view details)

Uploaded CPython 3.12+manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

soxr-1.1.0-cp312-abi3-macosx_11_0_arm64.whl (165.5 kB view details)

Uploaded CPython 3.12+macOS 11.0+ ARM64

soxr-1.1.0-cp312-abi3-macosx_10_14_x86_64.whl (204.1 kB view details)

Uploaded CPython 3.12+macOS 10.14+ x86-64

soxr-1.1.0-cp311-cp311-win_amd64.whl (176.8 kB view details)

Uploaded CPython 3.11Windows x86-64

soxr-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (245.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

soxr-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (210.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

soxr-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (167.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

soxr-1.1.0-cp311-cp311-macosx_10_14_x86_64.whl (205.7 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

soxr-1.1.0-cp310-cp310-win_amd64.whl (176.6 kB view details)

Uploaded CPython 3.10Windows x86-64

soxr-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (245.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

soxr-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (210.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

soxr-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (167.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

soxr-1.1.0-cp310-cp310-macosx_10_14_x86_64.whl (205.3 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

soxr-1.1.0-cp39-cp39-win_amd64.whl (177.1 kB view details)

Uploaded CPython 3.9Windows x86-64

soxr-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (245.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

soxr-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (210.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

soxr-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (167.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

soxr-1.1.0-cp39-cp39-macosx_10_14_x86_64.whl (205.6 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: soxr-1.1.0.tar.gz
  • Upload date:
  • Size: 173.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for soxr-1.1.0.tar.gz
Algorithm Hash digest
SHA256 9f228ae21c78fa9359ca98d8a5e8e91f30639e438e574133dace62c5b5309e44
MD5 074610f450a019210c441268fb55c0ef
BLAKE2b-256 ed1127cebce4a108f77afea7c80545115536b45e3f11ebfb914f638fdd9ba847

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0.tar.gz:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: soxr-1.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 187.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for soxr-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e17d4ef9b0185214b2c0935605ae63f827ea423bc74964be44763d68d2b6c21e
MD5 2dccd87e858e85343e7e0bfa5f1f785f
BLAKE2b-256 d39ef7af5fae841ffe32ed8440234ea2ad6adecca3bd92b6101076268c429000

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp314-cp314t-win_amd64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4977323ef9c3aa3c2a26ff5fe0191c84b8fd759daf7afb1f25a91a55ad8b730
MD5 384b5092c676a90b37cdbe9fb1a9b65f
BLAKE2b-256 a6d6cc3c80ac9b2289da4cf46c5d53b05e4327e6f5560a25868d06f9e2213af1

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52c9ca84e3dc656d83acc424574770e20ea8e0704dc3842d4e27b0fe9d3ba449
MD5 8d69efd92d17d4b89ec6a0e9c2aeac0e
BLAKE2b-256 39e480cd9aae0645513db1076d4384e8b2d895faf5009218b4a04348012c54fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 feebcba99ac99adb8009d46c8f4c1956b8c167576b0ae8a6fb47502e9a6f78e7
MD5 c02daaf48f6807fe743919326ca2935e
BLAKE2b-256 3086600cc31f982288167a59972746f117790162012546f995a32b5a55394b16

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a941f5aaa0b8abced24318105c1ea22576afcc1138c19f625716ce4e2f76ad64
MD5 4c2bc64e8ffd1736cd31912da28608a3
BLAKE2b-256 76cd77b74f1e95af0e11e52e9a034421aece7f7b45afd15a909afd41d5a5d102

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp312-abi3-win_amd64.whl.

File metadata

  • Download URL: soxr-1.1.0-cp312-abi3-win_amd64.whl
  • Upload date:
  • Size: 174.4 kB
  • Tags: CPython 3.12+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for soxr-1.1.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 6ae2a174bffea94e8ead857dad85999d3f49f091774dbad5b046c0417d7092f4
MD5 8588f409d362727703111ea785d3cbe4
BLAKE2b-256 b04d621e4150e4815246ad552d215a8a294a90143fedd19ee442cf82d3b3abc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp312-abi3-win_amd64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b033078e86f3c4a658e5697fac8995764fad9e799563616b630136b613167f1
MD5 c193a7887e653b83d63837fa2c3221b2
BLAKE2b-256 5cf10e55195893228609c9a08c3b13b7a83a46c3a992cd00d3304f0f320cfb07

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf98c0d7b7d5ef5bf072fee8d3020e8b664f2d195933ea7bc5089267c2e22a06
MD5 81312e661d47e01a95c507a3c3161b90
BLAKE2b-256 882b2e5eba817a762a2ec589ff165b8bc5955b25a0ad140045f7cd8e45410543

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: soxr-1.1.0-cp312-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 165.5 kB
  • Tags: CPython 3.12+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for soxr-1.1.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6a7ad82b8d5f3fcc04b1d2ca055562b96af571e1d4fa7c6c61d0fb509ac43b4
MD5 b22a0472f49cdca3aee7b6e2af60c280
BLAKE2b-256 03dc200013a74641f8774664bbcd2346c695c05c2e300ea792adcb40a293eed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp312-abi3-macosx_11_0_arm64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp312-abi3-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp312-abi3-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e0e09fa633ce2e67df08b298afced4d184f6e753fc330f241022250f1d0d61da
MD5 5d8d832c8c3b99390e023ce3d351f880
BLAKE2b-256 068af3da7973b5f1b05d2d7e94d5376b881dcbc05297900cae6c3d33d95b209b

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp312-abi3-macosx_10_14_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: soxr-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 176.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for soxr-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae30c48ac795378cf23ba3c7c640b8ff794af714ac388b9fd6b31a40b39e6e86
MD5 ec3000bf5158964d6733283bd2f0a980
BLAKE2b-256 8f29371467eb86c7ba6810df0bfe9409bcd9c52ec5615b111190fafe23e4d2e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3da87e3ffa3e41823d873b051c7ecb2acebd8d1b6b46b752f5facf10a0d84ab9
MD5 e6d8ca78735fd319b5e49580d3576c4e
BLAKE2b-256 8647d5964551ca818b7f0c7ef7f3899056263b60ef098a801066350a9672ca8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1577865e993f98ffb261257c3060fa76ec3db44ed3f181b16464268000424464
MD5 3ed28545590e4c5d08cbde82bbc51fb8
BLAKE2b-256 94cb06caa463b8181ec1981bd6376d4a873748b7008193188b8cfb60391eb131

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for soxr-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd30f7201eac896ebf5db7b09156e6f1a1b82601900d29d9c8449bdad8365b11
MD5 63f77ff0665ef2eaaed71abe480ccfc9
BLAKE2b-256 2f94216f46096a85b07d1e6ba7fd44491402e912a3d688cd4f36f0a600ca155f

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 34cc92208c3c412c046813e69da639c04a792c6a41fbfd7d909d359cd3e97a2d
MD5 c18a1ca9243c32df56f71f4d10e715be
BLAKE2b-256 8e493e6bc84f87439f222f40b616e9a29a170f41fb564710ea510df19dc26907

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp311-cp311-macosx_10_14_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: soxr-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 176.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for soxr-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b2e94c713b7d96fb92841947b785bcee6606124bc852273fab70454b51bfe270
MD5 a1c2359c6cf45e2897b39131552da8db
BLAKE2b-256 79c62e47f17fa4461ba047f5f38a592f39120c21e6af8786268b0be2ef870318

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26925618945f1a44dfbd783cc572874f0685e9ecdf46b96f4000f6b8c9c8b825
MD5 b534fb408411eafb0b6ed61e527d904f
BLAKE2b-256 3889a6550d26ebeb17f83e03cf6cde2d084b8d292900a027d43a6696cbce5c5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 588c7de1abafe59e66face9a074514658ac0398c85a774cdbb8efac131192692
MD5 314f79edd96ab5454da675dcbf01f9d0
BLAKE2b-256 b3aa52759e223bd5b4923e518d6312161887c96d42b81df5425198cf9f3371e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for soxr-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9443e5eb82152d8952422b7285692192cc7dcffa5218bb511b096203018bc273
MD5 152f8079580ab961e2b4156626d3c2f1
BLAKE2b-256 d50e79e479b38f014757af877755c6eeea10c8750f66ef1e2231709f1d5dc7ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9564d82f7fa6bf548e5f18bb86235dff20eea8bd30727b64d49783c95c34fb8d
MD5 8317179cec9b6a9cd7a6def6d92f015d
BLAKE2b-256 75966b335638dd3ef4e5d50b9a0a7497e8433ab10fb45457497010074dd3c734

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp310-cp310-macosx_10_14_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: soxr-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 177.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for soxr-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 474aabb9283f177e899747510d60661730538052fca0ed93a943d4686d6655b1
MD5 bc0c50707006c1a47d14dd29e359e475
BLAKE2b-256 19f55e9356b04909b575fb109aecdfbd72582a71884b42de0b5bb99da2a3020a

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp39-cp39-win_amd64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e11e26f1718b5c2e5b96f2f71b9f00e31d247b065289661e3a6996c758669d9
MD5 b64199e4782ad5e689fa3ad2746adbc4
BLAKE2b-256 b3309f66c6a57219fe1b7ea391e7c90ff26faeac9d178780fb26d50305d75322

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for soxr-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 868a24d864c25024f60ca964f851a759f2ada5352608fc194d927b7facc2e28b
MD5 299250bd27a9bafcc0ca29494bfe3f97
BLAKE2b-256 8011199024e5832e798d918a4062c0d3b0077bbd20bfb643a5513c8b2d11bdb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: soxr-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 167.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for soxr-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33525740fb7dbed8b09970bf0cd4219b365538845053987b11cc235b20562e09
MD5 0448b1f3b767c066c12625bf64b74d2f
BLAKE2b-256 9596618ee3e271b0e450e96d7d2ab6b44f4fb09f46ef363f79430ef306b62a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file soxr-1.1.0-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: soxr-1.1.0-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 205.6 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for soxr-1.1.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 318925f7281df61dfa7f17fe343952eb10cefd3954f2423a733fabe3a517bab2
MD5 6892aa30803f06ef64fa60587b370693
BLAKE2b-256 b94c8de382d55875e8f5474eb36af08e24e778c9197bfa8b632e8de9c6cd473d

See more details on using hashes here.

Provenance

The following attestation bundles were made for soxr-1.1.0-cp39-cp39-macosx_10_14_x86_64.whl:

Publisher: build-dist.yml on dofuuz/python-soxr

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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