# cliquepicking
You can install the cliquepicking module with ```pip install cliquepicking```.
The module provides the functions
- ```mec_size(G)```, which outputs the number of DAGs in the MEC represented by CPDAG G
- ```mec_sample_dags(G, k)```, which returns k uniformly sampled DAGs from the MEC represented by CPDAG G
- ```mec_sample_orders(G, k)``` which returns topological orders of k uniformly sampled DAGs from the MEC represented by CPDAG G
- ```mec_list_dags(G)```, which returns a list of all DAGs in the MEC represented by CPDAG G
- ```mec_list_orders(G)```, which returns topological orders of all DAGs in the MEC represented by CPDAG G
The DAGs are returned as edge lists and they can be read e.g. in networkx using ```nx.DiGraph(dag)``` (see the example at the bottom).
Be aware that ```mec_sample_dags(G, k)``` holds (and returns) k DAGs in memory. (For large graphs) to avoid high memory demand, generate DAGs in smaller batches or use ```mec_sample_orders(G, k)```, which only returns the easier-to-store topological order.
The same holds for ```mec_list_dags(G)```, consider checking the size of the MEC using ```mec_size(G)``` before calling this method.
In all cases, G should be given as an edge list (vertices should be represented by zero-indexed integers), which includes ```(a, b)``` and ```(b, a)``` for undirected edges $a - b$ and only ```(a, b)``` for directed edges $a \rightarrow b$. E.g.
```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)))
sample_dags = cp.mec_sample_dags(list(G.edges), 5)
for dag in sample_dags:
print(nx.DiGraph(dag))
sample_orders = cp.mec_sample_orders(list(G.edges), 5)
for order in sample_orders:
print(order)
```
## Time Complexity
The counting procedure has worst-case run-time $n^3$, with $n$ denoting the number of vertices of the input graph. This improves the asymptotic complexity from the literature based on the comment at the bottom of page 80 in my [thesis](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/4c/9e/dafced224d0bf839551c02b2441e22c35e2f3f7f42da4a784cfe01dcab71/cliquepicking-0.2.6.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_sample_dags(G, k)```, which returns k uniformly sampled DAGs from the MEC represented by CPDAG G\n- ```mec_sample_orders(G, k)``` which returns topological orders of k uniformly sampled DAGs from 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\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\nThe same holds for ```mec_list_dags(G)```, 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)))\nsample_dags = cp.mec_sample_dags(list(G.edges), 5)\nfor dag in sample_dags:\n print(nx.DiGraph(dag))\nsample_orders = cp.mec_sample_orders(list(G.edges), 5)\nfor order in sample_orders:\n print(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.2.6",
"project_urls": null,
"split_keywords": [
"causality",
" causal discovery",
" markov equivalence"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "dc4bacc3eebfdef84a37437927f0e392c62a40eeceb4dd35b73e8c0133d4fc42",
"md5": "ed32d4abf3148156bd8008ef116e8cce",
"sha256": "7c9d9197d902d7b8492a3e3893ab58111ce76c14083ecb84ea2c60d73c3b28e5"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ed32d4abf3148156bd8008ef116e8cce",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 336068,
"upload_time": "2025-01-14T21:03:32",
"upload_time_iso_8601": "2025-01-14T21:03:32.671936Z",
"url": "https://files.pythonhosted.org/packages/dc/4b/acc3eebfdef84a37437927f0e392c62a40eeceb4dd35b73e8c0133d4fc42/cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f341972a7631fdb9deaada6eeb9a2df4af45fddcf069c26ca6956062b4f63819",
"md5": "7d6aae42606f130a7906c671cddbeda4",
"sha256": "c3d5081ec5aa8640f97d8350a408449c8b6ee69cb2f0b9a02b4ba6666be00926"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7d6aae42606f130a7906c671cddbeda4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 340621,
"upload_time": "2025-01-14T21:03:56",
"upload_time_iso_8601": "2025-01-14T21:03:56.304998Z",
"url": "https://files.pythonhosted.org/packages/f3/41/972a7631fdb9deaada6eeb9a2df4af45fddcf069c26ca6956062b4f63819/cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50c2923978645ef9a226af6180d2751902d36edb8ebf1cb299a29d2ceb68c122",
"md5": "692c2e3fd9c5a5d55695b493d993cceb",
"sha256": "c86e6a522688288b588f9ca56cb6500f1c5ad6d1133fb08bac1d7a38f2395c16"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "692c2e3fd9c5a5d55695b493d993cceb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 416190,
"upload_time": "2025-01-14T21:04:16",
"upload_time_iso_8601": "2025-01-14T21:04:16.957442Z",
"url": "https://files.pythonhosted.org/packages/50/c2/923978645ef9a226af6180d2751902d36edb8ebf1cb299a29d2ceb68c122/cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3fc453d5648fd105704bfee7c18065a1969647752314a100ee5146f50bc7acd6",
"md5": "65e50d2a130c6ec0fc5a53c323f6c31f",
"sha256": "b139acd34feac184d72637b9b47794d90fe85e6d745273b0cdd5a5373ec47788"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "65e50d2a130c6ec0fc5a53c323f6c31f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 406323,
"upload_time": "2025-01-14T21:04:37",
"upload_time_iso_8601": "2025-01-14T21:04:37.179456Z",
"url": "https://files.pythonhosted.org/packages/3f/c4/53d5648fd105704bfee7c18065a1969647752314a100ee5146f50bc7acd6/cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1855bb02f121245c4bc5f625c2e5199d6dd6c2ab8c524f721ccc210c09fc176a",
"md5": "e6f2735026649e27e0c8116635e035aa",
"sha256": "799a3a291a30831938a2bfceb650e47e8fcbdf01aec64a771d641ee192bf5cb0"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e6f2735026649e27e0c8116635e035aa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 341437,
"upload_time": "2025-01-14T21:05:10",
"upload_time_iso_8601": "2025-01-14T21:05:10.419130Z",
"url": "https://files.pythonhosted.org/packages/18/55/bb02f121245c4bc5f625c2e5199d6dd6c2ab8c524f721ccc210c09fc176a/cliquepicking-0.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9bfd54c0967351c7c12ddfd94c8c2a753b66b7134513838ed657e77c0ebe62d5",
"md5": "02cb1c8b0c0b4a0b0d61ccb7d74ca925",
"sha256": "7c71d7772cd130bd96a74b264710cc588d8c9d9255ea81aaba6bdae74ee5148a"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "02cb1c8b0c0b4a0b0d61ccb7d74ca925",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 368623,
"upload_time": "2025-01-14T21:04:55",
"upload_time_iso_8601": "2025-01-14T21:04:55.387167Z",
"url": "https://files.pythonhosted.org/packages/9b/fd/54c0967351c7c12ddfd94c8c2a753b66b7134513838ed657e77c0ebe62d5/cliquepicking-0.2.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "44fbc5b92a7b2e5735906238663223bf213280817814c3e3d199d97ae7b10c89",
"md5": "e233530550a9b2ffa9327a248abd7952",
"sha256": "1f4b5ed6176d3f0f3d8f5d53896f189441b2fb0fb1de74d2e4f7d8ebc21bd001"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e233530550a9b2ffa9327a248abd7952",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 505972,
"upload_time": "2025-01-14T21:05:34",
"upload_time_iso_8601": "2025-01-14T21:05:34.521439Z",
"url": "https://files.pythonhosted.org/packages/44/fb/c5b92a7b2e5735906238663223bf213280817814c3e3d199d97ae7b10c89/cliquepicking-0.2.6-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "837e99cbf1c9a17c5bc35e680df5d168da7d4cd9834c8eea3a1b868940e5017b",
"md5": "427c98190d16083eec8f758907c5d666",
"sha256": "f282a4db1a4fdc2253117b661d3567efde1fe2fef82ad00b477681634398e9ed"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "427c98190d16083eec8f758907c5d666",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 592710,
"upload_time": "2025-01-14T21:05:53",
"upload_time_iso_8601": "2025-01-14T21:05:53.939501Z",
"url": "https://files.pythonhosted.org/packages/83/7e/99cbf1c9a17c5bc35e680df5d168da7d4cd9834c8eea3a1b868940e5017b/cliquepicking-0.2.6-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b68da962bcb0c709ff2b3fae1cfcb65165669d9af739b224ceef6bd7c9b604b0",
"md5": "26ddd255353639959cb4c3ef70c229ca",
"sha256": "1daa22e1e85648fa82e27e2fa9bdaca7b1441f8e4f64dc70742eb3c04e375682"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "26ddd255353639959cb4c3ef70c229ca",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 531117,
"upload_time": "2025-01-14T21:06:10",
"upload_time_iso_8601": "2025-01-14T21:06:10.879632Z",
"url": "https://files.pythonhosted.org/packages/b6/8d/a962bcb0c709ff2b3fae1cfcb65165669d9af739b224ceef6bd7c9b604b0/cliquepicking-0.2.6-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f7d5b67380b0338c02d727eb505734d539f05f463d56825ad9f09cbd0b57246f",
"md5": "fe9309c91a3c3940be29c4e5d3b27a2a",
"sha256": "b9ed31725d532ede5e52bc69b2d33bd32b64bbf0fe04b68491b88c5dcbe924a0"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fe9309c91a3c3940be29c4e5d3b27a2a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 506418,
"upload_time": "2025-01-14T21:06:41",
"upload_time_iso_8601": "2025-01-14T21:06:41.697030Z",
"url": "https://files.pythonhosted.org/packages/f7/d5/b67380b0338c02d727eb505734d539f05f463d56825ad9f09cbd0b57246f/cliquepicking-0.2.6-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "49ae0dac028324103390cdf145cffc512d3b88201ccb43c26b008760d8518a37",
"md5": "2b09953f13fac26b026b9573c330ec48",
"sha256": "5764cc8795ab95f1547ec7810a6ff333769517cdf847e901176a511226ad9dfe"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "2b09953f13fac26b026b9573c330ec48",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 177625,
"upload_time": "2025-01-14T21:07:15",
"upload_time_iso_8601": "2025-01-14T21:07:15.132290Z",
"url": "https://files.pythonhosted.org/packages/49/ae/0dac028324103390cdf145cffc512d3b88201ccb43c26b008760d8518a37/cliquepicking-0.2.6-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4ade1d38e5a7f24b7da6b61828ea05e45b7d50e987ab10690139fbe3189f2bc3",
"md5": "218c02f8339d5b9aff75bfecb16f79fb",
"sha256": "d35d93ef96546b0c9f5e25b55bcd2a691bd7d5bcc8ffce8477894484f1c0f66e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "218c02f8339d5b9aff75bfecb16f79fb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 190650,
"upload_time": "2025-01-14T21:07:06",
"upload_time_iso_8601": "2025-01-14T21:07:06.631318Z",
"url": "https://files.pythonhosted.org/packages/4a/de/1d38e5a7f24b7da6b61828ea05e45b7d50e987ab10690139fbe3189f2bc3/cliquepicking-0.2.6-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7345995373bf2b0495e389adee9aec373a7448991165b704a64681ca7ba2a2d1",
"md5": "6d13bc0a183d3a57806032606feaec7f",
"sha256": "269a612b95a0d09bc627ba44745a3e0844f0dd77a3593cf6ba841c85808fb6a2"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "6d13bc0a183d3a57806032606feaec7f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 300968,
"upload_time": "2025-01-14T21:05:29",
"upload_time_iso_8601": "2025-01-14T21:05:29.713854Z",
"url": "https://files.pythonhosted.org/packages/73/45/995373bf2b0495e389adee9aec373a7448991165b704a64681ca7ba2a2d1/cliquepicking-0.2.6-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98d3485ae85437276eb78a63ad925502c7f1cba5e209a8ffae194e87754ac785",
"md5": "b06653b930bb4b3b62f89de5c4335731",
"sha256": "2b2633a9f23e71f1d7b146d8f1ba4678ecc3cbbed404b146a677c70608d7f621"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b06653b930bb4b3b62f89de5c4335731",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 290058,
"upload_time": "2025-01-14T21:05:23",
"upload_time_iso_8601": "2025-01-14T21:05:23.952716Z",
"url": "https://files.pythonhosted.org/packages/98/d3/485ae85437276eb78a63ad925502c7f1cba5e209a8ffae194e87754ac785/cliquepicking-0.2.6-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c6f067d5ada6fccd885d082f38f8ac52634fb0effd25582956f8651a61714d82",
"md5": "3b4312ad7e13889d43f9ac4f2e634487",
"sha256": "bd23d257a1e288836ca5c5d3ddbc8d19b66ec3c289c337c986db9707dbc5be8d"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3b4312ad7e13889d43f9ac4f2e634487",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 335932,
"upload_time": "2025-01-14T21:03:35",
"upload_time_iso_8601": "2025-01-14T21:03:35.610420Z",
"url": "https://files.pythonhosted.org/packages/c6/f0/67d5ada6fccd885d082f38f8ac52634fb0effd25582956f8651a61714d82/cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3c07ccb63ca477ac9fe33f002fcdd58a0562f359e8de8e1c58534f6acd3b00b",
"md5": "c599cbcd6689821321d2d3434e521398",
"sha256": "2548ad5a04a29bd0a83d56229df5e4c7b1a56cb331f947c3d535b6459b3e9d13"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c599cbcd6689821321d2d3434e521398",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 340624,
"upload_time": "2025-01-14T21:03:57",
"upload_time_iso_8601": "2025-01-14T21:03:57.943681Z",
"url": "https://files.pythonhosted.org/packages/a3/c0/7ccb63ca477ac9fe33f002fcdd58a0562f359e8de8e1c58534f6acd3b00b/cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1c778a9531cbbe6602fc8c75e6934ef9a51618b9e559a1330ae1cfb18080e44e",
"md5": "82fc3f8f6995cf92ff66442c7d5860e5",
"sha256": "f0ff60feec21f3f53ffe56854a52dde13a39d2474b614cbcfc310315d9421687"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "82fc3f8f6995cf92ff66442c7d5860e5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 416197,
"upload_time": "2025-01-14T21:04:18",
"upload_time_iso_8601": "2025-01-14T21:04:18.676565Z",
"url": "https://files.pythonhosted.org/packages/1c/77/8a9531cbbe6602fc8c75e6934ef9a51618b9e559a1330ae1cfb18080e44e/cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd30758629bcbb2e8323482d3169d530d08ea1c80ef8aa41798b606f3b0f0bd0",
"md5": "156b123b6b0d577b3e75ff241da5e014",
"sha256": "2e71784f07c2a5b416371555746b15a77341c6218503f4f67336bac93fa3a077"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "156b123b6b0d577b3e75ff241da5e014",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 406028,
"upload_time": "2025-01-14T21:04:38",
"upload_time_iso_8601": "2025-01-14T21:04:38.883135Z",
"url": "https://files.pythonhosted.org/packages/cd/30/758629bcbb2e8323482d3169d530d08ea1c80ef8aa41798b606f3b0f0bd0/cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "82e5ea47bdc13bddd2d345ebef29acece5d492f9eca5526980751e5091d3f49d",
"md5": "8b789c756bec1fdd0af56137663d2bf9",
"sha256": "ce6d9ddcf41afbccd64a443f813416be169e709efdc473b6c3934bc1096c2a58"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8b789c756bec1fdd0af56137663d2bf9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 341236,
"upload_time": "2025-01-14T21:05:13",
"upload_time_iso_8601": "2025-01-14T21:05:13.024823Z",
"url": "https://files.pythonhosted.org/packages/82/e5/ea47bdc13bddd2d345ebef29acece5d492f9eca5526980751e5091d3f49d/cliquepicking-0.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14acbb8700cb7f6e19655a72502fd2861cd95952fddd4f031d7475975a1c4c5b",
"md5": "0674ca2541c372da9f981a3bfd7228e8",
"sha256": "f131e74847681e364c70b16e95f5d5d44744ae3421381cc3bc261fe19f61dfe1"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0674ca2541c372da9f981a3bfd7228e8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 368525,
"upload_time": "2025-01-14T21:04:57",
"upload_time_iso_8601": "2025-01-14T21:04:57.235819Z",
"url": "https://files.pythonhosted.org/packages/14/ac/bb8700cb7f6e19655a72502fd2861cd95952fddd4f031d7475975a1c4c5b/cliquepicking-0.2.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "07a749b30b802d6ec98b0823a65a5628c7ad991d6562c5e6e25381e513c79896",
"md5": "c81c7d6951aff61cd78d308959da38b2",
"sha256": "d5284620a044f6f2b11a026cb366ae40ce263f3528bf34cc9e003afbe0542807"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c81c7d6951aff61cd78d308959da38b2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 505777,
"upload_time": "2025-01-14T21:05:37",
"upload_time_iso_8601": "2025-01-14T21:05:37.265843Z",
"url": "https://files.pythonhosted.org/packages/07/a7/49b30b802d6ec98b0823a65a5628c7ad991d6562c5e6e25381e513c79896/cliquepicking-0.2.6-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "918990f9702a53989091482705e4f33e24818974688dc14aa44d8650c0bca59f",
"md5": "e2f270f45a24c28ad23e633d4fa0fe42",
"sha256": "eb6fc644a9c48d870a824c1de4c15b5761b663a67d196be631d22c4fcf67eeba"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "e2f270f45a24c28ad23e633d4fa0fe42",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 592533,
"upload_time": "2025-01-14T21:05:55",
"upload_time_iso_8601": "2025-01-14T21:05:55.775872Z",
"url": "https://files.pythonhosted.org/packages/91/89/90f9702a53989091482705e4f33e24818974688dc14aa44d8650c0bca59f/cliquepicking-0.2.6-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df6124a4f68c550ab47293e173af372cf9c485ad47b5d50ccc7aa90690a8e458",
"md5": "a45900f2e7f112bad3cec87baac4511e",
"sha256": "8bbdf4deaa4507acd696f41e78f79696859ce6a95ffc991eb5788547777c20f5"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a45900f2e7f112bad3cec87baac4511e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 530998,
"upload_time": "2025-01-14T21:06:13",
"upload_time_iso_8601": "2025-01-14T21:06:13.700464Z",
"url": "https://files.pythonhosted.org/packages/df/61/24a4f68c550ab47293e173af372cf9c485ad47b5d50ccc7aa90690a8e458/cliquepicking-0.2.6-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e14f8a89b1aa945f53648331f2627766662610a4978dd87b3c50e3c395d79680",
"md5": "1a17b4428dfe65777f8e4483404e4696",
"sha256": "882714f2442b5f339b55c746b64235cbade1011922926fef3b201dba77b50c5d"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1a17b4428dfe65777f8e4483404e4696",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 506096,
"upload_time": "2025-01-14T21:06:43",
"upload_time_iso_8601": "2025-01-14T21:06:43.273624Z",
"url": "https://files.pythonhosted.org/packages/e1/4f/8a89b1aa945f53648331f2627766662610a4978dd87b3c50e3c395d79680/cliquepicking-0.2.6-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7b37ef23823e40032967abca76180510c6a0140f3d9fa665cba54ecf2eec8bc3",
"md5": "539700257cafac389457a6a96d044fb0",
"sha256": "fb576659c1a4ca1e7ddc044ddb546743a1790922ac4b47c11b384a0e5bcc3480"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "539700257cafac389457a6a96d044fb0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 177591,
"upload_time": "2025-01-14T21:07:16",
"upload_time_iso_8601": "2025-01-14T21:07:16.740065Z",
"url": "https://files.pythonhosted.org/packages/7b/37/ef23823e40032967abca76180510c6a0140f3d9fa665cba54ecf2eec8bc3/cliquepicking-0.2.6-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83e66ca9df06242273665eb5604b729f9ea243a222452c91d317f252e1424891",
"md5": "3ae330980fe130ced14c26b303f21f76",
"sha256": "60afe299747a899f4c36e87486a3d10082111c66cd1cd611271aabc336dfc753"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "3ae330980fe130ced14c26b303f21f76",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 190483,
"upload_time": "2025-01-14T21:07:08",
"upload_time_iso_8601": "2025-01-14T21:07:08.181765Z",
"url": "https://files.pythonhosted.org/packages/83/e6/6ca9df06242273665eb5604b729f9ea243a222452c91d317f252e1424891/cliquepicking-0.2.6-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "14fb5cf7871ed33024ff63479cbe1621302226ddd81753fe179a725ec8510665",
"md5": "847b9353bc81dc0f8af97b9e758d75fc",
"sha256": "de17fbaf7ab0c6105e73f138538e2c8eac7c196d29009b5a96849e9228944f8e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "847b9353bc81dc0f8af97b9e758d75fc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 298699,
"upload_time": "2025-01-14T21:05:31",
"upload_time_iso_8601": "2025-01-14T21:05:31.257062Z",
"url": "https://files.pythonhosted.org/packages/14/fb/5cf7871ed33024ff63479cbe1621302226ddd81753fe179a725ec8510665/cliquepicking-0.2.6-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db3d17ca7b25f750aa4acf87b69889c91f3e807cb6769613b6d29ea1fbc8c791",
"md5": "95a4d32bcb5d8f0acb4647a9cb2f8aac",
"sha256": "5c44faf18c4c14539b92978327bf70a7d49fad370b711c20d6ff536ad48bcba9"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "95a4d32bcb5d8f0acb4647a9cb2f8aac",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 287993,
"upload_time": "2025-01-14T21:05:25",
"upload_time_iso_8601": "2025-01-14T21:05:25.463424Z",
"url": "https://files.pythonhosted.org/packages/db/3d/17ca7b25f750aa4acf87b69889c91f3e807cb6769613b6d29ea1fbc8c791/cliquepicking-0.2.6-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a229fe077ee1b3168027587c9d3478d749168debd6c0ff02648920f23a109a3",
"md5": "7dc6d3470dc70c63e21d3e8d61b57d81",
"sha256": "e3608972dae28e92d5ede33008360de55dc5c399a208dd9a0ce87c939fc74efd"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "7dc6d3470dc70c63e21d3e8d61b57d81",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 335533,
"upload_time": "2025-01-14T21:03:38",
"upload_time_iso_8601": "2025-01-14T21:03:38.328502Z",
"url": "https://files.pythonhosted.org/packages/3a/22/9fe077ee1b3168027587c9d3478d749168debd6c0ff02648920f23a109a3/cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "64f80d90b29ffb343bcfc20e28a01e167905c95fdad7459aac79fe02e4a64338",
"md5": "b901e46a072637ae632039bb39c73973",
"sha256": "f3a6fd3dc8c6dd18b675e61ca29338834dc8dcaaa65d5110e642dcf202c3d3de"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b901e46a072637ae632039bb39c73973",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 339832,
"upload_time": "2025-01-14T21:03:59",
"upload_time_iso_8601": "2025-01-14T21:03:59.564949Z",
"url": "https://files.pythonhosted.org/packages/64/f8/0d90b29ffb343bcfc20e28a01e167905c95fdad7459aac79fe02e4a64338/cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57c0a482d36679e1e6811222b21700b3d6c2e998d9a5c0baea725413e538ba4a",
"md5": "55228beb181832a4efd20fcacf139f0f",
"sha256": "cc504a3d2554cdaa47b60be0f00eda19aa822c5239cb0b1a277622ecf91a608b"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "55228beb181832a4efd20fcacf139f0f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 415819,
"upload_time": "2025-01-14T21:04:20",
"upload_time_iso_8601": "2025-01-14T21:04:20.510640Z",
"url": "https://files.pythonhosted.org/packages/57/c0/a482d36679e1e6811222b21700b3d6c2e998d9a5c0baea725413e538ba4a/cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9b6c7a2266d6f05a357482fdbc67f1793c46f8b3075aefff83f63af074dde49",
"md5": "5db7ce40f6641a5feed5eff214372cf2",
"sha256": "47401c948c39d8df8efe15e806a3928deab83d8afbdfbdc0a3013c6581a8ef10"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5db7ce40f6641a5feed5eff214372cf2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 404358,
"upload_time": "2025-01-14T21:04:41",
"upload_time_iso_8601": "2025-01-14T21:04:41.596141Z",
"url": "https://files.pythonhosted.org/packages/a9/b6/c7a2266d6f05a357482fdbc67f1793c46f8b3075aefff83f63af074dde49/cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7eb2d64773cd1470de4e684626ce24aa3b2f42e5d9b9be2cf41bb9fa3c8b2b84",
"md5": "7b79f1a85141eeb37f73aa9733e88e5e",
"sha256": "9b36795ca6937475d516eb15f2ad0e8bec8c47cc119ba974b4ffe92cdbd534b6"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7b79f1a85141eeb37f73aa9733e88e5e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 340431,
"upload_time": "2025-01-14T21:05:15",
"upload_time_iso_8601": "2025-01-14T21:05:15.903646Z",
"url": "https://files.pythonhosted.org/packages/7e/b2/d64773cd1470de4e684626ce24aa3b2f42e5d9b9be2cf41bb9fa3c8b2b84/cliquepicking-0.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78b84a22403e38bbfcb44a9ad58657113b548f74659381ebbbec89bb62c2be95",
"md5": "74a89fc3b312c2063457873bb6a2c875",
"sha256": "cd9587c0767e513b8af653501d41ee8ee763b98f9e031de6248ed2630eaa9e69"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "74a89fc3b312c2063457873bb6a2c875",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 368204,
"upload_time": "2025-01-14T21:04:58",
"upload_time_iso_8601": "2025-01-14T21:04:58.787756Z",
"url": "https://files.pythonhosted.org/packages/78/b8/4a22403e38bbfcb44a9ad58657113b548f74659381ebbbec89bb62c2be95/cliquepicking-0.2.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "11ab9f824c332ff2897dffd855fdd4e4c9531e28a7390c98eeae67c3ed91dc00",
"md5": "cf08d56106e740d8b38a85564a215c8c",
"sha256": "de0cd7ea1f1744a045439074ab43c8c774d403ea59008863de422c89723adeb8"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "cf08d56106e740d8b38a85564a215c8c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 504428,
"upload_time": "2025-01-14T21:05:38",
"upload_time_iso_8601": "2025-01-14T21:05:38.861142Z",
"url": "https://files.pythonhosted.org/packages/11/ab/9f824c332ff2897dffd855fdd4e4c9531e28a7390c98eeae67c3ed91dc00/cliquepicking-0.2.6-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19743b8f34e59ea53e08fe03a445ae783f2d20d1e332fee95e8045f2add8f4e2",
"md5": "10d94168a0d49ece1c8c4742a63040a1",
"sha256": "833d21f0472002e7206edc58076389a3c9c5b8ebb895d8927627cc34002fb179"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "10d94168a0d49ece1c8c4742a63040a1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 591930,
"upload_time": "2025-01-14T21:05:57",
"upload_time_iso_8601": "2025-01-14T21:05:57.890755Z",
"url": "https://files.pythonhosted.org/packages/19/74/3b8f34e59ea53e08fe03a445ae783f2d20d1e332fee95e8045f2add8f4e2/cliquepicking-0.2.6-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "773fa81858c10338871a9a5f2dcb65517dffed0679794f99a8f06048a53cca74",
"md5": "edc73d8ba9ab79cd6f150e7daf8af362",
"sha256": "c2d20ebd1dea49fdc779cf6871ed71759d580f80c5231b2746e6773fb6f270e1"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "edc73d8ba9ab79cd6f150e7daf8af362",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 530482,
"upload_time": "2025-01-14T21:06:20",
"upload_time_iso_8601": "2025-01-14T21:06:20.690369Z",
"url": "https://files.pythonhosted.org/packages/77/3f/a81858c10338871a9a5f2dcb65517dffed0679794f99a8f06048a53cca74/cliquepicking-0.2.6-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0517ac2f2138ca1ce30d5e5799354181de856ed0189cfe89c41277e44178e70e",
"md5": "0c871dbe853f28c67f101e8183b5720d",
"sha256": "13efde55d282ca4a1f4fe8f27207c035afb6d787382faa3137c60df28256b35e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "0c871dbe853f28c67f101e8183b5720d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 504810,
"upload_time": "2025-01-14T21:06:46",
"upload_time_iso_8601": "2025-01-14T21:06:46.852774Z",
"url": "https://files.pythonhosted.org/packages/05/17/ac2f2138ca1ce30d5e5799354181de856ed0189cfe89c41277e44178e70e/cliquepicking-0.2.6-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "645043f04911f23929e3de88d6bfc5bbb8c25804d68bad1690a97a4a98f3328d",
"md5": "b55e037165c1d9cbbceafe62f9c38a9b",
"sha256": "bd19a1901c27ea4d9b26952083b03aa6b7a8abecd8f1e7c66c12b716dc0ceb8b"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "b55e037165c1d9cbbceafe62f9c38a9b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 177483,
"upload_time": "2025-01-14T21:07:18",
"upload_time_iso_8601": "2025-01-14T21:07:18.279499Z",
"url": "https://files.pythonhosted.org/packages/64/50/43f04911f23929e3de88d6bfc5bbb8c25804d68bad1690a97a4a98f3328d/cliquepicking-0.2.6-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ce69747316a425414213c1d5aa475d949ee6384c3ada5f704086f2217eec378",
"md5": "05bd29352e9abf2d8650e1fbac22793b",
"sha256": "6bead2ad0f64a95fceed7a7daaf5dac225450692e6b690bc90341e04ec334934"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "05bd29352e9abf2d8650e1fbac22793b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 189696,
"upload_time": "2025-01-14T21:07:09",
"upload_time_iso_8601": "2025-01-14T21:07:09.757922Z",
"url": "https://files.pythonhosted.org/packages/8c/e6/9747316a425414213c1d5aa475d949ee6384c3ada5f704086f2217eec378/cliquepicking-0.2.6-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "46f4600687f518fe5d55301e7905d564968b450fc7b3bd6b5cb981a3b091e161",
"md5": "b834fb6cbb4f789f5fc294996c6c5818",
"sha256": "249d3ea14851c26c8f7267cc578ea5cc1ba67e409a1f501053b1c9d0a7be04b6"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "b834fb6cbb4f789f5fc294996c6c5818",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 298802,
"upload_time": "2025-01-14T21:05:32",
"upload_time_iso_8601": "2025-01-14T21:05:32.905458Z",
"url": "https://files.pythonhosted.org/packages/46/f4/600687f518fe5d55301e7905d564968b450fc7b3bd6b5cb981a3b091e161/cliquepicking-0.2.6-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bcea91871ccd1f4504a1c9940dafe7fffe71fb0f2901523ef039c1d6a781a3d7",
"md5": "6ec8ae470f70b02accd61508c06f1951",
"sha256": "c1a4c69c8f035f8299cd9c7253ff7b44ff7252cf2d5d5987d98dff4d0bc4731d"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6ec8ae470f70b02accd61508c06f1951",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 288080,
"upload_time": "2025-01-14T21:05:28",
"upload_time_iso_8601": "2025-01-14T21:05:28.110597Z",
"url": "https://files.pythonhosted.org/packages/bc/ea/91871ccd1f4504a1c9940dafe7fffe71fb0f2901523ef039c1d6a781a3d7/cliquepicking-0.2.6-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "97cd318ca3059614304c9ee998cbed5c60d48b8cf04edc9ec02179bd6eeafb16",
"md5": "6cc9655e7ed5b925af904ce8b5820cb7",
"sha256": "85660e476807ca5457e3f937255b55c21f459968136bd64931a35c1b866c4a30"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6cc9655e7ed5b925af904ce8b5820cb7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 335442,
"upload_time": "2025-01-14T21:03:41",
"upload_time_iso_8601": "2025-01-14T21:03:41.910993Z",
"url": "https://files.pythonhosted.org/packages/97/cd/318ca3059614304c9ee998cbed5c60d48b8cf04edc9ec02179bd6eeafb16/cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe105a884cb9c905465f61a2a349cb09374bde947a5f9e12adb1f84d5e5df9b2",
"md5": "e7370009545ee8c317ec6c08eb49d415",
"sha256": "f7f58461003769cf35562cc2c2f36666f47fc6d168244252f902d295cb393175"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "e7370009545ee8c317ec6c08eb49d415",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 340043,
"upload_time": "2025-01-14T21:04:02",
"upload_time_iso_8601": "2025-01-14T21:04:02.904630Z",
"url": "https://files.pythonhosted.org/packages/fe/10/5a884cb9c905465f61a2a349cb09374bde947a5f9e12adb1f84d5e5df9b2/cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "05c66e6e001850a3e7bbe6d1b369698ab9e94306428e58169bb3a865c7bf73f6",
"md5": "86ea3fa896e33d21e381ee5026a86e04",
"sha256": "cc21ff8b1759f1c76310622e24436083bf6666e79d7e16e61d310d0192680c81"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "86ea3fa896e33d21e381ee5026a86e04",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 415772,
"upload_time": "2025-01-14T21:04:22",
"upload_time_iso_8601": "2025-01-14T21:04:22.304906Z",
"url": "https://files.pythonhosted.org/packages/05/c6/6e6e001850a3e7bbe6d1b369698ab9e94306428e58169bb3a865c7bf73f6/cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a2f35314c60e3623e7426175a35a4a16729e39111b45251ebcd6e46be3e62e01",
"md5": "3ddaac54426f680a74d58a87650768b8",
"sha256": "3206e9f6799b9dc0a682fd22c1397c47814c300566931eb38dc98df3534e2b21"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3ddaac54426f680a74d58a87650768b8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 404329,
"upload_time": "2025-01-14T21:04:43",
"upload_time_iso_8601": "2025-01-14T21:04:43.159230Z",
"url": "https://files.pythonhosted.org/packages/a2/f3/5314c60e3623e7426175a35a4a16729e39111b45251ebcd6e46be3e62e01/cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "90f4cc1e592e1d33c2a5590e13acef11d74385efcfe2461f00d594fb91287613",
"md5": "52896be02b618b69eb7d039d5a9c9dc7",
"sha256": "835c9ed185f0e49596e4605488f1690bde545db1a0a81894781bda3ded07fa2d"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "52896be02b618b69eb7d039d5a9c9dc7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 340396,
"upload_time": "2025-01-14T21:05:17",
"upload_time_iso_8601": "2025-01-14T21:05:17.531391Z",
"url": "https://files.pythonhosted.org/packages/90/f4/cc1e592e1d33c2a5590e13acef11d74385efcfe2461f00d594fb91287613/cliquepicking-0.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f3738acab7c1079c57152ad4c09db120ad43f922918bff1f03559581373a5576",
"md5": "8deb113b74d9d6e0e50cf648d0e8baa5",
"sha256": "dbad30ceb6442ed12dc83f6fe08ccd2b93b88aa700818fae0f72e67d8e7c4dbc"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "8deb113b74d9d6e0e50cf648d0e8baa5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 368446,
"upload_time": "2025-01-14T21:05:00",
"upload_time_iso_8601": "2025-01-14T21:05:00.259253Z",
"url": "https://files.pythonhosted.org/packages/f3/73/8acab7c1079c57152ad4c09db120ad43f922918bff1f03559581373a5576/cliquepicking-0.2.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7b32896afb2760dc7d2fc2ff3a88654f9d972c71d1a3f86d6af43e54b8e06954",
"md5": "6d7846c65ec8f477a5b5eaa96e1e331f",
"sha256": "e37c9805b2ae7e34053b92dfeeae6f7c1b6566c7f03d1f7b48af4264b17a41c1"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6d7846c65ec8f477a5b5eaa96e1e331f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 504481,
"upload_time": "2025-01-14T21:05:42",
"upload_time_iso_8601": "2025-01-14T21:05:42.219987Z",
"url": "https://files.pythonhosted.org/packages/7b/32/896afb2760dc7d2fc2ff3a88654f9d972c71d1a3f86d6af43e54b8e06954/cliquepicking-0.2.6-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06497d3956716c08d37276c864e4c366e136e97a1f4182954e0e8ece0f87ba3f",
"md5": "939f45802eba33a440bef33f67148ced",
"sha256": "be66572041d6683b6a9a4b739cdcef5baadd40c5f17b1abbba301414e2d3cf9b"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "939f45802eba33a440bef33f67148ced",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 592058,
"upload_time": "2025-01-14T21:06:00",
"upload_time_iso_8601": "2025-01-14T21:06:00.176645Z",
"url": "https://files.pythonhosted.org/packages/06/49/7d3956716c08d37276c864e4c366e136e97a1f4182954e0e8ece0f87ba3f/cliquepicking-0.2.6-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "493a91669b820e6780efafa9766832816849aed182d1ea9443ada6241cc9c407",
"md5": "0488e540f637a31d4268e87102077d0d",
"sha256": "4d10dfc352a7a2a11f05031e1753c00a62193c2ebc91bb7410b3beabc46667d3"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0488e540f637a31d4268e87102077d0d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 530393,
"upload_time": "2025-01-14T21:06:24",
"upload_time_iso_8601": "2025-01-14T21:06:24.845484Z",
"url": "https://files.pythonhosted.org/packages/49/3a/91669b820e6780efafa9766832816849aed182d1ea9443ada6241cc9c407/cliquepicking-0.2.6-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e30bbb57efaa2cb5ba21b8a5031cae767fc74c693276754fdf3384af13fda076",
"md5": "9f969514ece94b757ec67918fb919a77",
"sha256": "4aad259cbd40c2fd8fcc02ee13eca3885bd0b35dd9c78598a4443d8e1ca3af57"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9f969514ece94b757ec67918fb919a77",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 504785,
"upload_time": "2025-01-14T21:06:48",
"upload_time_iso_8601": "2025-01-14T21:06:48.911563Z",
"url": "https://files.pythonhosted.org/packages/e3/0b/bb57efaa2cb5ba21b8a5031cae767fc74c693276754fdf3384af13fda076/cliquepicking-0.2.6-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "628cc363637fa3b0cecb01d3530cf33859d02ea6ecea997a43d8aa6a0bfeb40b",
"md5": "ded6b442782fbb77ce45a1897d6cf043",
"sha256": "7041d91270a253261c09e3d18800a86a28bfcb9fc0b0dfcc7a83ef4a19142efb"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "ded6b442782fbb77ce45a1897d6cf043",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 334552,
"upload_time": "2025-01-14T21:03:44",
"upload_time_iso_8601": "2025-01-14T21:03:44.431932Z",
"url": "https://files.pythonhosted.org/packages/62/8c/c363637fa3b0cecb01d3530cf33859d02ea6ecea997a43d8aa6a0bfeb40b/cliquepicking-0.2.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93e26f4f4aef69761f04a08dd914fcf4bb122c78d55e24c3cb2c70116cb96ba0",
"md5": "4d16e280ab2af3290dff230dc4199500",
"sha256": "148beac30d0ebfc82e12105f88f14de93cdfe8a1e012265462a2a31b20a53926"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "4d16e280ab2af3290dff230dc4199500",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 338983,
"upload_time": "2025-01-14T21:04:05",
"upload_time_iso_8601": "2025-01-14T21:04:05.808361Z",
"url": "https://files.pythonhosted.org/packages/93/e2/6f4f4aef69761f04a08dd914fcf4bb122c78d55e24c3cb2c70116cb96ba0/cliquepicking-0.2.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aeeac96c2e427d479250da776543267cc8e7e1d8163bd02778a334abc4b56d89",
"md5": "28639edbd7a35a3b6ef7f8b187e947b6",
"sha256": "bac68c0d9e4dc5b87f6c7e6314b6d2e7ec93f3b13cd120e6c6ba303154cd5afe"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "28639edbd7a35a3b6ef7f8b187e947b6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 415023,
"upload_time": "2025-01-14T21:04:25",
"upload_time_iso_8601": "2025-01-14T21:04:25.223050Z",
"url": "https://files.pythonhosted.org/packages/ae/ea/c96c2e427d479250da776543267cc8e7e1d8163bd02778a334abc4b56d89/cliquepicking-0.2.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d84f3e40532ada50c38f7b312036b8c2c6720558e065c742192af19ca37f267",
"md5": "903dbf7434623b19b09460aa57d5e94d",
"sha256": "805071c71b5d7fb58a4a74dfc90088c270774816c645c3f4d4c866b7ecc7b0fd"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "903dbf7434623b19b09460aa57d5e94d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 406087,
"upload_time": "2025-01-14T21:04:44",
"upload_time_iso_8601": "2025-01-14T21:04:44.975744Z",
"url": "https://files.pythonhosted.org/packages/0d/84/f3e40532ada50c38f7b312036b8c2c6720558e065c742192af19ca37f267/cliquepicking-0.2.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c130adfc25c8459174d1530538a49493164fcf381ac5ae288e757126f9b18bae",
"md5": "5b734f5f511815da687e911c851c6ece",
"sha256": "e325e334f661d846df3a44b6551785a0da2a9fa2de8d8cc837760693d683e582"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5b734f5f511815da687e911c851c6ece",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 503825,
"upload_time": "2025-01-14T21:05:44",
"upload_time_iso_8601": "2025-01-14T21:05:44.518923Z",
"url": "https://files.pythonhosted.org/packages/c1/30/adfc25c8459174d1530538a49493164fcf381ac5ae288e757126f9b18bae/cliquepicking-0.2.6-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d61bd954824b00690f95524c0cd602800a9aa7b17207d97afacd5ed5c9dc469f",
"md5": "1ff6d6bf709604acfe4087507b0a4380",
"sha256": "8c0f9ce7a541c95fda215115cd62e4d30e4fbd6894c70408852521f0a930d15d"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "1ff6d6bf709604acfe4087507b0a4380",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 591513,
"upload_time": "2025-01-14T21:06:01",
"upload_time_iso_8601": "2025-01-14T21:06:01.992896Z",
"url": "https://files.pythonhosted.org/packages/d6/1b/d954824b00690f95524c0cd602800a9aa7b17207d97afacd5ed5c9dc469f/cliquepicking-0.2.6-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "19a424be7a0992d7690dfe9e41afa1d98cefaec55c9facf1da616ac789579031",
"md5": "1aa071099444dc04706ea47ac0f5f391",
"sha256": "af0272734a61f124f7ef34db4218fc92db04d4fb6e4676b6d24109b4668ce5c8"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1aa071099444dc04706ea47ac0f5f391",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 529044,
"upload_time": "2025-01-14T21:06:27",
"upload_time_iso_8601": "2025-01-14T21:06:27.892116Z",
"url": "https://files.pythonhosted.org/packages/19/a4/24be7a0992d7690dfe9e41afa1d98cefaec55c9facf1da616ac789579031/cliquepicking-0.2.6-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4137081106e80bf7378b7e73b670c078d988f3e6da271bf9e82757ebc5220bd",
"md5": "71f72f67c9e06b0f5caa5b708ef7e5e4",
"sha256": "2ac0810772f476756d7afbe5ebb3953cedea9eac65149b543524c2306541332f"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "71f72f67c9e06b0f5caa5b708ef7e5e4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 504331,
"upload_time": "2025-01-14T21:06:50",
"upload_time_iso_8601": "2025-01-14T21:06:50.659984Z",
"url": "https://files.pythonhosted.org/packages/a4/13/7081106e80bf7378b7e73b670c078d988f3e6da271bf9e82757ebc5220bd/cliquepicking-0.2.6-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c21af2b8b16f160c5d72962ed3093a077f441737d3abecf6f60ee36b015f036",
"md5": "3a537119fab5140855a6720868654a99",
"sha256": "9dbfaf6c1d745d03b8232bcdeff17dcb3a20f3dd5fffc8f0a202745eb74f7e6c"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3a537119fab5140855a6720868654a99",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 335531,
"upload_time": "2025-01-14T21:03:46",
"upload_time_iso_8601": "2025-01-14T21:03:46.440209Z",
"url": "https://files.pythonhosted.org/packages/6c/21/af2b8b16f160c5d72962ed3093a077f441737d3abecf6f60ee36b015f036/cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12d0c90b0bcfa1e62e3c97413081cb3c4ec023d0b4afe2206d5badfa707f49ec",
"md5": "f4d0a1eb243d8e37bfe64536eb44a1c0",
"sha256": "6d4a187e7a0c162ca67eff0e1c0a22b3ff4910a264d1736cbf2a41fb77e12d44"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f4d0a1eb243d8e37bfe64536eb44a1c0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 340845,
"upload_time": "2025-01-14T21:04:08",
"upload_time_iso_8601": "2025-01-14T21:04:08.610020Z",
"url": "https://files.pythonhosted.org/packages/12/d0/c90b0bcfa1e62e3c97413081cb3c4ec023d0b4afe2206d5badfa707f49ec/cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd8e8d43ab6bea253bd821a9fddc6345b41cd6f480610d2e50a33dd8ce6c32a7",
"md5": "eeffc2159a5c98d3f7b933458b60122e",
"sha256": "25517e835515ffbe29f0dd7a92c03079185afc1b33772a117264a98235be8041"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "eeffc2159a5c98d3f7b933458b60122e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 415900,
"upload_time": "2025-01-14T21:04:27",
"upload_time_iso_8601": "2025-01-14T21:04:27.956706Z",
"url": "https://files.pythonhosted.org/packages/cd/8e/8d43ab6bea253bd821a9fddc6345b41cd6f480610d2e50a33dd8ce6c32a7/cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3959a07ebfb2c2b70c7e71ab31d95777f5abba152310b5bf629619d59e0e83a8",
"md5": "c43e48385d16b49c2aacc45152da4ccb",
"sha256": "c1db02a94e86e438367d9d54a3ad2392a7a7448b44c9655623fa9ffc48a4f625"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c43e48385d16b49c2aacc45152da4ccb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 405655,
"upload_time": "2025-01-14T21:04:46",
"upload_time_iso_8601": "2025-01-14T21:04:46.663627Z",
"url": "https://files.pythonhosted.org/packages/39/59/a07ebfb2c2b70c7e71ab31d95777f5abba152310b5bf629619d59e0e83a8/cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e960d4ef182b5cc6193e9a60f47ad44465b7e5c783e2a98aa02ad3816f3a936d",
"md5": "aa701a87284048a83931e602c5bfaac2",
"sha256": "edd08b86a0d12aad7a16cfba2f0cdbca8af4443acbe1bd05ac8cf6d3fdf33404"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "aa701a87284048a83931e602c5bfaac2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 341028,
"upload_time": "2025-01-14T21:05:19",
"upload_time_iso_8601": "2025-01-14T21:05:19.175145Z",
"url": "https://files.pythonhosted.org/packages/e9/60/d4ef182b5cc6193e9a60f47ad44465b7e5c783e2a98aa02ad3816f3a936d/cliquepicking-0.2.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "65c255e1c586d58b2dc4e87ee1307a396bacb5353ad6db91c4b78bcff113ee15",
"md5": "c7b98232d8a9c7cdaa2e4c9f88595ec8",
"sha256": "ba162de434a80522a33ff3553305874509eaa55428def8bb633b07bfcaef933a"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "c7b98232d8a9c7cdaa2e4c9f88595ec8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 369061,
"upload_time": "2025-01-14T21:05:03",
"upload_time_iso_8601": "2025-01-14T21:05:03.188646Z",
"url": "https://files.pythonhosted.org/packages/65/c2/55e1c586d58b2dc4e87ee1307a396bacb5353ad6db91c4b78bcff113ee15/cliquepicking-0.2.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ffc038783534dd19fd49c3dbe64fb843e27acc137458ebc46ff6f9dfbac2704a",
"md5": "34eb0ea258bfef74eda81e117082d86c",
"sha256": "75fdc051f71bfbed26c33c2b37000123f3bff35043f493d0bb3b449b12bf950a"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "34eb0ea258bfef74eda81e117082d86c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 505176,
"upload_time": "2025-01-14T21:05:46",
"upload_time_iso_8601": "2025-01-14T21:05:46.411263Z",
"url": "https://files.pythonhosted.org/packages/ff/c0/38783534dd19fd49c3dbe64fb843e27acc137458ebc46ff6f9dfbac2704a/cliquepicking-0.2.6-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7379d404f4037bbbd8c7337e0125904f61a061340a51266f9e445ef1bdec7e0",
"md5": "4d8104d38eff86003daffd3dbc56443d",
"sha256": "d372c60534c16964bb0024b95509bfe7a020027c87b4b971305d4d5013929057"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4d8104d38eff86003daffd3dbc56443d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 592628,
"upload_time": "2025-01-14T21:06:03",
"upload_time_iso_8601": "2025-01-14T21:06:03.820851Z",
"url": "https://files.pythonhosted.org/packages/c7/37/9d404f4037bbbd8c7337e0125904f61a061340a51266f9e445ef1bdec7e0/cliquepicking-0.2.6-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a1c78c17523a849290557d030151686ef595d28540a28940b1ded5a0cac3a75f",
"md5": "9a71ebb69370dd74152f5338d128297c",
"sha256": "0f347bb2150aa763a7987d590bb8c8597ebc9bda9ebec0f2c89e90a1814b1547"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "9a71ebb69370dd74152f5338d128297c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 531267,
"upload_time": "2025-01-14T21:06:30",
"upload_time_iso_8601": "2025-01-14T21:06:30.907602Z",
"url": "https://files.pythonhosted.org/packages/a1/c7/8c17523a849290557d030151686ef595d28540a28940b1ded5a0cac3a75f/cliquepicking-0.2.6-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13fe1b8f8c8a58f990077425bb0e8e435ab545dc1dd9d5bb2a54d689a1ce0943",
"md5": "9f6caf1a739f93569cdbc5294af9cb10",
"sha256": "54a21344dbf10d0aded6e310e506172875d8f9e4a9e0b9f15c8f27ff865ef491"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9f6caf1a739f93569cdbc5294af9cb10",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 505828,
"upload_time": "2025-01-14T21:06:54",
"upload_time_iso_8601": "2025-01-14T21:06:54.034207Z",
"url": "https://files.pythonhosted.org/packages/13/fe/1b8f8c8a58f990077425bb0e8e435ab545dc1dd9d5bb2a54d689a1ce0943/cliquepicking-0.2.6-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae8b52d64cc31046bba189fc292830cb110cd1b32863bed381a77b776230a746",
"md5": "5b0600c52feb0a636ab1303e9eec5b85",
"sha256": "63cf73f1494142faea8499d1b395aee5853cb224171ef6676e665eb33f6503dd"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "5b0600c52feb0a636ab1303e9eec5b85",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 177610,
"upload_time": "2025-01-14T21:07:19",
"upload_time_iso_8601": "2025-01-14T21:07:19.858671Z",
"url": "https://files.pythonhosted.org/packages/ae/8b/52d64cc31046bba189fc292830cb110cd1b32863bed381a77b776230a746/cliquepicking-0.2.6-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18a88e590fe86246c19a25a6de032fad5f993a0711cf4d7d3656acf757f03af7",
"md5": "aac5d1b016d339db3a9a7d0243275e75",
"sha256": "3ab9008532b4867fab35b280deb7a55045e827ad6afc50ac4a815470dfcd5597"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "aac5d1b016d339db3a9a7d0243275e75",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 190355,
"upload_time": "2025-01-14T21:07:11",
"upload_time_iso_8601": "2025-01-14T21:07:11.888397Z",
"url": "https://files.pythonhosted.org/packages/18/a8/8e590fe86246c19a25a6de032fad5f993a0711cf4d7d3656acf757f03af7/cliquepicking-0.2.6-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ce9380d29e4314c2080391085ff64e7992cfdd4a3e6ecf4c3e6cd56b3899b30",
"md5": "aeb4e1a8d61a639b7ea5754f5024491b",
"sha256": "348c936f420cf11cb0ad0016527d1323875ba795c21b319ab8c67355ead6d810"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "aeb4e1a8d61a639b7ea5754f5024491b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 335920,
"upload_time": "2025-01-14T21:03:49",
"upload_time_iso_8601": "2025-01-14T21:03:49.557403Z",
"url": "https://files.pythonhosted.org/packages/5c/e9/380d29e4314c2080391085ff64e7992cfdd4a3e6ecf4c3e6cd56b3899b30/cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6334cba30b6ab3203c0cd18a26244f146006ddcbda6bf694d583d86dae7ec338",
"md5": "85a9231ff796dfb256067a87516b6548",
"sha256": "4ec0025dae0da5bbe8921d64c77839fe67616dde6b72c24d94643e3c6a23ac72"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "85a9231ff796dfb256067a87516b6548",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 340921,
"upload_time": "2025-01-14T21:04:10",
"upload_time_iso_8601": "2025-01-14T21:04:10.098563Z",
"url": "https://files.pythonhosted.org/packages/63/34/cba30b6ab3203c0cd18a26244f146006ddcbda6bf694d583d86dae7ec338/cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e6ee8f71b37ac04a560a74170fe8937ad5f6d2744f17e14f3145dd0f61a93fb",
"md5": "9a184f14a3bf6f34daf45840a356f597",
"sha256": "b97f8fa7e105625176f2b47e2eee33db1b0e887d98987bdaeb8c20a73400ff76"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9a184f14a3bf6f34daf45840a356f597",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 416188,
"upload_time": "2025-01-14T21:04:29",
"upload_time_iso_8601": "2025-01-14T21:04:29.966142Z",
"url": "https://files.pythonhosted.org/packages/5e/6e/e8f71b37ac04a560a74170fe8937ad5f6d2744f17e14f3145dd0f61a93fb/cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7ab1ea5fb8c9dd2dc7b8d77462e0a6cbf4200b2ca8a312ca12e0292eba0e9af2",
"md5": "db3f0e2839ffc554417a76cce95f8f20",
"sha256": "6e4a9771d8937abdf4633b4668cedac5de4d97f0f232c5311f7e97815864cafe"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "db3f0e2839ffc554417a76cce95f8f20",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 406275,
"upload_time": "2025-01-14T21:04:49",
"upload_time_iso_8601": "2025-01-14T21:04:49.356733Z",
"url": "https://files.pythonhosted.org/packages/7a/b1/ea5fb8c9dd2dc7b8d77462e0a6cbf4200b2ca8a312ca12e0292eba0e9af2/cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "519ab94d73fa4ef9aeb855be41c875680248b3d3e264275ee77a55182df79acf",
"md5": "34169de13cbaffb64a47c49dcfac8bcf",
"sha256": "008234c6f39c7ee3624b1d012db7edc0ccf7629922a68338ac139ceb94781aed"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "34169de13cbaffb64a47c49dcfac8bcf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 341374,
"upload_time": "2025-01-14T21:05:20",
"upload_time_iso_8601": "2025-01-14T21:05:20.783920Z",
"url": "https://files.pythonhosted.org/packages/51/9a/b94d73fa4ef9aeb855be41c875680248b3d3e264275ee77a55182df79acf/cliquepicking-0.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e90e2ba53fead090217e621ada478cf1e286946e92ded6d38510fb0772147d32",
"md5": "be975980e0a7ce51a8462fb29af1f8bc",
"sha256": "16d60ae39f1edf5d5b794d081cfbb05031d7c0ef3efeeddd4a7a8be0eb389329"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "be975980e0a7ce51a8462fb29af1f8bc",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 368774,
"upload_time": "2025-01-14T21:05:05",
"upload_time_iso_8601": "2025-01-14T21:05:05.677059Z",
"url": "https://files.pythonhosted.org/packages/e9/0e/2ba53fead090217e621ada478cf1e286946e92ded6d38510fb0772147d32/cliquepicking-0.2.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "615982b6cfc465ed7fc9938aaf1fe00c71d2c0148762b6d12a2a069ebe80cb4c",
"md5": "7c2476868e14e1de1d307110c4165857",
"sha256": "9d5b8e4818e62eece0a3dda4c878392528d7105066b6cd3d1b34ac194646a3b0"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7c2476868e14e1de1d307110c4165857",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 505321,
"upload_time": "2025-01-14T21:05:48",
"upload_time_iso_8601": "2025-01-14T21:05:48.646752Z",
"url": "https://files.pythonhosted.org/packages/61/59/82b6cfc465ed7fc9938aaf1fe00c71d2c0148762b6d12a2a069ebe80cb4c/cliquepicking-0.2.6-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6669a9b08f21e7822582d511cdfcf20f35c342ac76988f43db85a3313b0bf0bf",
"md5": "63494bdc61b41a9b50d982f2a615dc94",
"sha256": "eeb0356681f3cf93659469e59e533fc6a7c59713b74be1d04d4a85ae3b25d9e4"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "63494bdc61b41a9b50d982f2a615dc94",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 593180,
"upload_time": "2025-01-14T21:06:05",
"upload_time_iso_8601": "2025-01-14T21:06:05.426793Z",
"url": "https://files.pythonhosted.org/packages/66/69/a9b08f21e7822582d511cdfcf20f35c342ac76988f43db85a3313b0bf0bf/cliquepicking-0.2.6-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f925971478d27bdcc6fc485050c251b68956c4e3f00d88a79a5d83b789a32578",
"md5": "6145e6d3e70dddae73ce06ad355f4c7e",
"sha256": "b678b1a7a4535f879f14e58e729fced221f971ea4e1d3aa154ccdd798825be6d"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "6145e6d3e70dddae73ce06ad355f4c7e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 531852,
"upload_time": "2025-01-14T21:06:32",
"upload_time_iso_8601": "2025-01-14T21:06:32.842921Z",
"url": "https://files.pythonhosted.org/packages/f9/25/971478d27bdcc6fc485050c251b68956c4e3f00d88a79a5d83b789a32578/cliquepicking-0.2.6-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "334c75a72849268c2730de145925a6b9e2bc2ed83de111b6cf934966094e490c",
"md5": "582dec53bbd4579ee6a5d7810b34bf5d",
"sha256": "f54f04cb1c7ede5e9536f568948a5ea5a26256554d6e84424944640a153724a7"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "582dec53bbd4579ee6a5d7810b34bf5d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 506124,
"upload_time": "2025-01-14T21:06:56",
"upload_time_iso_8601": "2025-01-14T21:06:56.845468Z",
"url": "https://files.pythonhosted.org/packages/33/4c/75a72849268c2730de145925a6b9e2bc2ed83de111b6cf934966094e490c/cliquepicking-0.2.6-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "69f25e2ab95b8defb634a7deb2886bcc5718d1eb0ff3e4d9f01109858a9f008a",
"md5": "72830da73faf0bc6ef6b687b4e20326a",
"sha256": "829688846da41eec729ce95ee018c2a00c5fb94c8b19eba3dba366f2018b0de6"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "72830da73faf0bc6ef6b687b4e20326a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 177821,
"upload_time": "2025-01-14T21:07:21",
"upload_time_iso_8601": "2025-01-14T21:07:21.352716Z",
"url": "https://files.pythonhosted.org/packages/69/f2/5e2ab95b8defb634a7deb2886bcc5718d1eb0ff3e4d9f01109858a9f008a/cliquepicking-0.2.6-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1dc353287b3d16623457c8355ab013cad34e52f4f94f016e9650f66797c284c0",
"md5": "5300dde148d833bb08139062a68ede93",
"sha256": "4e4898c04904f37ca3c1cecd4e04b930304e4df42a7c3da0e18fb6a2f81c1e8c"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "5300dde148d833bb08139062a68ede93",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 190496,
"upload_time": "2025-01-14T21:07:13",
"upload_time_iso_8601": "2025-01-14T21:07:13.520079Z",
"url": "https://files.pythonhosted.org/packages/1d/c3/53287b3d16623457c8355ab013cad34e52f4f94f016e9650f66797c284c0/cliquepicking-0.2.6-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b2352bf502fbd91268b0b2adce58af8103abbaa7fbf2aa804f46f5c62f35e501",
"md5": "8334af3062738236128630fe39c0e7ac",
"sha256": "b82e5e571cc298c74eaaf8cac7a800b6d8d275dd9f0818f0a3a4e1a8b54df974"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8334af3062738236128630fe39c0e7ac",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 336391,
"upload_time": "2025-01-14T21:03:51",
"upload_time_iso_8601": "2025-01-14T21:03:51.759479Z",
"url": "https://files.pythonhosted.org/packages/b2/35/2bf502fbd91268b0b2adce58af8103abbaa7fbf2aa804f46f5c62f35e501/cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78112b66f7218c5b94c8a6a7d75fd09d550e028f538d3243155457cb7a2be7c6",
"md5": "f98012cda35b889a3356527a20fc3678",
"sha256": "d3097a48447defc970a5d5797542860006ffd96a9049cac851dbfd52f97c9e21"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f98012cda35b889a3356527a20fc3678",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 341567,
"upload_time": "2025-01-14T21:04:12",
"upload_time_iso_8601": "2025-01-14T21:04:12.839982Z",
"url": "https://files.pythonhosted.org/packages/78/11/2b66f7218c5b94c8a6a7d75fd09d550e028f538d3243155457cb7a2be7c6/cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "70815833e1d2e7629e1a4b06ebffc2253269fe7f8691b138838220d0155d0520",
"md5": "e090618be415e4b19d084854127c7c64",
"sha256": "073b704cf8fb07db353b53c8b4b3a64100d232b41fad1790a8f8747959eda821"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e090618be415e4b19d084854127c7c64",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 416412,
"upload_time": "2025-01-14T21:04:32",
"upload_time_iso_8601": "2025-01-14T21:04:32.717460Z",
"url": "https://files.pythonhosted.org/packages/70/81/5833e1d2e7629e1a4b06ebffc2253269fe7f8691b138838220d0155d0520/cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c5c0b99ea94b809b2d58db77534bc294c00a20f022984cfa636890edc12a1587",
"md5": "6c70c3a36b1ddafb9efe156f107c55f5",
"sha256": "2cd14bf7c78928fd7f048ea49f564747f4080596e07d5e0dea9104d7220b89c2"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6c70c3a36b1ddafb9efe156f107c55f5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 406943,
"upload_time": "2025-01-14T21:04:52",
"upload_time_iso_8601": "2025-01-14T21:04:52.125427Z",
"url": "https://files.pythonhosted.org/packages/c5/c0/b99ea94b809b2d58db77534bc294c00a20f022984cfa636890edc12a1587/cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "de306618ae7eb8537549f06ded8bb9d62e7ec3158fa12626015332385fdef072",
"md5": "4198e6772a125a94ce9adafb0244a819",
"sha256": "17868acaad1b273f9d5bf7f27c586b07fd0f0cc0b5bdb2d9f2d4dd08d9294be8"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4198e6772a125a94ce9adafb0244a819",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 341631,
"upload_time": "2025-01-14T21:05:22",
"upload_time_iso_8601": "2025-01-14T21:05:22.373220Z",
"url": "https://files.pythonhosted.org/packages/de/30/6618ae7eb8537549f06ded8bb9d62e7ec3158fa12626015332385fdef072/cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e8e1ba7bb898df9b85710c892d546c5f4e92945319f5836f6cfac28de72c5a04",
"md5": "04febe7fe793de838e81f6c4f27d23ce",
"sha256": "d67479b572e73aea3b32b0d05ce7f045761221e3d8c36d41e15f631a04f90afc"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "04febe7fe793de838e81f6c4f27d23ce",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 369874,
"upload_time": "2025-01-14T21:05:07",
"upload_time_iso_8601": "2025-01-14T21:05:07.746421Z",
"url": "https://files.pythonhosted.org/packages/e8/e1/ba7bb898df9b85710c892d546c5f4e92945319f5836f6cfac28de72c5a04/cliquepicking-0.2.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3856ca0921fba162c4987c6440a2f3f54e83097d9e736c8bf66c5f822245bb3b",
"md5": "95ecc3547d30069c40449f082698ac06",
"sha256": "abed6b77d0f9acec6654537800bf79183d7f0945d2bd9b9fe826bff74301ab65"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "95ecc3547d30069c40449f082698ac06",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 506226,
"upload_time": "2025-01-14T21:05:50",
"upload_time_iso_8601": "2025-01-14T21:05:50.409450Z",
"url": "https://files.pythonhosted.org/packages/38/56/ca0921fba162c4987c6440a2f3f54e83097d9e736c8bf66c5f822245bb3b/cliquepicking-0.2.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "505a3e93cad986ecb9fe34819c07e64708c366d3d6e3d221277a7efd33fed026",
"md5": "81f825d347b25b4fcdd4e3f218666d8b",
"sha256": "4b1c41ecc48c92835d28fd7d119ae6d0e2ffce73a2a68afe5196c5be6c365e9e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "81f825d347b25b4fcdd4e3f218666d8b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 593158,
"upload_time": "2025-01-14T21:06:07",
"upload_time_iso_8601": "2025-01-14T21:06:07.156326Z",
"url": "https://files.pythonhosted.org/packages/50/5a/3e93cad986ecb9fe34819c07e64708c366d3d6e3d221277a7efd33fed026/cliquepicking-0.2.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "952d12fc5ad6d7645f26445b14d7fbb159c18d0fbe17f38137a85132af87745e",
"md5": "b3064ded7c0cbf646ba781e2a4a91d8e",
"sha256": "07a1b711c4e1460b20ea75dd5895322fc95b2e1a9e03963213af4f91d8dc6a35"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b3064ded7c0cbf646ba781e2a4a91d8e",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 532129,
"upload_time": "2025-01-14T21:06:35",
"upload_time_iso_8601": "2025-01-14T21:06:35.582649Z",
"url": "https://files.pythonhosted.org/packages/95/2d/12fc5ad6d7645f26445b14d7fbb159c18d0fbe17f38137a85132af87745e/cliquepicking-0.2.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca5370acad24b6bb0b42da20a855c9eadd7abfa83728ed89989f773529e848cf",
"md5": "76ebc0872815e8f781211bee1a4d1325",
"sha256": "4f88811b472cefcd4305300257e8236157556fad8cddd3c85ba08bf823ef80b1"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "76ebc0872815e8f781211bee1a4d1325",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 506754,
"upload_time": "2025-01-14T21:06:59",
"upload_time_iso_8601": "2025-01-14T21:06:59.511627Z",
"url": "https://files.pythonhosted.org/packages/ca/53/70acad24b6bb0b42da20a855c9eadd7abfa83728ed89989f773529e848cf/cliquepicking-0.2.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "865c2a1a76de066e5687bf46c0fb8a49ce22f1111475d4ad4c3b2bdea5067349",
"md5": "8bd31a8eb3ae9a26f72508117fd0ef48",
"sha256": "618140c419a914424ea0977f0406ad52b9380010f177ebddc90c43a1733abb0d"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8bd31a8eb3ae9a26f72508117fd0ef48",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 336537,
"upload_time": "2025-01-14T21:03:54",
"upload_time_iso_8601": "2025-01-14T21:03:54.832400Z",
"url": "https://files.pythonhosted.org/packages/86/5c/2a1a76de066e5687bf46c0fb8a49ce22f1111475d4ad4c3b2bdea5067349/cliquepicking-0.2.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "122fe4bc4fa5acb2868523e639953b4b1d9561417ba5c38172a034f17ea3c934",
"md5": "66e8cbd320c79c55bfc2a46b012ccdec",
"sha256": "f22e25b4ebe6750997195267c0483919f4f719549953cbcef1f9560604d61057"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "66e8cbd320c79c55bfc2a46b012ccdec",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 342234,
"upload_time": "2025-01-14T21:04:15",
"upload_time_iso_8601": "2025-01-14T21:04:15.432738Z",
"url": "https://files.pythonhosted.org/packages/12/2f/e4bc4fa5acb2868523e639953b4b1d9561417ba5c38172a034f17ea3c934/cliquepicking-0.2.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "747ca9599eabf40adca798eefe8c543b2a5fe0ca23f3952ce45c88d90d3554e9",
"md5": "561137d10c70c4ba4645a8d8a9ab7f98",
"sha256": "f944a91dcf21a5333b4a9428238adb3042f6e59dabfcb937f24a2f59c0b8a2ed"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "561137d10c70c4ba4645a8d8a9ab7f98",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 416800,
"upload_time": "2025-01-14T21:04:34",
"upload_time_iso_8601": "2025-01-14T21:04:34.234561Z",
"url": "https://files.pythonhosted.org/packages/74/7c/a9599eabf40adca798eefe8c543b2a5fe0ca23f3952ce45c88d90d3554e9/cliquepicking-0.2.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2682affdc3163682aef2e9bf6130fce0c1182540b06d9d6373d0a9ba86cd4846",
"md5": "2075e3459c31fd80940f172c71d18ffa",
"sha256": "2d5084ffb4ba5264e7bb96306c83dcc087099ba278090b8bc088fc64230616f8"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2075e3459c31fd80940f172c71d18ffa",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 407224,
"upload_time": "2025-01-14T21:04:53",
"upload_time_iso_8601": "2025-01-14T21:04:53.623262Z",
"url": "https://files.pythonhosted.org/packages/26/82/affdc3163682aef2e9bf6130fce0c1182540b06d9d6373d0a9ba86cd4846/cliquepicking-0.2.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6cc8270459afb090d327d337623288167e732c0c2c76bd9e42eef7fd3352e3e6",
"md5": "4dd5a96cdf44126e7bf4636f4c1336d5",
"sha256": "e6a49b17a325d55ea88fefdf81ac8725fe84c8200b984e033fe824952a5eb4af"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4dd5a96cdf44126e7bf4636f4c1336d5",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 506174,
"upload_time": "2025-01-14T21:05:52",
"upload_time_iso_8601": "2025-01-14T21:05:52.113191Z",
"url": "https://files.pythonhosted.org/packages/6c/c8/270459afb090d327d337623288167e732c0c2c76bd9e42eef7fd3352e3e6/cliquepicking-0.2.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "145ace89bdf82d9f6ece418ac87b9cd1f0f7af0e97ffc33f86c3f6d181a20f77",
"md5": "ef5196514182bce9a6e80111a3c1158c",
"sha256": "61f3d2e33b15415c8a411b39cda793f7282e397e5fd1ca066fb6a26daa58b367"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "ef5196514182bce9a6e80111a3c1158c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 593398,
"upload_time": "2025-01-14T21:06:08",
"upload_time_iso_8601": "2025-01-14T21:06:08.942764Z",
"url": "https://files.pythonhosted.org/packages/14/5a/ce89bdf82d9f6ece418ac87b9cd1f0f7af0e97ffc33f86c3f6d181a20f77/cliquepicking-0.2.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12b3d8cde12972b76c18cdec4dc0d92ef80b2019aefa8e523857f14f8b46f913",
"md5": "0f21f5b73ec60f81596a09bbd9467e1e",
"sha256": "bd527d872d859c2dfeb36f2f4543d58637a3cb3b89bb3638e86f4ae7ac114524"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0f21f5b73ec60f81596a09bbd9467e1e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 532316,
"upload_time": "2025-01-14T21:06:39",
"upload_time_iso_8601": "2025-01-14T21:06:39.284296Z",
"url": "https://files.pythonhosted.org/packages/12/b3/d8cde12972b76c18cdec4dc0d92ef80b2019aefa8e523857f14f8b46f913/cliquepicking-0.2.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "58def37af6a2f6076d9a29807d7377a604b6f8812b39abf61f39051079f4bdcc",
"md5": "1aa39517907eda0c25cbb762cae90f9d",
"sha256": "0fdd307bd89760a9bd582b1f36f92a5179af03f80f9854966df808ca0a921bfb"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1aa39517907eda0c25cbb762cae90f9d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 506666,
"upload_time": "2025-01-14T21:07:02",
"upload_time_iso_8601": "2025-01-14T21:07:02.618187Z",
"url": "https://files.pythonhosted.org/packages/58/de/f37af6a2f6076d9a29807d7377a604b6f8812b39abf61f39051079f4bdcc/cliquepicking-0.2.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c9edafced224d0bf839551c02b2441e22c35e2f3f7f42da4a784cfe01dcab71",
"md5": "28debeff926b25947cc865d8aa00a37d",
"sha256": "7eb0552c9d99bb3cd9be910028c347a87274ac45ba1b80265e8a7c93d3f4bc37"
},
"downloads": -1,
"filename": "cliquepicking-0.2.6.tar.gz",
"has_sig": false,
"md5_digest": "28debeff926b25947cc865d8aa00a37d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 19520,
"upload_time": "2025-01-14T21:07:04",
"upload_time_iso_8601": "2025-01-14T21:07:04.001694Z",
"url": "https://files.pythonhosted.org/packages/4c/9e/dafced224d0bf839551c02b2441e22c35e2f3f7f42da4a784cfe01dcab71/cliquepicking-0.2.6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-14 21:07:04",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "cliquepicking"
}