Skip to main content

Counting and Sampling 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 G
  • mec_sample_dags(G, k), which returns k uniformly sampled DAGs from the MEC represented by CPDAG G
  • mec_sample_orders(G, k) which returns topological orders of k uniformly sampled DAGs from the MEC represented by CPDAG G
  • mec_list_dags(G), which returns a list of all DAGs in the MEC represented by CPDAG G
  • mec_list_orders(G), which returns topological orders of all DAGs in the MEC represented by CPDAG G

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.

The same holds for mec_list_dags(G), 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)))
sample_dags = cp.mec_sample_dags(list(G.edges), 5)
for dag in sample_dags:
    print(nx.DiGraph(dag))
sample_orders = cp.mec_sample_orders(list(G.edges), 5)
for order in sample_orders:
    print(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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cliquepicking-0.2.4.tar.gz (18.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (506.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (531.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (592.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (505.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (360.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (506.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (531.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (592.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (505.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl (503.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl (528.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_armv7l.whl (590.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl (503.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (387.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (327.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (504.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_i686.whl (529.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_armv7l.whl (591.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (503.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (388.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (358.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cliquepicking-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (287.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cliquepicking-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl (298.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cliquepicking-0.2.4-cp312-cp312-win_amd64.whl (189.1 kB view details)

Uploaded CPython 3.12Windows x86-64

cliquepicking-0.2.4-cp312-cp312-win32.whl (176.6 kB view details)

Uploaded CPython 3.12Windows x86

cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (504.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_i686.whl (530.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl (591.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (503.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (387.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (359.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cliquepicking-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (287.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cliquepicking-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl (298.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cliquepicking-0.2.4-cp311-cp311-win_amd64.whl (189.9 kB view details)

Uploaded CPython 3.11Windows x86-64

cliquepicking-0.2.4-cp311-cp311-win32.whl (176.7 kB view details)

Uploaded CPython 3.11Windows x86

cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (505.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_i686.whl (530.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl (592.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (504.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (388.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (358.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cliquepicking-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (289.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cliquepicking-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl (300.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cliquepicking-0.2.4-cp310-cp310-win_amd64.whl (190.1 kB view details)

Uploaded CPython 3.10Windows x86-64

cliquepicking-0.2.4-cp310-cp310-win32.whl (176.7 kB view details)

Uploaded CPython 3.10Windows x86

cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (505.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_i686.whl (530.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl (592.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (505.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (359.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cliquepicking-0.2.4-cp39-cp39-win_amd64.whl (189.8 kB view details)

Uploaded CPython 3.9Windows x86-64

cliquepicking-0.2.4-cp39-cp39-win32.whl (177.0 kB view details)

Uploaded CPython 3.9Windows x86

cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (505.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_i686.whl (531.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl (592.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl (504.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (387.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (359.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

cliquepicking-0.2.4-cp38-cp38-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.8Windows x86-64

cliquepicking-0.2.4-cp38-cp38-win32.whl (176.6 kB view details)

Uploaded CPython 3.8Windows x86

cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl (505.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_i686.whl (530.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl (592.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl (504.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (387.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (359.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file cliquepicking-0.2.4.tar.gz.

File metadata

  • Download URL: cliquepicking-0.2.4.tar.gz
  • Upload date:
  • Size: 18.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for cliquepicking-0.2.4.tar.gz
Algorithm Hash digest
SHA256 f7a4eebaad0c26c34fd7edc792dcf4164e65fb73ff88cc3c803050d90d22b14d
MD5 7f728ceaab3c32af8de32c83dc3475b4
BLAKE2b-256 0cb6d617a874ad8a4d405544adde092ea72408115704d36e94f156090496abab

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e993451513e50580ab41be6e012b579282e95cb36a0d725a2de3fb1fc2722bd3
MD5 9f66704a3adf1ea4f744ba31346fac67
BLAKE2b-256 255fe5d552d070ce86f242857490f16698fa523afa5f48c0f292ac8d18fa1c36

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e87c13f1580035b834b0515315cf38ccf1fac787e1145e2e04484607999d8751
MD5 2a2e1d8226732ea071279216e9b021b3
BLAKE2b-256 6e1926daf589502d5fa4e8f87c1ddaf9c3ef904dcadd29df771d4f5c3ef7232a

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 938e74cb94f51852b7693eaec821209a2558fb136eb8ff7fa9e22fa0839fb610
MD5 e08d30057bd69e0b8904a05fde6736b3
BLAKE2b-256 74729875e63b164f0695c20f8548e43e80c9e0934a4a8de0a2bd59b263cada8f

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5c6cb3787e730c8ed73a962b4e1ceda2444e069c57d2a3922ff4949c6d1c95f
MD5 0cc78ab690f4cbfca0bbd92676100522
BLAKE2b-256 62d2289f4d56a52feed48cbc9c766892e6e797620e480998aa51bd416e620c8a

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3297710c9f3ff019a72e8471b8abbc6ac525f3479fa1e5885800375d9470bc42
MD5 a76c44f99ef5be880440240cc962203a
BLAKE2b-256 61657f9e3998835d03629b73c76474fdb3940ca85b3e280af6dc8c57f7fec1b8

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f061ed6305aa24582289bed565844bb2b6c0650d9b76e94c0197f73745bce9cf
MD5 253694e5cc9fa5ce8b15c26495bb1e10
BLAKE2b-256 93da994439678b5bc115d57529593a86570c2f1bc5dd4634607bc688241c3ec3

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2927ada4153805e70ec0969a51d5f57d6143b5b297396bf268cc849ba17276de
MD5 b1ee2e8476ebf2673fac58da7e8feef1
BLAKE2b-256 adb7d00042e02f2de3cbf146a82b9713a2f89456314d29533d0813de228bbe8c

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97760dd3e66e0bbaf297ce754d4974c381268a8fa8a640f4bd8c8ec736da7afa
MD5 baf93a3e8d5222ba15e866ce24ed6e81
BLAKE2b-256 7c47a440ad0de3e3595822710b1d1dbd5b9d33eb0ad771459de819967de8cfab

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a763fa022aab32e1c0707de9f6d41e5bb9b4fac6ae166d0b47d51414986f5554
MD5 4959b1d3eeb996c9ae259a785a0c480c
BLAKE2b-256 b5f1821d9eac6d4a79fbee6ddb7bf628be58aa278e424ee10fe408a428dcf294

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e6fd30e5bf49604f1def6b4f56a6b59c00272ca04e45e9763a2bca6ee2a7e4d
MD5 312feff2669964aa6fdb6f3c750e86fe
BLAKE2b-256 1da3a581b06c5e339d27fc39a757b7de9b6d2fba08c7bd1716aa8cabe36ce6c4

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8772177021dad6d2e4145df840763f56d86ad92d1e3ec7a83a695cbb25e49f91
MD5 cebe269fb4750607d1e569f9364db253
BLAKE2b-256 81c6b5ab6cb8789dc8eb3f568dcbef744eb7b999bf441cb31be78526b1dfb17c

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f94b0e8240e47fb4784fe2e72c0129930953aeccc0b84117c62ada5e407eb06a
MD5 9a9d5b676de75e83b589684fcf81d995
BLAKE2b-256 de8065cfff5d226d0bda56767090a5f974f2afebc15924d15dbb4fbbd965e25c

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a031964e6971ee1cb7f4a97bf1bb9ca77b3307341f4295767548aee419ac639d
MD5 b0543d72e9aa332d1aaa630f923fae36
BLAKE2b-256 52857486854a9bfe158eb76a20f796fda82ac799d9cb559d9e3b2fe20a7e6574

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68f619c3ee8bcf47ffef649506bebc6268dbc5d6b145d0c9e25e89aedd834a4c
MD5 49b09901d639e9db327d1e8f107fc357
BLAKE2b-256 c36a7e452b12ad8e6c559e19b56c5fd5583abfcc1770bb497129f75c0b8f6872

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8d4d78aa051d843f418370935a728dee5f5bffb946a1ce7b6c416c6a1fad5ad
MD5 1b6f5f8e516ea8b74cf53ae28d9607ea
BLAKE2b-256 457b04adcab3f83df71fa1f9941372b678e79b41947fadeeaa7c336cb353dff0

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bf36bc46c5643e0c20dfcb2717bb0e5d7d14585b940202a76a994bc7c9ee28f
MD5 8318b21e1c5675dc9c66507b2b114d46
BLAKE2b-256 c9a067f43942bb4db9a075b8a1b60eb7c468cb0aa9d525e2450d9c2fe8da995a

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c97d5f469923fc2d6fc71a9ae591aaec47c44fb651ce5aaa32a67c6b3bb04155
MD5 604966b57b0ffdf0dbc1cb49dfe52180
BLAKE2b-256 f21bcb2b3d4cce87e3605e638061fa31a7bf7c2153cb647bf10dd65389121554

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b36834fb7774af9a5172049ed238911570e49d66ea2176e7594653dd6895e5ab
MD5 86dafbc1f048d3e0c0b4fd80256e8ace
BLAKE2b-256 c7418dae6297bbaee340d72b0efcc4010e068cfdd22fd9861e9ca2e99ea48f6e

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1450e7a4b737972a17a05c9623bd69f995c02275602bab867651e2fddf1298d9
MD5 2d04883071f04d760704d36d402bbec9
BLAKE2b-256 3701aff2936bddad11c03c3a38551f98478096cebf81959b222cabdb5160b992

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22ea232a4028a011d4d729d1ed4355e398d5cbca117054b333e80db98214ad15
MD5 a1424e43fd7e1d6ae672b56c3611a08c
BLAKE2b-256 013f5ee25514faadeb4f35de165acba1e1c01f6e6e53afd0fccfbc423cc82957

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a980cce69908c1d1152de86667925c7546ebda016ec0ef1edcf3b780b7aceaea
MD5 a49ddd312e83e2a40f37fd24078c61d4
BLAKE2b-256 1cbbef34c69d14cb49d29c60b5b7142910cb5df20f65c71e3b0912d0f3446f30

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f89ec51731c58979fc291559f148a54e24aadcdf1fa371ed8d50cd71509ff61
MD5 0883cc5d969278b1cd9675ba233fbd3a
BLAKE2b-256 afe50a9dc6befce50a23a271f1748fe9f8b3716efd08f15eec51d85adf99fbb6

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af64932adbd240a1d715da0e895c37b92abfb575088efbb0d2256be911cb022b
MD5 e6b1a197b392ce24f2048760df61ba39
BLAKE2b-256 efc8c742428d3e224d2ac0adf9e2ac23d9e330678a43930f741aab7e382850f7

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 140e18d5c7de24507e4e64dc98a92590c144cbb63dcc14f21752fd55e006d804
MD5 cf2bad51ff353c5ff6a5d0b88182f1c8
BLAKE2b-256 f21ba5471f4b3beda936615bd7bc1562ec5fd6530941ff07d8ea7f7cd80698e4

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a732cf9b0c3d36178fa9840ac35bf15fbdb599e36ed784188dfdede5ed8bdee
MD5 9bf731b7f61935bef9ee61b521780849
BLAKE2b-256 0a0bf402bd297001ccc0291c031cd5f59d4106a56c5cad716d7963780be13093

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f150a806e2822c841a79b8dadde076b105c0e291aabe77404268801025f24465
MD5 0f52e6bd7e05028c573285b34b3cd720
BLAKE2b-256 8550df1320d4898615822c9d940dd73d12e0d32bb3484c364fc7891ee289ac21

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9264271de9af903c42e3e15e9fe5992d251094834162184896df1cdd8d78cb15
MD5 c9658dc7c70c2468c6d962f6ddf04df3
BLAKE2b-256 f390876020f06ccfefbd7f6a2a7e8b667e6bde268dae8a6c61a39862d56a2db0

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c68f72c457b7dd8ab5462418b8dc04a31906687334f4840b2b87a13bff1fb33f
MD5 6778efd02eee88850bfad94b2960edb5
BLAKE2b-256 e165472d59dad405ded78b7270bbac943f0798d47bb8bd420c40dcf35e82332f

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f4b56a84ab1b27d65f74b5f39ddcd2eba497ed269dc535ccc841c1896779fd7
MD5 be80e89a79cac0c32497c42eb7066d13
BLAKE2b-256 a12f49cc0ceec92bea654a66a317a8c672bfa78341fd7639109154ecf703285e

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a800dab4fa829fb7e090ab60bcdf08a5ad32bf0fc8c438a3ad4ba0fd9e2c263d
MD5 6e891f69365989bdd73f9f61d8af39d7
BLAKE2b-256 8b9d0ec5b7596ca5208dab249015b8435879550c9f781d6aececcbde7256b0f9

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a6ac84f11efb4585f4d8a66cbdf36b85572ba0347e2a40e781bd69f27b7e60d
MD5 cf5ba9c86ef536403386c45c854339bd
BLAKE2b-256 1ab23db759d1525b435c1569249c4a1caec0d57ff819d9ceb2ca2e042d57fe80

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0f2a44ede0df23334465bf4acc45b4a4be37323f38e056329487257abc7cd76
MD5 a16e32e77762ff2170c21e712eeb83e8
BLAKE2b-256 c9fdd1187fdde3fc3f82e6b5772956c8a178bc94afed5224802d36e5af3a6105

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9749f902db96a895e0df82c749395286c456c93f551c6b23ff1de1b5444bbf2
MD5 f640518dc5c6d974a2bfd0934c655174
BLAKE2b-256 c1d4d4a91bbe56a848fd9b9df9296f4ddcf2137010d88ff1f3b82de9ad8699db

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74897b05af1fddbfe8203bc77208221d8369fc9cf0b601e0d123c3eba92117d1
MD5 0fe6ca511a7e673153c02978acf1ca3d
BLAKE2b-256 c2be731d2ef3fc130fc42268fa07d268f734b22eb9fb6c328c55b916a76b6545

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc8288619256158467105a0e9d2ea23bb7241395ae776e6759145769576fec49
MD5 eca3d1cc3952b0675ded8dab60b580fc
BLAKE2b-256 a10e7326c6fe1f05ea7552b69d1d9f1d66641a5c52b7c32965d9629255f2cb99

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b59b7da7a1dfa77ada714f822b3deeaa29dd7782d7d3ab8d2e95426a772867d9
MD5 fd8bd5853f04099706e2af882767e56a
BLAKE2b-256 82ca0cf94719e75752e93b8df96f69329a1e1661b84613d60100b1326bcf56de

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e1eee844951933223a71c226b6e8209108145c780b703347f0737a8949fd2f8
MD5 356f693369c1c9aa1124decdf4cbbf47
BLAKE2b-256 1352e562da03408b160372269eb55ba9fb52764eba0edced880a9cae4e34af74

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b7cc5734cb1d0138e89e11e57640aeedc87ec6a1c2844d62182a491483dfe78
MD5 c284a6f38edd301e736ced6b3f423382
BLAKE2b-256 6b6da2f5dfa2e9b647c3010e60f8292b96c8815c30b89e5bce2c49a3a206eb02

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 02094db888ab591466fa30413dbe27ab0b3e4fb97d4b3ce74fda8cddfb291084
MD5 3a35f8104c3b35e4b5c2c53d4c6204e2
BLAKE2b-256 0d5047052c67fe83adfd259a299d772e17bee270c3bc69ad00f5006bd3a10905

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 090bd891a7b8f2e90459c894477aa6f861633b158e0db373163fe4c6b7d73710
MD5 ea84295be7b7201d42036bd8f245be80
BLAKE2b-256 fd0c190d861c48a2c8fe6c7fba71e4b3f7a519a0404ec16e3b0d79c82283ad09

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca824166e8f6fae0f84348173ece319d197d0067d97f3b519ef7e1443e4937cd
MD5 ab2906da9967b7622bc892db5b7c623b
BLAKE2b-256 88ebe8ce97ea4ff64e84f1f743cfbbb9cdf743f51f306e9b2ce2fa9ea463f843

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1b298f05bcfb04a0e47f67899400e768d45ff1ea5c3f26fcb47a9046fdc59da
MD5 259b2b2460b35d9284677ae9261f941a
BLAKE2b-256 ba8921a5acb67b3c76707c4539a935c8545d992ade3fb454317191189b21ef69

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a11b30c7234a1ca1414191dda1e5b8f2e17458113f45e2bc40c3039a561108ec
MD5 5f6ba90938dc614e5621b7a6e0e64644
BLAKE2b-256 240f9a6a9f071489182c2e6a0f903868421e6bcf5ff0859b17c4757dab8f032a

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4494e1598ea954e96c10ac1fc774d5bebdb897df2dfd92cb80f10b6836c48b5
MD5 4d4bf750a845ccd503ac0e030210c2e1
BLAKE2b-256 c4558dcd265441985a5f41d19f95f118e9dbc9984a7655bc3a6d8ef0fcc19b9e

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f7bba3eb7d24869ec0eb1b6c45e25953243f09f457376b7da66860339fc3371
MD5 70fe4281c6a406bdaa66168374795c84
BLAKE2b-256 4e6e63e51729b7099ec63d5689a280fbf9ca3af29f4661be6490253dbf27f1b7

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a3f85cb70784a3febb5b16dd1885a6f9af1640dd8d4da9690e13834b9962b18
MD5 5a9cbcde0d49703bba13554f1cb53bc5
BLAKE2b-256 750d187d57012093ebc862b1e9706dbfee34c12cd960efe4b7ca16c044f6e849

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5dd2cdf841f33ea695d99274eba9b27a37171ab68bcd375e868e608f792a93bd
MD5 17a34c7670cc32c99d36908c4d7f9e62
BLAKE2b-256 2f536aae05d6128aa2e39e59336e27b59b0691f73f511e96eb003f72bc1dde9c

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94ee8b663e8fa324b2709eb84aee050ffffaf51affe3fdd26f4b288592b18a5f
MD5 a1c94b0dee52e4b8bc9caf7f7a8dd554
BLAKE2b-256 36c952fd426e029d4e90b1d465278e64ea6a9950070b8b43cc820bd92a866bbc

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9fb4d1c0d2e24e9e6178a8d270af32f9acb6c0e8abda56e75a839ff2df0d178
MD5 0e489898eb5a1055c6cf3e43fe710f56
BLAKE2b-256 93b60c889a2f3dae8671ad0af98b48571a69dadf60e364a6655a56c6fb65baae

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8149756fc6a09caae5859c02b6a64e3d7bd67ae90a1771fd21d78b80ce90387
MD5 08931db31888f06d2f2142f70f6d18d5
BLAKE2b-256 fcf6be0163043244d2bff1624ee269493b35a37d54ed9b30346dc6bec19a19cd

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1acf62d918cad717b88c005ba59a791e30b0df27f1c42c26dd578207fc6b0cd4
MD5 1fd92bb119d527ba2edc143e4b92b6a3
BLAKE2b-256 5f8fa76b350f2e0bcc064872cde755be153d9fdb02ab60cd0bd8d00d27bedfc0

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bab318c885bab985434ca5018f8a426daf9f0349b2e6796e5de66cf3c22882ce
MD5 9bfc9e794166b92aa98cfa8f976ed560
BLAKE2b-256 b3a9ccd56114bec91bb9da79b4f94d1feb0c4cc1e715e838ce41e374cb206f3e

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 10c89fc3636c9b1a9ca6d3bed61b21cfaca7fb85027573a8d2cc443eb702eb0b
MD5 8f53bffcc6ab5159be2b53b34c75e42f
BLAKE2b-256 4339f228d2f27cfe3240cb15b474d5cc843b28ddf47279b274610b317e4a97c3

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5cb4132701e9e4a9f052059b93b7ebc206ef8c274b184150b29ac2632d146bce
MD5 de5675601af351f9fb90c68ca96f5b3d
BLAKE2b-256 b1a630676cc2f5952270af873b7e0a8c5e1c0259cde95e651ff8c8d03f3c4ee0

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07901001bba483f017b751f814a743cee07a9187fd6a354c5776c38018c1f425
MD5 817cdeeb9e48c6ae62d598fed6e20b41
BLAKE2b-256 a5f8577a546b0526e5c0169164648d3f7707446fc320eee54cba00b63dc3ad6d

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7632e19ba605dee886c2b1f4a68d7eb0fb076375e899646d3bee2852b77fd52
MD5 d9d65479605f1a4f83eae141a2239d77
BLAKE2b-256 5fd7c57214aaeef6c04ced5b2d3fce39946316744ccd8d9eabcba314d8321946

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87b4ba623f91c43128796e6e7d0bf55c5a8d2a1665b61ace8d324be314d49bec
MD5 74009722d7d13d6faffe4f5084462448
BLAKE2b-256 9254e9ee2e5989e71e94a93bf7dd3130d58df16d49c53e2b1d860252d7f418f4

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 300534bc96b618207f430529c07421e0ef766aed6afbaaea8c8ac475d9706c71
MD5 197cdc93a053f57fed61fbce19820e1b
BLAKE2b-256 f03e2571f40d4b78dafd793c0837ce76c2673806873cfc55578267c9f68cb5a2

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b504626aba1e5d23ffd89ca88689db2e8bf2ab80e8e8bdcb9f786c4bfb44c9f
MD5 24317801b650e0bceb9bbd4f0ad335c2
BLAKE2b-256 54a7a59b7f55b746ed787888de2676fe7361c00247c1fa902a9fce2ae42bc45a

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32ae27b3b623724272e815c3baa52cfe0e370a6f303f6d44077f2a5deb665053
MD5 d4a749702854593e22eca7be0b681460
BLAKE2b-256 2c7940634feab278856544f57b85d14c5774ff16a6ae5a39b320f99001dbb596

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e22746898b9f55bcd43f8cffdffb69e52f4b5bc97a0545887867949ad6390797
MD5 926fef06ccd75a80597906c51744825b
BLAKE2b-256 b0c1decd0cd82e6351fee5207d7f24893747fe910320b5864ddddac1a5916e37

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45a8dd5abba65e36589f5fd490815781eaae401b6dab5cf8c328b11467ad1397
MD5 0bead0e6288855d7e153b1312d17080f
BLAKE2b-256 de89e59709e68674700cf40ebe644116c894d57d0d9af58980ddf84c17e56fa7

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2030a7525d30f58c62367217a6400fecefa0b2fff02536e31baed728d7bd0d68
MD5 67953d5ccf301a4bb7450fae31f65452
BLAKE2b-256 bae46f2f2a02a89831fc48d4e5579c67ef9425ecc7a26b580f0a3bccce90ba30

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2f1b58b1033dd949e89fb0e889a9cf11d38b47aa5f7aba157c061f0eef8151f
MD5 288bc63bddf71b26c0de81d97a5f8a4c
BLAKE2b-256 8a51f66152706a3417d27b2430dae629dd63605ddcf621acc3b2c1cb510777c1

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 541e0c546a4f0efe8de37fb92ac37ed544e09b5ea7dd287bccdedec719e407dd
MD5 04273382a4979c78c351523a12a2c384
BLAKE2b-256 a03b3af4c8c92c12416fe5377d2aef741b28376d57854bdb8074cd70e0f08b1f

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e5526c9c26ef38159912cef59d5373289c081041cd8568b7ca4c0e51d49afa2
MD5 51adec21fd5a549c15b1619162debb55
BLAKE2b-256 ce83afd1e9fd7ac9087348f8a0473cd06e924abaf674ce4940080e557f65dc2d

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6c15cb6dcdc347c619b15d97926be94200695a3cb491dc5061467bca1a5be81
MD5 d9c717d4f176dc568562f87a9bb85ad9
BLAKE2b-256 e53a4e24a3c7ad28c06f36f299771352d1f5aff6466619788c175384b1dcdb21

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6da83fa05f94bd9707fff4a36c4fccb7d35bad1edd17b37ed4cd18c535d6293b
MD5 ebb2490a8b165ab20278945a021d7088
BLAKE2b-256 445a2e2bce0ca1e42d176f689eec06cc8579038272a89bdda398ee6cb311a044

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba49f1634dfc57b96aca05b0f6d36ae8316528a9c6d68668f6b654b494eb5be0
MD5 25ffae52b859ae5b0a3ef483f044b759
BLAKE2b-256 7782cb466af0a0ed4e0b551d6faa1fa3f7d4fc7851d6541870772b8fa8a7d4ff

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba1864ad8901ae888b95a3ba2107c59778f9f31d861884b673757caeb51e2cee
MD5 0ce803fbfaef347b1b954938197b7ded
BLAKE2b-256 a956d3e32dd3b98a57435a50bfe7ef91ba6be67ce7022fd225d0a75abf3b147c

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 717c4c3c30e714958083fa64a731624153c50f02e394d2522e5ad36218e98097
MD5 36e5c48ee5bc22d4995d366ee8ff6f5d
BLAKE2b-256 7466419c6ff0efd827adc9954c78e2baa5b29f2fcb4caae7f881e3b15eb94653

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eed7ded792226bd488532617813f7291f1faa7a5fdf4b9e2d584acadb1272ace
MD5 0c567dec855a4dfe7bc7d45c8ecaa838
BLAKE2b-256 6edf8a18a9d205863ce83aa486d0c9b9afb6a671d8e22e61aa564c4306c6b3b0

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1206e71b881d0302d471245c9e09cf06df37fec1b622e20984836e43e99ca324
MD5 c4415c8c9019d1e4a91bde2e5ba11e78
BLAKE2b-256 821552838c06e6fa5d34d7f4a8feef9e3c076cb002af8a0c89bc7e48feb2cfa2

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e870718524f17d927821ea2b5e954add8b7a6e9fdb31b2794f2fffe03e090ca
MD5 5385069e6eb179408e182e48d305a37b
BLAKE2b-256 47243bb65875f23a9e81681af021815b82c4c437994db4ede9e06eeb27606fdf

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 555510ff0c8af02c5a7ead672f18e329ed2949c4088e46121ebebf9af5f41964
MD5 76231d1a95516f9ed46eeafca917bbc2
BLAKE2b-256 2a6c6e0f319d950633ba44fbddc3e6619ecd33a8b04d38e51a4a084eb0c38043

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e263c11c660f7504795e4966d7dee480bc98fb6714e712bf0aa00841a0f49aef
MD5 58091c910c7f17734456cbbd8807ed6c
BLAKE2b-256 ce6743e632b3903cc25c17cdddeb2cb06282e905dbde62de7fb48175a13b31a2

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f901f00ca4bbb7f747da592db823dcdbbdcb8e34cbdc356c4ab7db2ab529c8d5
MD5 7d212667a1b75a60fcec3b5f959a3897
BLAKE2b-256 f157aa9b6c5c0e504e5aba8095c41854ac8ab255b7cb6e9cc3d55259a3b5c381

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d92215b6ad42283769d8780b86c9390f7e221b91833de713d86d9b35c65dcd63
MD5 bb88544e4a517bfe5146b7853a348e42
BLAKE2b-256 907acb24bc03921e813362d73d69445d286867cae4f6b800f69df1ced0801a58

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d311d53cdf9c15e2804dfa420841d63bfd3d6439edb2b6e341aca55dc05fecd5
MD5 88cef300a44d15bac5f2890c7574a8d3
BLAKE2b-256 5832f4d72b7178bcb9c6ee4d6ea89a7443b29bc5d0bf51986cc3a41dd48897e0

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 432d6738d284cf5f8cf4b3922d805fa94cee8dab7fc78fedca14fcf2be9eacb2
MD5 a2344685691d352962e9f15a015eff30
BLAKE2b-256 f3f6b07a08947478a71818a4efcb9da08ffa3dcb99fa140b1044183517cede21

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8fb0accaa068694733cb52cbbb6d5b34767a006353aed539f9cfab17814562a
MD5 a871002559d71ca1d1c3206a4ed48d29
BLAKE2b-256 8d212eefabb6ec3ed6367cc9d3da5451cc7e8acf85770df5b0c55f0f477da41b

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dda0deddd3fb61758b350963357568747bc28cae97a0e32dbf911a8a1b72a2dc
MD5 369b1f098f5b45902fb5fc1ed2d678ad
BLAKE2b-256 9dc4be4e2bab7020c41f1466fd9976db9aeea442b98f73be908d721666043317

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c1f2a5af6d1b6e3b6c94e0fe8a3e029d19e15c10a29b8189203c2cbb1ce592c
MD5 02b6f486c1fb0c5591298f5efdcfa2c7
BLAKE2b-256 19df25caba60bbca6e5e91dcbc7c67d95b13f0d0132e8600d89a93e0909d0aa2

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b302078ee964d8361bb3414b60e5c9554776904c7394a17d2e730dfa10a01a2f
MD5 ec2d2d7657cba57429958155c04f191f
BLAKE2b-256 c4fed5b00423d7b857a9a357adab3cbbcff1da0d20a113375f035c75403c52a3

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20391b609d6ad8bcc0588bfa4814f3d438e75f35710ffa88abea70132f0ddc12
MD5 4304a90250cd5822891730cfcdc0d088
BLAKE2b-256 b7b78cc6e899e180811aacea50345e00733a9afcb57fcafbdf578d315c4ac1a8

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1e50046997efaa20ba045b1a14f23f580dd85f7163acd636d88eece4df29ce6
MD5 bb6f2f85914f86a741e79e0d143cb505
BLAKE2b-256 212bc4d30e3072a5779be02563dec73146e0c95c7f4b71c1528fb81feac28cdd

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e937bb4bb37839bf11de9d259940429b34d9009e8aa3b292581bc3a22693e8ca
MD5 97620147e19e68f27d78adbd9589708d
BLAKE2b-256 39e582f5e7557814f0e49ea989743b6952c4cade4585218334158c539dcb010a

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af4c104ce344423e9b3eda9a27b86f4fc070e954d3c7ac01e97470f350ccc5f8
MD5 62036696cdce74963edd89e87b75260a
BLAKE2b-256 21d84679887e5e0de7b84a0ea629494119395281902ddbb966e886dad2b6820b

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 014306de6d9ea56727b4dec3f6311c14f31b1f9b338477d216c73dc718201cdb
MD5 8a97a513f42035e9797310d53b98623b
BLAKE2b-256 7ac8a1415d156f382b36f0b3630a823a3ef04f70b1a9e50a0eb1cef193f5134b

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d5eee6858357aa4d41c7d4f228d85c35621dcbb056bb83b4d61989650f38d6e
MD5 dc56e4ec1fa9b785903ef7ceef2e62e6
BLAKE2b-256 1e71278d4bf4cce30ae5a2b31633bacad58dce48aa0bc61c4d774f0dca1997c5

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3649cff875b40a4c1dc38696f44242e3d4f710701cd5e17d60b885149722656c
MD5 fc0400eb3e5500d70af55fef401c67bd
BLAKE2b-256 b3edd445ef8b14260bda5b8cb247fe58db9149d55ec7fede3f9ad986247abaec

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 92adbeb4c5211e006270a685184a18dcfaaca01446f9d420633fcff8ee77f959
MD5 5ba07d24a3895d8a56f01ecc33dd23f5
BLAKE2b-256 11155b066dddbfc7816c0253efcca727e202226c6a243c151104a10fe07bdfc9

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a516fc3829716c72831d645f7a7a4573fce8e4812acea41e5b67163f3bcbaea
MD5 a71a6bc86b093fce744d9c026adab651
BLAKE2b-256 dbe13b2b974e66e59a6594b143a46bbe4b11ddb76a6ee6cb66beef4c2081b860

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9d8ed2106a44bdc38f67a4e6713cee89a2a89b52ec4f797610383f8b40e86bd
MD5 d0b7635bcd8947cf807301da234fa0e6
BLAKE2b-256 fc559520f170d3d0de0ff74726bd1e34951087e95202a178593d51a4b8c27aca

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 048a62246e75f0d2fac8264cd340a43fc308d519e6a7542db9413dbf8a424903
MD5 e29b4c7770457de44d1b899322c9c40f
BLAKE2b-256 2fda7438e4b000f1cb79350cae882a9361a7cc3ae7362928d07a9194533666e2

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db20722f1c94ec6ee8305cd21dbabd50e18eb7aeb3ef0b1fab1b2aa411e67744
MD5 a8a8ad46cc4e31f0618b9fbde0765dc5
BLAKE2b-256 2c234212379fc7dc3707e0b98757e4232aec0a544d1a6558510a48870d8762e1

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bca8d2325f4c522c03983fa35e1fdee19556ef1446b5149a2ab3e4b3ed8a84c4
MD5 fd27a188ef06902c7a25d554f4b11aaa
BLAKE2b-256 17c8b8db244f83c314e4cba834924270f80a1d5fe645db998ea49c95382abaee

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68b7f4077706883f277c6730248e76e5a6de4e8beaa39b9d5da0a65e8a07d7b7
MD5 1b99bf4e9285ac50c1ac8d93d9f8c28a
BLAKE2b-256 3c85db77400fadfdb71eefaafdc17af69f34179c0d4bddb7b0d5cd64393b8e27

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74aa9cf623fb1fa0c7fbe10d535a34dbb5aae1aac999fba36d71c6ef66ae3502
MD5 fe03797535ee4b7360d9d2d25a028fa4
BLAKE2b-256 af0c0b86c07952d563f308914b9d4535199c241a6b74b4a8eff39fea85f45395

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2476e77ac4b267f2e7cdeea9ff031ef2d8acac26efbbf799a24b868de64a8ffa
MD5 cac428b4b9ccc02d41adca13abe46f3a
BLAKE2b-256 ebb558115e64ede4ffc48d43dd9a29371a4773201242428d989919d1caf1a2c0

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f00c3e0460ee22b94fc4a4c5e23a156723c1c3e4843907ca64be206218e5bb61
MD5 6934a90f6768c904d27b9e8515ef554e
BLAKE2b-256 723c67e1f0500ae834d9720ef3571ca02c9049efc0b750e8de66c418b84d94d1

See more details on using hashes here.

File details

Details for the file cliquepicking-0.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cliquepicking-0.2.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9db798f62f0eccf8b1709f06e29d2c0db61fe41e6e4d6d81ad195039f8caeca9
MD5 a0173aac49728f9acf2302026584975b
BLAKE2b-256 07572de18352bc71ad98af34d43810dfa3dd527b4e3a449f1452633222afcd3e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page