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.5.tar.gz (19.2 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.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (505.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cliquepicking-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (531.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cliquepicking-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (592.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (359.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cliquepicking-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (505.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cliquepicking-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (531.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cliquepicking-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (592.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (505.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cliquepicking-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cliquepicking-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cliquepicking-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl (503.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cliquepicking-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl (528.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cliquepicking-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl (590.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cliquepicking-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cliquepicking-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (387.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (327.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cliquepicking-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (503.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cliquepicking-0.2.5-cp313-cp313-musllinux_1_2_i686.whl (529.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cliquepicking-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl (591.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cliquepicking-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cliquepicking-0.2.5-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.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (358.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cliquepicking-0.2.5-cp313-cp313-macosx_11_0_arm64.whl (287.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cliquepicking-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl (298.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cliquepicking-0.2.5-cp312-cp312-win_amd64.whl (188.8 kB view details)

Uploaded CPython 3.12Windows x86-64

cliquepicking-0.2.5-cp312-cp312-win32.whl (176.7 kB view details)

Uploaded CPython 3.12Windows x86

cliquepicking-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (503.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cliquepicking-0.2.5-cp312-cp312-musllinux_1_2_i686.whl (529.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cliquepicking-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl (591.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (503.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cliquepicking-0.2.5-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.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cliquepicking-0.2.5-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.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (325.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (358.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cliquepicking-0.2.5-cp312-cp312-macosx_11_0_arm64.whl (287.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cliquepicking-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl (297.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cliquepicking-0.2.5-cp311-cp311-win_amd64.whl (189.6 kB view details)

Uploaded CPython 3.11Windows x86-64

cliquepicking-0.2.5-cp311-cp311-win32.whl (176.8 kB view details)

Uploaded CPython 3.11Windows x86

cliquepicking-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (505.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cliquepicking-0.2.5-cp311-cp311-musllinux_1_2_i686.whl (530.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cliquepicking-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl (591.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (505.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cliquepicking-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cliquepicking-0.2.5-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.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (358.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cliquepicking-0.2.5-cp311-cp311-macosx_11_0_arm64.whl (289.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cliquepicking-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl (300.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cliquepicking-0.2.5-cp310-cp310-win_amd64.whl (189.8 kB view details)

Uploaded CPython 3.10Windows x86-64

cliquepicking-0.2.5-cp310-cp310-win32.whl (176.8 kB view details)

Uploaded CPython 3.10Windows x86

cliquepicking-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (505.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cliquepicking-0.2.5-cp310-cp310-musllinux_1_2_i686.whl (530.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cliquepicking-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl (591.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cliquepicking-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (505.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (388.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (327.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (358.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cliquepicking-0.2.5-cp39-cp39-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

cliquepicking-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl (505.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cliquepicking-0.2.5-cp39-cp39-musllinux_1_2_i686.whl (531.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cliquepicking-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl (592.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (387.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (329.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (359.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

cliquepicking-0.2.5-cp38-cp38-win_amd64.whl (189.5 kB view details)

Uploaded CPython 3.8Windows x86-64

cliquepicking-0.2.5-cp38-cp38-win32.whl (176.8 kB view details)

Uploaded CPython 3.8Windows x86

cliquepicking-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl (505.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

cliquepicking-0.2.5-cp38-cp38-musllinux_1_2_i686.whl (530.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

cliquepicking-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl (591.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

cliquepicking-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cliquepicking-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

cliquepicking-0.2.5-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.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (328.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

cliquepicking-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (326.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

cliquepicking-0.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (358.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for cliquepicking-0.2.5.tar.gz
Algorithm Hash digest
SHA256 000fe9cd039eb54f3644e92d0593392df98325053ebbaf167cd9c2aad11accdb
MD5 f579aca5aff1639051641b0b6089d392
BLAKE2b-256 1b621363976e0191be179a5b432856b65fe5ee766ec6e3b303da3c624f3329b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1aeadb7529a0755b19441afd3fe5921dca4cef00e257bd8f126bb632090bfdf9
MD5 167528addb747c2bcb689edcee5eddb0
BLAKE2b-256 0e2d8024f99b5ea43d36db2d73caca7bdeaf5df841c0e5870f9ad3ee628f31c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e66dd612a48ef0fb23f33075d5502267fd61300311daa5fe5265a4830f1dc483
MD5 81df33f3ce1bf8451a75b45f236b8e9b
BLAKE2b-256 154c7ca6c3da38cf0c75e00f19da4877e2e7f0e7f1434dac26a10b43b58ad9b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e435c1beb641bc6ed3d5711aaa1cdfb110343341132e3480ddd9bd583d8147c
MD5 8509b2c99ba7a698e0c635f69cc9df05
BLAKE2b-256 beec19538f1a8354b7bdc249135c84b8c4e56a41bb790cf8874d1fd3723dc296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c9967a4df0aea19000c16f48f8028bde8801aba4889de186a52769962259e0d
MD5 c3c4cfcc0c9556900b538f36ad0dc00e
BLAKE2b-256 8b5afc4c1b2df68e8c1a1bf4e2c15ac9a1089ffb1200f2ecca8d3ca1ae20a52f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32f8598a4722ff4d642341cd10b617389053914c3d7af5cba0595b369a644281
MD5 bdb6b484fca9874a753335223e09dfcc
BLAKE2b-256 283cf582ab3ca6675fc02a09375f2869420c4613ea486e7b7caf7d48de034bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3d83c3632a57de9e05a4a85b24a9b173dde8f27d3db22a64e5716573b473470
MD5 05487d74bbda2b3dd49df0976a7edfa6
BLAKE2b-256 b1dedeca62d36d20b00ef2fd069dc58ae9f044643eabfd68a1119170c01d05dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac5768ca5a770ff53ea00efcf76a8d41f325794a5e7dc121178d9e947feca0c4
MD5 a54942911b0612412ae9c3592bfb2692
BLAKE2b-256 8ee171aba90acdfec34bde570f3826bee7ee4b9854425164d4ad57143deb6691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9dd787b6c25c345ea12291f56ba07f37c5c55db573783e9b4634db7cd0bbdf73
MD5 090d50afb95aecd6b4eb5bd7a77cc1c4
BLAKE2b-256 8bdf2697747d275300d90ef095014ce8de9cd8a09afc83bce40b6f5d33f9ef4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1659a4f0e3364b81ea10f3172b8b622acac91eb76ddfc4d00d7ffdbbdd8aa67b
MD5 38efe40e4bc1ac49960c92414a8a4b84
BLAKE2b-256 fa1d24610c2f6c02b88d47a300d58a9872953d4a52ab860aafe1303dfb8ecebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c09684d2bcccdcb3829acefe552a504cf36758b8c121a241f7637ab87261f45f
MD5 0cb97c456b7154f1bd10705677ba58ce
BLAKE2b-256 12ab602daa353f251c8405a7fbbe3cae5a278f9a1ffe51000f1f71bbda51be4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 166f70c72d7997b7ea869a0f7354b369f17856a4f0dfde7fb6951f8c40740b4f
MD5 e79ba25298ba94bed53dfee73c3e52d4
BLAKE2b-256 819629a3b4d550a6dbf74b06240b6b4d6b95a5f76d3afe38f02477a01c2cd394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e7d2b8db8961ef79097cdfcb101fb92e38c99132285d3ca1d816b2dc6e3f535
MD5 44f2f3cc24e1dda3790dec2e771b26ba
BLAKE2b-256 ea4c9bd591b7df959d7cb25ee7075a407abb330dc95acd6cffa2839cff310831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63c356037a11d93704d77d8420257dc06127fab97554bf597f13ca01f95a9f43
MD5 5665e6d872f16e84ab365d8f56a98116
BLAKE2b-256 0493b1b591a6e68d91fe3013da17c8e63ec72eb993ddf04c9ed1e2c7165bd899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f800974949d841218a7df60b022c22faa1ca49e730ec75987246c52b2bd31a30
MD5 dc4261a0e1df80e577d5006f888ee3c9
BLAKE2b-256 357ac4d95b8a73cef127c53ea528494f791003f1bdbe3efc5cc9b72979290892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4e55fb1c1a2a20bf05ac2d42969f6ea3ca17e353c6fad096664ded38eb4d6b6
MD5 60a4eb3ac5201d1cdf8a4ca783d943c6
BLAKE2b-256 2630da6a865f88221ee62e0ed3db1464612a240883180d02001b7f3d38824208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19b6deaa89795344288288c9cc025afd22c853b9cc88e484fbe59156ecf6e66c
MD5 1cf48187dd3d61243f16c768cfb93056
BLAKE2b-256 8f8543bbcb5814223ef85ef82b06d98ea933f22cd39705125ebe4c92ea42461d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ec7295821edd6b74ee32fb62d9c9dfe669f48e838972e802f01dc768413ff54
MD5 1537e737aa35e6c4958ddace51272c6b
BLAKE2b-256 ad9247c00b138b3a856b226cfc066350f7e61342e59b7be13554395285373931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a52c8ebd64a2738d82c884bc4f32213a0e091371c3c5f5a59fc2ed134ecffba8
MD5 50b8a7643e015ca990249ca74aacd892
BLAKE2b-256 447c4f72d23cefca3d4806e7e40b790ef4900b289d5693e3196ff07ee107ae39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6cefb3747daad63f17bff0dc1f46c862bdbbd641219320b9bbef59050fb02d8a
MD5 5663da02633e02ac69bec8cc91cff4f6
BLAKE2b-256 000ad98930f50364858e1d405f9ac0510ee8556d72d8a0807aef5a86b38cbf2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ec661833aaf7676910d979b741dac590273da2f640fcad96eadf6c8c887bfc8
MD5 e28740f696f6d87d3ca07d6957f99bb5
BLAKE2b-256 9b95b5b3bfd6514101b901e198d1f28b08112681f7bb551eb05722c70a48a47c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83d1360513940091f6a89919be6349105c594978512e8e9f395a205ce8e62bc8
MD5 f66c293a26f3703fa59b0777d3e7d1fe
BLAKE2b-256 cc03177d19f06fe52904160a7f152555a24a0eae8ebfca143b68b933edd0de79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a97c3d0fa569c849e022659d9f3b10838258a2be3a5621c0c8fe10a720840018
MD5 6e3c98a5b3309db0c8ca0c936b36c177
BLAKE2b-256 a2edccb61b44e16947e78a9b57a331a0fea32ac29516ba4de0b5370c87b5032e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3eae61a7985a66fdfd86d7ef00a5adb3a6d5e5628e746c39295ed27744a178c
MD5 f3279448d467880245d80e0163c7ae96
BLAKE2b-256 5f8a9522bb912e6a7747e0fb51ea1a281d8bc311173032b5e124434b1af0b807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b7b14cd5ffa89304e37806fc461e950fca1260464fc493ccd315be6cfaa921f
MD5 446b947fc4b461568ac47b658071273e
BLAKE2b-256 a338666da67ad6e06ff81b80dca8630effb05422fe7737217f975d2315df58b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66e8997a86bd7157c1e608f8353887f71012efd8375050f87da6de906d5cf20d
MD5 7f00fcd1f94f69ea5affe41df165823f
BLAKE2b-256 2c2773d6fbeccafa4aac9dd043de12180b9a1c1c2b48fc77cb4ceb19a1ec81c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a751f7e5312ff2b9b4ed5b326cef197ec6206f15a1d754827e7dc6cfd6c59e04
MD5 4866aa6fb4c89e00c9469f2379ad725a
BLAKE2b-256 c7546f4d9d3dc98c3f3526329fa90f30c48c2b17c42436036696ab32a76c3c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc637bca5eac4ffeddf0662ca570d7e039fa6ad611b1992e93a7d708834f3581
MD5 c06f199e3a4a5e54ffcdadc00953b301
BLAKE2b-256 50d1246d60102d116c6d73cdc93f056f22dacca60fa3ccc044f61ad144eeec03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 194a56113b25f6239126a397d5beef5ac8098692d1a30ac4632ff4531c072658
MD5 5e6d8bf53e034d5fc26ec0571ef7ce25
BLAKE2b-256 6bc51568944e5411a2f94f22a1dd8ab146d09dceec043bca4093d355189d3240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7638eb2bf74571657dff014804d51489026f7a19b1ff18f958942816c3f7c947
MD5 f8352d64a8e3a14955b735ef89a5859d
BLAKE2b-256 8e8f71bc1e7ecb878da7197325e8e641dbe30c9e0da4171a8422acc27ab9bfc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d70c93415bbaf8a3e20e02af8bcd51d009607481184580a908771bebf6423db
MD5 f852fb6a8ec34302b337fb59442a9b5e
BLAKE2b-256 82790e47e0a4f3cfc3eddb4d290f572ccf8f03aa8ca8e22f324f818adf6ba1ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be74f156aba94a31d6d40a88cfcc02d14c3f58a4b0045f05a33a3330b9278a9f
MD5 4a617b7b54bd749c19f840e70de5d843
BLAKE2b-256 26269c06878563ed2f289f56fa4494a43bf5b2e0b263fd074cacb0289f462cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a45fff13b1e3c35f58e90ebe8809ed7539413692d0463640462795f62028b86
MD5 3b1553864f207ec540cb943222417308
BLAKE2b-256 73a5f3e58e24e8a053c9a3cb2faedf985190ee7f045ac5bcd242cf1f4a0a04f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c2e50855de88f3425d02c8c0256d42ee50001b3feb4349806965600e4ac9c48
MD5 1b8a09c3f5b1244c27ce16fa965ad987
BLAKE2b-256 67b0fb2998b01aad23c34828f56b111790f6de12f5253ec908c74e38302ce680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e38247c20cc3b505bacb30dac44cc96c1cb61ca2854939a2dda574727cee9c1
MD5 d3bc1207272991aa08e9c47941936e89
BLAKE2b-256 55f2e4b59f26dd9cc8e9d113713fae50a2240f5339b75b117314a453f9ce2595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dcc3a814b086010949b35bc6d4046855bacf3d405534419a76abea3670d2138
MD5 3b03e77720f09582680866dec56c53b3
BLAKE2b-256 2168caa3f77e02d18d6411e21ee0991a970505541bcf949f96002641e2e11b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 620a7dec8a3e9c8bce4edd0bfc284f2d7d4847731d969d936f20dd82f8def2aa
MD5 f1612f8cfc3e7b65651c8229a620020c
BLAKE2b-256 1a8eddf3ea1c9b1d3a241f678cef73ed25ca596681aae25edceedbc1c13d0e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e545b02071cb9d5e2618ad3af66c8fa1e1de3a0b854e5517818bc16146ffd180
MD5 4fff4369c33cd9e032eed1687c64154a
BLAKE2b-256 48188a269e4d0858d99d5f16ebc202f79b10a4170fbd97e57eecfc5d763203a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06a4aee4cc6a405bfe4f0d5e08fa183018cce9752d2cb11ab6a1428888cad3d8
MD5 348dd4cb5a106b2a28d968a657f5137d
BLAKE2b-256 b039813b33e602df42c1391b43e27e012e2f5bcdfc1356d67d437c244be824b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cf07b498b09dd8d296a5454e8d3b2016b63a49e7f8a23a911db15ab96c46a435
MD5 6838187d407b6bc556fd74e489d618ca
BLAKE2b-256 e5e5d849b0673b3843906c91a80055be486b3b29b16118bc87b288ac2eb7d7a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7e130c99a54b0e3ce6fddc405fd34db0b4bcd0608d77593fd2eec8e748d5d07f
MD5 1c5347a1fba0b6b9176b3790b8f9f9cb
BLAKE2b-256 04ca75f4809ea7084e532a9e4e5541699a5bc1d40369d2600d3c6462117e97ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74c9d3681cbd2d25d36754ea3cef7bef15a1601d811ecaf5a3cb9b6c6ff4fd3b
MD5 b0e4c381f44be17003c777ee632be286
BLAKE2b-256 03b8f66f7ca1d28e53860620a862a039faeeaeeb2e607d6097c8c7bc68e849dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d72bcd0241923c97d29d28275b936d95ba3498e44ba2a68d1f2107120ce9a24b
MD5 b59a92a9f5e52b15aebe8dbd0f33e3d3
BLAKE2b-256 2f3969a7c1bf11dad0fe86078f19f7794f55380bafc0a5de3ef88a8b414af58f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f984090bb584cb6f700f25f68c63961af9bc7a256b9cea2c202c93d5bc196f1
MD5 90c6173d4024953fb9cf62b5e2a1590b
BLAKE2b-256 797dece5520e17c5fabb4acc8822317b8351bb735f2a2743c2182732529c62f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5080bb789953a6bd65e1d7c5858181dc2de2bc558ac456744fd3734eecc41731
MD5 d26e1ec549f87bf07d3fb2d2bb338ff9
BLAKE2b-256 a65f5b3cfe25f0b9fd70483dd85996a79af96d0545a0c6493026b75ba2fed83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09d56b66aa6faef35c357ea8643b99c0a51f8649b10bfd91574aba8b04349aa6
MD5 fde2a1571a7452784833dee6675cc0ac
BLAKE2b-256 4a29d0c838cf90b7c2dbcb817ca93e50dce4f4180e8fc1e07c13f52ada039efd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4838ed25b0ed7a09ba1739007ac42df9139bf8d65813a777d66991c6e894a52f
MD5 e8ef1613c2deb2c441d9627eaae84a9d
BLAKE2b-256 8dc443a229620e9593d44c2d058a648a2c26b315734ca6e8019bb79c04ab7f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c9abad800df5ba5f219af513a8b5e28480f19db5adfe83e566328e8a6f7bc98
MD5 381204c5417fcbbae74d3b32076ca543
BLAKE2b-256 1198a26b18659e36c0a6e8f70cf23108cd00171d5abc42aab4a379cfbc79b230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35ddda3c76179e354740ad9ce268026cdd577c18ab4b72730353712ef4f44940
MD5 35ab5925d5c63b89ab8a8101d34d8c3a
BLAKE2b-256 353759fafe7ab5afd82a54d34877e193ae1b7f14af9128c10fdfb31db1ef951f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db519bee5369463f5819512622aae076353662a9523a815310a6506f40bbc609
MD5 b7d010f71a848f1c919f75f0202844f5
BLAKE2b-256 2c4cae23043e340a8e4a700fd0845ba024a0d801387f662ab439f123739dfacd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 11f883a0d15e851924afdcf3d5f97926423460325e205676e3be5c294e943861
MD5 3bbc9ab1e63ec4d0ed1f199ea2509e11
BLAKE2b-256 0cbd917acfc23bb837dd1c62245578a0b1e99d6bfe0078fdd337ee736acbb9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30e7c836c8c7284d2d6a288cf3b71b13328ae7081c35882ee25e10d8b48bdc50
MD5 0be42d35930a2ff16166b7e0c0bf98d2
BLAKE2b-256 e4d2cabd41314bd4657920fb6defc5e180d535a53dc58db723b9cd18f3ddb52d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7cc29ca4d579ccf67605f5cbc1c0dcff582d94f443527fa54f830be262e1938d
MD5 b650c40cd0e19c353d2e9df81c442869
BLAKE2b-256 84a5d863f12647e8366a09b282da43e37cb1416f3bde4c0132ab61772f603169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6f7cc40a97a26055eecf58d0285a083f0ac81b98d478be57a022714d59e087ff
MD5 d4215e8cdc929472fc969c6f890f134d
BLAKE2b-256 9e8df723f2e0230406aee139a412f1b0b6c6c8446cf1a7d7a97866dfdfa9bb2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 726bcbb1f8495c5cfca59ee0acb87d7c59f490894db34e65a82bad0bbad227b6
MD5 2e44db2e62bc0427f46a44acd39471dc
BLAKE2b-256 e13f6e1ee7b8ef0fa7c46e63e15d34251bfc6694006da8ce92ce39bfd5b26473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abeb53af8ad83f47efc9ec602dfc37c291eb68ea9bd758c0a819ec1f026deb3b
MD5 b769f4860c81fa613779dc066e43677e
BLAKE2b-256 5e0e89faacc03b2a2edf7e941760ebdf481f58495f4c3edeb4419e99b1edde63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad33b28850606b90f1e9d22d0050b914793e5d99ea17bc3460790a863235af4c
MD5 6c314e7aa4fdf2ecca5a26471bb2aa09
BLAKE2b-256 ab46925324cc9616d959b2cc7ece7baf4c42c43e1c8c8efb59a192c480227e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f76626020c5a33c8c9cc81e2185f4d796069d16886c5ccff20a44d4725712f34
MD5 6cf7e24c2ca7369ef5e3788a36116b54
BLAKE2b-256 836d71eeae0a15718a65a14aaa21ae106ebc248ed026350d43cfe35742247bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b46650cc58d2a2e2f940a1ae51c02c86258c52ecb4c035163876fd525cbb819
MD5 609f4e78b005dc5d2eda36d16d79522f
BLAKE2b-256 abe7bb871ebad5ffcc397a6c02bf8385571a07a752fd2455ba6228fa2da43314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4d0d4da2246bb6a089d822026dbc586947fcffd44304c2380e41795aa946907
MD5 d44a98a8dbf1ee0e27fc494b2e8af568
BLAKE2b-256 bf3c3dace8803c7313860a6c59816ac79ab7fb45ad037f954a88315ede0b0988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71d177d4436df9efb056f6996eb05ba05d7193d59442ee9aa7003fdbd55c5cb8
MD5 e112ffe247fa1ff601341f9f84d3bd90
BLAKE2b-256 7c540c462df8a0785eb3f9470ee948e5d2a8f1eda43b3b64623d960858cf8f17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38adead9e0a6a03693e2e2abec439a537cea9cba105bd535c2440ce78eb39cc0
MD5 ba4b1e7b1b3e859ce5574db81d553d5c
BLAKE2b-256 7a2b1c020136718ccd0393a8f99f3a520424ec51938f33c4a17aef502acf5120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b09a606188de80e540586a960301be4330a564778d8f52859645ee89ab13962
MD5 080ebf4f17faa7549d77db88d87ded9b
BLAKE2b-256 ccb8a350a6df88231803d0ea54e1718ec87e6440c11c2fe470cbc4296c85472c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d2cb5c062debb2acbd4a728a0931aae6ccfa1f04444a1011e78d9decbc546d6
MD5 232befca7a9658786d9c2e74fcbb6729
BLAKE2b-256 e15ab551a0d40ea1c1d6f882b2b0a07abcaa38d56cc0134e247f6f97c064ffee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37107fb3a7fd1d8bbbfa531e9da5f1436683b546b56ede5fd3a3358b273af7db
MD5 a1369e57d4b40233f2847eaa2ba40ec3
BLAKE2b-256 e2a92d459263bf195a602087c7504568bf3ad71c6d20b030885ef47b7133b132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fe709a013394b504db648b259ff0d8af51794657ac42b90e4894458b09975b9
MD5 54534eb57486d84e60f282735cd786f8
BLAKE2b-256 a4bd7a8887ee2b1b736167305530cd8854af318edeb4402c2b39d6b06e8205d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74462e2ae38d68019f6a7c8da4c4d90c93e5e1f657fee81e1cdce35a4cc53a0c
MD5 c19eee9ccf73fa290b13e4e2fabe225d
BLAKE2b-256 4c194e58b515a9f104b7eec8ab3e07c2a24ade0c81b5e075cd091d88d39808fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ecbc723a69a7cc82a3403c1494f2eda502db4b9162bd7d51f9ce4d6bb94b0b86
MD5 93ee0297d318abecd314f2a2d97c6c98
BLAKE2b-256 e08036cd1581e2cdd33469f145ebcc2732d0f83260bc7f4273fda9f5dcab0549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bea0b3745e16f11dd59413993f52498b59001ce88d7fa2ee3c37d0c7747c2c24
MD5 0d3d7fb33c4f9a849e989ed0097f988a
BLAKE2b-256 4c109b1f0186f5cf54ba7f1f4d20caadbbf117841c7433cf39c4663e1bf584ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 208878571caf51fa2905c456899134d8d5fa2dfb83135642e44078074e17b504
MD5 13594d0e34e24e96f9586d4b8401b8f6
BLAKE2b-256 2e68414a594d0928498ec36ce12fba46ff7058f2a1c76f83c7958d72bac46047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c59fae2ffde8d8557030eb42b9813eab0c32a71ba9e8da556083fb44498c870c
MD5 fe003d65cf1f9a90fe3fde68163e2ddd
BLAKE2b-256 2879d852a643b0d30ea33932cf5835f74b9f36e5576d2660aebcc7c45ce812ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f7c58fd34e3f861cd9ae5b044ed12ef625c622cc11a1322d2a9554ed9c60335
MD5 d6731b03197495031070a24dcb0eeaf1
BLAKE2b-256 f901afc8a7fd8021c82ed7e5b51edea066354ec7bb8430f38bdfcca764375f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5faf75400d521656ffb9b8fe47949dd6be19c8483568e772e3db05570e270d95
MD5 449ad1acdc2b0fb9e2207bd5904d18fc
BLAKE2b-256 4e14a7dbc346cb9b8f935dd2ce767dede4242d014ec776200618d7f0e3d21183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad5141685931024d7f7079f3187aa81625562d771ebf5e131ed39fe24c20918d
MD5 fb7c38c6eac9b78dfcf493c5f5d6563a
BLAKE2b-256 b2b4e712a4ec54fe670c55e461df8ba46e099c95439da121f734e7fe92b4d58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6368a102840c824cbfd7a422a594406fac55752890a032c72117d9dc8eee5a2b
MD5 dfda1773f16801a8d60c47c78601fc2a
BLAKE2b-256 61f82d4c78c27a530648d6d9be0cf5f968312dc6d3dd046748ce5a58a07fe997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d715f1a193a6bc2b993feadf7f079cfb999cbd717fd2a325ee66b3f8698a7f9
MD5 12d06dedb6a44fdb708b85dab1d09bb4
BLAKE2b-256 00a25777a6caed4b5950599ec7af4531f118f82bdeec4bb2327c66290f83d6fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e42894f449b81883d0a59f6dc07361c67ac49f18276894b9583f098ec315e14
MD5 324586aaf22a22aa5f1f615df77d5b60
BLAKE2b-256 33e9957ce6914947037f85dda3a70380707de7728ebd14d3ec3fd2d10dd0bc75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57826cc120085af7b2b66b2fe223af0c81eb28bfec61982def2c04e0b52f4123
MD5 d0a6b40b77f838ae85d56160df3cf14e
BLAKE2b-256 36204a09223bb3e28dd2ed4977f603db963d2ac39080bb211a7fce50bf129fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 319c3d2249bb68f92abd02d228b0d2b29168fcd06525f515b5c1c781d51aef64
MD5 f6535ba1e78dca34b7f6791c0619ed7f
BLAKE2b-256 bd7fd606ac2f5c3b4e45572f36f1afda8ed81e79b420e396eea1db66fe9c1bd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e9eed6d86f5ea92b834a2a8035264594e00c14a182b916c68a005b38eab641db
MD5 8f3e8647440129ceab57efe83def2dec
BLAKE2b-256 28187fb0ea628e5b635a148492f2b76886b9126038ce88144e4828610af357a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0e5463d778d78c1230b67e34337d10a209a35e95ce6f42f92d1bbcaebe310218
MD5 5bdbb6adaea53a3375a10c02e3ca05cd
BLAKE2b-256 363c1aa11fb7b3bd5f753770f3fa74313f458a987899e37fcde2cc2c1ab2d2a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42b92584149a4a34e8bae79a2b2b6f877fe4720d8a578279d7c637fa2d89e95e
MD5 55838ce7da414b585eb7eec3ef87add4
BLAKE2b-256 1df00148a7771d3156ccb6ab692801520677aa16eebddc61f86342efe5bfaaf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 803b0d31576edd37649b595a1f17cc013dcc11abbb84880ff79a32670fd8abaa
MD5 5ad34fd0f974f61319fe9fbc26492ad2
BLAKE2b-256 45a04cb854c4bc2ebdaad28479e9d23f3bd5a1e68a5e0b8149ca245cce3260dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc0963ad12179b19e84074561f769a41afd29527a72e47757eae42cbd03bda27
MD5 4b9d5a0555a5a45ca31f7f4294e8654c
BLAKE2b-256 9a4291bbd14c60623571944a9918f634286a6267a490aea3092255dba1ea140f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f25c022f53e21f3b41f538ee20009fadc224b5aca8bbafe8ffeab1fce552d427
MD5 b6fcc50c73b97704b929c839ce19b06d
BLAKE2b-256 31868e004a3022fc7375610ef1d9781ea4c03edbcc0d492cc5d8af544fbe4ad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8480a0b0d43bbf9ffc65a35ac5da4bd96b8f679860c6d9411d3e806c87677dee
MD5 ded14ce3178cb7b45083f7da5fef8a65
BLAKE2b-256 623226b0d0466f0a257ed33e220bf651331bf0ab00186a7867130e1c9fc2cd15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1153452bdededa47d39258d0bf1a2062fbad9aab0357e1e894e5d3915f50d4a2
MD5 f3e511e8e82d3ddc95a906b7752ad8e1
BLAKE2b-256 bd17082210f85bc01a93b97763fcc6b95b0279334ddd709ff4b772c46ebb0335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fd3e77fba7a3f4a500b8926c09bb69d59cf4a5d50b65d7b79b2090ddc36d7cc7
MD5 de28f933991727650400f3126a927b1e
BLAKE2b-256 465a4493477fc04718e95ce79878933d6f15401e58d227030bf2c2701eae40f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e664411737ed0c1086efba246d7f4734b6fced15ef52023e7b8df257be613d5
MD5 dd3f0fbb27e7984e8cd2057757f93c4e
BLAKE2b-256 51f2730111a1553ebd0a462136c1d3b6914bc7e885d7c336c9130731b4cb6040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eed3c5bd9910bb34e05bce0dec56548c34c31f60515051eefa94000c9381383
MD5 b6eed1d60f661f7277802ab98199404a
BLAKE2b-256 ce476d2a03803d0edb1fc0b28065ee38f1b3f18432fded90e936c63724e6eed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5ddd260963f2d0617f34af1922c6888ba2c58c1bfea268459eb2a5344425a164
MD5 2518d916a1a720e1c5d59ddb08169b62
BLAKE2b-256 2c6e110e4d7acccd9e9a1895a7df92744692906739d425e94bc2f431ac519798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b0c3d64b0439427e7056849d7e4fbdd7c9502e8cdc96202bba046cb04850eb2a
MD5 9ccce3cf5365efb6602f62595e386ca2
BLAKE2b-256 3dd0f8469dca141d7c0c939019d41c5b4605a7fa9f99475ae0a2b9ef502acc19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 08c5fcba6deb055abd060047f520519c5511e09d79a6dde0293899c361201bdf
MD5 32c3e4fa8d3fcbf6d67a0966f9c2447d
BLAKE2b-256 1d2b35b246078078407e5af0ea3edebecf2f7593679ed05ef18a4d5a39cb24a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bdef4ce7ad6b76883101bce10c4ae6375e1c924f542dd27e5ed53666280b463
MD5 0bb97051bd7988b3eb91a6659c40ce40
BLAKE2b-256 7c73447acb73ef1a433f02e67a081a788d120205c3249927296e3bcbd323032e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5b4b47c9c4a7b1c2a95d090d2e6529411f0773a311c95e5c7a42a7e4925abd6
MD5 f398247310ab50b1eea1ee23ad673a24
BLAKE2b-256 4872228fb011a7c4cbd42ad75d668b1d16d6bbc44b4dfad891ec4b70c0ae55a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5d32bd27b69be21257d41e8bdab2f7bef6a745a0781714f52425632381b00dc
MD5 ada8d209fe91e77dd599ad13973c20bc
BLAKE2b-256 7ed0f543ad93626a6261b422994b0d81e3afc179c89ebbc576ed3da84a99593d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a28a15926cf9360da35d596d7d86c76d2a4eb9eb144d629d27b6748d6b897d6f
MD5 2a6097dcb10678dfbde494f575039ca0
BLAKE2b-256 8b4885fe963684bc5c93efe06b385036820378f5f781d5a005facd7db9736ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbc1b25d200ab3f1d1ec271b23f036580139fdbce10662496450fb548308b690
MD5 7d39ae5de2e2425b4c533756f3da5b51
BLAKE2b-256 e570d237535023e8ae46cdc983e6e2529625ee0dfa8e2759563b04ed120beae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 084577fd126a51894b230ad946392bd6242f5aa1c54d469e4b85b8a0d828f8b6
MD5 01b57dc04f9bf9aa078ded3f2b9f3489
BLAKE2b-256 1562dc890471fc27e29efe1f21d229fbc1e437b1ee6e0b23623a9ed0b532364f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40dcbc7046c6f407eaf9e254c15dd3a4f31d96bb80cc43f961098700345c533f
MD5 6ffd0f94038b827364c429fe762e1698
BLAKE2b-256 27e690a8db690979e33ceb64df07be9927899521a4e0c2d6911421f33bf5e9bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 13233f7bb76ee3a0913dca32d8e6f9212d78b39d8d92d13df03195afe486e62a
MD5 49b50c6aa0202b5accf00a12752ae2e7
BLAKE2b-256 3e6744138f84974fa2fe81706e7010b7fca79f94191ae6374db572485d759e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a3c08430a861ee439260cd550a82fd3fe8dc292be4bea0b2e736412794f6e26
MD5 d493461555d56272d6db283589d7c4a4
BLAKE2b-256 3ca740e0eae162e80b2d788b393acb1569190d50b4c55da252a5b9107d88568c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cliquepicking-0.2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a03403ab1f5b3898243a3db969c4bfac43ba1a9a6ff54652519101313e3bed32
MD5 3ccf9dede38c172a5edfcccdae3aacf1
BLAKE2b-256 61a983adc1a29aecb3b179e29b8f9b3056be4e980d1e96746425e7fde6ebe55f

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