Statistical Region Merging Segmentation
Project description
Statistical Region Merging
Statistical Region Merging (SRM) is a method for image segmentation. The labeled image is initialized such that each pixel (or voxel) corresponds to one region. A statistical test on neighboring regions determines whether the mean intensities are similar enough to be merged.
This library is an adaptation of the SRM plugin to Fiji/ImageJ and is based on the algorithm proposed in Nock and Nielsen (2004). Our contribution was to translate the original algorithm to C++ and wrap it in Python. We provide this package under the Digital Porous Media (DPM) organization.
Installation:
dpm_srm is packaged on pypi and can be installed with pip.
pip install dpm-srm.
If installing from source, this package requires a C++ compiler.
Usage Example:
This implementation of SRM expects a 2D or 3D grayscale (single color channel) image of type uint8, uint16, or uint32 and a value for Q, which is used as a merging criterion. Roughly speaking, Q is an estimate of the number of expected regions, though this is not strictly adhered to. The larger the Q value, the more regions are produced. The algorithm will return a labeled image of the same shape and datatype as the input image.
Note that the algorithm performs bucket sorting, where the number of buckets correspond to the maximum allowable value for the particular datatype. Therefore, it's important that intensity values of the input image are scaled over the entire range of the datatype. For example, if the input image is uint8, the image should be scaled such that the minimum intensity value is 0, and the maximum is 255. If the input image is uint16 or uint32, the minimum values should be 0 and the maximum should be 65535 (or 4294967295) respectively.
We wrapped each version (2D vs. 3D, dtype) of the template class into individual class instances. The nomenclature is: SRM[2(or 3)]D_unumber_of_bits (e.g. SRG2D_u8(), SRG3D_u32()).
Python Example:
import dpm_srm
import numpy as np
np.random.seed(130621)
image = np.random.randint(0, 256, size=(100, 200, 200), dtype=np.uint8)
srm_obj = dpm_srm.SRM3D_u8(image, Q=5.0)
srm_obj.segment()
segmentation = srm_obj.get_result()
Acknowledgements
This project includes code adapted from Statistical Region Merging by Johannes Schindelin, which is licensed under the BSD 2-Clause License.
The original code can be found here
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 dpm_srm-0.1.9-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 110.3 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04f118c5054d4ae604591307f4c1d777a0446c00dacf9d605b8711582cc1c869
|
|
| MD5 |
7dfe67c2a2f58560dc345762912586b3
|
|
| BLAKE2b-256 |
9df24af470dfb5f9d2245790beac547816a49f5f58c3be2e08bb57d788c996ca
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314t-win32.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314t-win32.whl
- Upload date:
- Size: 98.7 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5210bd1ec938ea0089580a27e3ae3c970ca2ea288f07d2f8c83e7b4f6fc59f43
|
|
| MD5 |
f114e8e35d9c5a6d2a8c96493d5172e8
|
|
| BLAKE2b-256 |
fcb1edc67e851e32a671f9d1dcc913a42498b063fd34183b7b1ef927afd947b2
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84eb3c417a7277f6d8d57d3e7c78ba9cc08c39c3845634281b5ab30f0d78a47c
|
|
| MD5 |
c5c4616484c63c80cb1fe0b2b136dd66
|
|
| BLAKE2b-256 |
839b41cb7a5a32847b80220ac6f35b6ce987be3ee870f1d9e5f86979ca8fa716
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a97d6fbeb680ac166a71784505a35ccc7522f6f3096ee7a877c3d15c17c970c
|
|
| MD5 |
21d0eba2da8aeea1585d89b46ab34c9c
|
|
| BLAKE2b-256 |
031c5c0daefcd80416b458c47806a2204997e562d96d1c33ad8c26fd7d7aedbb
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 130.4 kB
- Tags: CPython 3.14t, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae4cfcbdc74840839ef7aa032e641aa6914c15aef6c7961a137927f5ee017b32
|
|
| MD5 |
a2fe088f7e6a092e0ee3c2aa481d3c4f
|
|
| BLAKE2b-256 |
8ade06ae8efc67160f4a12dc59803c6c8cb573fb7ed005572db8c9dc66674ac2
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 124.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3ac2c34df5da2365dc92104236fb22bb5a545e43d8c8e850cde66ba64c1367e
|
|
| MD5 |
6f6bd9b85626087ac25bdd1f1af585c7
|
|
| BLAKE2b-256 |
fe8effb0e25801195434260319392010186f537e3a33920426b6f8cf207af259
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 260.2 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3334aca372f9cd57ba858384d8502bb37a23578552c5e93b9e72b75d5ad84d7d
|
|
| MD5 |
343d4608f70ab1a034a11983f24bd640
|
|
| BLAKE2b-256 |
b78966a0d3cdc93af4e8209ac4234cdc879c178fa6b1563fe78886a3a0e9aebd
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 244.9 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9f3b5ffad83f52db4b1711eff49d9e7143ce6ae40b2884664db553731d10cd5
|
|
| MD5 |
19e43e4d38114b34adc002729c67ee94
|
|
| BLAKE2b-256 |
fd2dd098c908caebfb45006aea2b3f48997a03defa46267b6074317e4e5fe4c5
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 100.4 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82d4f6b398ba7aed48dbdb66951d33fb9b869623b8b73af51dc3c4628a8f3505
|
|
| MD5 |
e08e5ee743f7a3b29dcd6a7aef128705
|
|
| BLAKE2b-256 |
11a8222554fe638ba9496bce7440f83e9f53d9fcf5d08e5f288146e86bcaba92
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314-win32.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314-win32.whl
- Upload date:
- Size: 91.6 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20935cc7218d0c8915eac59c748890b7a1d1e1b3a82ccc1d5e5a8a084c2e8f27
|
|
| MD5 |
42e5c16283d2d2dea7fd564582572189
|
|
| BLAKE2b-256 |
b8ce242340e18c54b4ee8e1d42e2fc380a7feaab333f72a49a8d8e1668c73381
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2035188aa293252dca2f67ab54195bc381f0ba20f81c00f780067a4b66b8b2e
|
|
| MD5 |
431b20cc49842e8ca1395627358633c6
|
|
| BLAKE2b-256 |
708ead5f7c77008d60cb83b418ee7d7e33bc3f318c41c5dab29868d101ecf5aa
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
501b1f6141af45ff32c89af4bc3b4f08553c214b05c9fd172c2708fa2e9d4f3e
|
|
| MD5 |
395c8446a3210759eabd9fadbcaef4cb
|
|
| BLAKE2b-256 |
dfe7bcf2abbe410eb0cdc6179db938b73bda71589c2210807d7257b1006c9d39
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 128.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
586b4f3f2c0746d462a13c47899d436a9b5f8c8d717eb081306c91bdc4bd96ab
|
|
| MD5 |
3409a322786e784130bed704b36d2305
|
|
| BLAKE2b-256 |
e1e33ba05094781ea2a25b3a742b75934a24b97bb51fbaae2ac3906d7933e4b2
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 122.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8534c906f3a6dc4e1aaf88088a13dcbe0017153f266d7f5a18b06d1662363c8a
|
|
| MD5 |
b7e7395ff10b420f6f5148dc8025baf9
|
|
| BLAKE2b-256 |
a7f2398f2b565b9e834d6606366f1fee8a8d6a8de12e5fbf8f2b2d1daa1a58fc
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 257.3 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47320839ecd086dbea7c0a0b117c624032db6ba4d9c076f84a3c715923d2e7ff
|
|
| MD5 |
8c7205bc7842b16ed5c2d6158b3c71b5
|
|
| BLAKE2b-256 |
c655e432dfdcbb7b97558508a194722704b72fe301181268f8bc15b209f165cd
|
File details
Details for the file dpm_srm-0.1.9-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 242.4 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
242dd065ed1813329d59fb4ce4d25160db31ed9f3425b0c4ca7e641589935aff
|
|
| MD5 |
ab70de8c0273fe497cbde920d5152945
|
|
| BLAKE2b-256 |
bbfe1b4e987a648fb77e7608106e2cf925ec43e776821b5126cbf3d507ba935e
|
File details
Details for the file dpm_srm-0.1.9-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 97.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9a048d9e910971147d6fa0cb0b80b174608f10cc739ef2fe7390da2de9ca7f7
|
|
| MD5 |
4e48975365e27e304d2e858a414acfaa
|
|
| BLAKE2b-256 |
e40fb3d4cef69002c2f77255af5d02fbea94eeac4358103c95271cef64dab270
|
File details
Details for the file dpm_srm-0.1.9-cp313-cp313-win32.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp313-cp313-win32.whl
- Upload date:
- Size: 89.4 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68f737db550e22a7852933b2082f194d99901f9d94bbd58d359d80638795a9a7
|
|
| MD5 |
8177d57b61ed9d5a9b6358b5ebff4924
|
|
| BLAKE2b-256 |
ba5e3111ab5a1f795378d28ac31e9f07a7fb1fbfb2ae09e18b5cf3adb203a563
|
File details
Details for the file dpm_srm-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4888590baf5d55c5287ea672acd96b13ebfd5736390a31d04ddc764ee1a4b24
|
|
| MD5 |
6af0896878b012afc99f0a07157c1925
|
|
| BLAKE2b-256 |
c62776e321dfcc954daa2e5bcbed371b16846e88effda26f217c31da048bcbb5
|
File details
Details for the file dpm_srm-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22648b0f8b8887afa050aca551eaa31f5993de5b49613845502be0a0ca1b1243
|
|
| MD5 |
d2516fdc83510f048fe277ab9bc1a314
|
|
| BLAKE2b-256 |
b9ba95d06398b2f4bf2dca5651610e88bff8ea686af71a216d4491251e4859ee
|
File details
Details for the file dpm_srm-0.1.9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 128.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1aa204309b36ea1cfe3a6b2f4b1fa47f1c4a7c69dc23b67ba953b39f0733d5da
|
|
| MD5 |
50db622ba7590c8689f8af572f81c269
|
|
| BLAKE2b-256 |
9ebe5bdc49bf6b6ca31d2fdb35ea4c519ad828d448d7e5be58b9266915bf611b
|
File details
Details for the file dpm_srm-0.1.9-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 121.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49356fbbf1a554a3086d633900f749d48ce6ccb51edb3b42fc5df6093d9a0cd8
|
|
| MD5 |
a7cd39c0eaf8e2d43c0e23ced7bf0700
|
|
| BLAKE2b-256 |
964ae1bb9a4b809f8b4d118b808f56349d8cd25ddba2c7cd2d09fccba1f116ff
|
File details
Details for the file dpm_srm-0.1.9-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 257.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c2991dc988e2d33741671232973655f7b0ea52c2ff47c1bc2a7869063d318e2
|
|
| MD5 |
92379fc926f3ed17203ca7634b6ccb83
|
|
| BLAKE2b-256 |
80f2c4e50dfaf2dd6bf8ffdedf83ee7f04403c64590191c1f738084003395daf
|
File details
Details for the file dpm_srm-0.1.9-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 242.3 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6c538fefd8da222d96623e67570bc6bc25e6ed0b2a8f2bf8dd55e448ff631e6
|
|
| MD5 |
f098e94ddb01fcb8a813d29cbc7f0e59
|
|
| BLAKE2b-256 |
b77be8f0c4e6c083db86e807899f11095338ad401e40b495199e2613e3e95e0a
|
File details
Details for the file dpm_srm-0.1.9-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 97.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5525154699c0d194693649e5b7d0bbd8d9059b6ebc05970fb7698fb75ad97ac2
|
|
| MD5 |
a565296662107c86d5462761b5a4a52c
|
|
| BLAKE2b-256 |
8d35cea14742bfcb42b34ba5aeff18bcdf342ecc278e7ce8f6c814fae565f444
|
File details
Details for the file dpm_srm-0.1.9-cp312-cp312-win32.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp312-cp312-win32.whl
- Upload date:
- Size: 89.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77b9dfeaf1555ca2d0df4a0520ea21b0d8b948872db7c38ee413f6ef2d47ae02
|
|
| MD5 |
aa61f8ca06d0bdac8ded822f8e1a885b
|
|
| BLAKE2b-256 |
0088508bacf6fdbd12128c79f872c3945a0bb4f13aa29c23aef4e25c817ee12d
|
File details
Details for the file dpm_srm-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c2ecd37cfaacdc61aca5f10f07b12085eb385b3741c7bd205827dc58b2c68f8
|
|
| MD5 |
3f520c7cc721bfab26e6a92b2ded469a
|
|
| BLAKE2b-256 |
46ca1e0e11dfe10423ec8e16ce5aa06eab0b2e14332f3084c083c5832a66aad5
|
File details
Details for the file dpm_srm-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e69b3c63729fb486c0bccecf0e2b1d330e5860709214855bf9d2e3c5d3db73fc
|
|
| MD5 |
5ec2227a9d6f2593265ecd3cf4af2739
|
|
| BLAKE2b-256 |
ad67d5a6f696a3523aae791187af1d76f17205d8327830da9d1f24a48f2cf11a
|
File details
Details for the file dpm_srm-0.1.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 128.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9178e8b8c2d68f322d63881ebbb9a321802af24689ac36209b9c9fd8ad65414
|
|
| MD5 |
760b102960e5cdac338eebc3bcb8d311
|
|
| BLAKE2b-256 |
2a640ab6357470a3bcd93403d12e19c1dda4b95d7a20a53aae4dfaff555734c6
|
File details
Details for the file dpm_srm-0.1.9-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 121.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
155ecd6752243e59cca2615cbe3abd2c35d624198def6d00c9d1a99bf9898374
|
|
| MD5 |
e186e89cdc6ed6d9abb9a3517777f953
|
|
| BLAKE2b-256 |
f00a33c8126fecff6ef3b1b37368c79ea888c6cb2b140e8d811dd77236562e0c
|
File details
Details for the file dpm_srm-0.1.9-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 257.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0bc7e5dc979ba2d713f1f4e007c23927e1e1b09adb3b0edd173e868f6c674a0
|
|
| MD5 |
c5264faf3669ff33e14374c067c769a7
|
|
| BLAKE2b-256 |
aded2f1fb8adc76c6dc07ac33b6a005fae2dfef5a7cf7c9f1be015df0ac0b469
|
File details
Details for the file dpm_srm-0.1.9-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 242.1 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34cb9faf3b7effc64208869b0930b5663f4cd0deb0bf38cf437374701cb01bc1
|
|
| MD5 |
b93c42f0708b635c2c74a54e33a338fe
|
|
| BLAKE2b-256 |
592ee25624f19de22dff4746f1117b394b8c8e68ac715e3de90d89f95dd835eb
|
File details
Details for the file dpm_srm-0.1.9-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 96.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f4af27794afe5357307b9339ce793f463ade34358f33826b201984e8b4d3728
|
|
| MD5 |
34cecbf0c376c62b34c22f134b620ef6
|
|
| BLAKE2b-256 |
0734e7d2284d91e95d9e1515fdaa2cc9380dd222100f6eb038a5853cb055ea09
|
File details
Details for the file dpm_srm-0.1.9-cp311-cp311-win32.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp311-cp311-win32.whl
- Upload date:
- Size: 88.6 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
825611badf6f68e46b3e4a48bc5152a02c463841c91ffdcb98fd8e78a5ed34d4
|
|
| MD5 |
a38fc09274c8129702219b4515ccc5c3
|
|
| BLAKE2b-256 |
1f135bb33c37f8c669f713e157a94c5fdefc748d3f4dd4f320f742034de3362d
|
File details
Details for the file dpm_srm-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f5013a8400aead5cd2d61038d2f56a6bdc2a50cd9e1d3625fad79ff915c93fe
|
|
| MD5 |
dd0ecdad0c8d6b91f619edfae04678c4
|
|
| BLAKE2b-256 |
702e8bc5e54695b69985e35805b700ddbd32518c4d82a40ad5e7fffe0786196f
|
File details
Details for the file dpm_srm-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7305f6ad8f3dab7309e88923186152103274a8a0118235d99fedff2ea5d3514
|
|
| MD5 |
75527c5d19d06caf0c97f9e1a540715a
|
|
| BLAKE2b-256 |
22ab2fb2a2f81cd6c1248e4357d00fed321d16ebfc108665bdd2e7a3f86591e8
|
File details
Details for the file dpm_srm-0.1.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 126.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7918a3ca0cb4edf3849a437925e47188f61249774605bf9cc2ce3b627c370ca2
|
|
| MD5 |
cf25ada4ee12fa20362d3bda11a4ef48
|
|
| BLAKE2b-256 |
3e4636f953802a396cdb13702761c9e2ecc55d84a3213136c22f513576907b84
|
File details
Details for the file dpm_srm-0.1.9-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 120.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
717ef3944889edc74136f5e7fc5063f637bad1a0d0ebedd074f620c0a1350ad0
|
|
| MD5 |
3f1d4d0f98532c02b684fe528048363c
|
|
| BLAKE2b-256 |
a4ceced49b46906ca60ec0c8bfcc6b62184d0d6708cddd9a87a88537d831ab63
|
File details
Details for the file dpm_srm-0.1.9-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 255.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e50639cc27ad978e8ce16bc5fef07ff1c10d6e37898232fbde0e7a0abf1beea9
|
|
| MD5 |
d3baa318568bfe8ca8da9f2000bc870d
|
|
| BLAKE2b-256 |
62b70f0e053ae0116277c8586f0bfc4cedfe9aa78c3c1c8ed063bb52444125ee
|
File details
Details for the file dpm_srm-0.1.9-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 240.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba2122d9a6ae78a0b41e42960a46c03d6ce2c1ff1869f110c8d3fd32910a790c
|
|
| MD5 |
09aa33b117754d7b036111b79427bf1a
|
|
| BLAKE2b-256 |
9fcf5f0096fe2c2b02e8c1dced1421f450c20906f088a638b3ee4b2affc2036d
|
File details
Details for the file dpm_srm-0.1.9-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 95.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6116f9777df7a73508b48ce9cf92e40c3e745c494079e9d109259d032ce4696
|
|
| MD5 |
c023885321a7fe7dcd7e0dc62bc284ae
|
|
| BLAKE2b-256 |
f792857621918c1622a2619b61dbadc1c9e46d13f53bbb2be7667c3b4c77b452
|
File details
Details for the file dpm_srm-0.1.9-cp310-cp310-win32.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp310-cp310-win32.whl
- Upload date:
- Size: 87.6 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf474a5b5956359a41e63feae77595c4946f5b4b93285a41823f5b191ed881cb
|
|
| MD5 |
0d1ef3a64cea73e00e82d0b42808b992
|
|
| BLAKE2b-256 |
8cc87d91fcf0ee304fcc00223e871117e06a35a581d87b63b631d677d5f86ed0
|
File details
Details for the file dpm_srm-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb05ca2e285e42c327b7684e00f588a03d3dd1db3ef71d9006084c6c86920f42
|
|
| MD5 |
ac7dbee15967e3c8655db4b09dd7c3e5
|
|
| BLAKE2b-256 |
d5e712c26c209fe9c6a4411caa10b9ca12027f27b23e6cfad7310d842ee4df28
|
File details
Details for the file dpm_srm-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f14c6fd447b89486bf968b909b0413f25a5532cddcb5bdb08ad9581f6436d27a
|
|
| MD5 |
17a91e3bc12fff00167147963da5ccc6
|
|
| BLAKE2b-256 |
1c6e7b04b153e40e0b6317472a3e03e24e4004a4953fa9731645af084935eb72
|
File details
Details for the file dpm_srm-0.1.9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 125.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc6081cc417d63fd81be31db36fe7708d50f4b5c11994a0af3e44c317441b089
|
|
| MD5 |
481a97591bf0067e17cd49dd876ce36b
|
|
| BLAKE2b-256 |
fdfa4242826f15b9adbd8d894a5e4291bead492a8b0dcb7d637ccb9f924a8503
|
File details
Details for the file dpm_srm-0.1.9-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 119.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
985e4c0f960fe788ee123a8e07828e163b353c41d7c1d2e40d880479997f11c3
|
|
| MD5 |
388333aeb63b7b2b2c91d3b29cd50d3c
|
|
| BLAKE2b-256 |
e29f8cd15b313ff01f7b63387d463202872915aa330108021f131e74082a68ed
|
File details
Details for the file dpm_srm-0.1.9-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.7 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19e59b16635d8c5c6d45d84bceebb916a0a5ff771281bbe3eb98781b1c14f6b5
|
|
| MD5 |
af66271b5cf85d132807f7dfacb1f909
|
|
| BLAKE2b-256 |
c964f6d4751dc7f23715604208679eea90a33b483819dac2f6270538506bc2d0
|
File details
Details for the file dpm_srm-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 239.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbc48ef3bd45ff9fe869fe821edae30cec1ed0a12a0fc8f69e90a58334bf0ed9
|
|
| MD5 |
1222e4257be514a341d71cebf43aa7f9
|
|
| BLAKE2b-256 |
20313dd612d58e3643aa06b298c09e0b38bdb77fd4c8930d2ee50b49ae672d0e
|
File details
Details for the file dpm_srm-0.1.9-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 95.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f3741a8dbdabda4eec3e81ce10ecac8190d5a98f8f1ee25cf8a496db3292c15
|
|
| MD5 |
0a3641feb46b135525df63d38578d5bd
|
|
| BLAKE2b-256 |
5ff9c4dd650acb955575cc480e4059ef03c50abd89f0bd59743209665319eae9
|
File details
Details for the file dpm_srm-0.1.9-cp39-cp39-win32.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp39-cp39-win32.whl
- Upload date:
- Size: 87.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2b99edd269364956e5fe60df2faf82c1d9f8cdb69d9d8b09c316c70a85e500b
|
|
| MD5 |
37ac466a68acfac955b0c410682609d0
|
|
| BLAKE2b-256 |
0c65f57fb71abf1e47e55fdda479d688d9d5cfcd0718d5c1ecdabee2c69cd5fd
|
File details
Details for the file dpm_srm-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0baded18db4458235a8451d3128149849cd249aaa583bd112967a8d74c4d9056
|
|
| MD5 |
5a6bee808c31d6c0cdcad82c88441a27
|
|
| BLAKE2b-256 |
003762a3952a9d05a973888eda054fef354fc54b676b519e915fa6f7f2ca4adc
|
File details
Details for the file dpm_srm-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94fa05046f98ec095d271b18d0851f3e766fc16a0b28c4e6414ad5534287d0af
|
|
| MD5 |
6b5619a6a70cd1bc0cdd646aa617b54e
|
|
| BLAKE2b-256 |
f4a2933ac72ba01ff44e96203b390661704f862cfe5c0796737ef30c660ab620
|
File details
Details for the file dpm_srm-0.1.9-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 126.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ab8350000a4bb9c04df0fedcb07da61a83337d7e7b9765fd1a0ef3de2118f44
|
|
| MD5 |
e347656edaf90d437ac68121137613c1
|
|
| BLAKE2b-256 |
526386a5317af81e9683cbb09b22b7679390986d1bc879115c34f1be0889088c
|
File details
Details for the file dpm_srm-0.1.9-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 120.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42e6f4b689781b810bc891343c4e397a9e5290005fa000c3be983c0a2acf4d45
|
|
| MD5 |
d5748e70ab56cb8af6fa008611281552
|
|
| BLAKE2b-256 |
6196fa6be9c4f1caeb0af07288c026fdd465d5d46723cd3667f389b62b394c1e
|
File details
Details for the file dpm_srm-0.1.9-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 255.0 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b2d68881908c47c84ca1e4d4df54623057232fa2773cb78a596c783f4172d49
|
|
| MD5 |
547325fde3a9b6c5a1d0296a4cbee437
|
|
| BLAKE2b-256 |
b80299009c1fb828b9f4d35534da92b8cd76cd51f4b5913d41f14560e97bb3e7
|
File details
Details for the file dpm_srm-0.1.9-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 239.8 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd7cf3b5876177c0a5daeed1f77cd85815875d5afd88503b7d58c963ace2a964
|
|
| MD5 |
0e18d28bf5927a23a4d0fae15a76035e
|
|
| BLAKE2b-256 |
d52c52e1e069ff8bd8500f948aefcc4a25830f65c57d168e18eefefc7eafc3b9
|
File details
Details for the file dpm_srm-0.1.9-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 95.5 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1914a5916c637514bda57b74b3453054fc26a6cc73e92db2a5bc2436b9b32056
|
|
| MD5 |
85c5adc42234d16d501ef4e85cfc365e
|
|
| BLAKE2b-256 |
57033465ae41384a3c9ed4d35b0c34e5813a18073807fcea81b32fcab0e73a46
|
File details
Details for the file dpm_srm-0.1.9-cp38-cp38-win32.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp38-cp38-win32.whl
- Upload date:
- Size: 87.5 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
623e7618bff9bbbcb3db0ca2721977b8ed0c556538fc08d6838d354cae8659e1
|
|
| MD5 |
762f3e02d9288abdfe7eb55ffedd4e35
|
|
| BLAKE2b-256 |
271b53901470f25c7b4a8b1f52c9710eeedf8ed24361538924aa5b67e737e129
|
File details
Details for the file dpm_srm-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07c42a2e96000778e2db59d4ab0a4028e209eae7fed70f528cd0f34b4d30807f
|
|
| MD5 |
732f418488b83481873a3eef0c9f07e4
|
|
| BLAKE2b-256 |
605522bdfdbd2fe322e357d4d2fe7c8d34708f00d2c452112e1f7865338d1c74
|
File details
Details for the file dpm_srm-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
339f24f77f2598a3a2afac657b15c64701d1e8dbf70ea01f44a5942dcbb1bcfe
|
|
| MD5 |
364b8445b506079811e940f51fa134d0
|
|
| BLAKE2b-256 |
13eff017333124bbb1b2ed7eccca4951cb92b83cdc6a007e1ce9e3170190f8c7
|
File details
Details for the file dpm_srm-0.1.9-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 125.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f36daae859a653337658fe0cccd114f439f3f39e6dbe33290d57aa90a06c497
|
|
| MD5 |
0ad24e8933cdd2837f3fcd739e5333e6
|
|
| BLAKE2b-256 |
0b87546761524cde4929aeec95915bf52f2958145a4a60a7f275cc8efe8acd81
|
File details
Details for the file dpm_srm-0.1.9-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 120.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ab68ce697b35d77e24aad989791e52a65817706308de095a8e68e87f059b9f0
|
|
| MD5 |
eeffe9701309db7a7edbc7afe0160a98
|
|
| BLAKE2b-256 |
3f679539dd1dfe9003e708ec0d3e546eb029dc6600cf1eb533bf4dd7abbaaaff
|
File details
Details for the file dpm_srm-0.1.9-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.7 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe5cf1540c2885c28a653e5b8c0891b377139d73b035dd919b181de8aa2827cf
|
|
| MD5 |
a4e202ee5844fb6528fbe3a7b2ad1ee4
|
|
| BLAKE2b-256 |
49d8231cc73c99ada4751181139efc9315113e533d66cb2c973d53786f840bd6
|
File details
Details for the file dpm_srm-0.1.9-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: dpm_srm-0.1.9-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 239.5 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de87f9c16f03cb4d041ae7c71b85c34503dee1994954e54626533403dac8612f
|
|
| MD5 |
e6b246c2bae9d4b152b6d909b16ed585
|
|
| BLAKE2b-256 |
196dd56fe2e0e8b02fb7349ac69589fcc9f1451d1351f7e50fcbfc28b1b7b5b2
|