# 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_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
and the class ```MecSampler```, which can be constructed with ```MecSampler(G)``` and has the methods ```sample_dag()``` and ```sample_order()```, which produce a single DAG (or its topological order) from the MEC represented by CPDAG G. Repeatedly calling these methods is computationally cheap compared to initially constructing the sampler.
The DAGs are returned as edge lists and they can be read e.g. in networkx using ```nx.DiGraph(dag)``` (see the example at the bottom).
Be aware that ```mec_sample_dags(G, k)``` holds (and returns) k DAGs in memory. (For large graphs) to avoid high memory demand, generate DAGs in smaller batches or use ```mec_sample_orders(G, k)```, which only returns the easier-to-store topological order.
Be aware that ```mec_list_dags(G)``` holds in memory (and returns) all DAGs in the MEC. For large MECs this can lead to out-of-memory errors, so consider checking the size of the MEC using ```mec_size(G)``` before calling this method.
In all cases, G should be given as an edge list (vertices should be represented by zero-indexed integers), which includes ```(a, b)``` and ```(b, a)``` for undirected edges $a - b$ and only ```(a, b)``` for directed edges $a \rightarrow b$. E.g.
```python
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:
```python
import cliquepicking as cp
import networkx as nx
G = nx.DiGraph()
G.add_edge(0, 1)
G.add_edge(1, 0)
G.add_edge(0, 2)
G.add_edge(2, 0)
G.add_edge(1, 2)
G.add_edge(2, 1)
G.add_edge(1, 3)
G.add_edge(3, 1)
G.add_edge(1, 4)
G.add_edge(4, 1)
G.add_edge(1, 5)
G.add_edge(5, 1)
G.add_edge(2, 3)
G.add_edge(3, 2)
G.add_edge(2, 4)
G.add_edge(4, 2)
G.add_edge(2, 5)
G.add_edge(5, 2)
G.add_edge(3, 4)
G.add_edge(4, 3)
G.add_edge(4, 5)
G.add_edge(5, 4)
print(cp.mec_size(list(G.edges)))
sampler = cp.MecSampler(list(G.edges))
for _i in range(5):
print(nx.DiGraph(sampler.sample_dag()))
for _i in range(5):
print(sampler.sample_order())
```
## Time Complexity
The counting procedure has worst-case run-time $n^3$, with $n$ denoting the number of vertices of the input graph. This improves the asymptotic complexity from the literature based on the comment at the bottom of page 80 in my [thesis](https://mwien.github.io/thesis.pdf). 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.
Raw data
{
"_id": null,
"home_page": null,
"name": "cliquepicking",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "causality, causal discovery, markov equivalence",
"author": "Marcel Wien\u00f6bst",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/48/18/ba71a59aa0ee982f27d5e11b6adc3b3b86b7da9dfbdd9399bbfff19b75ff/cliquepicking-0.3.0.tar.gz",
"platform": null,
"description": "# cliquepicking\n\nYou can install the cliquepicking module with ```pip install cliquepicking```. \n\nThe module provides the functions\n\n- ```mec_size(G)```, which outputs the number of DAGs in the MEC represented by CPDAG G\n- ```mec_list_dags(G)```, which returns a list of all DAGs in the MEC represented by CPDAG G\n- ```mec_list_orders(G)```, which returns topological orders of all DAGs in the MEC represented by CPDAG G\n\nand the class ```MecSampler```, which can be constructed with ```MecSampler(G)``` and has the methods ```sample_dag()``` and ```sample_order()```, which produce a single DAG (or its topological order) from the MEC represented by CPDAG G. Repeatedly calling these methods is computationally cheap compared to initially constructing the sampler. \n\nThe 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).\n\nBe 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. \n\nBe aware that ```mec_list_dags(G)``` holds in memory (and returns) all DAGs in the MEC. For large MECs this can lead to out-of-memory errors, so consider checking the size of the MEC using ```mec_size(G)``` before calling this method.\n\nIn 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.\n\n```python\nimport cliquepicking as cp\n\nedges = [(0, 1), (1, 0), (1, 2), (2, 1), (0, 3), (2, 3)]\nprint(cp.mec_size(edges))\n```\n\ncomputes 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```.\n\nFor a more involved example (Example 3 from the AAAI paper), which illustrates use with networkx, see:\n\n```python\nimport cliquepicking as cp\nimport networkx as nx\n\nG = nx.DiGraph()\nG.add_edge(0, 1)\nG.add_edge(1, 0)\nG.add_edge(0, 2)\nG.add_edge(2, 0)\nG.add_edge(1, 2)\nG.add_edge(2, 1)\nG.add_edge(1, 3)\nG.add_edge(3, 1)\nG.add_edge(1, 4)\nG.add_edge(4, 1)\nG.add_edge(1, 5)\nG.add_edge(5, 1)\nG.add_edge(2, 3)\nG.add_edge(3, 2)\nG.add_edge(2, 4)\nG.add_edge(4, 2)\nG.add_edge(2, 5)\nG.add_edge(5, 2)\nG.add_edge(3, 4)\nG.add_edge(4, 3)\nG.add_edge(4, 5)\nG.add_edge(5, 4)\nprint(cp.mec_size(list(G.edges)))\n\nsampler = cp.MecSampler(list(G.edges))\nfor _i in range(5):\n print(nx.DiGraph(sampler.sample_dag()))\n\nfor _i in range(5):\n print(sampler.sample_order())\n```\n\n## Time Complexity\nThe 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](https://mwien.github.io/thesis.pdf). 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. \n\n",
"bugtrack_url": null,
"license": null,
"summary": "Counting, Sampling and Listing Markov Equivalent DAGs",
"version": "0.3.0",
"project_urls": null,
"split_keywords": [
"causality",
" causal discovery",
" markov equivalence"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "89cc0ae0dda270177a0c7fc7dacd2030164bb35486674ae5ab69781c3d4dcb1e",
"md5": "0e01b90158d042e199a9b870e0f28cba",
"sha256": "c2ae3d6fd09f78dd2737327e47e155568e583542daaee0e073933fa56e6a759d"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0e01b90158d042e199a9b870e0f28cba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 360561,
"upload_time": "2025-02-07T11:14:00",
"upload_time_iso_8601": "2025-02-07T11:14:00.650840Z",
"url": "https://files.pythonhosted.org/packages/89/cc/0ae0dda270177a0c7fc7dacd2030164bb35486674ae5ab69781c3d4dcb1e/cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de3d680d690608ae702b8e767064bef93cc2b652047eb2e547d3e8104eedbe72",
"md5": "cf20aeee8b86d96bb2cdcde529b4bf92",
"sha256": "3824620bc373edd1e70b2f0f4f173eb63068c346eb048a2da4e3e0ef088aaf1c"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "cf20aeee8b86d96bb2cdcde529b4bf92",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 363999,
"upload_time": "2025-02-07T11:14:15",
"upload_time_iso_8601": "2025-02-07T11:14:15.898979Z",
"url": "https://files.pythonhosted.org/packages/de/3d/680d690608ae702b8e767064bef93cc2b652047eb2e547d3e8104eedbe72/cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af779c05673e08ff88a552f0e56fc2267d1cc0d84364e692e54ac26f8506bb80",
"md5": "3e73c061425dee5ea51cb60adecf3ce2",
"sha256": "1ceaafd6adc18ca1cc6427795d4ab0339e021e7b2cf4b07f85be080880a588ce"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3e73c061425dee5ea51cb60adecf3ce2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 440147,
"upload_time": "2025-02-07T11:14:28",
"upload_time_iso_8601": "2025-02-07T11:14:28.043620Z",
"url": "https://files.pythonhosted.org/packages/af/77/9c05673e08ff88a552f0e56fc2267d1cc0d84364e692e54ac26f8506bb80/cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b8ea4f4129f942348722862a1fb3a0465ff80228faac762c5fd26416fe1cfaaf",
"md5": "1d931e8bd91437c2a1eaf849678535c2",
"sha256": "322cbe3dd7443cc8f3d867713f33583051a0b50f8f383933aa842b8775e8052d"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1d931e8bd91437c2a1eaf849678535c2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 428181,
"upload_time": "2025-02-07T11:14:40",
"upload_time_iso_8601": "2025-02-07T11:14:40.735045Z",
"url": "https://files.pythonhosted.org/packages/b8/ea/4f4129f942348722862a1fb3a0465ff80228faac762c5fd26416fe1cfaaf/cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9cfd982c8eab256a11eb537c6d35470144444fb8a7c80a51dd2a0c1ae758eb2",
"md5": "a5e25a33ca541d58ac3cc9aaa782186c",
"sha256": "0c398db88f24659f6f418657b9af6eb6d62ed79af71959d21c31f332720cdbdd"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a5e25a33ca541d58ac3cc9aaa782186c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 364078,
"upload_time": "2025-02-07T11:15:05",
"upload_time_iso_8601": "2025-02-07T11:15:05.076270Z",
"url": "https://files.pythonhosted.org/packages/e9/cf/d982c8eab256a11eb537c6d35470144444fb8a7c80a51dd2a0c1ae758eb2/cliquepicking-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5cc348491c1d8b4daf8e850c8894fb2858c595541d18718bc5afdb4a85bd4270",
"md5": "927aeaf4a5f30c083af24aae1a7b7518",
"sha256": "a2aca152ae2e021f37c18697cf680f72e72b9d5d18acca4845b644100f53d5d1"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "927aeaf4a5f30c083af24aae1a7b7518",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 392652,
"upload_time": "2025-02-07T11:14:55",
"upload_time_iso_8601": "2025-02-07T11:14:55.330992Z",
"url": "https://files.pythonhosted.org/packages/5c/c3/48491c1d8b4daf8e850c8894fb2858c595541d18718bc5afdb4a85bd4270/cliquepicking-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f0e02856c0dc3d0ea1accfd958a51720ba3176563625afd0ea46309462c49f0",
"md5": "ad35f044beacca5db6f697ea6e5aa9a0",
"sha256": "8f92790034979df4354f5b172cec06647f86f49b62da7ecd234c5e1079286926"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ad35f044beacca5db6f697ea6e5aa9a0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 528254,
"upload_time": "2025-02-07T11:15:24",
"upload_time_iso_8601": "2025-02-07T11:15:24.677567Z",
"url": "https://files.pythonhosted.org/packages/7f/0e/02856c0dc3d0ea1accfd958a51720ba3176563625afd0ea46309462c49f0/cliquepicking-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "20e5a51e50e89942dcafd02700c8f81ea17ebcbe7eaebc9c938efd8ad48ead4f",
"md5": "df2980211df52c1cda05692d9e448888",
"sha256": "da349c06cf028c20bf2cce0a71b5428030def676e5a0b0941729e0bf424c5c5b"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "df2980211df52c1cda05692d9e448888",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 614658,
"upload_time": "2025-02-07T11:15:39",
"upload_time_iso_8601": "2025-02-07T11:15:39.628966Z",
"url": "https://files.pythonhosted.org/packages/20/e5/a51e50e89942dcafd02700c8f81ea17ebcbe7eaebc9c938efd8ad48ead4f/cliquepicking-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79424b1b7c267097cb6f802fb7a5011afb037c1e73af40ed0eb070c5041fb151",
"md5": "bc2fa3a5d33d585d66077d611869bd3f",
"sha256": "b1a51264a6e3b14bfbaa315266cced547f4766012ff9805a7f9ac556e29cbc95"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bc2fa3a5d33d585d66077d611869bd3f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 555282,
"upload_time": "2025-02-07T11:15:52",
"upload_time_iso_8601": "2025-02-07T11:15:52.586495Z",
"url": "https://files.pythonhosted.org/packages/79/42/4b1b7c267097cb6f802fb7a5011afb037c1e73af40ed0eb070c5041fb151/cliquepicking-0.3.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d86bdabe38b368ae1a3ce519d54e8fa5e094eb5fd208cd7b9575c4733db7c9ad",
"md5": "ffc8aa044f17cb4a8f878a5d86215e7d",
"sha256": "83cd95aaf6dd8826cb4b15b3e9bf624d28894ed80d5f8008448bd269ad036c11"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ffc8aa044f17cb4a8f878a5d86215e7d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 528067,
"upload_time": "2025-02-07T11:16:06",
"upload_time_iso_8601": "2025-02-07T11:16:06.508807Z",
"url": "https://files.pythonhosted.org/packages/d8/6b/dabe38b368ae1a3ce519d54e8fa5e094eb5fd208cd7b9575c4733db7c9ad/cliquepicking-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af1afa7209be9a6c9cc929857d69ebf0348eb9801ee3d60251ef97d44b030002",
"md5": "97df0eec12dbbb9ed68f6daad6c89f18",
"sha256": "449fa5913b4cc3ea0d0561ff9af6235e73b896b2178245bdc40e468293ef3f91"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "97df0eec12dbbb9ed68f6daad6c89f18",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 203565,
"upload_time": "2025-02-07T11:16:31",
"upload_time_iso_8601": "2025-02-07T11:16:31.367012Z",
"url": "https://files.pythonhosted.org/packages/af/1a/fa7209be9a6c9cc929857d69ebf0348eb9801ee3d60251ef97d44b030002/cliquepicking-0.3.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b78292be3a2fb4150df5f4774a5ae40f3cc1d862e8590408ea0ec84c72fc474",
"md5": "e31414463fc5e99fa89b824bdac66eaa",
"sha256": "465cfd0cbc351010c16b3ac8ac92d10798ae5270c22223adf22edef411a41543"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "e31414463fc5e99fa89b824bdac66eaa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 214194,
"upload_time": "2025-02-07T11:16:21",
"upload_time_iso_8601": "2025-02-07T11:16:21.425045Z",
"url": "https://files.pythonhosted.org/packages/2b/78/292be3a2fb4150df5f4774a5ae40f3cc1d862e8590408ea0ec84c72fc474/cliquepicking-0.3.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d148e37fcee04ac9469fb80e89a943b3eba42d990689bde6d2ea8f0d71f5c06c",
"md5": "005a5d0c6f4db15750bf2ab36bd67517",
"sha256": "20ba37c82b0e35e0b2220da57b6f61fb614e586e47063aab919b04884988b560"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "005a5d0c6f4db15750bf2ab36bd67517",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 332433,
"upload_time": "2025-02-07T11:15:20",
"upload_time_iso_8601": "2025-02-07T11:15:20.881502Z",
"url": "https://files.pythonhosted.org/packages/d1/48/e37fcee04ac9469fb80e89a943b3eba42d990689bde6d2ea8f0d71f5c06c/cliquepicking-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46eaf3d76809e0e4d13907c0d61db34be1d864bcf0c6411898807113b7083320",
"md5": "7baef779dcfdf40f19b9c20316eb5987",
"sha256": "b4998e3699210b236ad8a08a65917e90ff51e37ede04dc2d26b368963de36f2c"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7baef779dcfdf40f19b9c20316eb5987",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 324036,
"upload_time": "2025-02-07T11:15:17",
"upload_time_iso_8601": "2025-02-07T11:15:17.439910Z",
"url": "https://files.pythonhosted.org/packages/46/ea/f3d76809e0e4d13907c0d61db34be1d864bcf0c6411898807113b7083320/cliquepicking-0.3.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5de2ed4d41da0b029529db24678e1b08ce95296435f9640883957f12454350ea",
"md5": "241267f89f9fb382d7e766d59249cc0f",
"sha256": "6192cda479a853af18afc971f3547400ca170a4d27fb81277ffeb63de540b166"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "241267f89f9fb382d7e766d59249cc0f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 360301,
"upload_time": "2025-02-07T11:14:02",
"upload_time_iso_8601": "2025-02-07T11:14:02.217965Z",
"url": "https://files.pythonhosted.org/packages/5d/e2/ed4d41da0b029529db24678e1b08ce95296435f9640883957f12454350ea/cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef4ac2a7b2db90c49d36d6d6365d28570ba178fbb798d42f87300921662baf37",
"md5": "0a05a54b5b4e3a9fa2e197bac30b678a",
"sha256": "feb3460ed0a8505ba345f1beea38e2cba5a788ea48c84b9d5857e62d019d1978"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "0a05a54b5b4e3a9fa2e197bac30b678a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 364115,
"upload_time": "2025-02-07T11:14:17",
"upload_time_iso_8601": "2025-02-07T11:14:17.073000Z",
"url": "https://files.pythonhosted.org/packages/ef/4a/c2a7b2db90c49d36d6d6365d28570ba178fbb798d42f87300921662baf37/cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0709cfd4d31d08ce022d5fd07b36578d71be1e3a6b0a1ffc1bc4820df1d486b1",
"md5": "e6105a99f49206cd95b73b178ebf8bf5",
"sha256": "377882f5770d948bb2af3d0e1d63404541e8d4cb9f8969cbdebd59c4bb4e8731"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e6105a99f49206cd95b73b178ebf8bf5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 440090,
"upload_time": "2025-02-07T11:14:29",
"upload_time_iso_8601": "2025-02-07T11:14:29.324413Z",
"url": "https://files.pythonhosted.org/packages/07/09/cfd4d31d08ce022d5fd07b36578d71be1e3a6b0a1ffc1bc4820df1d486b1/cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e8ff7ae8c6c2f086b02bc8ef740755647cbc9a158b7b4a520e2b0c8692b3b905",
"md5": "31221365321fba32732ad91a79b90e63",
"sha256": "649a73a74afeaf069b98bd8fcfbe42b08b8f6fb9aa63c1c9305fc2affba332d3"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "31221365321fba32732ad91a79b90e63",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 427754,
"upload_time": "2025-02-07T11:14:42",
"upload_time_iso_8601": "2025-02-07T11:14:42.573952Z",
"url": "https://files.pythonhosted.org/packages/e8/ff/7ae8c6c2f086b02bc8ef740755647cbc9a158b7b4a520e2b0c8692b3b905/cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "358718694f5927a707125585151d17115b08a6008e85156ee0c0c17e4d5233b5",
"md5": "16e407ac19927a4e1c3f90492b52f452",
"sha256": "5ed3629b529f3da9f6394a5ae1372095faa416fa01183b88acb3060d93197d25"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "16e407ac19927a4e1c3f90492b52f452",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 363841,
"upload_time": "2025-02-07T11:15:07",
"upload_time_iso_8601": "2025-02-07T11:15:07.102006Z",
"url": "https://files.pythonhosted.org/packages/35/87/18694f5927a707125585151d17115b08a6008e85156ee0c0c17e4d5233b5/cliquepicking-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a84999b67fe357806cd39fa22265dd1bb7f5ff5e5d1e38767d64bbc9d9ebb1dd",
"md5": "0bf15405d0dbbfbbe75bba13eef39a91",
"sha256": "f83445e049e4e3a4698c90a19b2f263268326dd8b94bf4bab6d8dbf83e79f9ca"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0bf15405d0dbbfbbe75bba13eef39a91",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 392636,
"upload_time": "2025-02-07T11:14:56",
"upload_time_iso_8601": "2025-02-07T11:14:56.665037Z",
"url": "https://files.pythonhosted.org/packages/a8/49/99b67fe357806cd39fa22265dd1bb7f5ff5e5d1e38767d64bbc9d9ebb1dd/cliquepicking-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b2f11345765ede5404f675f9d9f7ddd072e777decfb98378ed95ef6fc9355a8",
"md5": "dca7e8f281f06a351e958ed7f1558057",
"sha256": "f817c80e5066d7765a9c91414cbf32515476743d1a6af6efe71bf6d65fd5abd4"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "dca7e8f281f06a351e958ed7f1558057",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 528067,
"upload_time": "2025-02-07T11:15:26",
"upload_time_iso_8601": "2025-02-07T11:15:26.690881Z",
"url": "https://files.pythonhosted.org/packages/1b/2f/11345765ede5404f675f9d9f7ddd072e777decfb98378ed95ef6fc9355a8/cliquepicking-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d53428f4798cb410a935acd6e2d1e9d2d8a79fa1146580e07fe686e93e4ebe4",
"md5": "782b806ff7ad1974ae85a21666ab21cf",
"sha256": "74a1808122027bf8d8ec4170db0ce2a2ebb7d5f8db25aa52af35befd9d14121f"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "782b806ff7ad1974ae85a21666ab21cf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 614661,
"upload_time": "2025-02-07T11:15:41",
"upload_time_iso_8601": "2025-02-07T11:15:41.588076Z",
"url": "https://files.pythonhosted.org/packages/8d/53/428f4798cb410a935acd6e2d1e9d2d8a79fa1146580e07fe686e93e4ebe4/cliquepicking-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0530fb987dfa9740161ee5cade8d5c488f53d7e3127a612ba51927e3369fd1d3",
"md5": "50150731c9a364219cf86bbd8e2dc909",
"sha256": "3a3e01fa09f30f815b060db7223526f90f53b1f79c805eb02392a3965de43139"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "50150731c9a364219cf86bbd8e2dc909",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 555203,
"upload_time": "2025-02-07T11:15:53",
"upload_time_iso_8601": "2025-02-07T11:15:53.860349Z",
"url": "https://files.pythonhosted.org/packages/05/30/fb987dfa9740161ee5cade8d5c488f53d7e3127a612ba51927e3369fd1d3/cliquepicking-0.3.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a177863d93b0396ff656ca298fda169d2e4d7d91fc2afdf214bf6004c35bab05",
"md5": "7cc8b903fb83094e6c13535882205712",
"sha256": "654523245f8c8aba4e57d720f830a511c28346c928709c548459e127318ba091"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "7cc8b903fb83094e6c13535882205712",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 527890,
"upload_time": "2025-02-07T11:16:07",
"upload_time_iso_8601": "2025-02-07T11:16:07.706584Z",
"url": "https://files.pythonhosted.org/packages/a1/77/863d93b0396ff656ca298fda169d2e4d7d91fc2afdf214bf6004c35bab05/cliquepicking-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9432286666cca6e7a0bb4311af96ebed9c83a959c5eab71506a06591c645b059",
"md5": "3fd72ee4853ab37d78ed7c76760ed499",
"sha256": "92984dd1d05d1a26b45101cbbc597300ae9bf0e32bd897b460b1bad3111350a6"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "3fd72ee4853ab37d78ed7c76760ed499",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 203509,
"upload_time": "2025-02-07T11:16:32",
"upload_time_iso_8601": "2025-02-07T11:16:32.712260Z",
"url": "https://files.pythonhosted.org/packages/94/32/286666cca6e7a0bb4311af96ebed9c83a959c5eab71506a06591c645b059/cliquepicking-0.3.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8974ec1028383d946d71d991c484fc1f752094eee16bb687c9d7aac68ce4e975",
"md5": "6bc52ef3a32032afc4a487e457df784f",
"sha256": "ff8840369529c84f79510bdeefd48cd81fa065b9d15c1694040f5a8562b64c8b"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "6bc52ef3a32032afc4a487e457df784f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 214013,
"upload_time": "2025-02-07T11:16:22",
"upload_time_iso_8601": "2025-02-07T11:16:22.650057Z",
"url": "https://files.pythonhosted.org/packages/89/74/ec1028383d946d71d991c484fc1f752094eee16bb687c9d7aac68ce4e975/cliquepicking-0.3.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4f1ce050a7c38cccd928e4766d5b64d768004a4028768fa33f64147519c7e4f",
"md5": "783a6732a923acf7074b6c25fd361cef",
"sha256": "362aff003292b3ecbcb28e6f3261c9ad216b2798c8da8933ee6e6bcb5cc79dcc"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "783a6732a923acf7074b6c25fd361cef",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 330027,
"upload_time": "2025-02-07T11:15:22",
"upload_time_iso_8601": "2025-02-07T11:15:22.098567Z",
"url": "https://files.pythonhosted.org/packages/c4/f1/ce050a7c38cccd928e4766d5b64d768004a4028768fa33f64147519c7e4f/cliquepicking-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f9beaedb1910c0b338fc68a1dd1c1f339bf4714bdb14ed8e0acec52fee2dcdc5",
"md5": "136a4cbefa488d74cf2043def1a1a6df",
"sha256": "3637914352588280fa43b7422d0617cbc43c5fb72882a179ea775387e9434697"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "136a4cbefa488d74cf2043def1a1a6df",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 321197,
"upload_time": "2025-02-07T11:15:18",
"upload_time_iso_8601": "2025-02-07T11:15:18.529622Z",
"url": "https://files.pythonhosted.org/packages/f9/be/aedb1910c0b338fc68a1dd1c1f339bf4714bdb14ed8e0acec52fee2dcdc5/cliquepicking-0.3.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1fed77ab580e2f7daaca149c9a60be1f1366d2f83646ead7c0cabe0a86485c0e",
"md5": "ff8f460508aabde474df9ac933ebe1aa",
"sha256": "d9140519f6a666f4b674f900e1d52aaf6e9221f7b6ee08a8e38df2e7b2ee0d19"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ff8f460508aabde474df9ac933ebe1aa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 359591,
"upload_time": "2025-02-07T11:14:05",
"upload_time_iso_8601": "2025-02-07T11:14:05.523667Z",
"url": "https://files.pythonhosted.org/packages/1f/ed/77ab580e2f7daaca149c9a60be1f1366d2f83646ead7c0cabe0a86485c0e/cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d1ada59de78ff1b26cb88e37eda90c3d58e858b2bf3d7a62f124878f784cef87",
"md5": "2443c8a33aece6e367778cbbc3167687",
"sha256": "051094390fd3b07931cdfe9e00bb6f9d09f7d7fb114dadfa3e797ea9531c9c13"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2443c8a33aece6e367778cbbc3167687",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 362646,
"upload_time": "2025-02-07T11:14:19",
"upload_time_iso_8601": "2025-02-07T11:14:19.205036Z",
"url": "https://files.pythonhosted.org/packages/d1/ad/a59de78ff1b26cb88e37eda90c3d58e858b2bf3d7a62f124878f784cef87/cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ba2f10cf3e6649e3eb2730bf28ea12ea48b8736f7fa3b4eaf00a827e327312f2",
"md5": "0d4c2b79443b79fb2394d11f761c1c76",
"sha256": "67b87acf8bbae8d5b9b37cb2202fa2eec65c945f46b884b9ebcfe226562786e7"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0d4c2b79443b79fb2394d11f761c1c76",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 439519,
"upload_time": "2025-02-07T11:14:31",
"upload_time_iso_8601": "2025-02-07T11:14:31.297929Z",
"url": "https://files.pythonhosted.org/packages/ba/2f/10cf3e6649e3eb2730bf28ea12ea48b8736f7fa3b4eaf00a827e327312f2/cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57d78c1cebce7631dfa8c59bf60fbb5014497b7f30b85c726e8f8579ec18c28a",
"md5": "408af638a0ba48e1b76e39ea4fe795f9",
"sha256": "e07aed90732915b1d0e8aa71f349ead0b6d9928a2d36e0ec764f9300f51102a9"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "408af638a0ba48e1b76e39ea4fe795f9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 426244,
"upload_time": "2025-02-07T11:14:44",
"upload_time_iso_8601": "2025-02-07T11:14:44.137593Z",
"url": "https://files.pythonhosted.org/packages/57/d7/8c1cebce7631dfa8c59bf60fbb5014497b7f30b85c726e8f8579ec18c28a/cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e10fa2b4f28ab0e24cb0b1c6088683662b45ef2a7729edf25fdd5bf2e9b6c6a3",
"md5": "e3502804b5a70a10a8b26c6158ab7b43",
"sha256": "5c176d17b1791e80c611299e32a76a1d2f907df42c6a732604bbcdd7c52160a7"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e3502804b5a70a10a8b26c6158ab7b43",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 362836,
"upload_time": "2025-02-07T11:15:09",
"upload_time_iso_8601": "2025-02-07T11:15:09.071547Z",
"url": "https://files.pythonhosted.org/packages/e1/0f/a2b4f28ab0e24cb0b1c6088683662b45ef2a7729edf25fdd5bf2e9b6c6a3/cliquepicking-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "914547b9eb42f63dd19bebc96e87f83d49d5648da2820c0006d6801bbac46b97",
"md5": "d112cfc2251499167cc1d0caebae7041",
"sha256": "6f80e28171ccd9e6e156b30e1c1fc838542325180e7e051ff922c2c325c9903e"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "d112cfc2251499167cc1d0caebae7041",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 391366,
"upload_time": "2025-02-07T11:14:57",
"upload_time_iso_8601": "2025-02-07T11:14:57.862367Z",
"url": "https://files.pythonhosted.org/packages/91/45/47b9eb42f63dd19bebc96e87f83d49d5648da2820c0006d6801bbac46b97/cliquepicking-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3c579dad4df47d634ddbc731ed25ffc98cec2f51895bd35faca629e511620f09",
"md5": "a9d508ed95cab8d26811daf7f96d355d",
"sha256": "5fa05faa10845bb1c090500a17ddf96e33fa3fc6dc233bec8ab0b6e260a37d8f"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "a9d508ed95cab8d26811daf7f96d355d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 525807,
"upload_time": "2025-02-07T11:15:27",
"upload_time_iso_8601": "2025-02-07T11:15:27.973707Z",
"url": "https://files.pythonhosted.org/packages/3c/57/9dad4df47d634ddbc731ed25ffc98cec2f51895bd35faca629e511620f09/cliquepicking-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "59d759c06a1f9288e9e0db9ff461ebf3f3646720d667f7512b3116cad4fb98be",
"md5": "3eb6ceb53d05a909603de88408ec1d6e",
"sha256": "bf146f3652be2ac9ee4e97f4fc53cfefe9fa47fb2a895879c73474a12d993fa1"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3eb6ceb53d05a909603de88408ec1d6e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 613449,
"upload_time": "2025-02-07T11:15:42",
"upload_time_iso_8601": "2025-02-07T11:15:42.956062Z",
"url": "https://files.pythonhosted.org/packages/59/d7/59c06a1f9288e9e0db9ff461ebf3f3646720d667f7512b3116cad4fb98be/cliquepicking-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c61488bb6758f1b8bd7bc873301f9fe4f347514caf43f6f985c7f86ef7bf0e5",
"md5": "d3dd8842560a7f0d6cff677d38ac1888",
"sha256": "c19ca58624a0d6cdb26c7d5b3ec4903ce4f58d3b3a298ecea1e47b77134d51b0"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d3dd8842560a7f0d6cff677d38ac1888",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 552426,
"upload_time": "2025-02-07T11:15:55",
"upload_time_iso_8601": "2025-02-07T11:15:55.302764Z",
"url": "https://files.pythonhosted.org/packages/8c/61/488bb6758f1b8bd7bc873301f9fe4f347514caf43f6f985c7f86ef7bf0e5/cliquepicking-0.3.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7468ebe12615542ff0f44d2b2fc2d1a00c18802be378ffc8bbbf254d3a522ecb",
"md5": "b3150e0f9afed78d544721a4ce103813",
"sha256": "c6021090efac4b1df4fbb39d9e2fbfe9b2079a89542732ccbe2da5ba90161da2"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b3150e0f9afed78d544721a4ce103813",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 525577,
"upload_time": "2025-02-07T11:16:09",
"upload_time_iso_8601": "2025-02-07T11:16:09.916693Z",
"url": "https://files.pythonhosted.org/packages/74/68/ebe12615542ff0f44d2b2fc2d1a00c18802be378ffc8bbbf254d3a522ecb/cliquepicking-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "07ac5db423e0e0ade46e0c616d157b0d79ce2b61479f6c0c3448d2798f957f04",
"md5": "73a1eb4dda6024434f48ed7dd3657881",
"sha256": "4ce92dc1fb9dd74766e3148aacd5a74821bd34cb1d1de8930e8ef1c9ebab0372"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "73a1eb4dda6024434f48ed7dd3657881",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 202693,
"upload_time": "2025-02-07T11:16:34",
"upload_time_iso_8601": "2025-02-07T11:16:34.648673Z",
"url": "https://files.pythonhosted.org/packages/07/ac/5db423e0e0ade46e0c616d157b0d79ce2b61479f6c0c3448d2798f957f04/cliquepicking-0.3.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fdddf4db345509a0d33b3c91255d8552fdf2349faf915c4d073c374ba24434ab",
"md5": "18dd65bde92ade021756e24850ba3b8d",
"sha256": "d6bdd74443fe057de15c3fa6392ea53f613dd7e4314e457a4204ab7466b629dc"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "18dd65bde92ade021756e24850ba3b8d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 213712,
"upload_time": "2025-02-07T11:16:25",
"upload_time_iso_8601": "2025-02-07T11:16:25.810096Z",
"url": "https://files.pythonhosted.org/packages/fd/dd/f4db345509a0d33b3c91255d8552fdf2349faf915c4d073c374ba24434ab/cliquepicking-0.3.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "946f9df6540e520aff7e96ca5251ed6bb2f1edecae4162b506f265ebe9275302",
"md5": "ad6607ba26366162aab226798f9bbecb",
"sha256": "94801438bfc0ef6ac008734892dc72fccf9af037492c58ca33186421d19cc4a3"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ad6607ba26366162aab226798f9bbecb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 329380,
"upload_time": "2025-02-07T11:15:23",
"upload_time_iso_8601": "2025-02-07T11:15:23.401270Z",
"url": "https://files.pythonhosted.org/packages/94/6f/9df6540e520aff7e96ca5251ed6bb2f1edecae4162b506f265ebe9275302/cliquepicking-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6e615012a6ec4078704a48f197b8f0ef8adb8c85d460ca5b19191fb9b2bba5d",
"md5": "9b469da25dabeb2bb735e9f07f1234f7",
"sha256": "a814f8c168d83cbf3c9bbda7eb946407cdc6ed8ba7fa232a4a618d874c4edf6a"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9b469da25dabeb2bb735e9f07f1234f7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 320788,
"upload_time": "2025-02-07T11:15:19",
"upload_time_iso_8601": "2025-02-07T11:15:19.658973Z",
"url": "https://files.pythonhosted.org/packages/a6/e6/15012a6ec4078704a48f197b8f0ef8adb8c85d460ca5b19191fb9b2bba5d/cliquepicking-0.3.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f1cc254bc22d0adb624488a655645916a0917e733aa87b12965683b18aa878c",
"md5": "0b2e168c99f58288837e4b9629071bca",
"sha256": "b7ac0a176339610a4e994932652c63e3fa1f6cef4bec9668128a4907c7f5c8d4"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0b2e168c99f58288837e4b9629071bca",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 359741,
"upload_time": "2025-02-07T11:14:07",
"upload_time_iso_8601": "2025-02-07T11:14:07.413195Z",
"url": "https://files.pythonhosted.org/packages/0f/1c/c254bc22d0adb624488a655645916a0917e733aa87b12965683b18aa878c/cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78f844fc7e1c0f28eb81468560a5c8f3609cca97a42860323c5f102109ceb2e1",
"md5": "2c60c65881bdea276b49fb94062bb51c",
"sha256": "2b6e8449780881eb09fe25b6994b8dd1334e025a06019f8ec7b829d8c8f18090"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "2c60c65881bdea276b49fb94062bb51c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 362973,
"upload_time": "2025-02-07T11:14:20",
"upload_time_iso_8601": "2025-02-07T11:14:20.642965Z",
"url": "https://files.pythonhosted.org/packages/78/f8/44fc7e1c0f28eb81468560a5c8f3609cca97a42860323c5f102109ceb2e1/cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ca8443fbb6b0f7a40386afa3a9d78fc89d90eee49d6ebcaac5c9a1dd66a765d",
"md5": "cdcd8b899b98956d01b9f2df71e88b46",
"sha256": "4ea14207f60e43b113cc34d927df057dd7c781a139f6547bdbaefff18433365b"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cdcd8b899b98956d01b9f2df71e88b46",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 439433,
"upload_time": "2025-02-07T11:14:32",
"upload_time_iso_8601": "2025-02-07T11:14:32.599784Z",
"url": "https://files.pythonhosted.org/packages/8c/a8/443fbb6b0f7a40386afa3a9d78fc89d90eee49d6ebcaac5c9a1dd66a765d/cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4d49eab60db831b15be160e03d2601194471a070d684f23598bb0d622678a1b",
"md5": "7f661380b2fdcb2045cf6415f145c534",
"sha256": "f0d65d721eafe74b0685054ca5f553c4ecf2224d1bc185ba66ef39179fca7187"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7f661380b2fdcb2045cf6415f145c534",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 426401,
"upload_time": "2025-02-07T11:14:46",
"upload_time_iso_8601": "2025-02-07T11:14:46.005846Z",
"url": "https://files.pythonhosted.org/packages/b4/d4/9eab60db831b15be160e03d2601194471a070d684f23598bb0d622678a1b/cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42dfa3f0b727b6d46853a61f9fd851fcc19ff191ff019d7550144b5096bebbde",
"md5": "48dca9a225dca976e75549aa0edeaab5",
"sha256": "42b1112b77d77cb546f694c76b672a96dcd830e088c749973e89f9a6bbfb2b31"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "48dca9a225dca976e75549aa0edeaab5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 363115,
"upload_time": "2025-02-07T11:15:10",
"upload_time_iso_8601": "2025-02-07T11:15:10.368247Z",
"url": "https://files.pythonhosted.org/packages/42/df/a3f0b727b6d46853a61f9fd851fcc19ff191ff019d7550144b5096bebbde/cliquepicking-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "047d2b6962a981eecdb8a29e6e28c9ce9228698d628d7236004d163d3f88f65f",
"md5": "138403ddd3b52f0b9f28f8e1f2e57bf3",
"sha256": "ad17d351fc8e594b2d0d542c7949923b0f394236a52b668e015222564c78ffc8"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "138403ddd3b52f0b9f28f8e1f2e57bf3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 391179,
"upload_time": "2025-02-07T11:14:59",
"upload_time_iso_8601": "2025-02-07T11:14:59.201671Z",
"url": "https://files.pythonhosted.org/packages/04/7d/2b6962a981eecdb8a29e6e28c9ce9228698d628d7236004d163d3f88f65f/cliquepicking-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f40363aa2bdfd16971b68f1f663601af9c036b7ea4d6bfb5cf38a445177d037",
"md5": "8c64942cee79cf8254f8204962432a4e",
"sha256": "cf8a4e9ec321be5c8bdd8dd5c08c3e9b2c6e491a2d166bae70503dcbf96b38c0"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8c64942cee79cf8254f8204962432a4e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 525877,
"upload_time": "2025-02-07T11:15:30",
"upload_time_iso_8601": "2025-02-07T11:15:30.046001Z",
"url": "https://files.pythonhosted.org/packages/1f/40/363aa2bdfd16971b68f1f663601af9c036b7ea4d6bfb5cf38a445177d037/cliquepicking-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39513d24399afecd89a2bc2c11b7ce9978b33ae11fa09de4411bc56a0c7509d8",
"md5": "6e5da5a280e87ff6493162c3e9f072b8",
"sha256": "97a0af686ab2eb59225169240c925b74e19eae06de48c02e2e820f5d7337440e"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "6e5da5a280e87ff6493162c3e9f072b8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 613615,
"upload_time": "2025-02-07T11:15:44",
"upload_time_iso_8601": "2025-02-07T11:15:44.534758Z",
"url": "https://files.pythonhosted.org/packages/39/51/3d24399afecd89a2bc2c11b7ce9978b33ae11fa09de4411bc56a0c7509d8/cliquepicking-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ddbe5babe355f8ebadfb969ff6781d928e9a8725a3881a314a59404e1b10a788",
"md5": "50d0d1848cce483966d3e1726bd1536c",
"sha256": "81d2c42c2ad1c943ba2b7d3df464c149e8ce480656edf6bed92dc6243c062b06"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "50d0d1848cce483966d3e1726bd1536c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 552703,
"upload_time": "2025-02-07T11:15:57",
"upload_time_iso_8601": "2025-02-07T11:15:57.889101Z",
"url": "https://files.pythonhosted.org/packages/dd/be/5babe355f8ebadfb969ff6781d928e9a8725a3881a314a59404e1b10a788/cliquepicking-0.3.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bf50c384a56677003801b20e86f9753ddac63db19cb0e8184f83d1f909964866",
"md5": "b603c1df85fe08d2a7f1ea436c53c15a",
"sha256": "0bcd49f2fd3fc8035f0cd0cd5ca6b9426558459c7fea65b3a247dc671d1c02b8"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b603c1df85fe08d2a7f1ea436c53c15a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 525757,
"upload_time": "2025-02-07T11:16:11",
"upload_time_iso_8601": "2025-02-07T11:16:11.198804Z",
"url": "https://files.pythonhosted.org/packages/bf/50/c384a56677003801b20e86f9753ddac63db19cb0e8184f83d1f909964866/cliquepicking-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bbc0b08121192d589bce178bdd566a407c391b3f34cb2e660479c6da242bd2f6",
"md5": "f360df48fc03fe12662465d4df34543c",
"sha256": "91e5de360b947808a7ea5896b713426078a5b9bf2ee0a6c4414b4cb43bac12a1"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f360df48fc03fe12662465d4df34543c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 359581,
"upload_time": "2025-02-07T11:14:08",
"upload_time_iso_8601": "2025-02-07T11:14:08.752384Z",
"url": "https://files.pythonhosted.org/packages/bb/c0/b08121192d589bce178bdd566a407c391b3f34cb2e660479c6da242bd2f6/cliquepicking-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "272ac6644293832ff38017e1d0aa8b7dcc57034c6ce2b71ab79f6859327a9a7d",
"md5": "9e662207cf345aff7fd218a326f54fe7",
"sha256": "2263b27e04f85963984b76c48448a36dd813c74c79faf68aab8a5d7572a244ea"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9e662207cf345aff7fd218a326f54fe7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 362301,
"upload_time": "2025-02-07T11:14:21",
"upload_time_iso_8601": "2025-02-07T11:14:21.928671Z",
"url": "https://files.pythonhosted.org/packages/27/2a/c6644293832ff38017e1d0aa8b7dcc57034c6ce2b71ab79f6859327a9a7d/cliquepicking-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b51e518a23c6eb4632b4ecc721c03f6f00ad63e8303a429630e3d7b1361c83dc",
"md5": "90825282eb18f864ef51c0a3959b9840",
"sha256": "df659dedb5b0ab93344b6d27fd36443bef7e052bbf29bb0f6a027e2a2bfdff74"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "90825282eb18f864ef51c0a3959b9840",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 439464,
"upload_time": "2025-02-07T11:14:33",
"upload_time_iso_8601": "2025-02-07T11:14:33.927717Z",
"url": "https://files.pythonhosted.org/packages/b5/1e/518a23c6eb4632b4ecc721c03f6f00ad63e8303a429630e3d7b1361c83dc/cliquepicking-0.3.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "428a4819c5775fef9a4260b1f9ec6674914e294d7755638e971cf68c6ff6f46f",
"md5": "06acc6159cad091a5fbad5ee165d22d4",
"sha256": "4605b1424631df80dc45bd037d627fcbe17e562bf70548b2472e1ff335384da0"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "06acc6159cad091a5fbad5ee165d22d4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 428714,
"upload_time": "2025-02-07T11:14:48",
"upload_time_iso_8601": "2025-02-07T11:14:48.368625Z",
"url": "https://files.pythonhosted.org/packages/42/8a/4819c5775fef9a4260b1f9ec6674914e294d7755638e971cf68c6ff6f46f/cliquepicking-0.3.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3929327dd2dfa72b4285edae5d31ababfb6efb44479a0b1a02acc9a36ac73ae9",
"md5": "8710fecd85efc150832fa7620a518b69",
"sha256": "37209df5101a42acc3236271971e69ae066b51965e4ea1c98ba0805ec47d7084"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "8710fecd85efc150832fa7620a518b69",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 526195,
"upload_time": "2025-02-07T11:15:31",
"upload_time_iso_8601": "2025-02-07T11:15:31.301717Z",
"url": "https://files.pythonhosted.org/packages/39/29/327dd2dfa72b4285edae5d31ababfb6efb44479a0b1a02acc9a36ac73ae9/cliquepicking-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "60b2ddce6e468f38617f2974deebbc0e84504ca3f0bc14bbcc240b4c8e030b8b",
"md5": "81c8ca03178ddb8735f1a62d84153d8b",
"sha256": "4c66d4a14abc8432a05f373f829b70f7574fdbe36d95fa78b190ebd35691ee94"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "81c8ca03178ddb8735f1a62d84153d8b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 613205,
"upload_time": "2025-02-07T11:15:45",
"upload_time_iso_8601": "2025-02-07T11:15:45.793195Z",
"url": "https://files.pythonhosted.org/packages/60/b2/ddce6e468f38617f2974deebbc0e84504ca3f0bc14bbcc240b4c8e030b8b/cliquepicking-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "591f9f1923d1e03eaebd5b7c12818d58c8bfb7a0233d89a6ea578e0815b41137",
"md5": "2b9b239861e58f883eeb5f7071f8ff82",
"sha256": "4caa820a7273c0b3cf3b7c639844782c17ff435a461aa311d2efaa46d6c94d34"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2b9b239861e58f883eeb5f7071f8ff82",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 552737,
"upload_time": "2025-02-07T11:15:59",
"upload_time_iso_8601": "2025-02-07T11:15:59.042857Z",
"url": "https://files.pythonhosted.org/packages/59/1f/9f1923d1e03eaebd5b7c12818d58c8bfb7a0233d89a6ea578e0815b41137/cliquepicking-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ac40557568a6e6ff7af9e8a0acddae97ff33335b23b2086dac6dfed248701739",
"md5": "e6305c92a836e77ae461781734f1975a",
"sha256": "c9a08b6b2293c4f63e98a0e1eeec83209739447e4985076c998c854addf1e910"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e6305c92a836e77ae461781734f1975a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 525968,
"upload_time": "2025-02-07T11:16:12",
"upload_time_iso_8601": "2025-02-07T11:16:12.397630Z",
"url": "https://files.pythonhosted.org/packages/ac/40/557568a6e6ff7af9e8a0acddae97ff33335b23b2086dac6dfed248701739/cliquepicking-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ab07653f9b53ddc6c7e03af7b5b90dc4d74d53f18c3535d11973721695d72cf",
"md5": "1575974ce22d06785272458fd66f085a",
"sha256": "014edd1a26b758ab7bda33fc25e3b5833176b8eb7373d2844ff5c7766ac20d7d"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "1575974ce22d06785272458fd66f085a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 202656,
"upload_time": "2025-02-07T11:16:35",
"upload_time_iso_8601": "2025-02-07T11:16:35.951863Z",
"url": "https://files.pythonhosted.org/packages/2a/b0/7653f9b53ddc6c7e03af7b5b90dc4d74d53f18c3535d11973721695d72cf/cliquepicking-0.3.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dc75b4fe97df9049f6a18ee732327d2ad204cfdbcedd694cbf7fa001d83801d0",
"md5": "3ffb070041b1ba650f07e8c2ffdd4c08",
"sha256": "b2aeea9758497e7f9e519aabff34f85129e475e3b90570ed38f05abe996a5705"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "3ffb070041b1ba650f07e8c2ffdd4c08",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 213909,
"upload_time": "2025-02-07T11:16:26",
"upload_time_iso_8601": "2025-02-07T11:16:26.964894Z",
"url": "https://files.pythonhosted.org/packages/dc/75/b4fe97df9049f6a18ee732327d2ad204cfdbcedd694cbf7fa001d83801d0/cliquepicking-0.3.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f1b6f55dffbdfd1ae79e700c9efeb7684f951d0af8b7d07eb419b2a6ccfe4c77",
"md5": "db9d1ce65a80b3dab99a92e5baf54ff3",
"sha256": "38c022e8411a8cc643c21dd75739e9c0f181735936e52bf3a1d7ba6990d614f3"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "db9d1ce65a80b3dab99a92e5baf54ff3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 360853,
"upload_time": "2025-02-07T11:14:10",
"upload_time_iso_8601": "2025-02-07T11:14:10.082984Z",
"url": "https://files.pythonhosted.org/packages/f1/b6/f55dffbdfd1ae79e700c9efeb7684f951d0af8b7d07eb419b2a6ccfe4c77/cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0c140f7d8229590f3e999e1c1a12fab15b89d029cfa2e4085bb64259e26afef5",
"md5": "f8932f408c1cabb157ec080bfc3602c7",
"sha256": "5fb1687adf2bc66a9c6b9bc239486296504f49e2b8fed5d5e84fdbe5d4b8bd2e"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f8932f408c1cabb157ec080bfc3602c7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 363713,
"upload_time": "2025-02-07T11:14:23",
"upload_time_iso_8601": "2025-02-07T11:14:23.262331Z",
"url": "https://files.pythonhosted.org/packages/0c/14/0f7d8229590f3e999e1c1a12fab15b89d029cfa2e4085bb64259e26afef5/cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2aaf280f240ccc9f7b74a294df72e74a9728c86d6be62c93de87030eaeb99a58",
"md5": "119664fcf2f2a1c24536e02bcd41f812",
"sha256": "ee982aea3345b36ac43c8feca1a1bc558954b11c9cc8f695444193509ce7571a"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "119664fcf2f2a1c24536e02bcd41f812",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 440408,
"upload_time": "2025-02-07T11:14:35",
"upload_time_iso_8601": "2025-02-07T11:14:35.308082Z",
"url": "https://files.pythonhosted.org/packages/2a/af/280f240ccc9f7b74a294df72e74a9728c86d6be62c93de87030eaeb99a58/cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "309d7324eb2f78ddaf3be1eab2e675c1bb891a365cea97faee73782f49f40540",
"md5": "784da9f134e24f93c28eb3305ba13ab9",
"sha256": "b259fcf6c9caf61e8a8e0fa18413ae1747b43c0322632c8a5b3a1862abb6b2d9"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "784da9f134e24f93c28eb3305ba13ab9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 427457,
"upload_time": "2025-02-07T11:14:50",
"upload_time_iso_8601": "2025-02-07T11:14:50.338495Z",
"url": "https://files.pythonhosted.org/packages/30/9d/7324eb2f78ddaf3be1eab2e675c1bb891a365cea97faee73782f49f40540/cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cb3df9af9ee612d048ae12b6a71137e5872cbad251aa4875c5827567a1476c73",
"md5": "bdaccfe8aae07be5d1a3d52c64e9f61b",
"sha256": "3789c25a4c35c3336943ab5bb33c613fa94cd3938d4fd19f8fbaa4fd72b0a20a"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bdaccfe8aae07be5d1a3d52c64e9f61b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 364086,
"upload_time": "2025-02-07T11:15:11",
"upload_time_iso_8601": "2025-02-07T11:15:11.627346Z",
"url": "https://files.pythonhosted.org/packages/cb/3d/f9af9ee612d048ae12b6a71137e5872cbad251aa4875c5827567a1476c73/cliquepicking-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dd1578753a6c9efaa414f2ce5ca75c9eefc2049326c1ae7887ce6f8b9f88ed6c",
"md5": "e306616dea146b7140cbc8867c98da48",
"sha256": "ed831b6754418a2f2a99593704dd3e24bf28f33886a1d524e2b3e839d86a675c"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e306616dea146b7140cbc8867c98da48",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 392827,
"upload_time": "2025-02-07T11:15:01",
"upload_time_iso_8601": "2025-02-07T11:15:01.182926Z",
"url": "https://files.pythonhosted.org/packages/dd/15/78753a6c9efaa414f2ce5ca75c9eefc2049326c1ae7887ce6f8b9f88ed6c/cliquepicking-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "427b45437f619b5b68ac21ff06b526c2bb724e3f3a65fe70fea57da59a061989",
"md5": "e9a10889f9ee04c80543cc7c4b9826f5",
"sha256": "ad20ee4317a449a6dd551537605a9b0aa4802e762474abf81fdd57500e83315a"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e9a10889f9ee04c80543cc7c4b9826f5",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 527524,
"upload_time": "2025-02-07T11:15:33",
"upload_time_iso_8601": "2025-02-07T11:15:33.269381Z",
"url": "https://files.pythonhosted.org/packages/42/7b/45437f619b5b68ac21ff06b526c2bb724e3f3a65fe70fea57da59a061989/cliquepicking-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d40396f44b88435b0ff6b01120cea60bd83fceb6998a203533666b3a833a9ba9",
"md5": "27c31c809af08584f2e7bade5b83458c",
"sha256": "e9554f4a43b759744574ea7801bf229d2611aec6eb37024786812053524761ca"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "27c31c809af08584f2e7bade5b83458c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 615221,
"upload_time": "2025-02-07T11:15:47",
"upload_time_iso_8601": "2025-02-07T11:15:47.091505Z",
"url": "https://files.pythonhosted.org/packages/d4/03/96f44b88435b0ff6b01120cea60bd83fceb6998a203533666b3a833a9ba9/cliquepicking-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "42a629e233fcee955eb504317ea9e3df7c5b08af89cd6ef8a4fc4f252903d6de",
"md5": "5dbed122a7a9db5241b0e31b6e7e67a7",
"sha256": "69622411106bf66ba27912048a2f989e8af88b1ebfefc959eee68db02e414315"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5dbed122a7a9db5241b0e31b6e7e67a7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 555639,
"upload_time": "2025-02-07T11:16:00",
"upload_time_iso_8601": "2025-02-07T11:16:00.370028Z",
"url": "https://files.pythonhosted.org/packages/42/a6/29e233fcee955eb504317ea9e3df7c5b08af89cd6ef8a4fc4f252903d6de/cliquepicking-0.3.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a91772c0b55f09e6624f74d75e2fc424907fe6bfd71cca9031f19ee3b0d58434",
"md5": "22e8ff5b10422d25bfcb7a5406df2b37",
"sha256": "d095300a975578d51eee3ef6e0a2a565bc3e2f51d8646688e2abbc41e2203de8"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "22e8ff5b10422d25bfcb7a5406df2b37",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 527555,
"upload_time": "2025-02-07T11:16:13",
"upload_time_iso_8601": "2025-02-07T11:16:13.598907Z",
"url": "https://files.pythonhosted.org/packages/a9/17/72c0b55f09e6624f74d75e2fc424907fe6bfd71cca9031f19ee3b0d58434/cliquepicking-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30fc834c5a5e59332045fa718ad8ef5b59e45ebd0a9197a16539dbf91aff157f",
"md5": "8bcd82a26607841ae23a7ccdc4adcd3a",
"sha256": "5b6dbc5bfc15ab83a4a8a764ff507ab853b6f7a4daa4a3e16d1c75bfce9a302a"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "8bcd82a26607841ae23a7ccdc4adcd3a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 203379,
"upload_time": "2025-02-07T11:16:37",
"upload_time_iso_8601": "2025-02-07T11:16:37.314445Z",
"url": "https://files.pythonhosted.org/packages/30/fc/834c5a5e59332045fa718ad8ef5b59e45ebd0a9197a16539dbf91aff157f/cliquepicking-0.3.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a54d741160278f7207e59c320a7b00350a0bbd10fa3db9d909f9ce6c6aed7469",
"md5": "bb4661c94d92de766b0c6babdedc3e6c",
"sha256": "e524b97a37dc3f4788bdccf3664b87fadb889fb1efc34fd1e1e9f3ce228efbb2"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "bb4661c94d92de766b0c6babdedc3e6c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 213989,
"upload_time": "2025-02-07T11:16:28",
"upload_time_iso_8601": "2025-02-07T11:16:28.104479Z",
"url": "https://files.pythonhosted.org/packages/a5/4d/741160278f7207e59c320a7b00350a0bbd10fa3db9d909f9ce6c6aed7469/cliquepicking-0.3.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "39a519bb3530de0b4e4c65042ae324a6697793172a81760cdece7f8214dc83e6",
"md5": "6b27b7ad52de2663092648f93d8c16ae",
"sha256": "24ba8ccb30241d5ebd0bf43823f0baf73512e130f9a493ccd25a6d18dd3c6a27"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6b27b7ad52de2663092648f93d8c16ae",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 361009,
"upload_time": "2025-02-07T11:14:11",
"upload_time_iso_8601": "2025-02-07T11:14:11.428059Z",
"url": "https://files.pythonhosted.org/packages/39/a5/19bb3530de0b4e4c65042ae324a6697793172a81760cdece7f8214dc83e6/cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5627727f3da595644f06e2cb43443c39d7963fd70d00b3d0b92acc152a9ac7fc",
"md5": "e821fe34f25cbc4922b57d8a967b8bc5",
"sha256": "e26fd0b2c3cb71d289708a1a39e6ffde55ee379351d0803993bf89befa161256"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e821fe34f25cbc4922b57d8a967b8bc5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 364051,
"upload_time": "2025-02-07T11:14:24",
"upload_time_iso_8601": "2025-02-07T11:14:24.414138Z",
"url": "https://files.pythonhosted.org/packages/56/27/727f3da595644f06e2cb43443c39d7963fd70d00b3d0b92acc152a9ac7fc/cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8cac10323166bbafae17d59722346162076bfcb72ed7dff4d504314e325cefe8",
"md5": "203e37b154bc7b1cd966f64438df6314",
"sha256": "2a86af5587da36d28b2fd0a5b3fc7dffc6366159ca00adad560df387c95aa8c9"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "203e37b154bc7b1cd966f64438df6314",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 440439,
"upload_time": "2025-02-07T11:14:36",
"upload_time_iso_8601": "2025-02-07T11:14:36.435022Z",
"url": "https://files.pythonhosted.org/packages/8c/ac/10323166bbafae17d59722346162076bfcb72ed7dff4d504314e325cefe8/cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c89eb9289fa803ff6acb6ef55f7f06248a0ebcc2ee9f26c2d99905cd60cfaf1b",
"md5": "a3baa950bf8147c2e8cc108c242d744c",
"sha256": "363c873fa4ca9b63245621e91972fe002199e931780520bb38e8d3ed64694e73"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a3baa950bf8147c2e8cc108c242d744c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 428228,
"upload_time": "2025-02-07T11:14:51",
"upload_time_iso_8601": "2025-02-07T11:14:51.530321Z",
"url": "https://files.pythonhosted.org/packages/c8/9e/b9289fa803ff6acb6ef55f7f06248a0ebcc2ee9f26c2d99905cd60cfaf1b/cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d09775e5069161ea3ef7ce8df16ce7c4f62ca32cac2b6dcb4eb6388bd15940db",
"md5": "69a1da8bb816f78b2b023854def9261b",
"sha256": "7d19ba4a774fef19635b5fdc2eddcadb94cdf8cfa8caf22730322b114684b741"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "69a1da8bb816f78b2b023854def9261b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 364342,
"upload_time": "2025-02-07T11:15:14",
"upload_time_iso_8601": "2025-02-07T11:15:14.310235Z",
"url": "https://files.pythonhosted.org/packages/d0/97/75e5069161ea3ef7ce8df16ce7c4f62ca32cac2b6dcb4eb6388bd15940db/cliquepicking-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9de3060502100ed20bf73f81ceb10c3412ecd6a25f5f4ca33668aed99c54d0e7",
"md5": "44b30e063c43f5a132b805c51d4a9be9",
"sha256": "9d0133f39b0d45939ade751502fb229bf7f27436813413fa22a1b4027fd5754c"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "44b30e063c43f5a132b805c51d4a9be9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 392966,
"upload_time": "2025-02-07T11:15:02",
"upload_time_iso_8601": "2025-02-07T11:15:02.574387Z",
"url": "https://files.pythonhosted.org/packages/9d/e3/060502100ed20bf73f81ceb10c3412ecd6a25f5f4ca33668aed99c54d0e7/cliquepicking-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ac353fd44d0c06c45bd5b5ff53adf6340370c89e2cb24a1f82e02d3070eab7cf",
"md5": "6f497879ab250a55c633d43c747029f9",
"sha256": "3daa415c7059d114dccadd7dae8b3ed1380106bb3d9b5fdfe449d9220f9e7879"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6f497879ab250a55c633d43c747029f9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 527353,
"upload_time": "2025-02-07T11:15:35",
"upload_time_iso_8601": "2025-02-07T11:15:35.261090Z",
"url": "https://files.pythonhosted.org/packages/ac/35/3fd44d0c06c45bd5b5ff53adf6340370c89e2cb24a1f82e02d3070eab7cf/cliquepicking-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7cf360af78a93b64ad8e264eb6dc3d3a31563f32119285c428eb4b2e81cb64f0",
"md5": "004426351bee06c2c2d699fa2e0b95a6",
"sha256": "6dcfaa923be160c0970289c825b3b1ade99b6cbf99f446ddd1d80b7ee88eacec"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "004426351bee06c2c2d699fa2e0b95a6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 615122,
"upload_time": "2025-02-07T11:15:48",
"upload_time_iso_8601": "2025-02-07T11:15:48.454301Z",
"url": "https://files.pythonhosted.org/packages/7c/f3/60af78a93b64ad8e264eb6dc3d3a31563f32119285c428eb4b2e81cb64f0/cliquepicking-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c85e7416ec72af8614746b8dca0287be22a25a21f10db393de0685d77b7d01b1",
"md5": "8b6fa0e605f6214ca0a5cfe43551171f",
"sha256": "976339217dad4301c888ce5ea81fff977293e638cf902da1bc85d7f6d1cfa6cb"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8b6fa0e605f6214ca0a5cfe43551171f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 555561,
"upload_time": "2025-02-07T11:16:01",
"upload_time_iso_8601": "2025-02-07T11:16:01.946210Z",
"url": "https://files.pythonhosted.org/packages/c8/5e/7416ec72af8614746b8dca0287be22a25a21f10db393de0685d77b7d01b1/cliquepicking-0.3.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae8704ecbd9edbe99203baca2e3eaabc5343729e4de2ce134eaa61b40b488d02",
"md5": "21e72c53661a1bb5067f0dd5ced7ee3e",
"sha256": "1765dcf3f85b95022cecbbf4464f45c6401a665eea16c7e35aa2ea4234ce8302"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "21e72c53661a1bb5067f0dd5ced7ee3e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 527391,
"upload_time": "2025-02-07T11:16:15",
"upload_time_iso_8601": "2025-02-07T11:16:15.076780Z",
"url": "https://files.pythonhosted.org/packages/ae/87/04ecbd9edbe99203baca2e3eaabc5343729e4de2ce134eaa61b40b488d02/cliquepicking-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f2500983c1b0e112a01f01c84053eeacf62065cf44159d5aab25c52dd38d1517",
"md5": "34dd35f40ac3868f69c163a6feca3f21",
"sha256": "4f725360cc331667c92f4cf53e162417f4f664093aa63f0ad1de5989fbed66dd"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "34dd35f40ac3868f69c163a6feca3f21",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 203517,
"upload_time": "2025-02-07T11:16:38",
"upload_time_iso_8601": "2025-02-07T11:16:38.477396Z",
"url": "https://files.pythonhosted.org/packages/f2/50/0983c1b0e112a01f01c84053eeacf62065cf44159d5aab25c52dd38d1517/cliquepicking-0.3.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf93ad8cfae59ac7337d6dcfb4cbb9024789d9c8dd585aea04dfaa9e3dfb1323",
"md5": "f3d0874e467074720d2a8a2baeac7f56",
"sha256": "d7f5ebfb9176a6c68ebd73122d62c68e7399adefa01711d5bf5c70e111718257"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "f3d0874e467074720d2a8a2baeac7f56",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 214248,
"upload_time": "2025-02-07T11:16:29",
"upload_time_iso_8601": "2025-02-07T11:16:29.621186Z",
"url": "https://files.pythonhosted.org/packages/cf/93/ad8cfae59ac7337d6dcfb4cbb9024789d9c8dd585aea04dfaa9e3dfb1323/cliquepicking-0.3.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dff9a96917ebba9d2acc930fefde77dd836598c2d3d397c2e988201604294723",
"md5": "30e5418ebb55ba095f1604b0b57a94d6",
"sha256": "413ea30b386413ab736368bef44db20aac25eb636e0f03d1e423745cab99a1ec"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "30e5418ebb55ba095f1604b0b57a94d6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 360989,
"upload_time": "2025-02-07T11:14:12",
"upload_time_iso_8601": "2025-02-07T11:14:12.614468Z",
"url": "https://files.pythonhosted.org/packages/df/f9/a96917ebba9d2acc930fefde77dd836598c2d3d397c2e988201604294723/cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fc031b6794a71da388429224f68f809746e6a769873b592a2ec1c36fe1a09fea",
"md5": "ba458cc8460f2bc83224d29d2dd2e598",
"sha256": "8ab0e01921f73a604aa7cb939f714fe156777a6bb7570c18ae8b3a7971f6f1ab"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ba458cc8460f2bc83224d29d2dd2e598",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 363522,
"upload_time": "2025-02-07T11:14:25",
"upload_time_iso_8601": "2025-02-07T11:14:25.565105Z",
"url": "https://files.pythonhosted.org/packages/fc/03/1b6794a71da388429224f68f809746e6a769873b592a2ec1c36fe1a09fea/cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d4e2d7746de5c23eb14fc8da5cd5ceacd333e86a973d7d16195a54d24a7727a5",
"md5": "74fb55b6c836c1fa23642acfc2b1e7d8",
"sha256": "58ed1c05c5dc3983f6ed94ae390d70290da9feb2591d02d0ceaff41951cc0fd1"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "74fb55b6c836c1fa23642acfc2b1e7d8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 440145,
"upload_time": "2025-02-07T11:14:37",
"upload_time_iso_8601": "2025-02-07T11:14:37.948527Z",
"url": "https://files.pythonhosted.org/packages/d4/e2/d7746de5c23eb14fc8da5cd5ceacd333e86a973d7d16195a54d24a7727a5/cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9f7a137df139416121a6488d4bc6048466a9905ee445794378339dac2aba54f",
"md5": "4affeb52d6b5af12b63e01c4d3d9aa69",
"sha256": "1ddd0b896f04dddcd32478f57c84eca928174bd2cd13ea396edaeff26cccfd69"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4affeb52d6b5af12b63e01c4d3d9aa69",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 428622,
"upload_time": "2025-02-07T11:14:52",
"upload_time_iso_8601": "2025-02-07T11:14:52.819687Z",
"url": "https://files.pythonhosted.org/packages/a9/f7/a137df139416121a6488d4bc6048466a9905ee445794378339dac2aba54f/cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c901bf481006df40dcf776f1b32b4ec7798953f13cfd4090459b146d7b14e0cd",
"md5": "38ee843f368c7afa7c3cd4c84558a210",
"sha256": "bd775f5037951858881d7708026e5a2b499809524f4320d7e1442e7a2ed61f0c"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "38ee843f368c7afa7c3cd4c84558a210",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 364103,
"upload_time": "2025-02-07T11:15:15",
"upload_time_iso_8601": "2025-02-07T11:15:15.464182Z",
"url": "https://files.pythonhosted.org/packages/c9/01/bf481006df40dcf776f1b32b4ec7798953f13cfd4090459b146d7b14e0cd/cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d5ac61e6e47476874121d674b3ce986ba64fa65773db6c46d382d6af316217e",
"md5": "c2f46a49948339dcb3291f5230bd68b5",
"sha256": "a58221c95bc1e03fc10ba52b91a0bedab74e196190815eb98597614376aa2443"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c2f46a49948339dcb3291f5230bd68b5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 391763,
"upload_time": "2025-02-07T11:15:03",
"upload_time_iso_8601": "2025-02-07T11:15:03.848604Z",
"url": "https://files.pythonhosted.org/packages/1d/5a/c61e6e47476874121d674b3ce986ba64fa65773db6c46d382d6af316217e/cliquepicking-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d4a50cbc712f880712e54ca026567e96ead21c516c3da68e7912247d929d3b57",
"md5": "36f70bdf3b9031734be4170126507b25",
"sha256": "11ce9f87b790cd9c5f09ef495bacbae03ff125282607cfc520b93e7eb2d276f6"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "36f70bdf3b9031734be4170126507b25",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 528540,
"upload_time": "2025-02-07T11:15:37",
"upload_time_iso_8601": "2025-02-07T11:15:37.207643Z",
"url": "https://files.pythonhosted.org/packages/d4/a5/0cbc712f880712e54ca026567e96ead21c516c3da68e7912247d929d3b57/cliquepicking-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13d20beaf19aefd1e00c7d3b8222bbaf7363c922c5b20a99587d7a36c2a7cdd3",
"md5": "185d668e68d06c3783f1e4aa8baa9501",
"sha256": "45612665bd3debf760a6b5a946ccc6b578b51c373c45986a4ca262012fc0a37c"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "185d668e68d06c3783f1e4aa8baa9501",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 615427,
"upload_time": "2025-02-07T11:15:49",
"upload_time_iso_8601": "2025-02-07T11:15:49.673424Z",
"url": "https://files.pythonhosted.org/packages/13/d2/0beaf19aefd1e00c7d3b8222bbaf7363c922c5b20a99587d7a36c2a7cdd3/cliquepicking-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2afc9d2c6957d919c4bb1d969e29893abb4769f41e915ad09452d5c1eb5e0e1f",
"md5": "323081b8e437370b9f9891486f8f2de3",
"sha256": "a7ad535a466dc93bbdf8444941462cf7b5e4a569fe0446413f1bc39b36b52108"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "323081b8e437370b9f9891486f8f2de3",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 555877,
"upload_time": "2025-02-07T11:16:03",
"upload_time_iso_8601": "2025-02-07T11:16:03.218335Z",
"url": "https://files.pythonhosted.org/packages/2a/fc/9d2c6957d919c4bb1d969e29893abb4769f41e915ad09452d5c1eb5e0e1f/cliquepicking-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa1808431ac5b756399eca70f2ef42fc6ae67721f832c241ffebb8ed2fde2b57",
"md5": "93571072eb66f6f47f0a13fd1558ce06",
"sha256": "2ca4be5ea6b96b2a7f2f2c792432d25dc56e79850fb7cd1b4d312132ef73445b"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "93571072eb66f6f47f0a13fd1558ce06",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 528626,
"upload_time": "2025-02-07T11:16:16",
"upload_time_iso_8601": "2025-02-07T11:16:16.443484Z",
"url": "https://files.pythonhosted.org/packages/aa/18/08431ac5b756399eca70f2ef42fc6ae67721f832c241ffebb8ed2fde2b57/cliquepicking-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b438fe04bbc6f5874fae355b1bdcbd7e1075348b3ab8cbfb2d36a427638dc84f",
"md5": "6aa2bc80e8c60ab652cabdc8e1832ae4",
"sha256": "386f3cf31b99cd2074755879bfc8fb4ebb50cba3ace1f48b8d934cff05d952a8"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6aa2bc80e8c60ab652cabdc8e1832ae4",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 360808,
"upload_time": "2025-02-07T11:14:14",
"upload_time_iso_8601": "2025-02-07T11:14:14.415565Z",
"url": "https://files.pythonhosted.org/packages/b4/38/fe04bbc6f5874fae355b1bdcbd7e1075348b3ab8cbfb2d36a427638dc84f/cliquepicking-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bf39f880ef23c55a62b528b6ef65bf791aa56b5802928719c5aa32d8660dcf1",
"md5": "18a3aa4791a2583d15cb78ac4d2db7da",
"sha256": "aa0366301a73dbf0560f61f5ae3ef6ed331cb4d177b921f2c7c4b9d598300eac"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "18a3aa4791a2583d15cb78ac4d2db7da",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 364380,
"upload_time": "2025-02-07T11:14:26",
"upload_time_iso_8601": "2025-02-07T11:14:26.793333Z",
"url": "https://files.pythonhosted.org/packages/2b/f3/9f880ef23c55a62b528b6ef65bf791aa56b5802928719c5aa32d8660dcf1/cliquepicking-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ceb29d4f46a00f68fe12976066139166d68ef2bd03346e0c3a6aafb45a3fdc7",
"md5": "bfdd023a28805c87d183e0b7f67e636a",
"sha256": "d4a6abf3a8d3883afc8561595d7e7acf86de2d1303075a92fc555989c4b018b3"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "bfdd023a28805c87d183e0b7f67e636a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 440202,
"upload_time": "2025-02-07T11:14:39",
"upload_time_iso_8601": "2025-02-07T11:14:39.241109Z",
"url": "https://files.pythonhosted.org/packages/6c/eb/29d4f46a00f68fe12976066139166d68ef2bd03346e0c3a6aafb45a3fdc7/cliquepicking-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "59634a41c8cb91439e34e8f634e0c50bfeec4819fa3223920db36f5555940ec3",
"md5": "eda0d3110f5410c33341d98b140367de",
"sha256": "25d8c96d037aaa0e5de21254562dc5f4618a763f9e71fcc89320754aeaa6f6ca"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "eda0d3110f5410c33341d98b140367de",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 429075,
"upload_time": "2025-02-07T11:14:54",
"upload_time_iso_8601": "2025-02-07T11:14:54.006712Z",
"url": "https://files.pythonhosted.org/packages/59/63/4a41c8cb91439e34e8f634e0c50bfeec4819fa3223920db36f5555940ec3/cliquepicking-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "721d0034d8f3ac4b27b9a2ab5a5793d379f35af45d10e3860024b123e37a30ac",
"md5": "6979b461ef2fd3426e7992cc8cd3ce01",
"sha256": "e6f2062e644d50b60fe31d5f1b1f1eb4e0dd92f91f17a13e732ec1768a4e2a3e"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6979b461ef2fd3426e7992cc8cd3ce01",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 528189,
"upload_time": "2025-02-07T11:15:38",
"upload_time_iso_8601": "2025-02-07T11:15:38.501300Z",
"url": "https://files.pythonhosted.org/packages/72/1d/0034d8f3ac4b27b9a2ab5a5793d379f35af45d10e3860024b123e37a30ac/cliquepicking-0.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5fdfc369e39585cedbdb86e80b2917f5692bc63906826d715ce7a8527f09ee20",
"md5": "c069788d40ea8543b4772243f1bff1a0",
"sha256": "abfe35a359bcab1c44a759fa3a1979ad25b4d7a6661fca64466f637986b22f23"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "c069788d40ea8543b4772243f1bff1a0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 614975,
"upload_time": "2025-02-07T11:15:51",
"upload_time_iso_8601": "2025-02-07T11:15:51.036028Z",
"url": "https://files.pythonhosted.org/packages/5f/df/c369e39585cedbdb86e80b2917f5692bc63906826d715ce7a8527f09ee20/cliquepicking-0.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "880e1ffb76ec9a9c0a2f4e397148f90dfa4fc61213605e2dfe53f1f07eba949d",
"md5": "8dfefc8e9d67202d54995ac323be377b",
"sha256": "897ff08b2b5b471da41253e66df8c13ad2fe9a95853d345d9f585bd9c7a371f9"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8dfefc8e9d67202d54995ac323be377b",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 555797,
"upload_time": "2025-02-07T11:16:05",
"upload_time_iso_8601": "2025-02-07T11:16:05.207113Z",
"url": "https://files.pythonhosted.org/packages/88/0e/1ffb76ec9a9c0a2f4e397148f90dfa4fc61213605e2dfe53f1f07eba949d/cliquepicking-0.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8ebb98eda9d81fa59404028008200d203e72b6479394125ddf349addddc58bd",
"md5": "dc97e6d9dc32687eb3ea075179fd98fb",
"sha256": "dbeeaa51b5094bcc9e1ab20c33d8efd7113f1978942d2bcb711dc2b70d244afa"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dc97e6d9dc32687eb3ea075179fd98fb",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 528197,
"upload_time": "2025-02-07T11:16:17",
"upload_time_iso_8601": "2025-02-07T11:16:17.667436Z",
"url": "https://files.pythonhosted.org/packages/c8/eb/b98eda9d81fa59404028008200d203e72b6479394125ddf349addddc58bd/cliquepicking-0.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4818ba71a59aa0ee982f27d5e11b6adc3b3b86b7da9dfbdd9399bbfff19b75ff",
"md5": "95417d63307c25b282bbc9848429414d",
"sha256": "167e10dca3da56371b79f1d317a0354b637e17944e139e3e24b210f1a1cea3b6"
},
"downloads": -1,
"filename": "cliquepicking-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "95417d63307c25b282bbc9848429414d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 20468,
"upload_time": "2025-02-07T11:16:19",
"upload_time_iso_8601": "2025-02-07T11:16:19.664489Z",
"url": "https://files.pythonhosted.org/packages/48/18/ba71a59aa0ee982f27d5e11b6adc3b3b86b7da9dfbdd9399bbfff19b75ff/cliquepicking-0.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-07 11:16:19",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "cliquepicking"
}