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 enables efficient detection and masking of low-complexity regions in nucleotide sequences using the SDUST[^1] and Longdust[^2] algorithms.
Documentation
The full documentation for pydustmasker, including installation instructions, theoretical background, and API reference, is available at https://apcamargo.github.io/pydustmasker.
Installation
Using pip:
pip install pydustmasker
Using pixi:
# Create a new Pixi workspace and navigate into the workspace directory
pixi init my_workspace && cd my_workspace
# Add Bioconda to the list of channels of your Pixi workspace
pixi workspace channel add bioconda
# Add pydustmasker to your Pixi workspace
pixi add pydustmasker
Usage
To identify and mask low-complexity regions in a nucleotide sequence, create an instance of a masker class and provide your sequence to it. A masker class implements a specific low-complexity detection algorithm and provides methods to retrieve the detected regions and to generate a masked version of the sequence. pydustmasker provides two such classes, corresponding to different detection algorithms: SDUST and Longdust. The SDUST algorithm is implemented in the DustMasker class, while the Longdust algorithm is implemented in the LongdustMasker class.
>>> import pydustmasker
# Example nucleotide sequence
>>> seq = "CGTATATATATAGTATGCGTACTGGGGGGGCT"
# Create a DustMasker object to identify low-complexity regions with the SDUST algorithm
>>> masker = pydustmasker.DustMasker(seq)
# The len() function returns the number of low-complexity regions detected in the sequence
>>> len(masker)
1
# Get the number of bases within low-complexity regions and the intervals of these regions
>>> masker.n_masked_bases
7
>>> masker.intervals
((23, 30),)
# The masker object is iterable, yielding start and end positions of each low-complexity region
>>> for start, end in masker: # (4)!
... print(f"{start}-{end}: {seq[start:end]}")
23-30: GGGGGGG
You can generate a masked version of the sequence using the mask() method. By default, low-complexity regions are soft-masked by converting bases to lowercase. Setting the hard parameter to True enables hard-masking, in which affected bases are replaced with the ambiguous nucleotide N.
# The mask() method returns the sequence with low-complexity regions soft-masked
>>> masker.mask()
'CGTATATATATAGTATGCGTACTgggggggCT'
# Hard-masking can be enabled by setting the `hard` parameter to `True`
>>> masker.mask(hard=True)
'CGTATATATATAGTATGCGTACTNNNNNNNCT'
The identification of low-complexity regions can be tuned via algorithm-specific parameters. Both DustMasker and LongdustMasker provide multiple options, documented in the API reference, that control how low-complexity regions are determined. One shared parameter is score_threshold, which controls detection stringency: lowering this threshold results in more regions being classified as low-complexity, whereas increasing it restricts detection to the most clearly low-complexity regions.
# Setting `score_threshold` to 10 results in more low-complexity regions being detected
>>> masker = pydustmasker.DustMasker(seq, score_threshold=10)
>>> len(masker)
2
>>> masker.intervals
((2, 12), (23, 30))
>>> masker.mask()
'CGtatatatataGTATGCGTACTgggggggCT'
Processing sequences in parallel
When working with large numbers of sequences, you can run pydustmasker in parallel to process multiple sequences at the same time. This can substantially reduce the total time needed to process all sequences.
The example below uses Biopython to parse a FASTA file containing multiple sequences, which are then processed in parallel using a pool of worker processes from the multiprocessing module. Each sequence record is submitted to the worker pool via imap and processed with LongdustMasker to identify low-complexity regions using the Longdust algorithm. The resulting intervals are written to the output file as they become available.
#!/usr/bin/env python
import multiprocessing.pool
from Bio import SeqIO
import pydustmasker
input_file = "sequences.fna"
output_file = "lc_intervals.tsv"
def process_record(record):
masker = pydustmasker.LongdustMasker(str(record.seq), score_threshold=12)
return record.id, masker.intervals
if __name__ == "__main__":
with open(output_file, "w") as f, multiprocessing.pool.Pool() as pool:
records = SeqIO.parse(input_file, "fasta")
for name, intervals in pool.imap(process_record, records):
for start, end in intervals:
f.write(f"{name}\t{start}\t{end}\n")
References
[^1]: Morgulis, Aleksandr, et al. A Fast and Symmetric DUST Implementation to Mask Low-Complexity DNA Sequences. Journal of Computational Biology, vol. 13, no. 5, June 2006, pp. 1028–40. https://doi.org/10.1089/cmb.2006.13.1028.
[^2]: Li, Heng, and Brian Li. Finding Low-Complexity DNA Sequences with Longdust. arXiv, 2025. https://doi.org/10.48550/arxiv.2509.07357.
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pydustmasker-2.0.0.tar.gz.
File metadata
- Download URL: pydustmasker-2.0.0.tar.gz
- Upload date:
- Size: 31.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
874bfe4edc97a91bc705fb9651f09ddca44f62282ec302b0b163edde9195eb0b
|
|
| MD5 |
e1be35f1bb8698e1fba73dd695ea7c0e
|
|
| BLAKE2b-256 |
e5ca0b137368cd08a692fd8c6189432dcf9e57a661f39abfbee572d71586fb39
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 536.0 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3c44597074dd055eaca3fe355563f65c96134d3045ef841c811e6c94c4dc34b
|
|
| MD5 |
765ba20a352cf02e922e0469a0f0f17f
|
|
| BLAKE2b-256 |
1154c22e016b66b5b7af29fc2fc571f84f20e4c86e20b88465f3d37fed940132
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 567.9 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d221268f854e3867f8fbf1df1491418394579782350ac5dbad076772a46c8806
|
|
| MD5 |
7d2dae21212df17b8b15e93485b6230f
|
|
| BLAKE2b-256 |
c9198a75dc523b3d25323df7cff1d5efdb46515682a5f6361b126b69f6549992
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 602.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1dd6f1a162160536ae08701c1ea62c9ea0a5e0be7d40818b487606d052bdeaa
|
|
| MD5 |
788d227bcc6d9f6cf26e43be3679afc4
|
|
| BLAKE2b-256 |
ec49328639a9be0dabaff435933094f2419170e9fb911f6d45d5924cdce16cee
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 508.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
983b8be7bd82535ebaed2786181d78780f7f2fa464a4ea2e45f61b8d920d542b
|
|
| MD5 |
319ec73fd93ad5b51fd1a29440b6d50f
|
|
| BLAKE2b-256 |
40c48ecbd6e22d5e72301f0558153d3b62a40ed522bc585450f988a019aa5e60
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 332.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90fbc35c5414cfee03f1397176283358c491eb1a8ce72288ee90ee0d3bde4f58
|
|
| MD5 |
f677b00ed0b1e831c33611d8b96dcbf2
|
|
| BLAKE2b-256 |
a225c3b4dfdcba6a7e005083d3766d8c568acf13857b92b94542babdb8e8af98
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 357.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e63ee9f9b90c0169cd57f5361a9be1152ac1c58b582f6a63fe873596dc8aa63e
|
|
| MD5 |
707dc8e2510dab5cd60ea807d89a67dd
|
|
| BLAKE2b-256 |
0a3b19dca84867223748e34f89a3e3506aff6c20a2b237a27422573e987a5941
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 455.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e472d1538f500147adfcd17440684812102ebd8ee2088e799dd22e770ebd8a86
|
|
| MD5 |
2f8f27953c561eb1a2fba919ee2d0f27
|
|
| BLAKE2b-256 |
2b7464e95d06935944b924377947dffcc0c54abaf46a8d6c9e8fc75ff31361f7
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 331.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a173cb711cb9ff2c85f07f224eb2aa7bf7e93d0da808de2300d16e533c0de736
|
|
| MD5 |
18dbe629567c571fa8d8c32ca0d918ed
|
|
| BLAKE2b-256 |
3d9edb0cd43183a029f3def2033c3c088d1ee54402be52826a1c4dd3daf1bc75
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 326.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b791a010ccd895064471a099af632c05bccd514bd0a39c2632190a64d9b68e02
|
|
| MD5 |
3290567274132349a8f1054da2734dd9
|
|
| BLAKE2b-256 |
148a13a167de38167b6140fbe4ca1bcc96cdc1da07b0c7cffe0620b901f82189
|
File details
Details for the file pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 350.5 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f9460462eef67a92062c1961f23d4d2fcf0d9e7a45c50a1c3397bddc02fad40
|
|
| MD5 |
7cdf58a3d08df83d4b7cebe6da8666a6
|
|
| BLAKE2b-256 |
b7c67d661602067518f7b6736ae258416e237a4b330f6e5b4ad3dd116c02f87f
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 532.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
569d2a0d41153c11a237d753a8a7cbe28ea132ca55b3b84fe507b50a872477c8
|
|
| MD5 |
15bee3c49a3741002b7d16776064d55f
|
|
| BLAKE2b-256 |
d293c3d1b561ba05f0ce547806e8791669a5a17a61e0b59c479f916a6a595b07
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 562.8 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
780c5e673344cecbcb13d0f61e6380fdcf5f0ab4ba5d5cfca6bca028a937fb08
|
|
| MD5 |
b440a63f3d6ec8bc41c0b43380e5ff65
|
|
| BLAKE2b-256 |
80c82ba29a7a413c990bea52099d97579f8250aad084ef8983b097b76699215d
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 597.4 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
130e578ae86366c81ee4258cfc6c36106731b604e3f112ae0411b9a91c3e97f0
|
|
| MD5 |
9077e3ef93cde1ae18c4e54a41c64dbc
|
|
| BLAKE2b-256 |
d8b500e3f15e251591e7a35d1cf4bfad4ab7322aaac55f04bdadb86c4ddb490c
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 503.0 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54093e5535e875ae17536c548f16e1007aeabd8e18f2d95a99afe63fb9abbf84
|
|
| MD5 |
64431780fd2ef6494fd2ea099c0f3e7d
|
|
| BLAKE2b-256 |
bdb19fc689812d75fb00f829b2b8cc07ed74dd56b809985b99d558e7a3a446ce
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 352.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00589f5cc71d98f88aec02913a1f2cfb8cf460e66a8dfbbd089d1d5fcd8f2100
|
|
| MD5 |
dab83ee579a4e634d30886bc905af44f
|
|
| BLAKE2b-256 |
e4137fd6d7b6d08a43ca32669356880ee517394652ce6de5b143fda3191c5625
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 451.1 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76e0bd468903b104afcd65c9c72377ad73236cb2060855354ddbb793b228ea2c
|
|
| MD5 |
7fae00ff0f424b6e9e80072cc82d615b
|
|
| BLAKE2b-256 |
fd7ee26c35b40dbf5de732a7ee4c0089aaeadab340739f246c90180db8551b07
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 328.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b88fab26937751938fb125fb367d15f27baba2a1be395f8de5c6da293bf7fd61
|
|
| MD5 |
ab7500341769c802c64402febec6f684
|
|
| BLAKE2b-256 |
89ee66433c33df7d4b523d25accc6f598cdbbb9119fbe2ee930180f773e86ddc
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 321.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8aef0b0878401cddc44e9c310a2ab7ff434f1998b98bed29840763445491e634
|
|
| MD5 |
2a8c83d71c8d4384e70712e26f564efd
|
|
| BLAKE2b-256 |
4d5852ce704b94678a7a55ea3d439be0215ee4475db661e2cbcc85dbb6234caf
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 179.4 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9979c85d17c68f6e6a860bbd0fa0a80464784ce3e55bac33b8aed82e33d0d208
|
|
| MD5 |
a49a572395dd23f24d87871c72cf5ac8
|
|
| BLAKE2b-256 |
b37c8e7abbb4cb9baebcae9fb2a0cb8fac02ecc9f4f4ee7760d190c217c1651b
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-win32.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-win32.whl
- Upload date:
- Size: 170.8 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d48a5af730ca77529992d7070f8a5ba786c38bc4814fc57919de3838a1f6b91
|
|
| MD5 |
6ab885e93ed9b907e2b4a648c24ae4eb
|
|
| BLAKE2b-256 |
789661c81180750a50d42d3a6323214707a35e1d7111fa45c17b4aaa234dc07e
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 532.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fdb39dfc886af9dc5fecb6dc231f6ecd0e546444bc28d323602005a26534cc2
|
|
| MD5 |
5d4a644b92910fdf9bd8b0efe5a420d3
|
|
| BLAKE2b-256 |
4bf3aa32dadb1c71678a214a4603b7a96714f0593b9aa97b036ef8080c5c7f3c
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 562.5 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a753a2d18cebc73fa1ca53b70baf39b0385302eba0040d3d730ef1f4645851f8
|
|
| MD5 |
7b9b12d3c640a8662cc18e454f1502e3
|
|
| BLAKE2b-256 |
92ac6eee5886ca4cc6d97e85643b1470ea7b2fa217dc67e77a4cab60db99f0b6
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 597.5 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edf4a118d971e711b0e33b30c9247ceafbb14ee818eeadad19b7cbe5471c3801
|
|
| MD5 |
35f5bbeb36419de4a9a86dce3ac135a5
|
|
| BLAKE2b-256 |
251840318f76d2a932dd6ed4429638719083b57ea8b688766c97100ca623e27a
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 503.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
376adcd5b0744362170a5dcc7a86f61d4d421b51596679ccdcce5bcc909c8cd4
|
|
| MD5 |
b8e95f4b5d802e6113a3c823ddf0ce1b
|
|
| BLAKE2b-256 |
21e5a5634819e46d41c46582f791c1bc444b4bf273068b46f7fa4fc8872d21f0
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 328.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5367c4f5b11715798b0af1029a3a1ed47a840f3a120a23472a63cd6a8ad3bae4
|
|
| MD5 |
46d396b39757f55b7c0df0c5c1fa66d6
|
|
| BLAKE2b-256 |
eec1f9826d7e3a5e1e409ca5450d090e2e4ab2c5c74d86c834950ee534468eb5
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 352.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
480d2d8c90eb1acad4a303db69e099ad705cb9b45aa8e4e308e906fd75fe285d
|
|
| MD5 |
bfcf6ff207444d5b00c9a44ed5040381
|
|
| BLAKE2b-256 |
f37863b3e984b01ca0aa95f10b516689a397d07bf68d03f85ddcdcfa5a2601e7
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 451.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d6397ea8eb3b9cfaf79716dfa3eb583391a30570cb28b6a7d647f391bbdb816
|
|
| MD5 |
9242b41ea8a8b5c40fe6f0f7cd8a3005
|
|
| BLAKE2b-256 |
6631ef78dec4a79d03fc1c6d17e33a4c838bac0a4f3458628ccc3eb0c19ff8a5
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 328.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
738bec21b7ee3ed4b569184744abdd06a0c881d69b66651641762a10cbe5611f
|
|
| MD5 |
3dad5e4d41fc32f531216f551d61e05d
|
|
| BLAKE2b-256 |
cf1a97a97f9a35cb4c44124142a6f94d0a31b40bb3409d6ad9ad65a012d6ec9d
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 322.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d42c9710d3dd227c003eaddb0b7f11008ebc086293bd3afc47b719b1b35c6c9a
|
|
| MD5 |
f86e0c808f73e14aa1b4ecdb760647d2
|
|
| BLAKE2b-256 |
93c698eeb13545746a71cdb8c7231b996061c41128d92588844707b9df0a0ba1
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 345.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8bd177854318ddb73af20620e6bd766374ebb3edcfe8128873a1951d190bf8bb
|
|
| MD5 |
af8dcbc44b76734022531fa9a214ecbc
|
|
| BLAKE2b-256 |
412601210d52c0dbaa96c4c036fc28f77c922f2ffd2b963bc58e7067499c3fcf
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 288.9 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74d0c73735eacc1b0363834dba4e8f3359a70474689b4a5065cecbcd94dc3e79
|
|
| MD5 |
6cff6e95c6d17cfdc718eb99e1a9f8c0
|
|
| BLAKE2b-256 |
dd4221ba29fa11fd1984359348188e73c72987a6fa12a56928499bcdd7ace683
|
File details
Details for the file pydustmasker-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 295.1 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c1a454f10f14a152d652ed62c282f1f59868ad7573cb4ba1961e72b1305c488
|
|
| MD5 |
ea4a6a5423bf645276a6f16da7e8a015
|
|
| BLAKE2b-256 |
2f6c303bd1fbd1f55c89d0f1d0b4d6a8566e51f900324a1c56f22c9d44bb9521
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 532.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b11e7e2d7d9b72965be580328a26ec13fc661299df23734d75e5ab23e241a79a
|
|
| MD5 |
0ea0809d2d392b7392a5d05cbf699f25
|
|
| BLAKE2b-256 |
41e9c9b5d3bd26bcbb2f788394832f76c4770c82e64657563c8b60c43cfcd44a
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 562.8 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16143b73aa1364989802ff1c3f56910b8999de87281acb97b42bab35aace48a5
|
|
| MD5 |
89c23623f1aef71ce0b9617deb6b6b46
|
|
| BLAKE2b-256 |
db199d0db42a9384df3d3fdb0fd712cd434a7f14be0f4b767d1d73f6fce5c6fe
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 596.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be33cba5fbbb61277587051f5fd5ce8a2eb1e17f70d86427291ea2b61c68cff4
|
|
| MD5 |
6a029fecb7206b75a972c1ac2568a9cf
|
|
| BLAKE2b-256 |
7f327dd61f9a15474fb6ac2a4a26a1e6174d07c8ac030aa20057bc2523263ea0
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 502.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a49609ac12b1ab08da06ec1d9d58168778c3c77afd3a5d8c5d5c9b5d94514ba2
|
|
| MD5 |
6c05fca0e626cff48dbacc8786324820
|
|
| BLAKE2b-256 |
1f49fd5139f26b25fdbf3cae1c654db53dc5a5374c7f342fb2f15ca42271eb89
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 352.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35b1ebe14ed85fade645c9c6f6a5ddea68c2ef1602774b81fe8173086f664ac4
|
|
| MD5 |
97b815818c78421e164d764d60dfc95d
|
|
| BLAKE2b-256 |
29cca3856238138ba96c165cbb777269c91312e6f2a73e7388f4ff02302e4102
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 451.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26b7733ffa0987c6e514e3bbae9d21251c22421f51b5f1170be3a208c45b45b9
|
|
| MD5 |
c7f74689c95c83288ae5bbd58c01eccd
|
|
| BLAKE2b-256 |
4af7ff1d5d86475d228dd1ed00cbe105adfd200a400e86735a0577712bdf6f9c
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 327.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59d6eedbdb6eaeb9a43695b74b2e103891dde8a4e0304d603821b709f6a35b96
|
|
| MD5 |
f4e39db54ce1f6de21ca0e9e1ce947e9
|
|
| BLAKE2b-256 |
f0dfa6d4a8707f7a43acc522e7069866a5844c222787fb3986c8876f391f0476
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 321.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef610d07f3a47753ddece93c4cb9813b11aca02e030dd7b93e96d3ec19fa03de
|
|
| MD5 |
98ffeff7ad58507cc59b67580846b6cf
|
|
| BLAKE2b-256 |
bde6df60a8c54e48fa6e372670919058bed0de53e14e12fd9aab278b1b285e1e
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 180.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a11cc984386cbde73273142c7de93bfa6089a47785766cf2b966169d50a1796c
|
|
| MD5 |
3ad8d29754208b382d5b1a2f5e01410a
|
|
| BLAKE2b-256 |
31cfcc3f00ea48c2cfe188ada20da08e81b4758a10f748534076ec6cb9609802
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 533.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c77d19471babc4acdd354cbe865af210a6c8ca4d54f7f149ad46635c380891fc
|
|
| MD5 |
e7156c33dc089de6c837c790017ee280
|
|
| BLAKE2b-256 |
11cdf92d37046dbfcdf4647a9cf0c511b736fd9ffc6f9a3fc4fcfaae271416cb
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 563.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35f2dee2ef82d0ffc336d51e423b6d9e7b92c255b5074b162a37fbd053d34f4e
|
|
| MD5 |
707200001e3818282680e06f41a7bf9f
|
|
| BLAKE2b-256 |
005e556b989a3196a22fbe4e48f88abdd6e4579d90ad76f46e78ee1e6cf1da3c
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 598.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54c04307902d06e02b4ed55f1b04c2661cd1f0371b7308ad3773b5893e2464b5
|
|
| MD5 |
79165e13d66e65111b47ade374a59af7
|
|
| BLAKE2b-256 |
d04b703fa632b7fa4cf9c772f2287e17e715609dbee3c6485749f950a87a7bee
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 504.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
404485f2025642e38c0d94870f13a79c6c4f3fd0bb2f0101733768e6205ed99d
|
|
| MD5 |
57789ed67422e89b2e5b1b92110236b4
|
|
| BLAKE2b-256 |
3c16f62d62b78f84e6c590097c686a67a9382e8fc1e70c6c37047a66a8f9bcda
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 329.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d27f96ab8faf92a1b98795fed08d5c32ed14dba5fe5702608ecb520cfee6948
|
|
| MD5 |
3641a151e4f51d756395b0d58bf4f08d
|
|
| BLAKE2b-256 |
6f449cdea9b75f3d25ae87b50bc75cae6b72b0d64ee0ae83a71d58e145e4533b
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 353.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1b778f97426d6d87bcaabe158a42d9780ab90e154dc63fe356dac316b438f42
|
|
| MD5 |
f708b40de2d6ad08e521ef160f45dbbf
|
|
| BLAKE2b-256 |
7acd874168d6faf11afacd4f779dd5ad00df54dd40cad7028aaaae3dddc781c1
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 452.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8843a79e07ad0cbe9025a041f17507adbcda299cc968cd8bf165e3397468fced
|
|
| MD5 |
c33c7374f2544886fff10c8989e7512b
|
|
| BLAKE2b-256 |
38b8e7fb6ca959d102712252f3bda6a710eea4c4eb975ff6bb426d691c5e6eaf
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 328.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb2c2441c326bb1cfc26a5faf1c66d2ad7c50ba01e68468d57bab52f1557db54
|
|
| MD5 |
b58760c122afddfcc7ca0bbd7d479620
|
|
| BLAKE2b-256 |
40cf5d54435982b0ef9bafceae456ffe1797222137794fd957f62591fc1e21f1
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 322.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3aa321e54cc3c3dc05022f4a497a1f080ea64ba08b65354c16b6f546aeae9cc
|
|
| MD5 |
afcd62be5fb2f751542d8590144149d8
|
|
| BLAKE2b-256 |
36ee797a1bd68d63ae10a9ea3f3a3013ed079ead796a10271c1cee66e37163b3
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 346.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d38b5a33ea38fd6d6318c9a9a69812ee51952a4f353c071bc601009c7c6cc056
|
|
| MD5 |
a9757dd05e35aec4726f0d8c0b5d60e5
|
|
| BLAKE2b-256 |
4c165f2b067897eb9dedcb1a81095537fe155bcb19269f2b1e6e458afdf4de34
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 289.6 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4b7ccf0239eee085d71d9cda52358da8db483cb23319597ebf44d1ac52ab763
|
|
| MD5 |
42229f62969d81c557d7f104effb8997
|
|
| BLAKE2b-256 |
ec955fa22ec9e8c0f1485ef5109c039e84309ece86e7eced44ffa51775041110
|
File details
Details for the file pydustmasker-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 296.1 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
956d0f2b8b01fc517338411e77d8c9dd54732a6f1450465f0af61aecde633004
|
|
| MD5 |
c7d892e3bbe45621dde73975305c0524
|
|
| BLAKE2b-256 |
f5836d6ebe46c04f851cd6371244c3c07a26ad34031233b0fec3546933575cfc
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 180.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca950e48d79bef8b2fb243e5ec89317931bb5d06778529d1c92add4581ebf0bb
|
|
| MD5 |
0d73f9ebeb49248aa3f674f6ba347f1a
|
|
| BLAKE2b-256 |
ce8a41dc5b3e1d850b1bc30fe948782fed568d6418196d63267095698dbe539a
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 533.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19a66fe2c200e05de7fe125a93d14b1b85eea5971376caa60101e3987897f55f
|
|
| MD5 |
1de94e9b9eb9671934cad4390b520050
|
|
| BLAKE2b-256 |
57178b543a69007b65bff55c5f9be303dae1f2783e8c3ce97041b564678b22a9
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 563.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62e0f7169b1f5c1c562ad8b3680f501bf2d3c4ab433b4e60552c94bb0af5bf71
|
|
| MD5 |
1d82185190edc789e1cf487ff25f1168
|
|
| BLAKE2b-256 |
535da9a8a28adb1aab1309fe956076aa6a9a7bd52b229d7088beaa6db9f2c94f
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 598.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7cfec5f1d2bf148ec04a6b9e089ebb3b51fbb891c083a88572122119369607d
|
|
| MD5 |
d7b4b9cdbd86790084df16cfc24ad7ad
|
|
| BLAKE2b-256 |
a1fe15ff50e55d77437398ee32f7d5e38745c4031a2e33a65523089bc3f8caa9
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 505.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80b07e61a54a781c2ddcecc337dd64755ae738b07af97a6efa5b665dac6fa03b
|
|
| MD5 |
69024033a2e16830d727d5a23667837a
|
|
| BLAKE2b-256 |
62e70a62a1aaedf9af96f7443f86a66f72ede973ae35ac79fa6314113a47aa1b
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 329.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7081b0d5241485294e1ca1f1a69d545f96b287028dde4ef74dce0dcc298ea129
|
|
| MD5 |
c4010d37c5d1ab894714bc23e50ba6ef
|
|
| BLAKE2b-256 |
22e94dd8242a9e37b98c3a83f50e3e3503c0f686dafad29ebf9f63cf63295f2f
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 354.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3edad1904e62080e16f8b41e0041bbb60ad3a54fb4957f899c17df84b97bf0ab
|
|
| MD5 |
c80906640da9e303dec8ad9780d69ae8
|
|
| BLAKE2b-256 |
cb85ee31ef641259e4fd48fb8e6eeba99c56d91e129e631d316e0f2f0dc6fc8e
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 452.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dadc85ce1ff69c204c4d880bc37fc3791451f1734ab60e2d4a857181b00ef759
|
|
| MD5 |
4ac5913357c23ab1d88445f5f8acd085
|
|
| BLAKE2b-256 |
897d67f20075c5261bdd217867c6616082c177b2215ca1223bfcd23bb0fef129
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 329.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d34e89c86a6f5d84d5ab58b383d1a727204f82e55dbe29e7318198d569a86a9
|
|
| MD5 |
fe5ee05d61da8b2cc66b7e1f4e395e17
|
|
| BLAKE2b-256 |
db35cc705b842fd81e5f9892aa3e407155ea273115ac6cb3b7a22cf357c883bb
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 322.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2e8e297593bf4d74a5fe4e1d90d263e9d1d077afc3d6a9deeafadfa5a0a7e88
|
|
| MD5 |
9cde1b04633e852a76689340afc90435
|
|
| BLAKE2b-256 |
262bc37925c092e2d3f7fe0f55b62acce9a3f866e462790de80007149ed3ced1
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 346.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dae30948e5d384918b63c78146515855f6556b7354087effbdf9fc767d0c6dea
|
|
| MD5 |
9286ce8636300f7ed89fe3d0fd9dc79a
|
|
| BLAKE2b-256 |
18b0b9629924546477d1b0fb8377bb097ac4fb8706388916dbdd1d7bf7ec0614
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 289.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d853698cc3fd5a3a4e7b79975b4f4900f07dbda171a9121cd373200680a24b24
|
|
| MD5 |
6f434e534ab9608e2f9e314c219640f4
|
|
| BLAKE2b-256 |
bc2c5676e6956c9aa2fc9c98d854a0a3f32400d2a33d66ed07a873e918334b90
|
File details
Details for the file pydustmasker-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 296.3 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fee279cf2c1bf7c5650a298f052f92edb9bb8d098ddffd9dd5c4ce09130c0676
|
|
| MD5 |
df646b596193a8c0ee2287de76fe110a
|
|
| BLAKE2b-256 |
15195dc729e890b1af591624e68edc570d1f400bcde2d41599825c2a997bfaa2
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 181.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d1dd5f84c9c5d660c9e9493dc561b9f9b58d74b348e376ba17e75c3cc1758f3
|
|
| MD5 |
87466bcf079ea9522945f54c2622b5ee
|
|
| BLAKE2b-256 |
16405504a48dc4e22788f59b5ba20c371ee3ebf9ff122435aea9822946ee98c0
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 535.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e3d4a4a5dbbb4e42471dfa86a90c3d53f0598fa349dcf0ec25def3b497fbfa9
|
|
| MD5 |
6443e23c2d391a45e1d0a726df71393c
|
|
| BLAKE2b-256 |
ed928e5927511d56039a93bc585c30600daad541cdb3539d6cab6da7fa0e4908
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 566.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c09a7f012069fbfbaf00b6627bc12eee62787392098cfc96eb7a0abcf1640b6a
|
|
| MD5 |
112d6b55d56f40bcfe19016672fa0732
|
|
| BLAKE2b-256 |
367f9d8adf0df104b7232bf9ad7386643aadce7c23bdb65f2e99b3ed30242ddd
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 601.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
527e18487d796d971b42d2140cf469c203bf7353fbb6a1378ab5713d9d3a5edb
|
|
| MD5 |
97a63c693ef44e0b48be64f4510f5505
|
|
| BLAKE2b-256 |
1106af1ec7dfe5d1441d91a3e8cde606b40ee52cca1e1c31abfe65cbd1079b2e
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 507.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2e541f00edf7eecad318bdf71ba532ddf40bbf6c2e93cc47c0c824588e912d5
|
|
| MD5 |
8d0b0d4a6fa1b1247389c120d74a1c40
|
|
| BLAKE2b-256 |
646205d49c620ccbe5d49df7cf1d357a64da76a44f262895211c99cc7d695a8c
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 331.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4388fe1fa41e01673abff069328d0817b33d9a1a3b6819f5d3aa1fb06ee5c32
|
|
| MD5 |
ea7298d16d801047eed2087a04200643
|
|
| BLAKE2b-256 |
5d15dfaa919de9eccb05606d4707b4b96f9d5daf8d851b1bb8358a43e6458d4a
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 356.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71db3aa51697ab95018a6f18465de189ca5d801c95302c3cb614a379dcf832ca
|
|
| MD5 |
353e71a5bb7bf0614e1854fb0b532eb7
|
|
| BLAKE2b-256 |
b92671ee31832ada6f87207cc7b01f34a47156363bb93fbb1d6faf834d5dab3a
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 456.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aca94f9aa19a1be43293a1625c6ae0c22eea6250069bc429212fa48e6f09852b
|
|
| MD5 |
9b1922810305432a4f1c396dc1a90c74
|
|
| BLAKE2b-256 |
31931400a8d6558a331b3ea823e4b414d4485bb72cedcbbcb7b00ea2ebab88cf
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 330.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8db81bf44128354f2cc81b0f82bf7524acc736722be7c9431c5e1b0003ba72a1
|
|
| MD5 |
643734cda8bbb78e5f3ac522809b194e
|
|
| BLAKE2b-256 |
edb346269ed96fc63702a114ee4e6d0b9da2cd0d343edc1eceaec76c37402b75
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 324.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
716cd4e59d9846d47f106838cd1a01bb5fac6d6e076d3de6d8af6fb084e0d59e
|
|
| MD5 |
d187a114a4477561790cd88ba6f699c3
|
|
| BLAKE2b-256 |
4d70f6c9326899cf4e732171d603bef4521d47bc43ec720583f4391f9983265a
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 349.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21a1362bedc597aa1d31ca46e0037f5afa2a12518a0adb5e262a6abe71b3a16f
|
|
| MD5 |
bf257c422d7f856ed9abf2c6ae71d25c
|
|
| BLAKE2b-256 |
eacaf89d7e328fa777681688ed788386f28841109fc61904cdf5dc22e9ccf7a3
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 291.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30063ead135327a25649fe6898f9cd8871adbe63df90d35517b409315cd87204
|
|
| MD5 |
275944ec1b8f4562414b907b2f54a089
|
|
| BLAKE2b-256 |
7da79d3ff089d1cf10fcdfe634c2f85df2ac11a6d6f80c437f02a5c7ebd76b74
|
File details
Details for the file pydustmasker-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 297.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd15ef091c82e066871480a765a1db7a0461d7be4eea6492b28b220f5cee5973
|
|
| MD5 |
a39031bcfeeb13102c3781d506b2708a
|
|
| BLAKE2b-256 |
dfbb3ff158bedb916045d8a0bd129b9bc75a9d589d6ecc63ee2d8c30a8c1aa1f
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 181.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74c4fc80d17992c77c260900cb659c78469793941b763705dcc2c962aa27a883
|
|
| MD5 |
eab756be534b1d04a46c6e1afe861bf6
|
|
| BLAKE2b-256 |
fb48a0a445dce623eda83bfceaed9c5d5e7ef73b0cc50f5b9fe2cce286594e96
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 534.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22bda72022b5460f425dc6b0ac52f9d261dfd9dd4b934e91da8f9ecaabba6504
|
|
| MD5 |
b6dee6959c0f1dec1e04356ced8b4136
|
|
| BLAKE2b-256 |
e1dfcdc88cae398102bb498a80bdb1d6a13ff6b7403b95c8e322221963300694
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 566.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aba602600b3e8edf6e28c5338f23f2c6367fda829a00d74fd42126e1074944f7
|
|
| MD5 |
d920220b513516d841e522906586079d
|
|
| BLAKE2b-256 |
790aa1a413a2b748798b842ab8a9835c8206f435087b775ff2bef0f6df13d3c4
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 601.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1c82fc18e703d9c95c0dee33d822c577fe84e74dabc13b96c8f95bc81d1c32b
|
|
| MD5 |
3b71168149cac43e0352976a316b635b
|
|
| BLAKE2b-256 |
899e754982e32d5482b7b7033b69b2fdc191e475b71e79cfc1cf7ebd04740261
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 506.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8096c7c2da6ff9b0a64d9d7132058bb2769ff374d988d7cba84fa1732f948dcd
|
|
| MD5 |
791ba2f227f061c649afe857dc420d28
|
|
| BLAKE2b-256 |
681b3eb8cba02eb462576f41177358abbfefdf17c0a3dca4625b87032b0c5241
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 331.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7578a9eb3e85dc16550817ddcffe6332dd757e81d630f433c422d67bc09deb0
|
|
| MD5 |
4f32a4fe10430889e98c0ae6fff2ad0b
|
|
| BLAKE2b-256 |
f0021817450e07da05db41149747f5fcc182a29275f9e77b1735dbe437a92a11
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 355.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bddf84b9dca5ccfc8b1290402282f9561ea60bc936ef9645bed0841a0d5bb47d
|
|
| MD5 |
e3208516455803ea8e7e289d6342bc74
|
|
| BLAKE2b-256 |
e4823b49257cc8b84c5b586831841026913495e329f1f7004e7479eefadfaf90
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 455.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1eb5bb3210261d0c9718a9917b8f7390ce8831b7979ce497efc609abde4e0c39
|
|
| MD5 |
1396027d19c0568df7fcf7625052e544
|
|
| BLAKE2b-256 |
1c986aaf8b775273e8da6303b58b6e05ac81644c923b06707ca6f29870d46d87
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 331.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e45237e285ce239fb815bceb1b10db3e578670efbd1f357b1dd424b358f40086
|
|
| MD5 |
6a7bd8cd95cc039ee157fa7aa59683c6
|
|
| BLAKE2b-256 |
120c3cc4a37ba2f1b2c04143b450b0d3e6bb0a82edbcbad26d94e4705cd9c934
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 324.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f519cecefd94d6d91222ac8c62ebe38a66839009a4d3e906f65bbecb2c819f48
|
|
| MD5 |
27717e1ff8d89a00700eb082597a7f4f
|
|
| BLAKE2b-256 |
36fb21a3d7b96bae0abef2f7844c3cdf0a5a71760c5f1be129b425fd57caef0a
|
File details
Details for the file pydustmasker-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pydustmasker-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 349.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0056eafcdfda90d0f8fe9ca324814b73bb2d9b85a98b395d8d950ffb179d3833
|
|
| MD5 |
a0cf51ada7f693497c844502df3c297d
|
|
| BLAKE2b-256 |
aab696be5c7121b21cb1590aa4be6918a1cb6079cb90596c2bdf52fcde343fc2
|