Counting, Sampling and Listing Markov Equivalent DAGs
Project description
cliquepicking
You can install the cliquepicking module with pip install cliquepicking.
The module provides the functions
mec_size(G), which outputs the number of DAGs in the MEC represented by CPDAG Gmec_list_dags(G), which returns a list of all DAGs in the MEC represented by CPDAG Gmec_list_orders(G), which returns topological orders of all DAGs in the MEC represented by CPDAG G
and the class MecSampler, which can be constructed with MecSampler(G) and has the methods sample_dag() and sample_order(), which produce a single DAG (or its topological order) from the MEC represented by CPDAG G. Repeatedly calling these methods is computationally cheap compared to initially constructing the sampler.
The DAGs are returned as edge lists and they can be read e.g. in networkx using nx.DiGraph(dag) (see the example at the bottom).
Be aware that mec_sample_dags(G, k) holds (and returns) k DAGs in memory. (For large graphs) to avoid high memory demand, generate DAGs in smaller batches or use mec_sample_orders(G, k), which only returns the easier-to-store topological order.
Be aware that mec_list_dags(G) holds in memory (and returns) all DAGs in the MEC. For large MECs this can lead to out-of-memory errors, so consider checking the size of the MEC using mec_size(G) before calling this method.
In all cases, G should be given as an edge list (vertices should be represented by zero-indexed integers), which includes (a, b) and (b, a) for undirected edges $a - b$ and only (a, b) for directed edges $a \rightarrow b$. E.g.
import cliquepicking as cp
edges = [(0, 1), (1, 0), (1, 2), (2, 1), (0, 3), (2, 3)]
print(cp.mec_size(edges))
computes the MEC size for the graph with edges $0 - 1 - 2$ and $0 \rightarrow 3 \leftarrow 2$ and hence the code should print out 3.
For a more involved example (Example 3 from the AAAI paper), which illustrates use with networkx, see:
import cliquepicking as cp
import networkx as nx
G = nx.DiGraph()
G.add_edge(0, 1)
G.add_edge(1, 0)
G.add_edge(0, 2)
G.add_edge(2, 0)
G.add_edge(1, 2)
G.add_edge(2, 1)
G.add_edge(1, 3)
G.add_edge(3, 1)
G.add_edge(1, 4)
G.add_edge(4, 1)
G.add_edge(1, 5)
G.add_edge(5, 1)
G.add_edge(2, 3)
G.add_edge(3, 2)
G.add_edge(2, 4)
G.add_edge(4, 2)
G.add_edge(2, 5)
G.add_edge(5, 2)
G.add_edge(3, 4)
G.add_edge(4, 3)
G.add_edge(4, 5)
G.add_edge(5, 4)
print(cp.mec_size(list(G.edges)))
sampler = cp.MecSampler(list(G.edges))
for _ in range(5):
print(nx.DiGraph(sampler.sample_dag()))
for _ in range(5):
print(sampler.sample_order())
Time Complexity
The counting procedure has worst-case run-time $n^3$, with $n$ denoting the number of vertices of the input graph. This improves the asymptotic complexity from the literature based on the comment at the bottom of page 80 in my thesis. That is, each recursive call is associated with a subtree of the clique-tree of $G$ shaving off a factor of $n$. By using global memoization the computations of function $\phi$ are also possible in this run-time. The general procedure is identical to the published algorithm. There are a few additional practical optimizations that do not further improve the worst-case run-time but make the algorithm faster in practice compared to previous implementations.
Project details
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
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 cliquepicking-0.3.2.tar.gz.
File metadata
- Download URL: cliquepicking-0.3.2.tar.gz
- Upload date:
- Size: 21.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f47759b7c976e6acba18750eaaa2c81fa648fcaaed3f43ce890da0d39ebc852e
|
|
| MD5 |
12684777bfb2e8687303b2ce7863f903
|
|
| BLAKE2b-256 |
da7298fa35b59fae584323eae76b7d23571ea3f3707ead1012f07ce397063c6b
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 541.3 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c4a099a9c1d7ab32c7dcd541c80d107b35ccde473eec4504b7b0f48aaf14271
|
|
| MD5 |
bb7b5175c3c1f415f18ec1e8871c2896
|
|
| BLAKE2b-256 |
db00c6bac5f16d268207ab3c08add7b4243046ccf9b73f0e71d130c12b847569
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 570.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b4bd6e18fdda6cf3b735f31aeffbeaef597cec529499582bf64b8fc95e0c4af
|
|
| MD5 |
0e85565adbefde73fba37f1d41de5e6a
|
|
| BLAKE2b-256 |
47a867bd1972ea014fabb070239f2d18302b626a8f2cef024f29db59f53256c5
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 629.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8be21f46946bbbd57474d3288fba5c6f0bc6e1f0295bc3498e289cf531bc0c18
|
|
| MD5 |
d99e603d0643bb9e692ab5123da8658b
|
|
| BLAKE2b-256 |
463172e5ec5c2b61a8078ca881c436346ab98e4e9cf12be5de820e3de0634a72
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 544.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9ccf8ea73c8279d7b711b03367919658b5a56103883c23dfb418507ff9969f1
|
|
| MD5 |
95a83a16d76605b59abffe8adc8c6a91
|
|
| BLAKE2b-256 |
94e762c83e7e43d0ee5529a3ab9039e26973c823da08aabaab670753e3302ba0
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 370.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee8a2454dab0ba44aed80393e29d5c345558d4b7250af402129eef06c75a1277
|
|
| MD5 |
05830265691cb0b87de0388dd936a8fc
|
|
| BLAKE2b-256 |
65ab773a6f18ab4d80f971a80d70df7c14a0c3783ba3cdc90355706a463c159e
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 411.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95781c5661e1d6dba0641fdbee84b190a8b3cdb7705daf55209b42ec71269400
|
|
| MD5 |
658790fd39e385eed9fd580acccd6762
|
|
| BLAKE2b-256 |
56d251cc8f96ea2bfaffbbb420fcc24120696ad47fb5852b15c43a61271fee7e
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 531.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ab0529b789f06cb65c89002d5c2c9b2d41823bd19d333e556608202b1dde963
|
|
| MD5 |
94b6a7ecfde8ee646b6b4c2c6314c150
|
|
| BLAKE2b-256 |
0fda369e313beaa9e0d2c59eb8bd8a40b7a17e447664ec74899dcdb54763766c
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 367.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f91aa384fcb0448f0d32999c8759d3b4347b48e322b61ec3f02c05042dd8ca3c
|
|
| MD5 |
b5b8f22c15f82b7d239b97d872869a8e
|
|
| BLAKE2b-256 |
e34934901c639835de3312ccc744a184791f65311d93e9daf5c6624a01fbcb76
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 367.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0428754b86fef213f0ccec5c33e252c8a668dafb0f910dd18908c26679e52880
|
|
| MD5 |
954842d310c5efa6e068c508bda4a492
|
|
| BLAKE2b-256 |
834633a65477aaaf27a89566669efa2565530f309a8e2f1745602a68bda86fdc
|
File details
Details for the file cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 397.2 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fdb36c785f13e7645224ee7f8d1d10707a396b3379d9c003f8d20365fd942ac
|
|
| MD5 |
3de254d4a7e51e7b07ae75ea2933a575
|
|
| BLAKE2b-256 |
c835c77bd2d9ababb86d910fd8b3fc7c6e50b67a666b273f66863e9fb9e60668
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 541.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8f1477199a956e984ac0b6981c4da2691b0ead3c7f3e53c6f5c1bff4a83d5dd
|
|
| MD5 |
cc17f3d5d04e6db4192bb212fe4a6519
|
|
| BLAKE2b-256 |
76ace12276aed55184a44895fbbe447af2843c47092e42b00236788aaea0f484
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 570.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e2e988792a90d61fca36b948c6b3ee5700a9e5dca91be540c88ba4132121b0a
|
|
| MD5 |
35c39029dea827c39c35faa86219c7bf
|
|
| BLAKE2b-256 |
5554c0a435d1d9697b79ce19e3c2bb494461ad3461fd1b18f01fbcbd71747fba
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 629.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fd9f762e737fc4c9b8fc512789ab042fe42befe29068aa22d4fc11f3303f6ea
|
|
| MD5 |
b20b4c367c7fe5137c7a5d046739ecd9
|
|
| BLAKE2b-256 |
97d12ca8e34dba043ce334c94e84d71aba8d30667f474ec1663d629355306a51
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 544.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8db6c5abb7191dcad1184e10a7a6149cab3339d055f78aa5a4feaf5892f5cd21
|
|
| MD5 |
fae06a295a713a7596948e6c35320d54
|
|
| BLAKE2b-256 |
b9ff20f5d917795e5ef09de1645fa1388f10a3251770fcb6ad5b97a77c32bba6
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 370.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07dc94950eb08b787cd5f7a497fa4063f51379a05da38b2bc827182ed7ee4db0
|
|
| MD5 |
22751a916c7ad8d5d513f80ffb60d947
|
|
| BLAKE2b-256 |
3bd323bd325f6f7a43ffea4c0f71258ba93eb85f2eabcd09665a1f4aa054ebc9
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 411.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7d84d943a137ba85ba78b0553ef875e37771ea5ee264f46913e9eb5b0934eba
|
|
| MD5 |
cf71b52220d96e2e14a8c4392a849302
|
|
| BLAKE2b-256 |
7de26cab4d7ea4543a14b6bea6bfc56a1fca0f63904162bf45bbeca6b69fe359
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 531.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
375af76f84f6e9438f74d9c4a1012f8fd9ac96fdec83adea9d376d1f9e2828cd
|
|
| MD5 |
aaa5c8277d8ed61e72f0b3bdca9adc46
|
|
| BLAKE2b-256 |
509e91498dc92a9a94e1636a232f5e467308a01825836cb55d21afc122a25423
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 367.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd7b96263c3a3cc9c2bec3d0c7a713116819faa19379ebe8af3d46f2141f8de5
|
|
| MD5 |
1194bf56beab6ecf038e7660d323fc68
|
|
| BLAKE2b-256 |
89e8885a8250a99d4dffd8ab6144dd29cbf5b95051a35f34a4d1986b6e9411bd
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 368.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61ad8b8d59e63efd49dba71e61f02a740799abc15e0385fdc59fae8dc2465c87
|
|
| MD5 |
edc344512748517e609975649f1a452a
|
|
| BLAKE2b-256 |
fda15bd96d553053ae04267b94b945e71147b32f97e24d68d949c6d93eff417e
|
File details
Details for the file cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 397.4 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca6d75851b3738470c9549796bfccaec78a94f21cd71d02f8cdf18c871fc37a7
|
|
| MD5 |
e711195b3477dcd56bb766798853d8b0
|
|
| BLAKE2b-256 |
9614a95e40c4dcab3ee2746b2174c174ddef89621038cd741a7893f0484177d9
|
File details
Details for the file cliquepicking-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 542.0 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b1281d1e2551ee6471f24b812c3ea79b0dce684457749b829f51e86b47d7501
|
|
| MD5 |
394b446739b96516c24649807802ceae
|
|
| BLAKE2b-256 |
30bbddb856c4f00f35bb93ceba6084f2006bf6ac45102a3b665822bc995a3f39
|
File details
Details for the file cliquepicking-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 570.2 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8387f1697c15477d98534e23f5d8d3e97b6621d644a89335c111dc06649781d
|
|
| MD5 |
c2a7c55dacfac367a8e7d5e56dd8bc1c
|
|
| BLAKE2b-256 |
8889573b968051e86722700172238658cd57ec7ef4052270bc271b6484330802
|
File details
Details for the file cliquepicking-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 629.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61ad361dcb2b7f17f72e2b9dac86b7eb62e6fb28ba63e901fa3a62537ad1d487
|
|
| MD5 |
a0e1682315566e2d6095473fd0c41380
|
|
| BLAKE2b-256 |
369ac64c792a883f96d911051698b8c457147335d9fe61931982c1f7419d54b1
|
File details
Details for the file cliquepicking-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 545.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7382453ecdd6714e240467242ca6eba5407fac5d4dfac9cb25b327e13476dfa8
|
|
| MD5 |
1fa6396205722de672d6e612ae7bc779
|
|
| BLAKE2b-256 |
1c0726f75140ee96448619c534063964f6c935f0b033b35f7e81012ef2869387
|
File details
Details for the file cliquepicking-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 410.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73e6e4a803e439556ccc688598ac85da0337247083c3fbe54d3341cdb91b466b
|
|
| MD5 |
ba1bf25522fcc1d1e0c7a8d814e17ef2
|
|
| BLAKE2b-256 |
391d2d588b3b5e87960fa12774814e98da6d2d86b0eeefea88747f04a2bd4ef3
|
File details
Details for the file cliquepicking-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 532.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ff9a5e8a96f7ef8edd0417c1e08dddf30e1058cca564e4dc295b68c261859a5
|
|
| MD5 |
1b1d55129221e72516f901cbbdb6e66f
|
|
| BLAKE2b-256 |
dba41bdf117756bb0b55f415a1760dccae659b4f2a07e1239eb05a1e51e7eca0
|
File details
Details for the file cliquepicking-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 367.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
589eed45f3296bf709854c63982cbcc82a13a872ab7c4d00412369e5de8d4724
|
|
| MD5 |
9b46846557bfa107bafe258fc28fd43d
|
|
| BLAKE2b-256 |
971d04c0c294269b080af9e7160e940664d7e5eca7e4f01aaceeb805698bf107
|
File details
Details for the file cliquepicking-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 368.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
509b8a055d87408844d32cf5069d33f6fb14e7f79086aa98a57f47616de08451
|
|
| MD5 |
315b833db2db99e62d9752c4f0e4f121
|
|
| BLAKE2b-256 |
5a204bcb9eb87d9f71f96cd09073df901c8966ea81a0a314ab9855b9801aaa8d
|
File details
Details for the file cliquepicking-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 369.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa9c8b7d0aab95261ceb73ba9cba599c3b655c8dbc27dd57e29168e5c1e1a7aa
|
|
| MD5 |
049fed6a8b0d070aabd5302e4e29f76f
|
|
| BLAKE2b-256 |
9ffae45cd48cc5b85dd669dfddb69fe4c266659f140b4ee16d2ac3bc328541bb
|
File details
Details for the file cliquepicking-0.3.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 396.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c42111ef62e09b2f866bd344623fd6f5962713146558cba77fc5ae53620763f6
|
|
| MD5 |
d41ba94bf0a2b24f912a17855d3e9186
|
|
| BLAKE2b-256 |
f54a06a3dd224c2006c95543500e6841f137629579a8ee95c1b4550a3a51b749
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 539.1 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90f890fc44b9bcce06480494600855e34796540a9fcf7fc7e444df7558e4a23c
|
|
| MD5 |
4be9a6071586528debc85894e8c536e5
|
|
| BLAKE2b-256 |
66619b6e35e6fb31c868870b8c75daa8878f9b2b7ae3981d0838e3fc98f739f6
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 568.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70e77752dd5c42034aaeb323fb4c51f7ec311b3f65bf9568d125134003e7781d
|
|
| MD5 |
4d80836f67325e62754297257ad4b61c
|
|
| BLAKE2b-256 |
8ce9a5b23ff858638790f2bb26a041881ce92095856f7b8eace2a83d4d7ce94e
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 627.8 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
362866b6886170ee297facb5d36014ab0857eaab54b221b9c3481f2bfc5b78b7
|
|
| MD5 |
5292e01d46d15fc25b8659e3b91e04a4
|
|
| BLAKE2b-256 |
8182f7842be75359861b18129f4a5e9c396c6b54e0fa514a7dba622f04e17fa9
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 542.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8525fdc47b1538a9126cf34f1e482a7853aef0d0fedb90b09dbbfefd0b3ac69
|
|
| MD5 |
4c927a0d4903289ede8ce66e4780707e
|
|
| BLAKE2b-256 |
4d8c44db77f6a6ba7b275473469ef033f3397af7a07dde59f26db16978cc3346
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 409.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7aac16b428b40ed7981bf03fce757c6d719d891297c4c137f3b7dab81b0f7da
|
|
| MD5 |
d2c56378f7d3287a29d413122426fbd6
|
|
| BLAKE2b-256 |
9cc49a7bf0b84d6acabdb8a24061d1048301e43d51a90edf251f467028a2cdb8
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 528.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2a453f4c34788885b1d8a45524b6daaf3d49733d1be231a6b62bf653c3bbd7e
|
|
| MD5 |
10ef61095880fc98d8ed58e2291b51a1
|
|
| BLAKE2b-256 |
df2d32c2f9a01635c347ad20581754f63f845982aa21b2ac4ef2abcd362df18c
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 365.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e006af13f49ac013411017a4486b97400a1124557283ffd8ce1a430ab6ff1396
|
|
| MD5 |
813fbfa00212d8b3207a0b5f01cb442a
|
|
| BLAKE2b-256 |
d6701020353b62168a68fa22229759d287dfe890f84e8b918975acd839ec0de2
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 366.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
995de5cc91ad6588a0b35c327fb1ee20df011bc574f975d700d2c320e968b3d9
|
|
| MD5 |
76085d57462b0b44460a06bf8847ddc1
|
|
| BLAKE2b-256 |
7e8a104818bd183e490feda4a386bb51abd30d5bb37a96db5a004ac2eb5aa1b5
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 219.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b152576af9a476356ed093e729f809ef54363b899f8c43ef19ec96383c3603d3
|
|
| MD5 |
5c4bdefe92c6c679586324396fc6e02e
|
|
| BLAKE2b-256 |
4aee8e5e0b5756184cfa6c57b9eefa882cb87a320f2c924f0308358b09bd1a0c
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-win32.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-win32.whl
- Upload date:
- Size: 206.8 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2edb1614dae984b444bc43919af9a829c021164526316ddb7174812177fd24f
|
|
| MD5 |
7955c69dc1ab162623c05930db09e7c5
|
|
| BLAKE2b-256 |
31b6821b9b9f61a52c8c38b7b936397de6d139e11b5057cdf3b0d67b23735c4f
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 539.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ee9da0cd15df1bd1dc300fd1f3be20536d54b351b0cc25a186a51c93a0f9a8b
|
|
| MD5 |
5423554e0f7262dfe793a66c360d836e
|
|
| BLAKE2b-256 |
d93e9a5e848939c08104cef556ffe8c42dee2ed76bc3d6874919b9d58202aafb
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 568.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4618296658901e836761bac4bf40df6a26233ed4bac36334d8631b4c4d193ddc
|
|
| MD5 |
071b3ce87dc261e02ad6199f22cdfe25
|
|
| BLAKE2b-256 |
e72693444d443caa2ad16040a666c04ca013a4af4f56afa3bdb17330f8b247f8
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 628.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16c00b08b87d4f39a3378ba2f030a2c6f6d12a5610fccf7fde7d758e485543ea
|
|
| MD5 |
f4a58f7197fc118379ae99006b898fde
|
|
| BLAKE2b-256 |
f65b421c8039b200d13e674dcd68ce8369cb281611db820e1795f0d1b59714c5
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 543.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f6a5b1b66796a7eb0a1605664f3c685143c9827b9fec835014c4000e08c66b9
|
|
| MD5 |
4699a83e1575015cf89d3de4e3ac5c25
|
|
| BLAKE2b-256 |
6aaf864efcdee5f7eaf296357c1d8c8d3bae482d4a8296b409e651b0e894eab2
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 369.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5a2dac8f6c52146882469193ac4088a06c0d1c4bba3dc40a5b9a18b3b16e803
|
|
| MD5 |
a673b154aeb9b6136168edb1554b1184
|
|
| BLAKE2b-256 |
c41ed78bd3e8fac9ab3cba053ae9452d45ac7f9a30b96ed637a764a0e2634052
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 409.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
008447134f9552f953fa92509eb6e14ccd64ef40f0cfdd595a9ea894a9da8c07
|
|
| MD5 |
96aba4cb0221966c377f4460fdbd9a36
|
|
| BLAKE2b-256 |
dec57f055b43e740eb154a114798fa943f65aa9b738ee029aa204606a9df8ace
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 531.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
883154681aa63e9ef4e34733f0aab9eb06b31ef726441d6de7322606de1558c0
|
|
| MD5 |
17d3dc6abfc9171a27a5874cfbe76e5f
|
|
| BLAKE2b-256 |
8c8a7c3e08e9fa2c2a12878f3aed3e3e4d06d9fbfcd5bf13fb65475e38be1a26
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 366.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14a8b45f2c77d92ea2bac5c649e032d425aef51b5dc8d74c18f6fd4b31f1fc11
|
|
| MD5 |
63423d3cd4582947ba486cd94445069f
|
|
| BLAKE2b-256 |
d3a0a071d686f518980c2756f39a16846d17d4f370d37576165df60fa0a94322
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 366.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38cdcbc27151a021f2b4d78e467330ecb3068d9d3dae8e2d3a72791185801c00
|
|
| MD5 |
c62d8680ab990f035cc490e45f334f7d
|
|
| BLAKE2b-256 |
aa71dd526b00741db8b0172c56a4b94cec9aa5abef0c58dc10bb34e055615f97
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 395.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51f2e05fd13896021af13784c21f8992e5f06ef8381f9f75c97c841252ba8be7
|
|
| MD5 |
bd9209518760bc54aa11ab40ebc8129b
|
|
| BLAKE2b-256 |
5ad691ccb3c83b3e5e2aa0a708fa7de3724fb391d6618fd75aa4f640a324856f
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 324.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fa688df2ce94668854a3d3cb390f002418e5dc926139c99f90e5e3bd96a4f32
|
|
| MD5 |
796530950a873a1f0a6e24cbd940d0b4
|
|
| BLAKE2b-256 |
d528f25a5d45ec6192785d8bfc5939ae4b4e1e2162765a8f54fa00c318ce44d5
|
File details
Details for the file cliquepicking-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 332.0 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
290db69a03398f4dd94b9a6ac0b65895f4bd0b4f75eb188d926450b90dd2d625
|
|
| MD5 |
10c74d0d78edc0bd7afe055394b37fc3
|
|
| BLAKE2b-256 |
3695d397865174c8d278d55c71becc833c7115d7d57041998389eb598ec74324
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 220.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d51c4d8099e339cedd12818df7f296433cd3e27cd60687f184d7a5e9e774595a
|
|
| MD5 |
bc2af2dca5fef5ab736a39955403aca0
|
|
| BLAKE2b-256 |
b1499de8c6f8d8ae796ab19a88a0629066fbaa830ec5434c67891a0678c10ec7
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-win32.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-win32.whl
- Upload date:
- Size: 206.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
469de323ef11db904b3673ff8368784b4db2e828ddaef3239f0241401d07c1e0
|
|
| MD5 |
91b0ac6d760628c480efa1bf39e80eaf
|
|
| BLAKE2b-256 |
957e84d791f6eb895fc6d50d02b525fe11bcfe0428dd87ca6b12ecc3fc8c2774
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 539.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f52aa3aff50db5611ba24d8dd3b66b8e1aee2a7ceb62c9e8f64681ccb922c53
|
|
| MD5 |
46b8a58930958dad919b81a339c800da
|
|
| BLAKE2b-256 |
f9ed8d5866b5c6b3892e95065778cd3f13c1470676021a2b4295561d80d002d2
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 568.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e478d824c8ae88ada094b05c15cbfa83f44172050c8fe83756c0d6ab90583be1
|
|
| MD5 |
2aeb7fac696dd4b81c054a23c0f41f4f
|
|
| BLAKE2b-256 |
cbe522e71091c57d7054e996909d3bbac2cdf6214237c285924307042cf39eb7
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 628.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec20ea8cada0d579b830d46c510c74dbe98cd05186f26b889361153f13744071
|
|
| MD5 |
b26f9e592ccae20993dca025b311c755
|
|
| BLAKE2b-256 |
8843db20b1fdab8c7913bf668bdf0f8f9c09c01ae37b16a7b326016e421ab0ac
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 543.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7da359ed4bbbda2f0eafe7a04df5fa29ce3ff5fefd15ec8d626f916e3d7a8265
|
|
| MD5 |
78cd1cf9f44bf96cadce6ad48dca4232
|
|
| BLAKE2b-256 |
54746fc180125637e6e7273e062a683e5605ee48491d10e7590a24c650669285
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 369.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5224a3ddff56e509e8dd13430c12f36d2cececed21fa9cd5d45ac3d7fa239327
|
|
| MD5 |
bf3ce495da57f271056d9511bf171a5a
|
|
| BLAKE2b-256 |
4f0b08a7f72dc8570d16e1e2151ab28b94c1b483f1c5ff95752397b5914539fe
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 409.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa45a1e5de7f01fdbd9c8f918b330866663dde984a2a281d22185eefd4ac6b67
|
|
| MD5 |
c809cfae283521ae87e397f868986579
|
|
| BLAKE2b-256 |
6e1243ea0495f3fa091a3da9554955b730179a10f0f4f521b60831d223636184
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 528.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2ccb8dfb4253cd342d1affbf0e8a14b3fb6d2ee0f1eeabed8fab4ae097bc176
|
|
| MD5 |
07bb72017fd760fc9d5f250ee23a207f
|
|
| BLAKE2b-256 |
0a91257b44138e36a96c7e6fa75d5c45feaaacdf6497d3df584b65689f4c3838
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 366.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9e0cca3d5598550491721814ad23dead7f804107f6aabd9948c0f20a0d5d57a
|
|
| MD5 |
68529f8b2fdee8adddbd28a428671353
|
|
| BLAKE2b-256 |
1233fd50507fe93ded33e71df661add9fe622c3e7d9801ba1f511c857622b81d
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 366.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c6bdb62358cfbdf95da23087a503bfd39bb90c88f8a20e184098ab425cfac3e
|
|
| MD5 |
fd7abb54a11aaa156d5499d1a18b6495
|
|
| BLAKE2b-256 |
01475314c69f1a5937a83ca6fa12ded1e5be8eab00946fc91a6d10ed7c9ec9c8
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 395.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1eb53aa164b4b29dda8448adcc669a9fef8e9e787e8f1c7b08bdba4804322702
|
|
| MD5 |
3cb5ef14ba3d41920623e574e228d172
|
|
| BLAKE2b-256 |
6725ae31649a363c5c022729093a75d0e47104c98ac08a324358ccaf41e098cd
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 324.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49a9a1c516e7142877de4b44d9de26a95e1bb69583489b702009e03ce9917ad9
|
|
| MD5 |
198372178eda767a482b42827c02879f
|
|
| BLAKE2b-256 |
c9e3a0e91cda2f14e9bb23ac4e5a045f2dd10a7181b69b6765aed2b102949f4c
|
File details
Details for the file cliquepicking-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 332.1 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5deeb15c321097b251bcd1be2bb75af7bdb236ec6e24db534818a93f93d9db7e
|
|
| MD5 |
ea665669c622a11fe43c760f2f28ebfe
|
|
| BLAKE2b-256 |
b31118a1d76195d77603e1f4bb61ce322742f067f2747c05e3ccd48535b55b2b
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 220.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f64f1f30d2c9d8cded051c5143e6c496281179d0f2ad3fa45de19e9b7c2b6f7c
|
|
| MD5 |
23975130fb67b26934fda42754eb83c2
|
|
| BLAKE2b-256 |
70edff4d21eed25b0632259bd31dc55dce66b546edaa7e701d748f5857a784f3
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-win32.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-win32.whl
- Upload date:
- Size: 207.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b63fe54a2ab64cf81ffe1d41267b13bc7fee40314d958ae8bbd63645d1c67c14
|
|
| MD5 |
86e706fc0d41dbc3994cb1c6b0faefca
|
|
| BLAKE2b-256 |
6d712d2a7c22aaaea9dbe18032ead8321d652cafbba7c4ca1fb636bce6708ec7
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 541.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeafc785d6efa33d7f9e0dd4cd7fc258a0d8910c7ba207e2a88b945e88225598
|
|
| MD5 |
337ee1785d0acb58bd69de9013ae2e34
|
|
| BLAKE2b-256 |
2a2d34c173ca940f71537cdb7b4b5d9c80ba91cfcfecc52623ed796150fa75ae
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 569.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed4cb23b9f38f8c02c8e42dad7a7ba4e5f264a34d0524f6cec1d600b7029c7c2
|
|
| MD5 |
bed2d4724e043687c998311526cbe3e7
|
|
| BLAKE2b-256 |
6a0c06c7f50f2335d44efa2caae00f963396fe7a8eb155d49746cb55a6643088
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 629.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a79f6476e3dd958bc0557f908f9ba9c605e901d3b78f520e000924bc2808f47a
|
|
| MD5 |
97e4e39d8d9222efc9ebfe8cb241fe5d
|
|
| BLAKE2b-256 |
313ab5ec8c80157c2cd97a76ab0e30bac914a689012c50decb8e0d4633b31ab7
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 544.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c2a283d6e390f634c76b952905f7c16dcb80a3028009d7c54232eff201d40c7
|
|
| MD5 |
8fa99e168bcd59b934d4bb93272769e1
|
|
| BLAKE2b-256 |
2e3fc4ea44ac1a6f59a75af61bb01fc877226b30db5e2fd7b038f42ced4a017b
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 370.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62c321ace18eb0ba07ba4f8473416c1c74e4467b5185ea55742e1d24f753d7c9
|
|
| MD5 |
3a8aff113b8cfefff70846cf3eb4e6e7
|
|
| BLAKE2b-256 |
de56f4d6bf95f0be5659f7fb3fd053b577b505fa8f0ed58fa0507ace1f15b4f9
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 410.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0685b333c409eaa027f8fdd57e7cda561b6121da0c9d4bc5147115290d5d4134
|
|
| MD5 |
c05d642b5ad557cb53dacaa66a91f87d
|
|
| BLAKE2b-256 |
13f7b80247800e61479af1e5be77bc72af258de5374c3bafc11a260a447d1b05
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 531.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b2e96213a1a2cf17eaafb9417dfff989747d1391d3b479f6231000e17354d6f
|
|
| MD5 |
1bc56aee6fcf9505512df9cf5eddae81
|
|
| BLAKE2b-256 |
ccbf9b9c835a2c7d9511fbe17cee3f0da05f6bc404e6b641c500d0deea1064c9
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 366.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf62a9d1690d551f0b64058b0d95a30639e8b312a255bb1e111b08c37ef38567
|
|
| MD5 |
f64086c8d14c7064cc74d9cb11466bad
|
|
| BLAKE2b-256 |
3f07199e30bcd6ee7a7843b488670bbf7d467612bfd82e46e8de8f51f89e2b07
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 367.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f64c1fd91d6a71db8d0a6afa4394115ca4cff4983ac79175691416095755cc2
|
|
| MD5 |
d1868535ff3ff1a0b0904085f73abe98
|
|
| BLAKE2b-256 |
14671deb3b3c752dc62d4bf77c0cee10aec01fbde61a9eee5437e617dd3493ad
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 396.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77afa1e066f26d497aa2b9d92543b879877197b21f54a01a74ee9ff37e0a29d6
|
|
| MD5 |
4cde56ce19756acd1717042bad6f0a46
|
|
| BLAKE2b-256 |
01f773f2a57e1c8a588ff08db9457009ac75c013630fe6f8695684ebf8248444
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 328.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80bef6efd9b53a72b41dc06c71d271031eb1a9ba3bd15b57e10e0ac4b36d14a4
|
|
| MD5 |
bf336b2f415ed7675f3edb4526515632
|
|
| BLAKE2b-256 |
c4775b8a55679331729c13003ca7f739500457366808ae1ad166bfe024f30b86
|
File details
Details for the file cliquepicking-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 335.8 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62c31d68f091e70ffb2c9926fea2045abc7183e359236155953657aa5362bd81
|
|
| MD5 |
2860b5b9a4ce27a1463b0c8bc3037a35
|
|
| BLAKE2b-256 |
364dc4682ff7eee9e442d784e19a4570ac33f72aad5540d9d71db442a6cfbceb
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 220.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5948f36e5148398d7c1c3a1355a83fc850cf99cdc4ad4d571d2679621ec05f25
|
|
| MD5 |
ac0ab241cf50881e4041c941840886e2
|
|
| BLAKE2b-256 |
152f3b29ab7ee0a80014cd182e6b1e0eba60f9b0fb73334e9286114f55774a6d
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-win32.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-win32.whl
- Upload date:
- Size: 207.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50f0ed90bf9d2185534f96db8c875ff36e001a9546b84d8f40b88a77e346f04e
|
|
| MD5 |
9f922cef32c130aa8ee7e440d1212de2
|
|
| BLAKE2b-256 |
e32f51073aeb2aea211614b555b6022089b6f29f74dfa8f2502d754035aff3f7
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 541.3 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c1d3d43028db02cd13aa32f976c18771353ed4516af8bf33ae5a0fdd96a60b7
|
|
| MD5 |
51dd3f8f181bca1980f087fb456f1024
|
|
| BLAKE2b-256 |
f87700d8a93c99fca661985374cc663594309f51da260b4b77ae648e9ef83254
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 570.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd99f54a3e8b8bfda673846a5aa8f00fe8a5c141e0269131af9bd9999704e3a6
|
|
| MD5 |
747ce437831fd75d076f73a19497c654
|
|
| BLAKE2b-256 |
044a5fab9332a2003b670ab1dcf7117d98b0772761cfb00ebb4d6c5fe9fefb23
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 629.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4772507a79a2c7423654928017a3bafedfd8b684b8a179ff41555f7ab492c1c
|
|
| MD5 |
0ddb94a4d9d6d4a2cad18abb7de31046
|
|
| BLAKE2b-256 |
407f957de975e9b06062b0e5e7ceccaf213242228f9233c6459bb8b6e344b2a3
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 544.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1b47e3aecdf75f40afabb93463860c4f18be2a3265dc00c3b8974acf445e087
|
|
| MD5 |
034cea8a13e706d98bb46dd72c144081
|
|
| BLAKE2b-256 |
653f171909dd1d3342051901ff9085a7ad59b17458bf04524158d14782f3faea
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 370.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d794121826ab03e34923257c7414c4dab16d7afe5b11251e5c753353a4889d3
|
|
| MD5 |
4743fa7e9c47e5420e7bdb2d939524d7
|
|
| BLAKE2b-256 |
15a41d37734698d66f6445433629e85f3302ebeab6b4c321051b766899e9e777
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 410.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7d7e43d736fe8b5fe8d80b8a65797bc0edfa02ff0ae2f7457e5a66c262aaf03
|
|
| MD5 |
15a4e7d5cf1745c2b2d6979e82fb3b32
|
|
| BLAKE2b-256 |
9c9acb66244bdc3f7944f9c1f504e2583ae6509bd88c6266f1cb58fcda649d77
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 531.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c85e76c84b661faf92380a6d303e5c3ea652c1a8a780885d294337a379abb46
|
|
| MD5 |
246337c3b1d38d1a137ce89821cd7fdd
|
|
| BLAKE2b-256 |
223ce5f4c6ea379a94346350d3c7e58b7be3e37a385755048ef816fce8dba2aa
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 366.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7cf57d964b5bac25cd9852e39fa4640025c4dd5a1a01729d2b47defd79050be
|
|
| MD5 |
070513ebb4fd6deeb2e72dd3a29e2ad0
|
|
| BLAKE2b-256 |
562b5111e7c067fc6c452235b254e4c49e376d2e161e58cd1c5b6671432d3e6f
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 367.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a439e13a154d2748ba8d82a50a4346331f7e3a54f4f2cb1fe610ed94eb5fa27
|
|
| MD5 |
2f5b53d2457af53d25abb52fd9fe1f3c
|
|
| BLAKE2b-256 |
0c9f15ac11552fa0110c4d37dad65dfc4fbc10964a1b30fb98e607663face288
|
File details
Details for the file cliquepicking-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 396.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca381c7250f576e2e8c0abe3e23c09b635c33ac7b46b4ab8bb93ebf0ed4e880e
|
|
| MD5 |
5934a2503ed88af6b4012aff3a11ab0b
|
|
| BLAKE2b-256 |
8f3ff1a538d51e141a336c89c39ca0adffba97b36f20992bc3e1b969fa767fdd
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 220.6 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2db3d044191588481c7aa3be03248b786df0058c1dfa3f9e714dfd5257595829
|
|
| MD5 |
3cadd545aa341dab6b9b2ebd434ee9e2
|
|
| BLAKE2b-256 |
76c2c7e37ecfde5c72a8cae0cbc0393ed1ea7c3f0dd8f46682e726378af4eaee
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-win32.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-win32.whl
- Upload date:
- Size: 207.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e7d21d394ff76a8bcdd4db3155fd4b4aea6c879ef356172dda289e4f4028c71
|
|
| MD5 |
f2dd754c45795a09a121bf269aa15db8
|
|
| BLAKE2b-256 |
5c52449e049c4d67240a73f1cd39b4cf9c62eedc08bcc6a31affc9862fe6324c
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 542.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c207a5961b7d3eb8dcf8b032e4d4d4a31742664b5faf93883924212653ecc20f
|
|
| MD5 |
446fe1c379addd94d36230e5e9ef3402
|
|
| BLAKE2b-256 |
74912867253c7fbc4f036b4c031bf6a906de28c6c874a9877341ca9f56ecae5e
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 570.2 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1f5b16ccecb1f9811e913184c941b0436ff4d9528a38b787df54bdf6c5c020d
|
|
| MD5 |
e9e2a244ada3ea47e96d52fa04378bff
|
|
| BLAKE2b-256 |
c2912cec6e84591f151a44fd581ca6116272b3964e14898f5689573117f62a34
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 629.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f98613cd00360d93af8fc552e93ee667cba718f7f6a5c4960341277c316a1da4
|
|
| MD5 |
1c6ea82783746a1ebc2a9f3348ed5cde
|
|
| BLAKE2b-256 |
4d90e259e38b1932e41c7433021b7131c2fe33c34b40d21f27aa05df845aad58
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 545.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9863db584c4f81fdc2cbbdccd3915fbc1cc0f0cd0762db12a6bbc2c6c65cdd1
|
|
| MD5 |
db65c732adffacd648a93a57ef473d30
|
|
| BLAKE2b-256 |
8cdf51eaed57f103d2e8d4f621515698da0a258fdba0fd2ca623a3a589d63aca
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 371.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b797547208525063a82f3fcfab65fd53aca44d560c2b3c2afe55f5f9c2352ce
|
|
| MD5 |
8b25a454f26fadf60c351b738783010e
|
|
| BLAKE2b-256 |
8e49f32e8847d5e83df898aa611030a2a1975ee043dadc11b84df060fafb3cd4
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 411.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dee057a2f529cc3d9f0119f5f960673f03b587a54b00702b51e8974a189e03b1
|
|
| MD5 |
1712c24c242cc81179c4ab8c08cce872
|
|
| BLAKE2b-256 |
23386ad15df939f40c4b6e20ed199e7bfaa9fdb8fe29dbe2b776e7094ee6112d
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 532.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d619b0d49982dab5e10db718e3f2aa404266f6af3c4523e9909d2885abdb70d
|
|
| MD5 |
e90f6274c6299ee078a32238c1f50dad
|
|
| BLAKE2b-256 |
a3a08e5256308417dbcfb4fd25b41360f5920e206c19b22aed6d2902807a0166
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 367.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2573d90b10691fa6c2ab51dc913d8fe1863f4d9a24b3748b8b8688e2a8da2d77
|
|
| MD5 |
3522660443b627f033adca5b5511b666
|
|
| BLAKE2b-256 |
2e93bbf33aa43120ba25211e29bf0507bb98e4f8b77849a7c078c93828c1311d
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 368.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40a2aea6a58516eb85097af3d3437e6edb570d710612863832f056a2101f47ff
|
|
| MD5 |
de966345e1742239814d3e027cc1b43f
|
|
| BLAKE2b-256 |
9b79da201f17877f8897b5133af5804eb3787ff0691064a551bee713db286225
|
File details
Details for the file cliquepicking-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 397.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22878e022172297a89ac68978ecc64dbb75a07b05182331231cc3cc198f4fa42
|
|
| MD5 |
ff44943e16e7dc727517ee962ef66a9d
|
|
| BLAKE2b-256 |
023b70a0ad11c2dd94e894ae0f47d9e89250a9008e44bfb16bd5c8de834a720b
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 542.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
876928b5cf4ceb9fd7c2e8b4052cd42a4db51883a6aad196011248bdf188c935
|
|
| MD5 |
4ead1909d0440243a5e608ac012c0d63
|
|
| BLAKE2b-256 |
d0ffdb212b92dfd09339bc2a89a45e737075b7572ad0bbd908036186acbc00e8
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 569.8 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07aa50b4b96a3cfbbb421d17bd1bd32ffe21e2cf2fa1f6e86d5b00d6a1c2f3fe
|
|
| MD5 |
acda7001a050fa57093b83093365f6db
|
|
| BLAKE2b-256 |
ad33159b780ebca404b858df861209a4457a5fa9fb0ec93bb8decc5742ba0317
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 629.4 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
511f8a57dd1ade42146baa4abb7a2ce24b1751a66256f5532b88c1a1e9612958
|
|
| MD5 |
3f0328a5197f3b1ddf61cd8b0dee2116
|
|
| BLAKE2b-256 |
394c45ad6d43b3da9f1bb846a2037b433b79754bec37726aaafb0b4fd48a9213
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 545.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39ddf760777797c3b270c9db890df387c96d34e0b275ee365d03d40bcb31f594
|
|
| MD5 |
539640cd6904177ddb3230d905f6783b
|
|
| BLAKE2b-256 |
547d053602f62090729cef29f2107ba314e22924698bcaddfc8c5c22f41b5204
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 371.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06bd16ad4772e8f3ad027b2f7f290457fd3015e564d493abbf32c899bc829124
|
|
| MD5 |
af607ccb4ccb5bb79c4b38f276cd1e4b
|
|
| BLAKE2b-256 |
f6489b6378c3cca9356a4b66742a2ed0b8d080c9372a1a5b3222e229419933a5
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 411.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e402f72e0a13b9d5f9d837847921ce7832ebe45529beb42fdff3539b2d0bde79
|
|
| MD5 |
cb3f7af07cea35de544ac324e39e91a2
|
|
| BLAKE2b-256 |
95f38d15250e27a3df97957f6f0654921e115b1d470fcc13508f0fe65005fb75
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 532.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79bfbe218ccc153c5c83a55036ea255c627c6dc72d9ff6a1d8a7548a3d2fe8ae
|
|
| MD5 |
ec428b597ef8a54f7a6ea2653e04f478
|
|
| BLAKE2b-256 |
1cc34ba3a6ce6de1bb29e306d5f589815eef28367ee8d6b963084b72e8908c53
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 366.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24ab821f5be10f5e04b17808937e53a7efcfdc8dbbd2b0906ffaff6a5b56be81
|
|
| MD5 |
d5802b8d980e8fd5ebae4006e729e9f3
|
|
| BLAKE2b-256 |
3f0488588ef1ba194993eb2324a706adc357d5dab16d6b7fa91b6d88d9b67ce8
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 368.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbaa56b06c7d6462cb5ce87bc1fa660250bdb1e7f569e409e15922a057522d75
|
|
| MD5 |
9b9bf7285db0bb09931db8d4b76e718e
|
|
| BLAKE2b-256 |
f7b95d3b8def00fa06a1114b06edfdd9b9ddad961404269ae49b4ccffd873153
|
File details
Details for the file cliquepicking-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: cliquepicking-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 396.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8465c12bac731036ab135b6cb50b23297f241dd94924b1dcf10d5df93aaa443
|
|
| MD5 |
78d11996f4320cdd003175bb65e482cc
|
|
| BLAKE2b-256 |
401472b0078d253cde4b0d5f0eb3c7af15487e800f32989ea6d9ea11cf4565c6
|