probstructs 0.2.8
pip install probstructs
Released:
Probabilistic data structures
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Martin Majlis
- Tags probabilistic, structures, exponential, count–min, sketch, histogram
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
Probabilistic Structures
Probstructs is easy to use Python wrapper for C++ library probstructs . It supports Exponential Histograms, Count Min Sketch (CM-Sketch), and Exponential Count Min Sketch (ECM-Sketch).
Installation
With pip:
pip install probstructs
From source:
pip install .
Classes
CountMinSketch
Count–min sketch (CM sketch) is a probabilistic data structure that serves as a frequency table of events in a stream of data. It uses hash functions to map events to frequencies, but unlike a hash table uses only sub-linear space, at the expense of overcounting some events due to collisions.
C++ documentation: https://probstructs.readthedocs.io/en/latest/classes.html#countminsketch
from probstructs import CountMinSketch
cm_sketch = CountMinSketch(100, 4)
cm_sketch.inc("aaa", 1)
cm_sketch.inc("bbb", 5)
cm_sketch.inc("aaa", 2)
print(cm_sketch.get("aaa"))
# 3
print(cm_sketch.get("bbb"))
# 5
print(cm_sketch.get("ccc"))
# 0
cm_sketch = CountMinSketch(width=100, depth=4)
cm_sketch.inc(key="bbb", delta=5)
print(cm_sketch.get(key="bbb"))
# 5
ExponentialHistorgram
Exponential histogram (EH) is a probabilistic data structure that serves as a frequency counter for specific elements in the last N elements from stream..
C++ documentation: https://probstructs.readthedocs.io/en/latest/classes.html#exponentialhistorgram
from probstructs import ExponentialHistorgram
eh = ExponentialHistorgram(1)
eh.inc(1, 1)
print(eh.get(1, 1))
# 1
eh.inc(1, 1)
print(eh.get(1, 1))
# 2
eh.inc(2, 1)
print(eh.get(1, 2))
# 1
eh = ExponentialHistorgram(window=1)
eh.inc(tick=1, delta=1)
print(eh.get(window=1, tick=1))
# 1
eh.inc(tick=1, delta=1)
print(eh.get(window=1, tick=1))
# 2
eh.inc(tick=2, delta=1)
print(eh.get(window=1, tick=2))
# 1
ExponentialCountMinSketch
Exponential count-min sketch (ECM-Sketch) combines CM-Sketch with EH to count number of different elements in the last N elements in the stream.
C++ documentation: https://probstructs.readthedocs.io/en/latest/classes.html#exponentialcountminsketch
from probstructs import ExponentialCountMinSketch
ecm_sketch = ExponentialCountMinSketch(100, 4, 8)
ts = 0
ecm_sketch.inc("aaa", ts, 1)
ecm_sketch.inc("bbb", ts, 4)
ecm_sketch.inc("ccc", ts, 8)
print(ecm_sketch.get("aaa", 4, ts))
# 1
print(ecm_sketch.get("bbb", 4, ts))
# 4
print(ecm_sketch.get("ccc", 4, ts))
# 8
print(ecm_sketch.get("ddd", 4, ts))
# 0
ecm_sketch = ExponentialCountMinSketch(width=100, depth=4, window=8)
ts = 0
ecm_sketch.inc(key="aaa", tick=ts, delta=1)
ecm_sketch.inc(key="bbb", tick=ts, delta=4)
ecm_sketch.inc(key="ccc", tick=ts, delta=8)
print(ecm_sketch.get(key="aaa", window=4, tick=ts))
# 1
print(ecm_sketch.get(key="bbb", window=4, tick=ts))
# 4
print(ecm_sketch.get(key="ccc", window=4, tick=ts))
# 8
print(ecm_sketch.get(key="ddd", window=4, tick=ts))
# 0
Changelog
0.2.0
Introduce named parameters
Update documentation to contain examples
0.1.0
Initial version
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Martin Majlis
- Tags probabilistic, structures, exponential, count–min, sketch, histogram
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
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
Uploaded
PyPy
Windows x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
macOS 10.9+ x86-64
Uploaded
PyPy
Windows x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
macOS 10.9+ x86-64
Uploaded
PyPy
Windows x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
PyPy
macOS 10.9+ x86-64
Uploaded
CPython 3.11
Windows x86-64
Uploaded
CPython 3.11
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.1+ i686
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.11
macOS 10.9+ x86-64
Uploaded
CPython 3.10
Windows x86-64
Uploaded
CPython 3.10
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.1+ i686
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.10
macOS 10.9+ x86-64
Uploaded
CPython 3.9
Windows x86-64
Uploaded
CPython 3.9
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.1+ i686
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.9
macOS 10.9+ x86-64
Uploaded
CPython 3.8
Windows x86-64
Uploaded
CPython 3.8
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.1+ i686
Uploaded
CPython 3.8
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.8
macOS 10.9+ x86-64
Uploaded
CPython 3.7m
Windows x86-64
Uploaded
CPython 3.7m
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.7m
musllinux: musl 1.1+ i686
Uploaded
CPython 3.7m
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.7m
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.7m
macOS 10.9+ x86-64
Uploaded
CPython 3.6m
Windows x86-64
Uploaded
CPython 3.6m
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.6m
musllinux: musl 1.1+ i686
Uploaded
CPython 3.6m
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.6m
manylinux: glibc 2.17+ i686
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.6m
macOS 10.9+ x86-64
File details
Details for the file probstructs-0.2.8.tar.gz
.
File metadata
- Download URL: probstructs-0.2.8.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c21acda180214f6311f9e139db8c448b9a807edd987b2520122e90d7d2f6677d |
|
MD5 | 6f159abb46b65ff15448c190a7d2ae6d |
|
BLAKE2b-256 | df3723224828b5b929b861eed04377ecf623010b7ee87274b85726d96c30f87a |
File details
Details for the file probstructs-0.2.8-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 71.9 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d692bade08158907c298febbd3f1885c46455bb74ccfdb1408723e42d1ec9d99 |
|
MD5 | 513a2f9278aa4c45047c464ee66f3c54 |
|
BLAKE2b-256 | a5c9bb74d3d08f75f48a540b81a7e2c3279b371bba07fe437c7aa757d8203852 |
File details
Details for the file probstructs-0.2.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 559.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e17f25ee4e52444043fdd8f7bb6067b16e877225e7131217daa78498fa0ee690 |
|
MD5 | d6c954a23d3e43bf1ce4cf1d08010857 |
|
BLAKE2b-256 | e63f0a3ba165e64aca2fd8c1d730a84c0778205b98268d3eb64ede894889a34e |
File details
Details for the file probstructs-0.2.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 599.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3ae673df67d08fb5c57acf73bbbe1bbbdf44344753ffe2b170db5780716a038 |
|
MD5 | 8a737a3b021d35237c2320763dd26839 |
|
BLAKE2b-256 | ed3f5b5e417d9f99050e5fb1a8eff8f766733c412142a6f09b4a070dce7a54cb |
File details
Details for the file probstructs-0.2.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 78.6 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 173cc56ae511fd82fba535e2941d11ae109da27d34546fd443ef61934bd6280e |
|
MD5 | 6eb65243794f5e2e0ff0a933b2fff6cd |
|
BLAKE2b-256 | 1ca9accc30fdefa0bbdeec81d5a30f905fda126ce8fba1d906b5e93afa4c030f |
File details
Details for the file probstructs-0.2.8-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 72.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5234a0014f38d4d9df5694c784b0034ea9a4055823a9c2e766ac61f77c939f81 |
|
MD5 | 74d97bbcf52da9c0f9d57552b0acdc98 |
|
BLAKE2b-256 | 5160fec70964260799fd13c9433784751f782ef6a9c73e90ad19b3700c6bab85 |
File details
Details for the file probstructs-0.2.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 559.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9dd2a9c82d74d2078866c0b91349129e8f48c98a1a7b08a085d6737a4518c466 |
|
MD5 | 04e60846a2b6e205f1600df88b277ad7 |
|
BLAKE2b-256 | ca51b1b18044df14370c5d87410ac382919623f75a83e02bb46bf0b9f38d3f5f |
File details
Details for the file probstructs-0.2.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 600.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6dc1b61d7837566dc37563fee5e5cf45f49ff7dba5bb115acfdfa9d8dbf63d29 |
|
MD5 | 90c868cdcacc58d127f73c92650c0b6a |
|
BLAKE2b-256 | 7d3ce89ab44c163df461defae8248cba4e73f57f9a32b673b794a3649df1a1b3 |
File details
Details for the file probstructs-0.2.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 78.7 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9c184a71f45c374e2debe51a0a339a021ff11c40a342322128f361cf7e36aad |
|
MD5 | fedad5d71a7868e1c973fec23764433c |
|
BLAKE2b-256 | 6f108c12a598cfc2d5a56cb1704fccc40f5554e304587a2b872f44f10f84acf4 |
File details
Details for the file probstructs-0.2.8-pp37-pypy37_pp73-win_amd64.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp37-pypy37_pp73-win_amd64.whl
- Upload date:
- Size: 72.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c808dd1eb774c69451a3f43d413c006cb07e4dfccb997fe6c982e03a7ede92a |
|
MD5 | d9043c6266d7101aa9f92b2782682cf1 |
|
BLAKE2b-256 | 71222ea7942a2dc2e81f1fb743a60405fc7c8a49efceea6fa25d5dc5771fc242 |
File details
Details for the file probstructs-0.2.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 564.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2abfb0574025e97ab195a8f033891cebc15f4563be2db97b443453675ef7f8b8 |
|
MD5 | 85128c4299e5efc829e8ba78253141ae |
|
BLAKE2b-256 | d28acf6482999c3078faabc8e652192f23b44fefb68ffb2550ac5e5be11080fa |
File details
Details for the file probstructs-0.2.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 610.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9b4ffac35abf680d7f400d203833891f65d32cb8ea4a400199ed5aa9d5b7ffb |
|
MD5 | 1f0f07ad80165313ae1d9b60e41b8957 |
|
BLAKE2b-256 | 90cfdac2517efb89991c7b11aa99ab81a4591b6e4e8434a810f37b2715d26326 |
File details
Details for the file probstructs-0.2.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 78.7 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c8d007cbf6eed58454aa7134903360930dd78ec23821a9a2e2bbf1f6b2fea79 |
|
MD5 | 01a81cad32d6cbe6bb2a66a90e1c53f4 |
|
BLAKE2b-256 | 7371142138abf7dd44a4740ec7bbd56684625c2a8c867f262ab79af3dff92ca3 |
File details
Details for the file probstructs-0.2.8-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 72.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea2611c63264fabdfff76cf545cf48a4097db292ece3db8e158fbec2281aeac2 |
|
MD5 | ef682604f61ea9fd74bf50bb5b65a677 |
|
BLAKE2b-256 | 1d1939455c14ac10948361f2779cd83ecb1a868e0ca2dd685f7b2f6062e956e5 |
File details
Details for the file probstructs-0.2.8-cp311-cp311-win32.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp311-cp311-win32.whl
- Upload date:
- Size: 63.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 114171dec44e845665e4b59743f12f90b50549eab7ed82077a4d761f927da2f8 |
|
MD5 | 53108f006d804bdbf27e605b83a18024 |
|
BLAKE2b-256 | 8dc94ae5a702e033382d537024839015e4c192be2024ddfd6fd6246a9609ea42 |
File details
Details for the file probstructs-0.2.8-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97456b4d4a1d4f4b56b6160f90216fce51e220de49babcb00d26e5b3433b6a72 |
|
MD5 | 85e62d91f88b3daeadcda95ef174bc90 |
|
BLAKE2b-256 | 07b7d4c1a4cc39f2d89f7f06fca1f6407e23b6f3c8cb177a63a75c29a0d579a9 |
File details
Details for the file probstructs-0.2.8-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00943f086697b36e63c78ab9e60457f4644f799be3644b3b4427035805fb520e |
|
MD5 | 8aee413dccd8bef6d81ccb7de46fc4ab |
|
BLAKE2b-256 | f91342f414bb9d1de14815ccfda5afc649fb283a6dc5114f85d54cb706923ac9 |
File details
Details for the file probstructs-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 841ea4c177ecb888a81b81c7174535219107ac494bc0f12912260e86307ac501 |
|
MD5 | bd46f5d295d6710e6dc596774d1cea75 |
|
BLAKE2b-256 | 58dbb33fadda87ce923ba9322020fa634f849c439066d0f4fb5faad7cb835c80 |
File details
Details for the file probstructs-0.2.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 060e98c8cd1671c42c7e4779fde1319241b02e1ed0377fa87902d9527247681f |
|
MD5 | 95be2d6bd91078c171eb983a89d5505f |
|
BLAKE2b-256 | dfe0ddb9ec620ce744d930f35a54a17d143c623c7ca8c0b2014f0a60078d7ca0 |
File details
Details for the file probstructs-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 90.4 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03aa126e335d3fce21f329a808da71008b192446f3942e2af1a1b8d00a087c32 |
|
MD5 | 71ceed7b73c2ef7f46fd9e3fdea5c3b1 |
|
BLAKE2b-256 | 019430fbd7dff0d292cc9d6d7f83af6838c82a45e17e0b4f25254253c30cc4b9 |
File details
Details for the file probstructs-0.2.8-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 73.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8dcbaea65ce2122ede53da305aaa158abbec525d81f4c6bc3c15543aaf39c99 |
|
MD5 | 4a7a1bc078e884c4ad7308953b5a3c43 |
|
BLAKE2b-256 | 839cf5383f8b693ca183d4a274b557a296eb705187573b9ffb0fa9c0f67f4351 |
File details
Details for the file probstructs-0.2.8-cp310-cp310-win32.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp310-cp310-win32.whl
- Upload date:
- Size: 63.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8bb83064c2edeb09da5a43f3cc2e9f82c69578a895a198f4fd7c32c5794751f2 |
|
MD5 | 93765253c780cc1778d521cd588b4d38 |
|
BLAKE2b-256 | b9b468bce97134d03de5f65ebf3bfadc1414cc5256344951ea93aececdf3b6b5 |
File details
Details for the file probstructs-0.2.8-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 900c255d6ed7ca64d4071bee05cbf78f81859cbba38c576500053ed64b079c4b |
|
MD5 | ffc7492e7324197bb1e4ac55964bb7ec |
|
BLAKE2b-256 | 35bdbd8985c665c46400ed16b411ffe685448383943db6c8162e688b243aac29 |
File details
Details for the file probstructs-0.2.8-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 279092a18ef5e90c5488e5e2fa95385d98d8c00a9d4fe5c015711dab0e53c606 |
|
MD5 | 93610d36ef481613a6845507e4dad303 |
|
BLAKE2b-256 | 01a1b035a5b877fdf5c11668724940922b412c377a54b197788515c4c145e54b |
File details
Details for the file probstructs-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f09507ad7e946c81070b1adba64e18bd36de458e4d2699a5c62aaa10c8748b6 |
|
MD5 | 49086cae19e690f14672d7be9da3baa7 |
|
BLAKE2b-256 | 3f9e31dcede08c3276baa528b14a7903c595a3b3ef9dbe7e78e7cc1f30774e5d |
File details
Details for the file probstructs-0.2.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06ca66dd7c89d38d10026c04d6ff78b1e8965b9fbd8c84379677c202c536bd15 |
|
MD5 | 359aede838122ed47d7b9c61d99712eb |
|
BLAKE2b-256 | 11f08ce68c7594941539587ccfe49e083be507360af5d5fff397954a65284c38 |
File details
Details for the file probstructs-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 90.4 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e2f8572ca31994533220d13ff3df6fa8a6af6dac72d8fc6089fddae14987983 |
|
MD5 | cf807dc5b806e037cf0cac969dfd68fc |
|
BLAKE2b-256 | 2216a3648542b538f78021196ea40436b1eb3abf8233a6c47d764f374ceb2eb4 |
File details
Details for the file probstructs-0.2.8-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 73.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63bf3dab3d5166f79aaed0e25f3d84b46819eb36d7fbb6e2d78e5b7ec0cdaf46 |
|
MD5 | d625b1627c24ddf4e1df6bf01a70bd4d |
|
BLAKE2b-256 | b23ec937af13fa6842e36d269a40c300c8c2262348a75e77d3d364ee4a9ff3bd |
File details
Details for the file probstructs-0.2.8-cp39-cp39-win32.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp39-cp39-win32.whl
- Upload date:
- Size: 63.9 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c3427dac8693494f87caaaf6f164a58eda518bf898e8266178a01bf9a36daf8 |
|
MD5 | 673aa7724dfe1e15203a0655091ebfb9 |
|
BLAKE2b-256 | 69f06411709b50a17959236565d7129cc69ae4df74836a46d800719b34195814 |
File details
Details for the file probstructs-0.2.8-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d03c40d395c4422cec3b46f7955bbc0513c11220147c15cbb538b1175b0153e |
|
MD5 | bd5aa0e1bbbb3904ddc2ff31431d5e6c |
|
BLAKE2b-256 | 0de7a108e6940cb715d19064f1b07af03b894c6244f6c37d5e1d1057a14aeaf8 |
File details
Details for the file probstructs-0.2.8-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 100d70b4c9782e5dcfb163f7df84ddb55a57fa3a3c5976d4dcc6d510ea49be81 |
|
MD5 | dd23dd8228fbadb404cc891433703f00 |
|
BLAKE2b-256 | e6c01ae20a5681a48f2a6783580e2493800aff3f5ddb04e5a2e697dc2af1dc0c |
File details
Details for the file probstructs-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9aa8ae31e663d2a36bcb4aede87e2d803cdb12a15806338152e303af003b479d |
|
MD5 | 139fefeed85c939f0344447ac6f6cc2a |
|
BLAKE2b-256 | 3366752efe1e5354fbe4790abbc516bc0051ab74ce571a51cd02e6d289215468 |
File details
Details for the file probstructs-0.2.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 974fab6721b55082d3805528721926ecffad49accc0921f1f549b4f1d2565b25 |
|
MD5 | 78ae751dd94849679d6b3f4d245f4645 |
|
BLAKE2b-256 | d54971441246401bdf3c02648bcf37817768f03b8eeafab8aeb93ba024afe15e |
File details
Details for the file probstructs-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 90.6 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d98cc9712871381ad7d27cdaf06039cbcae2e95331bce9ec8fdf97755f5713fc |
|
MD5 | 73cf39fcb718dcea4ed2aa0e7ebbf44a |
|
BLAKE2b-256 | b365d561e1928427aa49c5bd2491fe66121376a159192ba2af1d637a3612c648 |
File details
Details for the file probstructs-0.2.8-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 72.8 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f45cc7a2ab320d2d3ef30fb601433d330ae70e3dc578fc7f413be4a150c3752 |
|
MD5 | 0458d3a729b0786645767e8fe0693048 |
|
BLAKE2b-256 | bb1ba4b6d4ac42967251361eebae7da682ed7e15d17b1ed000de4b2ac83a6b0d |
File details
Details for the file probstructs-0.2.8-cp38-cp38-win32.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp38-cp38-win32.whl
- Upload date:
- Size: 64.0 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 198c67ede91fc477a9b47f81ac42bd6839b506ab25a8fe3a3f9e6edb238346e7 |
|
MD5 | 1ce97bf9c371809c943bd4a9c8b2c62f |
|
BLAKE2b-256 | e8cd1b2a7b4c2fafb42d2ec2c1473fc41384468d2ed6a73a72253d0795aa3fa3 |
File details
Details for the file probstructs-0.2.8-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e16e2b658289759eed271994be5553300158f34f52a199abb4c347e168ff6d8 |
|
MD5 | 0368e8bbb593e8759baf0580cc3c451d |
|
BLAKE2b-256 | b2808d60836fa886e0b252532b632c38970847633330713380e78249707e8163 |
File details
Details for the file probstructs-0.2.8-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f72a7d58083c1c71006349ae2d2d6a375b6610718348532185802b13b6570a46 |
|
MD5 | 92fe66146cbdf67ccf28da0c03151bcd |
|
BLAKE2b-256 | 0407356c4ec4b069d64aeddbea4dd791ef96d8e395f2676129c66073cf28ddae |
File details
Details for the file probstructs-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e58001765258b5cad4f9e0d9887ae9021b36f7943db7df816d98411a329f22c |
|
MD5 | 850574a13fdc0f9f781c194d1c43ca62 |
|
BLAKE2b-256 | 43f8058e71539a7e65a643e4c09209e6811ef48e8633c6a11429c5e8718fb8c3 |
File details
Details for the file probstructs-0.2.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2bebf442a5a74dbd6fd0341eb7d396da958733e1bb64c1a8d9861bbbbf4f58f |
|
MD5 | f6d8f13ec5b86fcabd78ddfb5dab733a |
|
BLAKE2b-256 | 3b310e39945cc68699288d2d4a06c931ee9f70d2bac35a7c286afa9f3b6a6556 |
File details
Details for the file probstructs-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 90.4 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a797eb2bbfe9f06a10100c7c2566894d3b06536025bf740fc462bf3e4b3053c |
|
MD5 | 3cb63733746d3515a90542e4c22d3b57 |
|
BLAKE2b-256 | c3089ef5ed984fbf990d06df91249d8dc5461e463db10f381668b233b1089ec3 |
File details
Details for the file probstructs-0.2.8-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 73.3 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab5e3252dc400dc45d480fdd8f8b23dcf66905bed4eceb2af69f0bf3df18f527 |
|
MD5 | 10e6fdb68bc0dd371d74c382a9644bb4 |
|
BLAKE2b-256 | 3caaa8eb34fb1bf9471a4699f04a36cc77ebfbe5d8e0f29161b8e02ca6491a1d |
File details
Details for the file probstructs-0.2.8-cp37-cp37m-win32.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp37-cp37m-win32.whl
- Upload date:
- Size: 64.8 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7aa45a5bab43656f3044c0f5931d2f51b92332de807fe062034b7a7768a51086 |
|
MD5 | 31d4bc071326f1d3a837e0eb47fe0a47 |
|
BLAKE2b-256 | c6778ae6528ba08efc1a1d8bd27ceef91d6f4b85c6765608e2296c9e57d924a1 |
File details
Details for the file probstructs-0.2.8-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06a81959287d7ac989b64943b60341493ba5281f84df52eeb0016ca1b4a3bd48 |
|
MD5 | 4867aa499c03b7baa9f75820f114fc4e |
|
BLAKE2b-256 | 0b0da0bfd1fbcef8ac5531cb721e941f5a3a2d283d5ca7506fa4a5db863c1943 |
File details
Details for the file probstructs-0.2.8-cp37-cp37m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp37-cp37m-musllinux_1_1_i686.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aecd2adced2472a5dbff5ebeaafded97160a6d7fbf0b70c9743467282467cb28 |
|
MD5 | 3e0c70c5832cfa19f8d4c97d8717fa76 |
|
BLAKE2b-256 | b77bb200e6e7d1a672843e77fb87d1d5763eb9fe88adb66e19f591b2817259ac |
File details
Details for the file probstructs-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9009a9068b825741554a8828ce0e4f27149319bb33862700183e5ab5c1df901b |
|
MD5 | 5ecc11b183ced22d8bfe2874f4663171 |
|
BLAKE2b-256 | ea52ef4e149ff2927147619e77ead1de63df26b161fee25c6434895484d92fd6 |
File details
Details for the file probstructs-0.2.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c17d81ea8298ccf742e7672e33906148a0fed66608acd0e37c227f0bd1aab60c |
|
MD5 | bdbd17225a7d88fdf599d2595f3427de |
|
BLAKE2b-256 | efa5fbc49bb2d62628754727bf90896e5f74cb9f30ad3a05de1f50cd1ed306ea |
File details
Details for the file probstructs-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 89.7 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca5df533ccf508aedbadb674f034e4529c6f3fa2ede174c903c7efaf1357b329 |
|
MD5 | 955e0d4fd0747835c958e783a6e5c9a3 |
|
BLAKE2b-256 | 0a6d102ea6dfe5a3d3c2c040d35df04499c93124f354d4d4a91d6ae7bcea7706 |
File details
Details for the file probstructs-0.2.8-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 73.8 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce1eb99cc49e94635187af6026222f4b9fb6a2f7160d91dac90eb033ff82a6f9 |
|
MD5 | 52e12c801abd3f2faab4340e42fcc6b0 |
|
BLAKE2b-256 | f128f2b19a2139133eded802c2bcab62b2ad543eb66b4b4f6c53cb21b180689c |
File details
Details for the file probstructs-0.2.8-cp36-cp36m-win32.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp36-cp36m-win32.whl
- Upload date:
- Size: 65.1 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b568765cb7c547520aafac1b0b09a499a9c2dae0ce5f1bdcb4d2d3423d305b7 |
|
MD5 | 876da5d500cf62becb3c5b8cb3c99cba |
|
BLAKE2b-256 | a15208a1994a3771a21d03cf60e24114f05a656aa500993a3e751707f15855ab |
File details
Details for the file probstructs-0.2.8-cp36-cp36m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp36-cp36m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 341d66adc6dee94ccf0ba6e6c07da92194cf1ac2b146073ceffc76db742abf43 |
|
MD5 | 3c90cf3336ee0d72e5dc8267531335c4 |
|
BLAKE2b-256 | ee0e2dc0f4a81416f5bada0709ac08c46c266201924a3db30f24c67bbd05dbd0 |
File details
Details for the file probstructs-0.2.8-cp36-cp36m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp36-cp36m-musllinux_1_1_i686.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.6m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cf64b838e6ed32f104debe5361b7eb3114504cd63fc1d7eb2fc1d9249853303 |
|
MD5 | 93f951cb6352cf01feb2e8ac1078782c |
|
BLAKE2b-256 | 600a5b17ace8ca36dc095f87196438a69067b6398cfbe0713ef5482e096ad856 |
File details
Details for the file probstructs-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa14f1b9d2a05117084ac11f60e0603ec2dd217ff0ab45afd50c61cc90bf2cb3 |
|
MD5 | 7ed3191e290695bd25ec4da4f7e08594 |
|
BLAKE2b-256 | f0cf4ccac04a1e41189b68efb7072d751eabc4e89d6f68f5dd273a9a75f48b57 |
File details
Details for the file probstructs-0.2.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20e0ed3c49abb69b2162c990464f900a5126bc478c068a00766e187a714b1b08 |
|
MD5 | fe0f0f63f843f4e2f14ef4b2c169d1c6 |
|
BLAKE2b-256 | 1a962ce405766cedb0ef2d74bd490eca6b8270a9e61866a39f29939c6875b5a6 |
File details
Details for the file probstructs-0.2.8-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: probstructs-0.2.8-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 89.8 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b940e7a6d3e261b52eb16591ecf99cef257a9a7bcd7f4c8c1f6cfec5bec2e7c3 |
|
MD5 | 59fb4c7be7cd78d9116e5d400e1c97dd |
|
BLAKE2b-256 | ba14353c4f7b2d384b26229956cf180f2a86e259184f4b7d7d1f75ea878d2b5f |