Skip to main content

Python bindings to DustMasker, a utility to identify and mask low-complexity regions in nucleotide sequences

Project description

pydustmasker

pydustmasker is a Python library that provides an efficient implementation of the SDUST algorithm[^1], designed to identify and mask low-complexity regions in nucleotide sequences.

Usage

pydustmasker provides a DustMasker class that enables identification of low-complexity regions in an input DNA sequence and mask these regions.

Here is a basic example of how to use pydustmasker:

import pydustmasker

# Example nucleotide sequence
masker = pydustmasker.DustMasker("CGTATATATATAGTATGCGTACTGGGGGGGCT")

# Get the low-complexity regions in the sequence and the number of masked bases
>>> print(masker.intervals)
[(23, 30)]
>>> print(masker.n_masked_bases)
7

# The mask() method returns the sequence with low-complexity regions soft-masked
>>> print(masker.mask())
CGTATATATATAGTATGCGTACTgggggggCT

# Hard-masking can be enabled by setting the `hard` parameter to `True`
>>> print(masker.mask(hard=True))
CGTATATATATAGTATGCGTACTNNNNNNNCT

# The `window_size` and `score_threshold` parameters can be adjusted to tune the masking
>>> masker = pydustmasker.DustMasker(
...     "CGTATATATATAGTATGCGTACTGGGGGGGCT",
...     score_threshold=10
... )
>>> print(masker.intervals)
[(2, 12), (23, 30)]
>>> print(masker.mask())
CGtatatatataGTATGCGTACTgggggggCT

[^1]: Morgulis, Aleksandr, et al. "A fast and symmetric DUST implementation to mask low-complexity DNA sequences". Journal of Computational Biology 13.5 (2006): 1028-1040.

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

pydustmasker-1.0.0.tar.gz (11.7 kB view details)

Uploaded Source

Built Distributions

pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (436.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (456.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (534.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (451.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (281.2 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (437.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (459.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (535.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (453.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (308.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (282.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (437.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (458.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (535.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (453.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (308.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (278.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl (440.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_i686.whl (460.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl (537.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl (456.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (311.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-cp312-none-win_amd64.whl (135.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

pydustmasker-1.0.0-cp312-none-win32.whl (128.2 kB view details)

Uploaded CPython 3.12 Windows x86

pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (435.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (455.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (532.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (450.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (310.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (306.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (280.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

pydustmasker-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (231.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pydustmasker-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl (236.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pydustmasker-1.0.0-cp311-none-win_amd64.whl (135.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

pydustmasker-1.0.0-cp311-none-win32.whl (128.3 kB view details)

Uploaded CPython 3.11 Windows x86

pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (435.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (456.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (533.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (451.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (311.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (306.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (280.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

pydustmasker-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (231.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pydustmasker-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl (236.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pydustmasker-1.0.0-cp310-none-win_amd64.whl (135.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pydustmasker-1.0.0-cp310-none-win32.whl (128.2 kB view details)

Uploaded CPython 3.10 Windows x86

pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (435.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (456.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (533.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (451.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (311.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (306.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (280.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

pydustmasker-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (231.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pydustmasker-1.0.0-cp39-none-win_amd64.whl (136.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

pydustmasker-1.0.0-cp39-none-win32.whl (128.7 kB view details)

Uploaded CPython 3.9 Windows x86

pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (436.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_i686.whl (456.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl (534.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (451.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (267.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (282.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pydustmasker-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (232.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pydustmasker-1.0.0-cp38-none-win_amd64.whl (136.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pydustmasker-1.0.0-cp38-none-win32.whl (128.7 kB view details)

Uploaded CPython 3.8 Windows x86

pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (436.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_i686.whl (458.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl (535.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl (452.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (281.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pydustmasker-1.0.0-cp37-none-win_amd64.whl (136.5 kB view details)

Uploaded CPython 3.7 Windows x86-64

pydustmasker-1.0.0-cp37-none-win32.whl (128.7 kB view details)

Uploaded CPython 3.7 Windows x86

pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl (436.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_i686.whl (457.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_armv7l.whl (534.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl (452.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (268.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (312.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (277.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pydustmasker-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (281.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

Details for the file pydustmasker-1.0.0.tar.gz.

File metadata

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

File hashes

Hashes for pydustmasker-1.0.0.tar.gz
Algorithm Hash digest
SHA256 03f875b3cdb595394eabed823d80d4da50d687f3ade4a017ff0159ce277ae331
MD5 8580c7136d1d7c1fb6178e73b28bdcce
BLAKE2b-256 fa1f0cd7f85f31c192288c982c8cc19416fc48af3ae25c5c87be8400e2d8e2e2

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89752b14c300b79246db03aec80969bbf5189384a7808bf45108656f16330a6d
MD5 ac098204e116347161f7376d7dc932ed
BLAKE2b-256 2bc3c960346bca859b2e9172ac63a63db0044e790a84648544a56c8aba6e7981

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6aec9cdde7a074bff0cc5726caa36ab324d2e58816483391deabeb1b8c14e98
MD5 e7f428733cd47487b473b2f9ffe6e605
BLAKE2b-256 533b16f09bbf4f882957810f08a9829e7363eedcb273f4cf83151e3a3b9e7c54

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8396b6fba0ebe839664deb96b11e28319a68e74797b48013139315f8ef5cf1c5
MD5 173b609d168f1c48fa813fe8e735cbbf
BLAKE2b-256 3fe42091a5b1ac58552ebb687b81f58c353e07e309e6219c5873319e8b3cc966

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66743087d7b5559836eda6535fd1cfa73bfbf918465d1adada9e4a1597851ef7
MD5 1cf5896d937b81ee916583a3ac265c3d
BLAKE2b-256 9be831d8314e73562d886d26ee7d163e028e0ca420d179c95edfa33913c3da9a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bfb42be796459b9f62cd93594925c5071e1b81d6bd87ad4ebd0a87397fdb934
MD5 c3f3e23c1ee9f6eac9f161f2539f21b7
BLAKE2b-256 901cf2de1ac091a6e62126dc859708237e7e95ced1eb0fcfceb9d5b3c485d3d5

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f756a8dd2bd4f67ed254bc707cb6ccc3327daf1cac3df8f72ac99422b229e967
MD5 4a2903fe6673cbdbd919ca86cbf9ce01
BLAKE2b-256 b39008620865198edf69bd75235df0a1c100641635eb9665a538b17247ed1d8b

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eadfa7eb78ec7bf78dd1af9c2475c476a02902fc0804db3c7530f56753aaac11
MD5 c4b6f9d9ec6c6952e8254598070d240a
BLAKE2b-256 aeecd852b1d9517280ab9c54eb04200e8711479f15973d42b5db02abd9aa1b58

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9b5ac3ecd7765f5b4677f733e54e1a9cc7cadf1763747f98ccf1a3c179afa88
MD5 8472ee3360ea5c74d20e39da007958cc
BLAKE2b-256 d0bd29b09e7afebfdf654974fba5090fe97812e222781c050b1c7884d0345037

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 686c1829ebc2fcef2bf11f29f09820ed47b424614582a3085d21049e9939d6d4
MD5 1ebfb4a0ca5aadaaa94c4fbb29fc6e5e
BLAKE2b-256 3b13141d9246666421400ec32c41ab69984835a14438063c187b1c9d895cf542

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d4b2ddc67ad3353f0d9dd5d5b497e49387d6ca54bfac368d1ace1334ff8270c3
MD5 dd228c982ff8baaab3fa581e086234d5
BLAKE2b-256 57a8071949741bf2aa8b08f3231a01a56b5bdcf1d213a092b59ede9430198466

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc345e3bb66d2baa680837605c7bbcf0e308643819f8d035468973fde962a584
MD5 eaa2ca2302524397ac2c782611440957
BLAKE2b-256 5da6393d6a54cec8ece4cbbe9ccddeab4c8aadabbbda24f58e3d3630ef2e9edd

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e634bd4f270082da4e48a0b2ad520bf4e5035cf6b88c2c41043796e70bae9f83
MD5 ea183107551755a1d7b33488085649b3
BLAKE2b-256 65c589dd96d2d68b6c6b9b2770e49e61eb5e3caf24cb7b866bbe8d75ceb19211

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbff3c11076830eb4602473e7d0eba59eb2076e408fdaf7f089184b8832960d3
MD5 6789506e6f483004856694a362e1dcfb
BLAKE2b-256 2472926ff4c51e257247446b4aec3281ab9a1fdcec301066d9295782334d1df0

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87eeb65891a4dcba94820a22d52bcd4edc4185c6d0a5f2688ebe139c2285eca2
MD5 51cc6ea43e7b66e18c16e661545ca755
BLAKE2b-256 7e96eb448c2e17baaba03cfbecd28c802c7a0da033c36f707799d13c757d0492

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cad37e00d0822ba43189afeb733f449b49fe938c50e55590a19a0d4881dcf160
MD5 6f6f8a08291c37292262e0b52acc4d91
BLAKE2b-256 879bc7cc2fdef226f9b742582781e3fb292444fb103f64b7b12350e19a45c18a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54c3b5775f2b31522f2ca6889b34a0d07ecc65ec5c84d48f8c7f1558ff43366c
MD5 870c3401cc4f19f7f2642e7ce3c0a705
BLAKE2b-256 c40668d10a538a0e1b8cd42b3a0ad02e3eb151fce2116c3f4bcd2182adeed003

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19eade920836b2674f030e7c86c28da8652d31cfb16d77623eca89419936629e
MD5 9d8deecf5a599b087bb7f60b7b39eab8
BLAKE2b-256 f1455710f596ecf2acb0babfe232ceee79d3f0851ddffde3311d09fd22b477c1

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 031aca9e63b4191313d26ffb00a97caab83248cf8b0868d5f0d5ff65c1c381fa
MD5 83edd5912857f74fdab650760be23e2d
BLAKE2b-256 94d6d1790349b7a3b186cad7401981a924b807dc59fad871914a9b303672d83b

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b194a2f8cbb6a782c1f0fce012c53f452d94e0b1f8bedd2628d0cd8c2c6820f1
MD5 10d55c62967c8747262112fcbf3eb40c
BLAKE2b-256 f7a615ea84361983fb779b75cb6628082bea9b17f7f970a51dd2b50770a4d2e9

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5056e1dc8e7f20e54af063eee44674d6585d2f1625ee476d1ab15f28e6eeb29f
MD5 3af614e553c5fef26e5b1c92206e489e
BLAKE2b-256 88c7cc2e1b1b3dce1d236be25ca5d91eb43bb043df25c5b14a403ed98ee2934c

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3056a91dd24346bc1d75492919d56bbfc44c263a18ccf8b8c7da14230fcc8a1e
MD5 d73f45cf2ff9916d0d3ea204e335a133
BLAKE2b-256 062cf222876631a2ef973e4b87bb71861413929ebfc9af229b2b32bbe8ad2ce6

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d62c4774bb3f9790c758337f64255f49afd255d1f1640f7e3375874b3d9de5c1
MD5 9b80b38772bf3d0178e22c348175162b
BLAKE2b-256 b3e52ebf913f3a96c3c23bd6be6ce3eddc490510d8cbf043f9009f65ae0c65b4

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e6e9c136017f1100370e97efaad05cc937b2d8d3294fb134435d94d9624cede2
MD5 bd400401d0f44618702c2927368cf964
BLAKE2b-256 9e4af99389bee5ec050ac80af62d29637334ad1b9927cf2c7a4e48ab928a470d

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd802f95315292a999d2563fd93ba4a4ab7300a2879e8421144f522d08f559e3
MD5 87307e02e212688429971e68f1dd1676
BLAKE2b-256 3220c5fc926ec86f234ae708b5e421ecf12d31cb29ba08d5751217b97a6ade29

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a3bb8ebc379d6aa0159600aa1d36e1ebe1479add323ea91598fff28116b6260
MD5 1584475def0b074d3b98bf487797036f
BLAKE2b-256 af77ffb3693d0c07819f57cb026c05ec0d70fbdec734d8e184e90d9287098898

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f48b40d64cabf60ee380b09f1e8132c449ef6d6acc3c44fa6660558f204576d4
MD5 02d47b37f9ba0cd8911941ff66b3344e
BLAKE2b-256 507863b67f4c61b2269956efa66612f3751f1f91ad91e73fed542d241e2a53f1

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf0cba2ec31b954bd018a8de44af33ce908805db599281ecdba4b326780a625b
MD5 330d8e6ae68df2e39b9ae14e52cb7365
BLAKE2b-256 c2a49d956e1b017218eb9dc6d5f3f032faed35817064cc5b7439b1cb9c053f20

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5fa8c527b5c9c9a3a82cb3805eb43d989050e682d9054b09775903a388468eed
MD5 a4db70a30f462f71a89cda4efd74c96b
BLAKE2b-256 6123bf8cc1e9315f01b4183dd4c48623d4b293312c0e046132fe23c2e2175383

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fc36be7305db8ae43e87942b868cba0afdb4d5bbe1f8df18235235b7305a4f2
MD5 1d3a6f3671ce9a15b2afa88d0ac5400e
BLAKE2b-256 0e7190abad4ae917d92a4fa51d60c049468b4e52272b2a321516f38b649831f7

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0d72c88d87b0afe2af455d1e384df18a1f835a0b120a2c5c35f2bca51d3f8e6
MD5 4cffa850705ada92ce9ec233243f73da
BLAKE2b-256 006583fb78cf12e9e53561900ef6a14b7705b3f56590818061bc9f1ee46c1bee

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6faf20954ce62f48db8c78463e96639ab72a4b3ac45c0fc0bdeabdc7b401fac8
MD5 7cf64081cd0f7edd878166fa03d6a2ce
BLAKE2b-256 519abb2d9ce45cb57f1a581c8f0a8d71b699105ca135c6f4ffe6580429f1fb0e

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp37-pypy37_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 105a8dcc4402c46df067fa27eb2ed18c43fbea03ebca82e4c9024982bf8743eb
MD5 fc3c23aa5e7622505f1ea5e2c1f38b10
BLAKE2b-256 638e56fe13d8dba275479fd9a8b5d79a8813cdc9623f985c43d0f41ec30d32a4

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d43b9a759309925a89b03cb15161eac507be9ea7f32e9f438af364ea0d08c73
MD5 dbb3d5f7e715a4c009aae2b3376eaa46
BLAKE2b-256 ff0d5cc919ce86f14dd93fab4070ad35d3dc3762f83590edba8fbfb9ec8da11c

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a59732f9a8baacded8e3a0a583f87d7ee423285f43cb6ee746a1afb32af6cc44
MD5 a4acee94cb17717302fdc23c23108e17
BLAKE2b-256 b6d6cd3c8e38d049669975d9a391c91b01a48acf9ed193506d95b18cd8ce57fe

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b3be4295256a366172604fc7dc8fda11936b2f555bd9ebbec068a5eb26fbc71
MD5 df9907b933964fa796e38e9cf4afc3b4
BLAKE2b-256 ca9d2f4e1bde975ffe5ebf4753a026fb42f352c533e2337b50d13d9c78c88a39

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 671508d0b368a6eab955a361dd7f8cb732fa6ea1ad5de3cb7edc87a95da43d57
MD5 b279d113668b8044242c98d05855f174
BLAKE2b-256 da266868f7f7abfde4bc5e55c4b7d3a15c20347a071fcde015ef27a7cf69275a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 cb61f51552bc2e99afe9d18c77778a86364778b3065c802cceaf374aaa138df7
MD5 65374ba08551664fa41eec1ef897197c
BLAKE2b-256 02996513b9f4853d56f47de55558af9bbbb900e4379a80a16025edea84b439ec

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d6d490e10b8829ab38a29eab81715f1274caae2862973acb58088cffc22d6c3d
MD5 691c1fa5dd06a3b6583fdf634f8ef21c
BLAKE2b-256 dfce38e798d4c661705a7a78629f9e4dcf2fd997da0f335835319cc952b4715c

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14f758a6c5f7f5570b094dea13bba2b97b9192b4ddd50bb2a01b4489d0221d4c
MD5 71e0d865695e04244ca95c078702341d
BLAKE2b-256 cd17509701034daf73c1538bfbe27f209f06be00c42d10b3f428b9b46e5a0b0a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a440b5ebe10e6fd5163832669bdd12c9aad5d4c830146754142af777885d48ea
MD5 243cacf281b319f3036dc1ecb080d73d
BLAKE2b-256 9f30a7e42ab8d2cd9ff4ab6d61edc72e31065b563f6de776da3b96fe63378b22

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 493e5798722e1457aa85f9040058234d9ebada717369c988a43a8198783ead8b
MD5 8fb6eefe8d05aa761c55056dd7c42370
BLAKE2b-256 4efa4cdbcb11adf4d9f4691736d2c96a327339aac4ec71b2917e875a1d31f1f6

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec32255553eb304b920abbe3587077e7739536f9cab12cbf21c5f9a4f72a4f4b
MD5 1b8052b076add3f6903b3def4683bd20
BLAKE2b-256 b92e3b517f1113e48798f7a22275ecc2952d7f5a185cb06df78ffb4345d2ed77

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 584041504583855518d291a10bf8972bda6d92bb9ed69b30a29f6f1b3da1479a
MD5 0b9468fd55837352b1ccca16b77eb7c2
BLAKE2b-256 8b063c6ec5c054870c042015dfe4f78f0382211339ed132d5b71d2821e162224

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a8720045ec615ae28c1180a8404eabddbf70ded22eaf1ec3b9480f8f746a591
MD5 7c94f9d65f3da91fefd2dea0cea848c1
BLAKE2b-256 a1cbd78538c4e4ced970dd3fa69b6c1171d6b99f883267b23aaf766101a84c9a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b71c83208bba849c8a30ab8f93d76abaac85e4c232158ec7badf91e41a973fa
MD5 91afb4b5766e028a1451db3f3432dd70
BLAKE2b-256 0329c690117bb03c114f3b42d067c2fba0b8c07dfeabf8a35cfc7758a651918a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dfc0901332e6551c719520e99194b78fd99c11ac7ffb78e05540b1060beaac69
MD5 5a566c338e2320e8e67b0cb4984f7485
BLAKE2b-256 c4677be17d696c51cbb47fc7929dc1d7b9d6d53e78888ed23d0385acf0136570

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 071d23aa46446950f16f0068035dc8438e32a6ea2d6d1eca729428d26948f17f
MD5 5a128d5ab74af1b24ebfcb60e3137723
BLAKE2b-256 082dfc0f6924f02159cc8e32b468736044307a58c9716f9aac6ee99ec77067b4

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac89e75c1af1182cd9aec95cb26ccb27b2f915ca70ab511c7a7e69d823523ac2
MD5 b8449160b3d0b9512e02f5de0e3864e0
BLAKE2b-256 59364aa1883adb1de381d7f338fc9a47044176194255da61e4b98220289ae274

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c718339e1c6692cb91607e5c73dffae272a93f014a0751dfc4ed6758a001210
MD5 b1fb8e0f3bf59fa7313ea65035590b99
BLAKE2b-256 fbe72980c0c429f52c4cc64417023959f3aa21acaf1591a554d620691b8d30fd

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2cafd64f45a0660aea2e580393e484d5c54af5dc75c901a2f8ed54850ad79722
MD5 88c34d5b937e0e5b885a4f4aedda6dd5
BLAKE2b-256 e1da2b13d507dd75d78c1d17065aa914e44534404d1ef322fc0a98e21997f571

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4e3a021de9e0a70f87cdc495da23e57442be5241b8eb3ffcd4fd4b90e137c016
MD5 e3960f8a6a453c0ee4a8d55440c7a7a8
BLAKE2b-256 068c05e799bf9d71bf2682e7f4a5d7d1bce3fabb4ba8c2856946b3e0ea3ffb6d

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 5a7b78f247cf4c2a851016e4fe7e33a11a1df12b6c9f08c5a1a38cb79e946c5c
MD5 1ca915c8f7c218745eaaa326ec251fbd
BLAKE2b-256 e112bdb86db64536baff44279095d4fdcfe6b5628a3dca53efe030705b5a0334

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00ea21abaec8dde767b4aaa98bb2a4cd77dcfa0870b0541fd4c623975ef33261
MD5 0cd7e657f03f85c54e9c0efaad17bc13
BLAKE2b-256 10752cabedd58018fe088ec9730eb8ae2a3c7b3a26599d6e06687d260fa3a5cf

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f37aa41405b2855d8a9e9a5b3d04773dc3d1900a2e65d6bec259953c38beaedd
MD5 3c445b5bda4728e6aa55597e442adc5d
BLAKE2b-256 4b31f36594f10d811ae46fb142dd1541f9683ac060c9680913b23fb908ea47e3

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe189e477208b6282285be9b65e3ed49a7e12899d2052e6927d49e3616dda443
MD5 923e62d69567a3ac97ee780609dec825
BLAKE2b-256 7407a4f31d456d1f37559d0c12a343d6d14ef250035b3da412c50ed1fe9ad6b3

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfc300ee47d68a3e91aad0e7463698e8752cefb5791445d18bef7245728569e9
MD5 38e6e38c50fade970f9550c68bc43126
BLAKE2b-256 23082d93d66e26434e2d74ab4d640a1e510dcdbafcd3549723d6a90a6b3daaff

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e621db56de0ba459629066e72a8a6491de962ab3e09d2ab18dca54ebf7c40414
MD5 f17091f3ac6d51750fa1a8c3991d5377
BLAKE2b-256 0726e7cd67c6b0637a2da75a3ea8860fe29e549d53a28495d8131c78aa629a3b

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ca912461c254a4244b4dacdf55fd88c82582dba84735142a38129dd56537143
MD5 dc4661ecad075741b2be3e3a35abef45
BLAKE2b-256 5d87c622c4c04e8ae161b775482bf0e45815be6211972970eb322f7fc308c7cf

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18ef10d3a900759ca4cb6d10aaecfcf269390838e764809dc18542ba214ef899
MD5 a698f2ee8b69ffddb77cc6722da9c727
BLAKE2b-256 19a08f176214a9fafc731fa5d3c23446c9dff7c8d455a7c373b5ac81b9ef0c04

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbf5fd6e6b62255600edda51c53a4f6f5b3701d286edb143f526e93be088f962
MD5 3dff77528156ed4374f68a7f3f3fd289
BLAKE2b-256 9076ca6a56792b21c8adf4a330d3dc2686d65c0c624423a1ca3bab6f62409801

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7db60424f9b0be4691639230eac91e0f5cf52423b941fa8021c1f1cf979c90de
MD5 7f9b57d323ab04eedb7fd0db59030136
BLAKE2b-256 eddce707813f0d0c1307d8e70b9578480e2a02b2fdddd5ad968dc82cba1fe9ff

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27e559569cffce6f6a9cc12319bb81a03d0f3c08169e16210980dcf471473753
MD5 6f0221a5050bf483856ec8b6999cd4de
BLAKE2b-256 86b556f652d69bd3a05882b05a1c64fa28ea8d3ba5e5f8621b86c71b09b9df44

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 751eb381d87ce7d2530fdd802f09b58542cfd456a7f03a89fc0c5ad0da15c310
MD5 281293f97bcf429964ec229c1fa82a57
BLAKE2b-256 89f2b2ddc7830ea04cb5b510801d69379def707bbf748ed011d1dd4a3329ebc0

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 096f9fdd63a6c27a827b7f7b5885656c5234317c3f256ff392fbfbb0d42d82ff
MD5 73a3b01fd96bb39cf4c96ac23af61b42
BLAKE2b-256 16b822d4747869afd911f841fd33b4bb2da4fb2eadfd6d7c8370d6d51c13c465

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 50dedd28a8cef9909a77a165425c3bff2aed99eb2c071a40fc5661681227d13a
MD5 4f843cf9326304aff29831f4d4cc14fe
BLAKE2b-256 38a5af560bcf3cee5a710d5165ee59982e32d1a0b9323310caeaf73f3ea8ad18

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 f74e01ead804013138ee2d13da2204f8381c952de913316b27e2ef7fc78faf2c
MD5 bba48062ee969994e61f47f3dd530972
BLAKE2b-256 b1d94b30a4a2b64b293c8dc1cad4da2a83618d60a6b5c89bafb2d062bad85aa5

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10c109ef62c4a32472983bc53065b8ea4a1cf39e1debb134c0504a500fbb94dc
MD5 45075a8ae0c7735c1c352bc103fb3651
BLAKE2b-256 b2a1827b2410d6d141ffe965cca6b6184ef1f6c6d9ba9b57953f86831f6750da

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 886b799d721748a07adf61cbcef29884b0d8cfd63cf1920f4ac306df876e8d13
MD5 b09064d4432c5f35a0485c5d971e13c5
BLAKE2b-256 cb6069db20803a96d95e0c2f6f73694d8156b006c8bca37d4d0a5cd7df170918

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a2e3fe1dceb0d2a48658c366aa239fe90983a1948a39a62acb9d86f7d53ed66a
MD5 7c01a0f4062e4c53021c50418b0cabed
BLAKE2b-256 4236d20ca69ba822f30b8e917167815edccfb1d28c57ef0e3129a3b25540b0fe

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bb78a29653eaaaf2c5912f195745d90451e7579a1f45ddc44e209a68e3412ca
MD5 72d86d645681ad490017630076c47627
BLAKE2b-256 abdc3b93f39ededc6b6f06d5e391f209fd5721daa7cc5da627953dbf224e20f7

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abdbbe76f00691af098ea6b1a6460f9995d9b1c43c1aa1a5862b60b46bf6f469
MD5 575c50460d50e82ba59dea88e3960790
BLAKE2b-256 99973c422fa51a80d5e5b28191018e9bbd669457f49cbf2ca6d0091a79575605

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c5ed6ee83da534d49df6f6c67572e7db5e9908818e6252906a3f1452ef3be01
MD5 81cd7be057a5b893a2aa20efc1872a5d
BLAKE2b-256 c25744f99155387fb498dad96e4b3e8d3073ce2412178f5e473efbf08dd28fe1

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63494e4c773d9a0c23dd7ccfed677f78bd56eb6cefa95b7c0893b679d460f746
MD5 4fa2c5be773826b560b45d221d881359
BLAKE2b-256 65f884385565f556f709f1c2d525a8d11606e67c6e62a77c429fe2dfb2e74271

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc4265f25e56f0259f6bba40e7e836ff48b3224bd6d3a3c923d41a498223ebd8
MD5 a05902aee8310f7dc4e427cc8c5d986e
BLAKE2b-256 dc413ff6b61b37aad3dc83524c553571b71d555a78ebba258657a9134bc7e83f

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6dc88736712f70ffcaa8ecbde349c5f1bbc0154aa59db5b21466569813e1133c
MD5 866194536576eaaff070c1c58d6a1ae2
BLAKE2b-256 4b20d331ccf72e598342e7f2ccb121cb992cfb9cd6538c943192e605d0b6500a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7ff85435d59a9cca28d318c8117ba5bead422da07546e4dbdc03ef57783abeb
MD5 4705c8d2c3c459c8fd20fe421dc3fc7e
BLAKE2b-256 ea734617f7c6f49745b65b3566354c70777093e6162421bd4db8f12228c1f8b5

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 568157c5936a448abfb97be10449b82e73d44bf773d0dac83fd89cabfd631fb8
MD5 e5155ff577635cfc1ba1ce2af78090b5
BLAKE2b-256 bb081f21be0d5a2e202e831332936eb4401be853d204cc68689f17e4e80e4288

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fad99a73250e72ef9f40cf3dfe301bc5c340c8cad607f1943bbd1d522c0f35d6
MD5 5ac76f4c4620987de9a5778b6a042dcd
BLAKE2b-256 6e709ba300050fb77bb19e303e2def3e9e2df62f3949c87a669afca5164a658d

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-none-win32.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 82cfc2c8fd1b62bb74b2ec07e49b45d5921248206dd4358496335b5b42d71c4d
MD5 a8a0951296fb5e1938983eee93cce696
BLAKE2b-256 cf8796fd4d35fa1538809facb527c2741232edacf73f4a54622c2b356c82b10b

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1d99584a624e02d0f7d3487637cbbf9a795000c08eb6e909bdebbb9c20ce2cb
MD5 6e2f756f5f93acecc916d1d9dbd0ccb3
BLAKE2b-256 d6cb066f541341c16b21537d534bd9700de7d72a1c1a7c9a1d5e5a459af42e33

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8308408d4525300ae0d0426a8dd553079898d0e766be1da344d06fd7ceea6dd
MD5 88d5f777c093809d84035e26b8c960de
BLAKE2b-256 5bebe4e6c42a33e6405d93ab4deebbb736fba2aeff234a9ca8b04b1bfff7e006

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 faa10470103fc13406c2f70721520c9588ee8c31494c1e3704f0ebf4897c6bae
MD5 48955bd9fe8bcfb0be86bea0968da40b
BLAKE2b-256 680da174147ac5c780207dde4b0a8db40e30ef2549ede7dfead6039e8ef35c82

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fff89793df41b13e2725004d473451dc5450bed590e3b6a4342c0ec22349168c
MD5 342d801bf0a0db8f77ae88611f13aa18
BLAKE2b-256 37ba921b8b29d9e4dce810edf093735e3028b5413d833f432bf5f9a8c8059d30

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60a7d7bd2f77da0ad6f00fc40b787d57aafa265ef9c31bd52d86f049381b1bb4
MD5 cc913ff7887b50c616877c857c5f3502
BLAKE2b-256 1d295a1b75a8b2dabe5e61e594c44d4119f7dde9632f68c22ffb525b98c351b1

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b66f7a8a4b544d3348e88bd77620be1276860baf91db533ba517287449978063
MD5 e9c1485a6b017fbb776966685cb589af
BLAKE2b-256 485b4c9af696bc79878610cd5a813fb989639468bad6060b375470a160ae365a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 787cf791909a81bf273ca6bc5c74b51195bf5867de57ca0da16fafdc20efd20e
MD5 b1bf32bced7ac7c95b72cb154a55ed53
BLAKE2b-256 aa6964d3c9575b20494e8eb5593d42ffeed4f1513b32b5d00adddf09326ef75a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 856efcc4a75b1cbe9a933f55fb7dad7a0e0275e553c71c24adbaf3ae1ad150c6
MD5 2f46dc964e1029b3d2e2eaef39e1d114
BLAKE2b-256 052f01ca6936ea13f4bc3c1e849e43d39ff4ecb8c44a02ab8b3844390a395c92

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82f472ea34e26816f5171108b79ab020a7ff6f57fc2c7ce1a8a7c69413caf6e3
MD5 8a957ec113636065498facd5467cb987
BLAKE2b-256 19d792fc574e1d049a6c96fb068a9574c81ac074ae02a634165eb0774bdba66a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5c444a7fdd965dc2b5bfb2698b0650c30941b5662e07a7dda49ab884d6ff1e4
MD5 c57c9b6a211e024564fd0a2b6743ee42
BLAKE2b-256 362cc2f4ca79e2847d2b47217db1d7ce00a419ea9133858ee2a7da4eeab5c115

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2ae6abbfaf9119fecccd78d526d0bb7dc1b0e5a3442e31e69cca09a9b5d4a46
MD5 e0ae2425977b874e125cc8a1f66383be
BLAKE2b-256 c2415917fff6ad69f15e7949e80f89e6c4388fd029bfcf66d1bfff4b089f088e

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a7f484dc1f1338637b747bd115d1184ae905464e4dca28e9376cf16a047bcfe9
MD5 e449b081d4c939bd48c42e81d9cb3bcd
BLAKE2b-256 27ce9d746207c0cc1a7e925fcb62a191c00aa09c1cf9b2454daea60cbc3f72f9

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5463e2f8478a70f853f22c2871c12bed8f207fdb46dd761e898781f968eafad1
MD5 8bffed70a4144969e9b2a0158dcf997c
BLAKE2b-256 1d367ce57836c839d66d87d305ebb2ad9cdd41feff3d02c0094d31105301a6fb

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b0637cef616b7a00a5a1e95181a7ad98eec1a0d2937ed9f13d6c6437488f96d
MD5 f146e7381bad7c16b284e1785db649c5
BLAKE2b-256 1bc6e883607553817399ac18e0c4a3ed875bbbd1b234588192b48d539595714e

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4e434d3f36ff64c49ac29f2ec93c7e5b77133de6b991d65ff91631423c0c88f
MD5 0c730dc9e5dda977791488c22f2b06e4
BLAKE2b-256 e1fa548d79e9a225604428838ac522f533f7ce341769d833ee3ebcdb72586505

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 391645e4e1233b0ca7c890eca11c7f29ac47fd491bd0037b0c65e4f8ba668577
MD5 b46bfe84bbf5c13867842d41ccb128b0
BLAKE2b-256 ece30ef45e0314bc0ca029308cce2d1d3c924b437ca55f0d72967cc9993203e8

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01627fac5390a809cd0aceae2465ade57acb0687dc14f2641e7a6e1b4a816435
MD5 d815a9201cb229edcced3e9143917e05
BLAKE2b-256 b071fcfe69b007b5bb30d83631b1b9ad9759aa2b4f8311403e2d030cfc60e72b

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 631c53447ead3a8dafeed1a2453173215cf404cff618c3c85461af28dcfb9e57
MD5 51d6e7b3a89280916efce613a6dbc504
BLAKE2b-256 c6f202be5b3da17b91d3464fe82bcca9015399761ecf11ee5d8e227b38000cd4

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3cb97a8af6b5d3bd1254c3bc96171b32889db157139a6b65caebb706369a82f7
MD5 d2348c87a3588f8dd8fadda20d0a5b50
BLAKE2b-256 65c4f0644d98dccd33be6194c0fb3955ed4906003f6619cbf930e32b022a805b

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c81dfbe2bca208f320c58e43fcfe0fe00d270390b6bb861cdb221dc9269e5d45
MD5 f3d981d2ef53f9ea9b0d44fa0be629c5
BLAKE2b-256 b677989d2a6d06ea63e489e3f89c1be6829ef3a5aa6b83ef38de49eb39d9dba7

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 975b43cfd5a616bfb1f55654f5f46e2942f17032f97dc452b1e1c7cecb7fbaa4
MD5 e38b1a9f1bbb7496f922cc3ac54d1292
BLAKE2b-256 bc8a5b3798e4b5d544a2cc71bb2ec7b13c294546b830bb43383b1263d1491561

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99f63fc1f42fc48490510e67f3abeb714544db33eaab09cbf6ed12e8c855c0c1
MD5 d7725bc260ad3047da93097c3b105622
BLAKE2b-256 f26901c5564632ef5b05afd7c72b3bc6ced64c58ed926f9f90aac0eb36d3c309

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 02d08500151566b3888f6e9979955185e342a845d7933002449bb7d4bd0938b3
MD5 1ca61269216afab27457cade71169942
BLAKE2b-256 a48b2b77bf5120f213a2372965eea31a12d694a5ebe6b2872c03ec56621744b4

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c116a6126631e1d8cbde91d9caecf59151256a56a8f30e946a5fa77abcf2835
MD5 82d6febb9e6da1a79a818659a8c6172f
BLAKE2b-256 4a1fd8d97d9d9ac28c68f817b253cab5b0896d6bbca0cd6dcd75b4b53bdbdb68

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-none-win32.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 24dac5e1ed6a08b43fb633188fa1c1d59204ccb03278347fbc1ce211956fdaa6
MD5 5a83d53d45d33cb6ca8ded73a50378ab
BLAKE2b-256 a0a9d41d92da0b57e762805679c7a18a88ff09bd43262f410181b5128871200d

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3f976d7fa924909852c48b3750706c17e823da079312a8481f8dc5218c6cab6
MD5 63790f43dcdf2802b27a96fdfe116dd0
BLAKE2b-256 2ca0f75bacb575f1c727ec5579800204c489e6438e1e98ef9f869739a249b39a

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6deba69ed5910cb04583c8ee4fa4352f05b7c0d349397391e14acbc1bac46cd2
MD5 376ab272fd93e7128d110aa186e3c26c
BLAKE2b-256 4e5921771a2db1215ea8f04b0bc0808e1797ca63283ff9e9f6127576d6005b56

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5058fc709420c795d5b7987de18cb79e02cabb376d48f1eee01cef20b16deeb0
MD5 539897bdbf8459d2a214828c4e81a1ac
BLAKE2b-256 74ee2b45e313c0d066d0e595024af86ec0542f23edef0bf16f25abde677acd7c

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b173b8678288736a9092dfe3030263839d793044299d4702ca772b176797aa1f
MD5 317a6bfce42d90a4c8eddf75e49001b8
BLAKE2b-256 2371f73a6b8e6f79df4e4cebda74528ad9b3221658600dc8ee29aa9cd9d40314

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b3d1b53a6a7da070a9e0ef2bbfd984322ab18c2d58d45d039cb3dc9a223e0b2
MD5 4c0d5865a7f6257749814b9d9eeb88cb
BLAKE2b-256 09f8319388209589459aeeb39b91ae3c1d8c5ed0b8a7c670de6fc897950f46a4

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4a0e038151ae5070b2a98b2ea6a87e23d7f385a8a58f0db7474e692e2ea20a7
MD5 373d9ffb713b3539cd0ee8188fd21a9a
BLAKE2b-256 1b0e90e2a7c695d80ea8b62bff085e9e19d70f42808e74fdac5a1a4bef1f5318

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6740eed5d86a9e1d7b08fdf7c42ab0692f997df0aad4aa09f3be6ea5836306d
MD5 6ddd454fc8f90dd063623c5a77a40b03
BLAKE2b-256 5bc20958d59e7cbe865314191c7cc8e54ac8e879f1202d75b2426e39d8d46b81

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3290127eed0542dc34d6fc03c3b08677dbe5a3ab5cba06a64711256881713b15
MD5 76e2275891bf89069eb86a50ca640bfc
BLAKE2b-256 70e3f6bbdc1d9163007cb67028b9d04208678e3931a5bcad00966922fe14175f

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84388654637b4e79deb5aaa01418e2845affb77cb0f2de054bbb0e86ec43a119
MD5 788cf81a3aa3aa3d108e6eadb6fb5e32
BLAKE2b-256 7fdf977b60a0f1aa4c2fcbcd02b031970d1c6d38281a75fc6274f04c119bd31c

See more details on using hashes here.

File details

Details for the file pydustmasker-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydustmasker-1.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53bb5fba25081d9f0d914f8588bb1ecf5ee153d3757af9e7e078ad12e6a7e83d
MD5 7ceb86749d3fa398d92d8bb7f09f8f5c
BLAKE2b-256 934d766634f592f2d7a6bd0689cbda5a817413a9cf55307bcf9ba15886e2d485

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