Skip to main content

Denoising time-series data.

Project description

Muffler

Denoising Time-Series Data

Installation

pip install muffler

Usage

import muffler
import numpy as np

# Generate some noisy data
t = np.linspace(0, 1, 100)
clean_signal = np.sin(2 * np.pi * t)

# Add some noise
std = 1.0
conditional_noise = np.sqrt(np.abs(clean))
random_noise = np.random.normal(0, std, t.shape)
noisy_signal = clean + random_noise * conditional_noise

# Denoise the data
window_size = 100
stride = 25
denoised_signal = muffler.denoise_linear_regression(noisy_signal, window_size, stride)

# Compute the error
error = np.mean(np.sqrt(np.mean((clean_signal - denoised_signal) ** 2, axis=1)))
print(f"Error: {error:.2e}")

Streamlit App (An example)

You can also use the streamlit app to see how the denoising works. To run the app, you need to install Rust and Maturin for compiling the code. Then, you need to create a Python (3.9 or greater) virtual environment and install the dependencies:

python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
maturin develop --release --extras=dev

Finally, you can run the app:

streamlit run examples/app.py

License

This project is licensed under the MIT License - see the LICENSE file for details.

Citation

TODO: Add citation

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

muffler-0.2.0.tar.gz (18.3 kB view details)

Uploaded Source

Built Distributions

muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (513.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (561.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (578.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (541.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (516.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (513.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (561.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (578.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (541.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (516.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

muffler-0.2.0-cp313-none-win_amd64.whl (319.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

muffler-0.2.0-cp312-none-win_amd64.whl (319.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

muffler-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (511.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

muffler-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (561.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

muffler-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (576.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

muffler-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (540.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

muffler-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (514.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

muffler-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

muffler-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (443.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

muffler-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (450.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

muffler-0.2.0-cp311-none-win_amd64.whl (319.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

muffler-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (512.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

muffler-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (561.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

muffler-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (578.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

muffler-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (540.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

muffler-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (516.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

muffler-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

muffler-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (445.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

muffler-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (451.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

muffler-0.2.0-cp310-none-win_amd64.whl (320.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

muffler-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (511.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

muffler-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (562.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

muffler-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (578.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

muffler-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (540.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

muffler-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (515.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

muffler-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

muffler-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (444.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

muffler-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (451.0 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

muffler-0.2.0-cp39-none-win_amd64.whl (320.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

muffler-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (512.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

muffler-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (562.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

muffler-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (578.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

muffler-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (541.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

muffler-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (516.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

muffler-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

muffler-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (445.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

muffler-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl (451.6 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

File details

Details for the file muffler-0.2.0.tar.gz.

File metadata

  • Download URL: muffler-0.2.0.tar.gz
  • Upload date:
  • Size: 18.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for muffler-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f4e9e8092e5500bb14ba62f92038364a5377dee844d5994796090de8685c5b68
MD5 6ae1c5d024abe2f6906b54aa49611cd6
BLAKE2b-256 c63e4cca8cda4a74b487c1ed276beb4531c345f8d32337cd5fd94ba7f07c3419

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 655301c287d96ddd70a6ce3b63119561df71f1d59daaf24ca1ef38cd60178d86
MD5 685299c0e9901bf07fd87580d1ddffc0
BLAKE2b-256 f72b90b0f53f725c1ab5c47eebe7807f95069bb1a9bbb9b4397cf18700a8fa31

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc0bba238b5141f1866a2275fcf2eb81079d0b4a465800b95402d84b20402c0d
MD5 05feada249b2916601b818b76cea8cd8
BLAKE2b-256 67573a2b9b51425beb8518aec9d4e916248a9bf351a6982072d4fbd8b6173a0e

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b98c9791fbaa6f6a715cc687f39c8e0866d35ee86473db15c5887c4b241ddf3
MD5 be615447b6beb36bc754e22d80062076
BLAKE2b-256 3d4d50e7762b707f6e0de56c2d9c31144b49b6029ba4fbf3fec75edbd9de55dc

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33b64e05311faec62d4fbcd026294b70b26561d782bb7d417b8623c9e96de6ea
MD5 e88d227a0d577352a98520278f041799
BLAKE2b-256 78051978f51a5868a7d2d88152dc73406c908dff6ad4696fb6a784295dd8a709

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7fc4939682c56bffdaef64ef1cb4eb71bbeba57df994f0a2cdf6bb0e6b31300
MD5 6858e1230770f56d560f6ae73aeb5011
BLAKE2b-256 f2b9f949b27017c15e10df4dbbef38d9e4df53410637b0d2b12aca0b2bbf585f

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d74189f9487df23dc3aac5ce173ae37e4d5222401c12e9ebea9ba8e8c3659bed
MD5 666e7e89ea40dfcfd9373df9e0df3703
BLAKE2b-256 40ffa85f444829c04e3e3c4552207a6fd07658fcac3c916e05ec0a9fb70af445

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c12f270bb2070b8f8f88d5c458dc00a62b86924ac048b8a7de8736510e68a2b3
MD5 bf96dcc068eb9c1966d6c35fe4697112
BLAKE2b-256 bb0a7d89b73449a652aa089fd771ab93eb769d999504a541b1975dc947e03099

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63d32e4f7013ee305d1a657e924df5c940eda624d21df3e348a2d5830d22fcd7
MD5 65b73c10f9c7f6c40200c71d6af9e316
BLAKE2b-256 82e892bf228cbc2194c1eac3f47b8ee86b3f42d3b4d45f73445626f3ad3e5321

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96e38feb87d154c61768b20f01b16e40cca2ee705a62380de7a9eb4d284316fd
MD5 675d928fb96dca62782fb9a0475fe2be
BLAKE2b-256 fc029a56564d670d8c39922f2af914c1ef2dc821037758eb6aef67e28ed9a009

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e411cdeef16bbd13fc9c1f294cd3b75759e123a4cd91d23ef224d75057da7567
MD5 1571a7fa56c863db6450f4d7b9b4fb78
BLAKE2b-256 fba28f1de32bd74d4389da0beeaf3bfcad88256d9f9528d9425941d798532fb3

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5d6fa901f173fe012b05f6306e0966757b11c1615a99942e568591967402f4e
MD5 e8dc45fe06f93e0a37fc322fe367dc08
BLAKE2b-256 af3be94410148622189b5fdc157b2c839ba1ceda2d472e216a039877e0dd1c54

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 348491f5632d4e11eac3029ab8444733f38ff2515cc72f704e76038b26b9754a
MD5 55652306b6adee93e3b1cebf5a5980a4
BLAKE2b-256 be64a861817dd38b52527bdac70c320e7243bc2009f56f1a2df1f93b305dd916

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 974f3fac5a2ccb1a5e40f1141f1d660edf3d3d4ecc6cf5bac616d2cb8c85edb2
MD5 684eb64c7e7278daead78e1034bc80d7
BLAKE2b-256 c29ea3d629be9a411b1c990ade05ddac4a18f1b5472db2fdf0e721a409f76120

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 0c42a934cfd7a958dea9f22119ad86c38dbb1304952a670504119a8098507ba6
MD5 1db6a46ffde0365f5ed17df63348d942
BLAKE2b-256 03ea4fe45e9612fb767a90cdbaa5c8930310be7acc8b02b09f4fa83488250eb8

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 404d635097ee7f8e521127878beaf128abf27bf793450c3c5fd8c52a26da66f7
MD5 677c52abaef09b3fd87ce81ffa7d3e69
BLAKE2b-256 efee901536d5ba45c9c698ed58bdfff3804e6332f5cde6a5dc14785ae926cc8e

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 311d126ce383cbeeec22229c716162ff0b213e92ac797c0a84ac2c3400634297
MD5 6df5c150e5a92d564f84d62da0149b0f
BLAKE2b-256 2d9d71f64d59d8a1a07f093b07340926831710ef389dd443d634bfb96ae6289b

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5210a783d04a1d1fd4b2b2bca0bac7c5eee5a7acfdaecf7524e33deac181fc08
MD5 a1712fd5666279cef1f035b150d89c4d
BLAKE2b-256 37bc808dc20c58f3a8a8abbe6ebd1dc0e79482fdc42113a3c284e9df05e5b7d1

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09b5a08b7aaa984097aba63a63aebf41fd592b1cf73d5e8f4d75b523d0bee267
MD5 5d5ccf91d33dc0b961c86b8043cf4375
BLAKE2b-256 c666fca7c9f631df2d81551d891ec64932b6b58728903f01f738d6629d01c5c2

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26a19136635f4fd5297ca29b8dd5888f2718189c84b3ec0efb996a654a032fda
MD5 5868ab0d11211cf4160a913f2557e880
BLAKE2b-256 430d7af9a9a28eb0a762531200743746fba1928f217c79b169f9abcb60149027

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51dc5dcfa232fc00c6fc204e122b084f3f97a6dbfa2345ead871da2d76b82df8
MD5 113c236e8d57e7d51c52b78ce7a2e92c
BLAKE2b-256 63bdf7d6ca33c0db2b262e46b7b20b8d3bf867c762524c88218a0a3169f954d9

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb2ad9cea36e64789a4d71844b714f73572214fca337920945858c6af84e0a91
MD5 a1d86b8dfb926c3b095a872c56abff37
BLAKE2b-256 8c87f443abdea88c48b9745751e3ccbb8e75a0a9a1d16a2ce44946ca8ecf3f08

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12d54b63516c3abb655a1c938452d89113bf2083679899dd4b9588b0533afc47
MD5 f8098ba90de05e47e32bb6d47117c47e
BLAKE2b-256 75e89bd946013ad700dc0ffcbfc3f11fde96b0bbbcc421bb2884e853c06ebdb8

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4ece21803683a88faee6f88c4d9ec143be79463b656a821c2d7ba93fcecfb25a
MD5 8725d4b866399a682da08ab3e13c8dbb
BLAKE2b-256 cbcb59af84609bd238fc8938dcc7bdcd077755defc46e052ace6f5541bf4ae8a

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e418b41a2263864405311819bc8ab4f4be51b11ce1b2cc83a1eab5c8988f7239
MD5 34028bc3b732a2bfafad4398963f788c
BLAKE2b-256 97047a3a97f1b55876d058195088a23520b98822aa328f1eb9587c016f2a5ed7

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d2d32efa0b3897daa29869d82c1ea7c9fc7952764ec10d3e921838594a22d9b
MD5 19fd6aaa3983f6b3c8b3749c4047f35c
BLAKE2b-256 f81d15bf4734a67e77d6460c08896c515c580b89299275df2b436e955aef136c

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 423d481e087b4b64736d77afcef1188b7164e752d5c2b6cb235934c1f4a8e535
MD5 f7066046b5819114e5b930bec24ea516
BLAKE2b-256 96f7234d037f2ef0b10aa12bed7b1aad4ce6da0fb977c1324b9275695e5ab0fa

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed0f78694b0bb6fdda981df3b0173ec62d34dce6d1a736f371c5d321cd65f0f1
MD5 43fb928ab01f0568f9321469c22c7a72
BLAKE2b-256 b2c9eea26998a539213ab09b988f2826698864e9a99551d572cb675035d42841

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba6275e0a178001fbb0a88234951f0987e15d019fb59e5573b9a836113bdb458
MD5 8209bdbd95feb2b1da4d4fa17b69dbf2
BLAKE2b-256 9efe26ea16849b3da32fe348b097a4c50eec49297e5c73d09dde519f3e2b7f48

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 239ee43caac082a426ca88e00a783e3c26ac6d420c1d985a27f68d64a98fe412
MD5 e728d183c489ac3a2b7fae39919409d8
BLAKE2b-256 3108e602d789d36f0387cadfd22ce82d4b38fe6c77cfc19837211ff9dc0d880e

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcc06d20aec7c0542746a1e0e161fc0333bf15bcc9b66ef57f67c23421535cc0
MD5 fb98fd4cdc80e05c074cb438cacd091f
BLAKE2b-256 2f8523114c2d79c8c863d884d95fd0fbf8ebddd4917209fda912ffebfeb5a0a6

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03efb7c949b5df02105f67409f1440df8a5fc1b09857c1a7e642a7e943619017
MD5 af6360990352db4f1c0be69240050d83
BLAKE2b-256 c200c0888fba1d9f5d72fe53867d5af3fff30834f0c558ee536530c336bd7ea1

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e86beca7b48c43b22b5bdc5476be358cbfd35c4904d9497d3f529c3908afac79
MD5 383a9632a751860b241009a3aebdabbc
BLAKE2b-256 d7bd35436f921bf52af828bdbfe3eac4aa85499e5603430370d164e72aaf6f36

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6ba055138c736be82a2308e228e7339bed478cbb62a1ddaaa9d9cecc45b73a0
MD5 ac77066f28942d26bd33ffb728f92363
BLAKE2b-256 2559d98609d0b2a2daffaccb4af5209446d6d8a478fd4659b9e59586c5c7da2c

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a53e9c885670ecf45e10c417a082bd31e7a3f337e082f34d294fcc3ab67220eb
MD5 a52db4fabc85919fe5134dd3e2aa2e70
BLAKE2b-256 582c87e625506471afe14f93ed3828430852342788a218a93bfb861d96595dd0

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3021c110debe99f371174cace6d40de4125c79dcf75d93525b67c6d1799ff591
MD5 4520388c8bfad9757247bc5ba46405ae
BLAKE2b-256 e05533ec4cd2e24374074947168b6e2902696a97f480c5d3e5e90c09c9a0b14a

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 635ef66ed73e825171b51c014c6dbe08b9a6e5dec6ed8d2c8957299f0d7f16be
MD5 4553fd4fb6e3b78d1581303edc7cd6e3
BLAKE2b-256 6a847122c97ace1abaa3e63396547fa1974f8f5b85ec1a0aa00806d55e1619d8

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18e7daeea3ad338c5960a47d4c8224b25ba3e7d582e1fad1b1db71c95597fc9d
MD5 080670f07b6d7df3b7c5c03279a269bd
BLAKE2b-256 a2f3fec39ca3b09038956828a3309154b8e0a5442497210b7f98590a9db8d13e

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67b5d6d25a0ab5bba439db32e622802041218b61e37e792b9e6b0cce86222c33
MD5 dee557f296dcd6fb0222c7d7289806e3
BLAKE2b-256 4336f88fa63383f5bb7767d708313ef83866c74a457171d9cbf8d0909cf32457

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7828bfc10986cd3571be289df7ec0f3c6cf6708c6aed6658f8c252be0388b8b8
MD5 46d2e12acc6ad2761281006c227c2ad0
BLAKE2b-256 a7495a3cc27fa01f64b7cc86166cb346e271e9d4cdb3d62b84c708dd055514d3

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a50274eb09f200ee785a80defa6f2969420e88960d6aa23a7e20fef9bf134c30
MD5 508a2f1d77731dbc721d145c3657940b
BLAKE2b-256 70dc5e68fa63846dfd53f3f7199d64795621efda47e5c5141be28ccbe0684907

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a6010e6db71380c0f1210929171814100e292d312e0f816105720f402742ce26
MD5 66d8acfec23b62151f7f99f042e4fc2f
BLAKE2b-256 38c0f2efd7b99078cb3d2d0258abc557aacf4780867ebe36e5722d9c0565bec2

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 526606f707ae4b44d3af4c2c827a3a7d9a2e670f3f84c1a8372ab7699634b1aa
MD5 9eff5739ca4e446d214386c2795166de
BLAKE2b-256 9f9dc8c65f9dd29ab337b436ef1c831ef56f247275ae6da15222620cf39704e6

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5243e067e8c9a4b8285e36a551d8d2b9d05a613ebc5e68b3ef3ee6d0c3c9bba
MD5 232897ff6bf9b7d34552378c2e93bdf4
BLAKE2b-256 aebcbf68926051dd0bbc80513122cee5075c39419697c75852b1c87af95f76ab

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf0de87f86ea4644c85e0f1901d674138acc4e6b77dccdedf4e0d0d1b77ed58c
MD5 c688dd938164943265b6258d7f4ed84c
BLAKE2b-256 a3811602398613e32932164ee431c2a97ee94c3d3491dcef899fb0a8ea35d98d

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ba5855808a7d690e2bf5c76d20ce08235ec5dcc874e37d2fd6d23abe0c46e7e
MD5 c8cac6fee76b297ffcba6527a6411724
BLAKE2b-256 5955e0ba57882f4dda86e3c354d6aae222e2979ce287f0e4781bd2e840e9dd06

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aba55793a0dcb3ed45bdd9255ad7392ab8efde755fcd522a8c90cf03b828fa7f
MD5 ef773f7c88cdbfe77d325f0f4647518a
BLAKE2b-256 436dc4dfe99ed488d26467c8173b2f1e11628bdb46f02690144ba904645846fb

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e3d18db12656f1f0ac67a91df83dac8bb7c12a4c7150ce2c039fa6f8e36238b
MD5 cbdf64f6de183e364b8da1745f6a9913
BLAKE2b-256 79d4e0dfa5d54ce8fb298224d65f6890cd2f394a8410213c87cd241d19cadf21

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e3d15420ac855e928545580a26fa8900da6c284c1e5af675877ebe1332a39be
MD5 18cb08230c3fe5ede21467fe7377e9e1
BLAKE2b-256 1f49e9ef94bcb9a87ec42b101591c5d143423ea41e2f3180932fd67b4310530d

See more details on using hashes here.

File details

Details for the file muffler-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for muffler-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2796fe7a37cd6fb9a41b949ecbebdb2631c29ab2e8987073e0503cef29d27c24
MD5 94e5707365b91e4c4fd90d9c0c82bd23
BLAKE2b-256 a4e6b6626c3a0b1060f965bd9c5b5c94e4740619df5a0387b1e4f677574422ae

See more details on using hashes here.

Supported by

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