Skip to main content

Python bindings for libloudness, for calculating integrated loudness in LUFS (ITU BS.1770 / EBU R 128)

Project description

loudness

A Python package (battle-tested C++ under the hood) for calculating integrated loudness (LUFS) with the ITU BS.1770 loudness algorithm. Useful for EBU R 128 compliance. Takes NumPy arrays as input (support mono and stereo/multichannel). Based on libloudness (original implementation by Magnus Bro Kolstø, Nomono).

Installation

PyPI version python 3.9, 3.10, 3.11, 3.12, 3.13 os: Linux, macOS, Windows

pip install loudness

Usage example

import soundfile as sf
import loudness

audio, sr = sf.read("audio.wav", dtype="float32")  # shape (samples, channels)
lufs = loudness.integrated_loudness(audio, sr)
print(f"{lufs:.2f} LUFS")

Performance

loudness is significantly faster than the alternatives:

Execution time comparison

Changelog

[0.1.0] - 2025-07-21

Initial release

For the complete changelog, go to CHANGELOG.md

Development setup

  • Install CMake and a C++ compiler
  • pip install numpy pybind11 build scikit-build-core
  • python -m build --wheel
  • Install the built wheel
  • pytest

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

loudness-0.1.0.tar.gz (760.1 kB view details)

Uploaded Source

Built Distributions

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

loudness-0.1.0-cp313-cp313-win_amd64.whl (97.9 kB view details)

Uploaded CPython 3.13Windows x86-64

loudness-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

loudness-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

loudness-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (133.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

loudness-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (125.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

loudness-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (95.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

loudness-0.1.0-cp312-cp312-win_amd64.whl (97.8 kB view details)

Uploaded CPython 3.12Windows x86-64

loudness-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

loudness-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

loudness-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (133.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

loudness-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (125.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

loudness-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (95.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

loudness-0.1.0-cp311-cp311-win_amd64.whl (96.8 kB view details)

Uploaded CPython 3.11Windows x86-64

loudness-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

loudness-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

loudness-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (134.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

loudness-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (126.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

loudness-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (95.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

loudness-0.1.0-cp310-cp310-win_amd64.whl (96.1 kB view details)

Uploaded CPython 3.10Windows x86-64

loudness-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

loudness-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

loudness-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (132.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

loudness-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (124.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

loudness-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (94.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

loudness-0.1.0-cp39-cp39-win_amd64.whl (96.5 kB view details)

Uploaded CPython 3.9Windows x86-64

loudness-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

loudness-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

loudness-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (132.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

loudness-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (125.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

loudness-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (94.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file loudness-0.1.0.tar.gz.

File metadata

  • Download URL: loudness-0.1.0.tar.gz
  • Upload date:
  • Size: 760.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for loudness-0.1.0.tar.gz
Algorithm Hash digest
SHA256 82bc1c4fced8b588804c01a08f7b7abb93c2e694d035b2ec22517c3e97f9989b
MD5 2bcb08f6ef231f383d87a659b344d55e
BLAKE2b-256 9a1efb8cd74bbed881305de689ac0605997faebc2557e7e12529939a42a2b627

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: loudness-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 97.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for loudness-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28ee9aaef866f1cbf92ca248aa28b7522fd7ce70c794d1c884e543c674e8facc
MD5 2558beed40815c94d2fa8cc9029f91ee
BLAKE2b-256 f31f78e938c231000a5ddb0c8c1fad0b8efd7acc647d4b325839223ea3dd2115

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da218e2974e6b466652a304799edba10c0890a1777fd3c374b9de0956a5ccbab
MD5 0cbf98986da2c296dfb4666523ba4f83
BLAKE2b-256 1256a69a82389c91496fa6adc027dd3d6e635c994385237ec1582fe9a203edf9

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca94558c4091b258ff371b4b111dc47062fc20c37e27cb0e71486fbe17189760
MD5 82712c9d2ae02ddc7df4eeee70becbe5
BLAKE2b-256 9c707b262324fb8decb2e2a0b454f560f957ede1f44b95150fba566c43612d6b

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1234dd3e86ce0a799b8da73bbdaddbfa404df547b229e474c5ce450b6470290d
MD5 a62a0b9debd5739705eb7c1cf04e6395
BLAKE2b-256 47d64af3a360103c1450520e1bf4b87312940147c9ade48820a9d88c6cb5f96a

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30d97a5dde0ef85f7d86085a10cf5f6f401116ac186eb2d61adfacc705bf427c
MD5 39494bb2479247fe1390f5b1c0a6a520
BLAKE2b-256 fb912805fdf5a1cbe3003471cc40f0eb701ef7a60e5a55944abb0824e9253898

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0dc1ac043a0517249f146594c265e530dde44187433ecba8fb7d826e7dd5b96
MD5 8549c60f06764d0598c25a88a7be3e51
BLAKE2b-256 395342275954ae7f39dedcc83ffba5c6415d90f833fef7fa04544280d05ebbfe

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: loudness-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 97.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for loudness-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 798e8fe3776cb9a983cb6e864e1c96967ccf479d0c35ec89a81e687d21a36cb0
MD5 fdb56153e8a2c58a1b29334169503006
BLAKE2b-256 4c2eb1cea801421325246dbbb391b05de3da6463d16c7d0aac23beb304303627

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc7fd40a9d64681b86e35e9b8f1a2b251be1b32bc7df6000a9cd7d9f076a7526
MD5 66c3b2b0c176a6e32c69f045bc6bdbc2
BLAKE2b-256 a27d4a8515b5f5e96aa7810c24a3b20e444096fdd75b9c0de70610afa6e3de71

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2905ca95d35869050e0e0d7c7457c33c981b9a1ee6605b7da4719817f6521851
MD5 ceabeac271610ccccec37057cda8303a
BLAKE2b-256 cec1090b8d2c57a1d9a90558b52fa3f28f9a88fc83cf4f29e549d4928d18a752

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 344cb6168fd33bd998a8d4c82c4852ceb14303aff607cd15c5e046725605cac1
MD5 bf264b958781ae07d2730d74154e7e9d
BLAKE2b-256 ee1748e0aaed7ab781292161ec4ce85b27152eb9be63681f1f77753ecb73e626

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31b7cec2e0c7bf3f9e2c328c28187996fb15bc4ebbf785b723b97f3041f6cb5d
MD5 00698a2580d8ba2ce9ce2545ae99ca4a
BLAKE2b-256 fbc4018524189d49bb392e0dc790ffb72f7098a7768e73ecdcab834ae1d936aa

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d6e56c118569fd1fd47af33f9b2efabba877e2f4568c60d64a8258b0097bf8d
MD5 1d5bd7b90b01338087282fdc7fd0b92f
BLAKE2b-256 c6168cfb8b1cf8f929608a445707c17af95f104b74fe17f2aa135c136cb02645

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: loudness-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 96.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for loudness-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 728bf9c6ad984b02ab93cf04b619d528829553128da13fffa8f2285c5d449f33
MD5 fe9dde481b8914cedde371a8b4854e34
BLAKE2b-256 6acb7464400b1f0c402d118451a9fc6ff74ab71bc0b32a5d5c882406a9ca0a83

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed4562bc727c38ef7cba36032a4d09f19ca81c73b181a1446e4e71dd315c606b
MD5 f77e039ed1991197b3e2eac19d905f85
BLAKE2b-256 94d1a6ec2048e34a3ad09bd9abe271223c18bdee598c77720fd16ea024274603

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a078015d90d8463d25a8c690203e7f516a86c44a4c9187b4db50e62f35fdfff
MD5 e1d63970a6ea98d4e02c40d8d154c5f1
BLAKE2b-256 aea4222d9c2aa5bc508f24c9e70b70871feb516623b1d1b69b99f292592e6920

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43d530d03d7a2ac2eb47c357afb5a45f671b8cef651f91d7eedc0a5a53894ae1
MD5 ca333f0cdf88906effde92f44e86e72b
BLAKE2b-256 2b038380bae75b916e99330f96bab2e14e6365bca21018d1a796fc0f42db27a5

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 089ee624109d2a6503a81e06fc1276edf42f2da1a88e3a72a3ffbc2800da7e83
MD5 e929877cb7a9d5542ff57cee697c57ff
BLAKE2b-256 f20ccb683e09d393b11a2c3e9f12d453ed186423b05de153d57fc520132ca7b5

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac643ab473eb0f402f75e381dd36fc9281f3ec9256289b415ca8e7f33a106e30
MD5 ef4ff951a2bbf943bc5cf12181c2b10f
BLAKE2b-256 ec1bc16b0c0b7d80ed89fb9693a8fbbfbff302bfc6aeed4c3d1a0b9015c46fda

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: loudness-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 96.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for loudness-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4e13e002398ec2e9947df4bbbff26e6ba27866c42c5a47915fd559699ec5d9c6
MD5 a79fd20d702d1330dd751d3cf9bdb741
BLAKE2b-256 8db029ad4f76d665028b7458f8d790c961cdf246b1c76f96bf19229b5537b80c

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08591451b7dad250129efb70aaa4b4418422e0437bdcaff53bd325f3c2edda68
MD5 d7084ff60f8ebafd4f05a5f3282ea972
BLAKE2b-256 b31f6d3fe230aa9abd262000d7ba2acf63029dd8db5c37d1c55b7cbd0de2225f

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a015d279fc52cac8fdbb248d969d768d3ce8d0aee878c4f70fa7e1284353f34e
MD5 ebfd84df6070f27ab1e629aa48f0dd31
BLAKE2b-256 90c39a4cf6f3992322a85db2f810c01c09c0223b4a19a84ce91696f64e7950c4

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c69c67fab3b2cc6d285dc613603750115b4b245167d84fb3c370ad85be2c57db
MD5 c9fddfb3161272f3a2bbe6c4c311666e
BLAKE2b-256 5e094e782b9b847667950336b872356e0834b2db7d1860818161c6640c850096

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce6d501e3a02de3b0b18e40cffd5070f9edb6c6d39a558bfb8583fa2c28f02ad
MD5 1b42c9ed2a2c83ca51aabe43646fffe2
BLAKE2b-256 068e2e8c7e5919bf174bc1fa9f5df4f4db7af2e97c6695d3ea01b21e3bf648b2

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48bdd553f0a69f3aa79a3583e3fbc9595d1ec143bf8ceca7a47fb9dad9334372
MD5 b4921e4ac3edb0e73ac93436422dd1b2
BLAKE2b-256 119a7c85d564754b35fc4af9c5c9dd68ab713b89b844c769a1632d2a85877b06

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: loudness-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for loudness-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bc41a8e323a9e9e0d9f7891a75ece90220fabb756da5b62e2ab6a4e04d27463a
MD5 ae7d107fb65ca1426bac87ed5fe8196d
BLAKE2b-256 21bc3cda770399d2b00ee660a94f36100bde1c4342ea2acf22cbd3930d75b36b

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 928a4f29de4c9c1223c994880cc7512448f0832c5f8b571c79b5a564a978fb8d
MD5 9c98126d0b91ba360f562250d348bb9f
BLAKE2b-256 5e1b100e0f9fc882bdfb155ab07a24c50c1a23ffe9c60fe00c6579828774aacc

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4009a45f24aa3b12afacb9c590ae2a5121557bfa3d8955c7a3f67d4d04c6980
MD5 6c547742eb4ab469586308e04370722c
BLAKE2b-256 30ab7d5a4de38826a2e0b4b7f9fc15c707088387999010de7ce69b0935202fc6

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 488525273ab289e1c9fe54fd66b0f55600bcd9cc308747004d7548481f93d4ad
MD5 3d06458df31dbf06e83983ed9aac8d35
BLAKE2b-256 db7a980424b707aab2448a75e01d641d16fbd4ae92d210eb83b6092ea74e98c2

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd308add32ef54c1a86dde786773ae3bb796446fe883f52d11af2197c0b8a308
MD5 a4946c579997abe5d3ce6cffd48e01cd
BLAKE2b-256 31df4ded4a00f3533ce59db11404921c4f118109d8940c95e0e636c91097308c

See more details on using hashes here.

File details

Details for the file loudness-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loudness-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98fb2ccb020e95539e0502877769b9bc2f067cda61c832524ebbf205f2a66287
MD5 0ed01b962777155d9159258cf2c2fe50
BLAKE2b-256 3cd0ffec1d33dc412a431a983961a8c7b3a3fff2305dc9b9cf229231b3e51498

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