# 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
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.
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/06/2c/d362a626b9ac65e7d2b9c499bd09ce871a02e16cce4f43194584364618af/cliquepicking-0.2.3.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\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\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 and Sampling Markov Equivalent DAGs",
"version": "0.2.3",
"project_urls": null,
"split_keywords": [
"causality",
" causal discovery",
" markov equivalence"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9d6886db5d002de63ef7a06278c90dd58e85b902945a3ec97d585f6ef21e7921",
"md5": "3a27f63ca120fd229c1ffc8eaf483611",
"sha256": "c17f814d3f9016efc94418646a05f712d9cf4674b458ec53aebee0fa21729cec"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "3a27f63ca120fd229c1ffc8eaf483611",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 321436,
"upload_time": "2024-12-15T13:09:52",
"upload_time_iso_8601": "2024-12-15T13:09:52.929163Z",
"url": "https://files.pythonhosted.org/packages/9d/68/86db5d002de63ef7a06278c90dd58e85b902945a3ec97d585f6ef21e7921/cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "91d54a6b59979b2d57f6746d90b7b7481a2233e890888bed596d3ee1a136175c",
"md5": "5bd743aeaf149f376ce21716401e7887",
"sha256": "e7bfca8fb6d6a1e8f45b93943ff07ab077d6465c5b98441876fb7190b1d7048f"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "5bd743aeaf149f376ce21716401e7887",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 323039,
"upload_time": "2024-12-15T13:10:14",
"upload_time_iso_8601": "2024-12-15T13:10:14.267674Z",
"url": "https://files.pythonhosted.org/packages/91/d5/4a6b59979b2d57f6746d90b7b7481a2233e890888bed596d3ee1a136175c/cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "635f20b52d07d5940f7d9663c36cb700798902b63b218fbc62bb108ee233af49",
"md5": "3b04958cd006b2042373b57cc1102325",
"sha256": "0f9987b588f151a29426b9ebc880c3b9891c3b566f97417bfe89d3d6b4c4522e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3b04958cd006b2042373b57cc1102325",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 382222,
"upload_time": "2024-12-15T13:10:31",
"upload_time_iso_8601": "2024-12-15T13:10:31.911769Z",
"url": "https://files.pythonhosted.org/packages/63/5f/20b52d07d5940f7d9663c36cb700798902b63b218fbc62bb108ee233af49/cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "af4ef1f74c3e872b98d305720c0c6859948dbf035e7108b8bc631d93ef435d5f",
"md5": "51ba71e990e4ba1cfcf33717ec366447",
"sha256": "793de8de3b8ea91fa9fba3e841d77d6469f4046e9f95542bb5c668c9fc030ecb"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "51ba71e990e4ba1cfcf33717ec366447",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 386921,
"upload_time": "2024-12-15T13:10:50",
"upload_time_iso_8601": "2024-12-15T13:10:50.782385Z",
"url": "https://files.pythonhosted.org/packages/af/4e/f1f74c3e872b98d305720c0c6859948dbf035e7108b8bc631d93ef435d5f/cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0abfcb6bf8c42bd107230bc738ca4b641444da302400938836fd13d1003941df",
"md5": "4e1b154b42782fac2f888e80cd100988",
"sha256": "7479d5d5843567dd255fb37dd06284b7e02e9e59607619f4597fc10172fa4526"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4e1b154b42782fac2f888e80cd100988",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 328015,
"upload_time": "2024-12-15T13:11:22",
"upload_time_iso_8601": "2024-12-15T13:11:22.745328Z",
"url": "https://files.pythonhosted.org/packages/0a/bf/cb6bf8c42bd107230bc738ca4b641444da302400938836fd13d1003941df/cliquepicking-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a05b5dedecb0f253766de4391fdd2f023a089d571c7d4ce7e4435a5050f29fd",
"md5": "7927343d12a21c5e5f7b07633777b7bc",
"sha256": "cf5c8b83c504794cfa7011115bb03f3846d5f2cdd8ca1ec22bb28f0a20685688"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "7927343d12a21c5e5f7b07633777b7bc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 350289,
"upload_time": "2024-12-15T13:11:08",
"upload_time_iso_8601": "2024-12-15T13:11:08.987467Z",
"url": "https://files.pythonhosted.org/packages/0a/05/b5dedecb0f253766de4391fdd2f023a089d571c7d4ce7e4435a5050f29fd/cliquepicking-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca37d04f206edceb80d4f8ccd0ffb88fe509a0600f41dcdcacc08a231f5312b0",
"md5": "c09fd7f1acef80782754c6cc6546fb57",
"sha256": "09d875bfff0a090d87e5372541dd46f189114917c6e17e151bdc0c4d8677620f"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c09fd7f1acef80782754c6cc6546fb57",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 498921,
"upload_time": "2024-12-15T13:11:54",
"upload_time_iso_8601": "2024-12-15T13:11:54.595050Z",
"url": "https://files.pythonhosted.org/packages/ca/37/d04f206edceb80d4f8ccd0ffb88fe509a0600f41dcdcacc08a231f5312b0/cliquepicking-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f1116a845c5125bef0026a710bfd13760070ea98d00a91958c36f7050aab022e",
"md5": "4b46ba83cd125d38ba74c41c15e05673",
"sha256": "5cb88e48b8c7c32669d1c77cf5653847b66d2e2a23b10a7c5d9be61333a1ab8e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4b46ba83cd125d38ba74c41c15e05673",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 585853,
"upload_time": "2024-12-15T13:12:14",
"upload_time_iso_8601": "2024-12-15T13:12:14.495907Z",
"url": "https://files.pythonhosted.org/packages/f1/11/6a845c5125bef0026a710bfd13760070ea98d00a91958c36f7050aab022e/cliquepicking-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab602548b9cbe1105a34199a724534458cf0b171abb58e3223cde7b1f9a602f5",
"md5": "ce44819752cad615b26d0920f61bd4de",
"sha256": "3d27baea494f4228b3340b2910a5c54a5b0458c015c548551cebb8dba589c6a8"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ce44819752cad615b26d0920f61bd4de",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 523849,
"upload_time": "2024-12-15T13:12:30",
"upload_time_iso_8601": "2024-12-15T13:12:30.613258Z",
"url": "https://files.pythonhosted.org/packages/ab/60/2548b9cbe1105a34199a724534458cf0b171abb58e3223cde7b1f9a602f5/cliquepicking-0.2.3-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "190eb15a203637f81104d1ad35d827e9f25694561a263f856b5c424c106dae76",
"md5": "ff2cc36b1e12f6c3bdb9be5c7d54a829",
"sha256": "84de91487e3cda418468be78fdefb7d88c5f1b1cf27389b53ca3ac89cdd44756"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ff2cc36b1e12f6c3bdb9be5c7d54a829",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 498800,
"upload_time": "2024-12-15T13:12:47",
"upload_time_iso_8601": "2024-12-15T13:12:47.164159Z",
"url": "https://files.pythonhosted.org/packages/19/0e/b15a203637f81104d1ad35d827e9f25694561a263f856b5c424c106dae76/cliquepicking-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e54399f75575ea901b6a5d2aadb496f8b07f1a700b2e39281a412e4bec2d3513",
"md5": "f1bb6db5982898d858b2af539f01d58d",
"sha256": "770cbffb3b3560dc230dd2696e8b0ca7cd2c8a4f42c0851dca426b2d7263e7ca"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "f1bb6db5982898d858b2af539f01d58d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 173772,
"upload_time": "2024-12-15T13:13:14",
"upload_time_iso_8601": "2024-12-15T13:13:14.945338Z",
"url": "https://files.pythonhosted.org/packages/e5/43/99f75575ea901b6a5d2aadb496f8b07f1a700b2e39281a412e4bec2d3513/cliquepicking-0.2.3-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "25a373a546e9afbf790c637695df68617d3f94b52d3add2d20cc09657002d54b",
"md5": "a26d9a11767cf546aa07560ae5ade16f",
"sha256": "fdbcbff81e4e8339576cff6515fec71cf402e7964464deba1cf4047fda563c33"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "a26d9a11767cf546aa07560ae5ade16f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 182829,
"upload_time": "2024-12-15T13:13:05",
"upload_time_iso_8601": "2024-12-15T13:13:05.772163Z",
"url": "https://files.pythonhosted.org/packages/25/a3/73a546e9afbf790c637695df68617d3f94b52d3add2d20cc09657002d54b/cliquepicking-0.2.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bb43762ec3e45f51409402a5b4c3a0fc5f0e64c0f158e60cffffc25a1a7eaff6",
"md5": "ce05c26ee6d088929c4c581e9ac509b9",
"sha256": "27c6a034d35a68ac059f453ec64cc59e70eb47c1c0ffed3dcf93ecea5c5dc175"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ce05c26ee6d088929c4c581e9ac509b9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 292616,
"upload_time": "2024-12-15T13:11:47",
"upload_time_iso_8601": "2024-12-15T13:11:47.920631Z",
"url": "https://files.pythonhosted.org/packages/bb/43/762ec3e45f51409402a5b4c3a0fc5f0e64c0f158e60cffffc25a1a7eaff6/cliquepicking-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7b480135a2999159034027ddc5572e6efef28f248fb56938d92c287a4cfd89c6",
"md5": "b5b72cea89564f72b153e8a054c2640b",
"sha256": "04118d5edc250bdb37079666a3380eb8b3528ca735c8a02ed910a9bf9976b55e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b5b72cea89564f72b153e8a054c2640b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 283478,
"upload_time": "2024-12-15T13:11:40",
"upload_time_iso_8601": "2024-12-15T13:11:40.702986Z",
"url": "https://files.pythonhosted.org/packages/7b/48/0135a2999159034027ddc5572e6efef28f248fb56938d92c287a4cfd89c6/cliquepicking-0.2.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e549b52e09f39697b8b43d802c88d6ea33512a4aa1f7c05a939a721e0365e775",
"md5": "461f8ae70fc4c9e0cce401835e1c9b08",
"sha256": "193a2dbf32b9be56df4cbeaae43fcb5e1a933913a4439f4fe8c8978c4788c33e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "461f8ae70fc4c9e0cce401835e1c9b08",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 321246,
"upload_time": "2024-12-15T13:09:55",
"upload_time_iso_8601": "2024-12-15T13:09:55.072249Z",
"url": "https://files.pythonhosted.org/packages/e5/49/b52e09f39697b8b43d802c88d6ea33512a4aa1f7c05a939a721e0365e775/cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e4dcda0f39d4dfdefbbb65db319a660c3e0d8bc77ae8429b46c20027233f747",
"md5": "1ed222b0c38edf857f384c00da006b18",
"sha256": "a11adc0ff36444e936cb13d129f3d9e2a1e868010ca37b808dfddf180f56bc50"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1ed222b0c38edf857f384c00da006b18",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 323008,
"upload_time": "2024-12-15T13:10:15",
"upload_time_iso_8601": "2024-12-15T13:10:15.939424Z",
"url": "https://files.pythonhosted.org/packages/8e/4d/cda0f39d4dfdefbbb65db319a660c3e0d8bc77ae8429b46c20027233f747/cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e9fb00b63e4f2a2fa146f86ad10d7e3c7d3296ac52093dd9656c26a259e407dd",
"md5": "1a8e5674fb0a47a50ec7dddc5c8fe464",
"sha256": "67bf8b34bf9f0dea065637f00fa2b87702ad8cd1893dbcb2594ef58ff0ade3bb"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1a8e5674fb0a47a50ec7dddc5c8fe464",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 382172,
"upload_time": "2024-12-15T13:10:33",
"upload_time_iso_8601": "2024-12-15T13:10:33.654695Z",
"url": "https://files.pythonhosted.org/packages/e9/fb/00b63e4f2a2fa146f86ad10d7e3c7d3296ac52093dd9656c26a259e407dd/cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e78ceb83828e8139b5993b47ad81144ac3354e95592fcd1026890e08e7aaacff",
"md5": "7efa7788d030c2f1e30612d7977a9254",
"sha256": "86b24e8b806946be1055b8c3c8f0f1c658f8dacad94c658af9627dde22dc7bef"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "7efa7788d030c2f1e30612d7977a9254",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 386475,
"upload_time": "2024-12-15T13:10:52",
"upload_time_iso_8601": "2024-12-15T13:10:52.294987Z",
"url": "https://files.pythonhosted.org/packages/e7/8c/eb83828e8139b5993b47ad81144ac3354e95592fcd1026890e08e7aaacff/cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d6bac800b7bdee803ca7d20ed200203ea998d4292c3b8fa92f91537a2da7b6f",
"md5": "2ac6fad687eedaeaa4b7d95525af18b3",
"sha256": "a7c4904a8b832cd38e8fa041c8991c1d7c5bbd36b61dee7c6eeefc39b38d11a0"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2ac6fad687eedaeaa4b7d95525af18b3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 327660,
"upload_time": "2024-12-15T13:11:24",
"upload_time_iso_8601": "2024-12-15T13:11:24.391758Z",
"url": "https://files.pythonhosted.org/packages/0d/6b/ac800b7bdee803ca7d20ed200203ea998d4292c3b8fa92f91537a2da7b6f/cliquepicking-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "dbb7d7c9f097a743c90057660b4d45effe9d34a3e3fb97c50cffa091b3522f05",
"md5": "24dedc98d4707082c869d422b2e4194f",
"sha256": "654adb743b2835b4ffae6a3ef8f14325f870e479d9d30467d0172aaefedff061"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "24dedc98d4707082c869d422b2e4194f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 350073,
"upload_time": "2024-12-15T13:11:10",
"upload_time_iso_8601": "2024-12-15T13:11:10.681085Z",
"url": "https://files.pythonhosted.org/packages/db/b7/d7c9f097a743c90057660b4d45effe9d34a3e3fb97c50cffa091b3522f05/cliquepicking-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da8baf8cf908a22700b44641c2b6a9180e0577f5de7568a227127ce77ffdf0e0",
"md5": "4896cd44e1f9e93c03669f8a22a87813",
"sha256": "38161d030998c28dbea0de1d8cd5d73f5c885cb4fe62aea07af0b63d1f30fdcb"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4896cd44e1f9e93c03669f8a22a87813",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 498814,
"upload_time": "2024-12-15T13:11:57",
"upload_time_iso_8601": "2024-12-15T13:11:57.426850Z",
"url": "https://files.pythonhosted.org/packages/da/8b/af8cf908a22700b44641c2b6a9180e0577f5de7568a227127ce77ffdf0e0/cliquepicking-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae199bb05bec03149445284f0dd3b45d4b5f9739dd1a11242e723df76fa03a3b",
"md5": "7b82ec5b09a9ad1509444447be421add",
"sha256": "db5ab09323ab56124ffe834d59baa8a77f0ffcd9f54a9c7ff378fc4072f6271f"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "7b82ec5b09a9ad1509444447be421add",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 585674,
"upload_time": "2024-12-15T13:12:16",
"upload_time_iso_8601": "2024-12-15T13:12:16.189587Z",
"url": "https://files.pythonhosted.org/packages/ae/19/9bb05bec03149445284f0dd3b45d4b5f9739dd1a11242e723df76fa03a3b/cliquepicking-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12bce61606991db3dc8b9d5854fd843e5559a42f628dff7efe89ad585be2236a",
"md5": "4049b5439870924a96eb828265085497",
"sha256": "58a2d085b447014844f7ca7870b380d5af711b472b57c6d52a9c617da22eb54d"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4049b5439870924a96eb828265085497",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 523736,
"upload_time": "2024-12-15T13:12:32",
"upload_time_iso_8601": "2024-12-15T13:12:32.210089Z",
"url": "https://files.pythonhosted.org/packages/12/bc/e61606991db3dc8b9d5854fd843e5559a42f628dff7efe89ad585be2236a/cliquepicking-0.2.3-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f733be8b9ce3e1f08a6b96ed2f5d3efd3118d69d9d04e73ad974a38e345b65b2",
"md5": "e752083dd63a4f6de1717428347f591c",
"sha256": "c56d85166438dedb0169f6d942972f4d14a2a730aede1230bc0fad442c51aaed"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e752083dd63a4f6de1717428347f591c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 498483,
"upload_time": "2024-12-15T13:12:48",
"upload_time_iso_8601": "2024-12-15T13:12:48.959015Z",
"url": "https://files.pythonhosted.org/packages/f7/33/be8b9ce3e1f08a6b96ed2f5d3efd3118d69d9d04e73ad974a38e345b65b2/cliquepicking-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b1f3407fa37d17d78e384f789d3d8437eab585bd86920a1b5851b419fa19821",
"md5": "21ce080996c51d5feffae1408b6a0ca7",
"sha256": "d1117516d328ce28fbc3bab8cb2689d22ff623defdd4b26169f4b511a165f8aa"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "21ce080996c51d5feffae1408b6a0ca7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 173711,
"upload_time": "2024-12-15T13:13:17",
"upload_time_iso_8601": "2024-12-15T13:13:17.673958Z",
"url": "https://files.pythonhosted.org/packages/1b/1f/3407fa37d17d78e384f789d3d8437eab585bd86920a1b5851b419fa19821/cliquepicking-0.2.3-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "478509b60b6b4c21b20641d13459a318a7d1063e7cf1bb7039017cfe8b747f99",
"md5": "cd9e9b04c86daa66b160c0366f23431d",
"sha256": "6b602bb910fc3d592eb4b161422ffb6b8ae8ccb8b7fb2184b1ee39e33c690983"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "cd9e9b04c86daa66b160c0366f23431d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 182729,
"upload_time": "2024-12-15T13:13:07",
"upload_time_iso_8601": "2024-12-15T13:13:07.374517Z",
"url": "https://files.pythonhosted.org/packages/47/85/09b60b6b4c21b20641d13459a318a7d1063e7cf1bb7039017cfe8b747f99/cliquepicking-0.2.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f35f8c8d8a9d9cd0633dfb5dd0295f806daf9107fa641afadb5e5b5cb9a77f75",
"md5": "79697793be4009d6b6415a65dcf62584",
"sha256": "02d5a917f5fcf390e15b9791facbde437b43185cc99c38799cd2079ad73c844c"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "79697793be4009d6b6415a65dcf62584",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 290285,
"upload_time": "2024-12-15T13:11:50",
"upload_time_iso_8601": "2024-12-15T13:11:50.221708Z",
"url": "https://files.pythonhosted.org/packages/f3/5f/8c8d8a9d9cd0633dfb5dd0295f806daf9107fa641afadb5e5b5cb9a77f75/cliquepicking-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7aa6f3afbc9f70dce44bfa98a71ce54e432a703514b0bc82c7303c12806e4bd4",
"md5": "aa9038e1d5c2ea1a7e498f80961dd730",
"sha256": "616fd6408d9db6c6348a953ab4333556bcbbdf6db1fadee8efd8a1445eef3bfa"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "aa9038e1d5c2ea1a7e498f80961dd730",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 281858,
"upload_time": "2024-12-15T13:11:43",
"upload_time_iso_8601": "2024-12-15T13:11:43.424523Z",
"url": "https://files.pythonhosted.org/packages/7a/a6/f3afbc9f70dce44bfa98a71ce54e432a703514b0bc82c7303c12806e4bd4/cliquepicking-0.2.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ca5976cf283fc21c6593a8f38b268799cb47451d0b7c2f0a3ec7240643dee71b",
"md5": "b3efaf315fcb118b8e3c1c55621e7735",
"sha256": "c24b826b7ff6dd0746b12a749fe336974fab46085be5514ffd57c76c68be78e4"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b3efaf315fcb118b8e3c1c55621e7735",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 319435,
"upload_time": "2024-12-15T13:09:57",
"upload_time_iso_8601": "2024-12-15T13:09:57.279085Z",
"url": "https://files.pythonhosted.org/packages/ca/59/76cf283fc21c6593a8f38b268799cb47451d0b7c2f0a3ec7240643dee71b/cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "28b6d263633826725224e26b01521f853dbe2311ca09753ce5e6444ba3aa0071",
"md5": "7392a41cc8ba71886c4c48c50a1e5a13",
"sha256": "0b697d9f220f2e280139d826b3bb67a2d4f9650c5f9711905a98ec2668e4d94a"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "7392a41cc8ba71886c4c48c50a1e5a13",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 322055,
"upload_time": "2024-12-15T13:10:18",
"upload_time_iso_8601": "2024-12-15T13:10:18.582035Z",
"url": "https://files.pythonhosted.org/packages/28/b6/d263633826725224e26b01521f853dbe2311ca09753ce5e6444ba3aa0071/cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8393d6b738fb582756e281beea78bdcd46a5a63f075bb0ff492d9eea5d8de545",
"md5": "4978f9d76832176482bd54faf52f5cea",
"sha256": "b64e939bf11cb03f75623ac8f67d2cef0abfefc51868906062759911be838e07"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4978f9d76832176482bd54faf52f5cea",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 380905,
"upload_time": "2024-12-15T13:10:35",
"upload_time_iso_8601": "2024-12-15T13:10:35.182603Z",
"url": "https://files.pythonhosted.org/packages/83/93/d6b738fb582756e281beea78bdcd46a5a63f075bb0ff492d9eea5d8de545/cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "494286f3dcab7c399d397ff4f4ee5c02739ac52b91035a7f29db0af0031726af",
"md5": "70d89f53869acd4c1718ec3529cc58cb",
"sha256": "ef4fb8846c23894c416cbfb7a6f7ea4f2bbc1c43297507a970947313f0056ad2"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "70d89f53869acd4c1718ec3529cc58cb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 384407,
"upload_time": "2024-12-15T13:10:55",
"upload_time_iso_8601": "2024-12-15T13:10:55.207107Z",
"url": "https://files.pythonhosted.org/packages/49/42/86f3dcab7c399d397ff4f4ee5c02739ac52b91035a7f29db0af0031726af/cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9738d2ea94c06e7e48440802df772f32cb2a20a70f862e01e6a77776349bd3cb",
"md5": "bbd702bf246a8be12cf7e8237da2cecb",
"sha256": "3a320d67cb58b9eb087c4f9485c311932cb901ee585e18f866ce58e655842c5e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bbd702bf246a8be12cf7e8237da2cecb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 325829,
"upload_time": "2024-12-15T13:11:27",
"upload_time_iso_8601": "2024-12-15T13:11:27.097908Z",
"url": "https://files.pythonhosted.org/packages/97/38/d2ea94c06e7e48440802df772f32cb2a20a70f862e01e6a77776349bd3cb/cliquepicking-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d144d627fcb72883425274d45cffbae095fc69ebbf68129983dd2e6c43759c9f",
"md5": "0b999e0221164e5907fb6ffcd58c964f",
"sha256": "4ef6901a6b7b899035e391683a685808fb590ce4a4d7d58f9bd68f6cc328057f"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "0b999e0221164e5907fb6ffcd58c964f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 349596,
"upload_time": "2024-12-15T13:11:12",
"upload_time_iso_8601": "2024-12-15T13:11:12.413601Z",
"url": "https://files.pythonhosted.org/packages/d1/44/d627fcb72883425274d45cffbae095fc69ebbf68129983dd2e6c43759c9f/cliquepicking-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8797ee4105aee1c830e25aaa418f6003002b088e63b60f802234aed582a2a587",
"md5": "e0464ef87025e6a33205bae931b50a21",
"sha256": "ae50903b0438a44ac9eaccd18d055b3b79394b3a9f5151b3bc196641d0d59060"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e0464ef87025e6a33205bae931b50a21",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 497119,
"upload_time": "2024-12-15T13:11:59",
"upload_time_iso_8601": "2024-12-15T13:11:59.093821Z",
"url": "https://files.pythonhosted.org/packages/87/97/ee4105aee1c830e25aaa418f6003002b088e63b60f802234aed582a2a587/cliquepicking-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "037194dfa3a7d681c4fa45dced703cfc41a0fe17b1e3ab11748b1839d2abec63",
"md5": "bbc0538ce5e9428a20c3fcea5d9d766f",
"sha256": "41d4fdbd43f7aaa302ba2a7af66083abd08033037ae9439c9b4dbc5a9f982435"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "bbc0538ce5e9428a20c3fcea5d9d766f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 584810,
"upload_time": "2024-12-15T13:12:18",
"upload_time_iso_8601": "2024-12-15T13:12:18.510207Z",
"url": "https://files.pythonhosted.org/packages/03/71/94dfa3a7d681c4fa45dced703cfc41a0fe17b1e3ab11748b1839d2abec63/cliquepicking-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a888f469e1f5e5106e1a7cb7c57c61e951ade12dff7ef2d8345b65f4fda5b29",
"md5": "0935e3d1f767b6c7057615a0afd85d00",
"sha256": "d3da3aef7560aea7ba3b0160de9515b981e2d19bc450e3a376fe32aba2f86572"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0935e3d1f767b6c7057615a0afd85d00",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 522874,
"upload_time": "2024-12-15T13:12:33",
"upload_time_iso_8601": "2024-12-15T13:12:33.819005Z",
"url": "https://files.pythonhosted.org/packages/2a/88/8f469e1f5e5106e1a7cb7c57c61e951ade12dff7ef2d8345b65f4fda5b29/cliquepicking-0.2.3-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3709ee1ba63cdf51c422afae084a7f637a303b5a5d2618d827fbf619d28f8be6",
"md5": "e7136dd967c7bb6a378349954ae80bb0",
"sha256": "2df48057c0ea2b768c76e4ba0a9fdeb781c426a31dc63afa0fc1806ba823a62c"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e7136dd967c7bb6a378349954ae80bb0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 496529,
"upload_time": "2024-12-15T13:12:50",
"upload_time_iso_8601": "2024-12-15T13:12:50.766693Z",
"url": "https://files.pythonhosted.org/packages/37/09/ee1ba63cdf51c422afae084a7f637a303b5a5d2618d827fbf619d28f8be6/cliquepicking-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa1312c1f4e43c7f529e046e5c7b421543a000ddba8fe747ecc98192631d295e",
"md5": "8ee9848e32ef10c3d24bb025b5a00c77",
"sha256": "a3e75f6189646c435fc74a7dc93c174377bdf562e24702b26027f8ea40078dfc"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "8ee9848e32ef10c3d24bb025b5a00c77",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 173026,
"upload_time": "2024-12-15T13:13:19",
"upload_time_iso_8601": "2024-12-15T13:13:19.213103Z",
"url": "https://files.pythonhosted.org/packages/fa/13/12c1f4e43c7f529e046e5c7b421543a000ddba8fe747ecc98192631d295e/cliquepicking-0.2.3-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e326597f1d2bec879d1fc8d3f03d1cc6a0b92b23d8488682cc5fccc08a95d2c",
"md5": "5e917af548cfb3488d9ef2a42a6a15c5",
"sha256": "1de7a086f64ca39c1f74ed8580362be38b11dde7c6b3981db022fc2393acecbd"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "5e917af548cfb3488d9ef2a42a6a15c5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 181527,
"upload_time": "2024-12-15T13:13:08",
"upload_time_iso_8601": "2024-12-15T13:13:08.818421Z",
"url": "https://files.pythonhosted.org/packages/8e/32/6597f1d2bec879d1fc8d3f03d1cc6a0b92b23d8488682cc5fccc08a95d2c/cliquepicking-0.2.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "27e0960f9ad11255f551ca289c2820da5fdf6e6f4fac4c24e448945a821ffc2b",
"md5": "be91866db2d796c6c1247c80f0192738",
"sha256": "a21a6c13489ad3cddbbec2c45ffa5f6221b82bee0b20a88e37ca460e6df89580"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "be91866db2d796c6c1247c80f0192738",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 290392,
"upload_time": "2024-12-15T13:11:51",
"upload_time_iso_8601": "2024-12-15T13:11:51.921272Z",
"url": "https://files.pythonhosted.org/packages/27/e0/960f9ad11255f551ca289c2820da5fdf6e6f4fac4c24e448945a821ffc2b/cliquepicking-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "69990805efff0456caa5229c94f6fdcf896242f421edb77624eb7f5ec292a0db",
"md5": "04583af7f88ee5a53b0cfa5b7102e2f9",
"sha256": "3dd38c96223b4a61d15494b4d14a4cc5de1813e9be9aa80b2336b7f201920382"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "04583af7f88ee5a53b0cfa5b7102e2f9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 281888,
"upload_time": "2024-12-15T13:11:45",
"upload_time_iso_8601": "2024-12-15T13:11:45.720331Z",
"url": "https://files.pythonhosted.org/packages/69/99/0805efff0456caa5229c94f6fdcf896242f421edb77624eb7f5ec292a0db/cliquepicking-0.2.3-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0cc24219e5363a6e314f7d9340782138440e1ffe99c899c6203fbd347c540031",
"md5": "6ca698eeb0865775f116d92c6d3fb712",
"sha256": "f8a12ae219ded39d23e91716a6b64a91d5b338404817e4e077c585ef4db386b6"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6ca698eeb0865775f116d92c6d3fb712",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 319470,
"upload_time": "2024-12-15T13:09:58",
"upload_time_iso_8601": "2024-12-15T13:09:58.875040Z",
"url": "https://files.pythonhosted.org/packages/0c/c2/4219e5363a6e314f7d9340782138440e1ffe99c899c6203fbd347c540031/cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "35acc47a144392423b72361736d93c4126be5fb9a54b869a6c97d61384e8abce",
"md5": "537cbe4c463ccc57b8310d2204bdbae1",
"sha256": "0164d88c9002e2fd92cba99b27701c2fbaea9142f89b79ee63a2608cb222aae6"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "537cbe4c463ccc57b8310d2204bdbae1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 322156,
"upload_time": "2024-12-15T13:10:20",
"upload_time_iso_8601": "2024-12-15T13:10:20.337822Z",
"url": "https://files.pythonhosted.org/packages/35/ac/c47a144392423b72361736d93c4126be5fb9a54b869a6c97d61384e8abce/cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ffa0acba787459485629cd9d1ea19a43f23d3a7f929957d184e3473a103086d1",
"md5": "41aa13b4929f21650719484333c4012f",
"sha256": "8fcfc7834d62820926cba071f5540b9ab8441547cc246bcc9996d93efcbc85d4"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "41aa13b4929f21650719484333c4012f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 381158,
"upload_time": "2024-12-15T13:10:38",
"upload_time_iso_8601": "2024-12-15T13:10:38.025136Z",
"url": "https://files.pythonhosted.org/packages/ff/a0/acba787459485629cd9d1ea19a43f23d3a7f929957d184e3473a103086d1/cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "98a4fee0e78c975c5504f335385008d0c6e8efe8f180e3adcf5f8f7be2e5287f",
"md5": "f5ededafeb4d8e63b5c6b41e7b112947",
"sha256": "bb134004e566270a4055e4b4f39f2f95eb79c6020c45d57526521303fdc858ce"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f5ededafeb4d8e63b5c6b41e7b112947",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 384599,
"upload_time": "2024-12-15T13:10:56",
"upload_time_iso_8601": "2024-12-15T13:10:56.950980Z",
"url": "https://files.pythonhosted.org/packages/98/a4/fee0e78c975c5504f335385008d0c6e8efe8f180e3adcf5f8f7be2e5287f/cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e99715435c1bfb4c6548be240025fc1fbbfcf270c2dc3ee9204099c1fcf77a1",
"md5": "c92634c8cdbab9769adc801ff32c66ec",
"sha256": "917d02e4fb5ab217f89c4d55b113bb650ebd1536b276a3cff5b73e32ce17156c"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c92634c8cdbab9769adc801ff32c66ec",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 325773,
"upload_time": "2024-12-15T13:11:31",
"upload_time_iso_8601": "2024-12-15T13:11:31.512387Z",
"url": "https://files.pythonhosted.org/packages/8e/99/715435c1bfb4c6548be240025fc1fbbfcf270c2dc3ee9204099c1fcf77a1/cliquepicking-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b7c3d747f29ff6cfca6816f8ec31781e73a919611d7b0dd6643ca124c45afbc5",
"md5": "e44a87c7cef6ee2c5bf5d79c18448226",
"sha256": "dc32d44dac6a2032f9e2e561f8bd372fe7daa12a12bd9e6141e2bb0e9f06caf5"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "e44a87c7cef6ee2c5bf5d79c18448226",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 349506,
"upload_time": "2024-12-15T13:11:14",
"upload_time_iso_8601": "2024-12-15T13:11:14.134000Z",
"url": "https://files.pythonhosted.org/packages/b7/c3/d747f29ff6cfca6816f8ec31781e73a919611d7b0dd6643ca124c45afbc5/cliquepicking-0.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3f012cdbae1a601c1ac3d3c75ea2114b4e2a249dac13ebef07877bed5616636e",
"md5": "e2cc81fc717757b22d4ca60c1ee246fd",
"sha256": "ae0a0f6daa85ab412a6cf540200626fc46245f96e918b0b29516ab8f51dfcf31"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "e2cc81fc717757b22d4ca60c1ee246fd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 497179,
"upload_time": "2024-12-15T13:12:02",
"upload_time_iso_8601": "2024-12-15T13:12:02.351856Z",
"url": "https://files.pythonhosted.org/packages/3f/01/2cdbae1a601c1ac3d3c75ea2114b4e2a249dac13ebef07877bed5616636e/cliquepicking-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b1819905d52e5a9e9a348491e2a7f25c97a96f5b6bf40f0507971521c0f6b7a9",
"md5": "4dbe571fb13673820ee061f3edba4adb",
"sha256": "9bc80aff7398ca59597dd28b97979a56363fd5a83702f1ac3083b4db79298415"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "4dbe571fb13673820ee061f3edba4adb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 584864,
"upload_time": "2024-12-15T13:12:20",
"upload_time_iso_8601": "2024-12-15T13:12:20.167123Z",
"url": "https://files.pythonhosted.org/packages/b1/81/9905d52e5a9e9a348491e2a7f25c97a96f5b6bf40f0507971521c0f6b7a9/cliquepicking-0.2.3-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "81fcdc4aa794036071360893395ded8a0108f474899145903235157b3f8dd404",
"md5": "4330eecafe8e9846d78923d28366f516",
"sha256": "f7708c143dff4d087223c398cd5eb7dc02cc7867f06f5526f31f814406cce73a"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4330eecafe8e9846d78923d28366f516",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 522773,
"upload_time": "2024-12-15T13:12:35",
"upload_time_iso_8601": "2024-12-15T13:12:35.624837Z",
"url": "https://files.pythonhosted.org/packages/81/fc/dc4aa794036071360893395ded8a0108f474899145903235157b3f8dd404/cliquepicking-0.2.3-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2566c906fecffbca15beff7d4f823de8723a7d5c8f3db271ef2e111c8ab2b719",
"md5": "67597432e6e503259838704e513cbc9c",
"sha256": "08d40ce156cfc0ac7cc0d3c0a0aa405a01e78197af0dbbad53976c2f4221bf00"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "67597432e6e503259838704e513cbc9c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 496431,
"upload_time": "2024-12-15T13:12:52",
"upload_time_iso_8601": "2024-12-15T13:12:52.394961Z",
"url": "https://files.pythonhosted.org/packages/25/66/c906fecffbca15beff7d4f823de8723a7d5c8f3db271ef2e111c8ab2b719/cliquepicking-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0f15c62da513a5fff8a78e51d89239fc3324b6d510fafe35c9b21a64035c6e1",
"md5": "b2a1c3c4493180a8681d30947400fdb5",
"sha256": "2675ce05c3267f35eced7ccd3a248ed0a1a2dcbcfd8ffd8caa318577e51bd8b0"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b2a1c3c4493180a8681d30947400fdb5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 319448,
"upload_time": "2024-12-15T13:10:01",
"upload_time_iso_8601": "2024-12-15T13:10:01.753479Z",
"url": "https://files.pythonhosted.org/packages/b0/f1/5c62da513a5fff8a78e51d89239fc3324b6d510fafe35c9b21a64035c6e1/cliquepicking-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0f45a187333fdd9a3a9c5569771e8825bb9f37e92dc3ae353c246b49c0a2fd9b",
"md5": "76ce8940e04a3c61aa8d0bd6d25aec83",
"sha256": "0298cba6144553723021587cde4c71a658081a2e911df9c221ee1a981896fdf6"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "76ce8940e04a3c61aa8d0bd6d25aec83",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 321678,
"upload_time": "2024-12-15T13:10:23",
"upload_time_iso_8601": "2024-12-15T13:10:23.144803Z",
"url": "https://files.pythonhosted.org/packages/0f/45/a187333fdd9a3a9c5569771e8825bb9f37e92dc3ae353c246b49c0a2fd9b/cliquepicking-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00199b42bf73dc70aaecad8a7b8656b2611db5cf94752cdb201c699aca5b373f",
"md5": "f6da4a3e7cd88b775311b4f5f95bb2a0",
"sha256": "7fcebac1b712620e83f3b4efe4685bf2d12901ed57a87757b87783dfcb7f3305"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f6da4a3e7cd88b775311b4f5f95bb2a0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 381099,
"upload_time": "2024-12-15T13:10:40",
"upload_time_iso_8601": "2024-12-15T13:10:40.118525Z",
"url": "https://files.pythonhosted.org/packages/00/19/9b42bf73dc70aaecad8a7b8656b2611db5cf94752cdb201c699aca5b373f/cliquepicking-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55b1bd92bcee307bd8b8088eb1a19eeed202afa659229afd48a531232566e47f",
"md5": "53aa65525e0eb95aa8b471b6b7e124fa",
"sha256": "08db9788ae23e8bd7d6e4a1a5fbd63311edc8c198991ead6d4a21f476265a0b3"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "53aa65525e0eb95aa8b471b6b7e124fa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 386874,
"upload_time": "2024-12-15T13:10:59",
"upload_time_iso_8601": "2024-12-15T13:10:59.790189Z",
"url": "https://files.pythonhosted.org/packages/55/b1/bd92bcee307bd8b8088eb1a19eeed202afa659229afd48a531232566e47f/cliquepicking-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "72915319dfa577f4b5961135851c8810dfb81405427e42f17bf2c44990d04475",
"md5": "5540d51c5771d78d595e4c5167c8ffcf",
"sha256": "e900d6ffbb546aef9c8a9ee112e1e6847e9590e34cf5f0d298b6354bcf19e235"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5540d51c5771d78d595e4c5167c8ffcf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 496910,
"upload_time": "2024-12-15T13:12:03",
"upload_time_iso_8601": "2024-12-15T13:12:03.920736Z",
"url": "https://files.pythonhosted.org/packages/72/91/5319dfa577f4b5961135851c8810dfb81405427e42f17bf2c44990d04475/cliquepicking-0.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a6b7d1fdf5b7586171860e25738319efb452a2e3623c929e153f116c4c9fccf9",
"md5": "d75e2a63ab34e04e98c2ee1134337b07",
"sha256": "041605415e27d9bee418a3a2acb693a35ab5b2b6ed639edbfde129b22547c635"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d75e2a63ab34e04e98c2ee1134337b07",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 584519,
"upload_time": "2024-12-15T13:12:22",
"upload_time_iso_8601": "2024-12-15T13:12:22.072197Z",
"url": "https://files.pythonhosted.org/packages/a6/b7/d1fdf5b7586171860e25738319efb452a2e3623c929e153f116c4c9fccf9/cliquepicking-0.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "583e11c38e5c8b685003ed0c3524158af3d41ec1a3325de1ba5227ee1635006a",
"md5": "ac25f1ec6bbfc7affa35a146d311ce29",
"sha256": "f2124ad69c2e5413d085eeef7b1463191e85f75f20f01f3c0a87bbc1607618de"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ac25f1ec6bbfc7affa35a146d311ce29",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 521786,
"upload_time": "2024-12-15T13:12:38",
"upload_time_iso_8601": "2024-12-15T13:12:38.764362Z",
"url": "https://files.pythonhosted.org/packages/58/3e/11c38e5c8b685003ed0c3524158af3d41ec1a3325de1ba5227ee1635006a/cliquepicking-0.2.3-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6ddf3796f9593ab62963a99e20e24e531da181d7d847aba05c3bbb92ea5547df",
"md5": "3b5d4045683448876371eb20ade933a9",
"sha256": "14c531d17fb570f6c09d4a62cca0297d3e02bc0ad5b49bb2b5b1d8a58c0b6bc7"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3b5d4045683448876371eb20ade933a9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 496509,
"upload_time": "2024-12-15T13:12:55",
"upload_time_iso_8601": "2024-12-15T13:12:55.139046Z",
"url": "https://files.pythonhosted.org/packages/6d/df/3796f9593ab62963a99e20e24e531da181d7d847aba05c3bbb92ea5547df/cliquepicking-0.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aeb1dd01c280b09388a481e16c0f09fb8efc1abfc808570e0c1b30a2ba96155c",
"md5": "2a151f27e0ad4b22f1411472903d7c9b",
"sha256": "41835ac6d8bde2bca0a21f66be715bbd10b61cf3ab2a350320625c4e91554613"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "2a151f27e0ad4b22f1411472903d7c9b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 320690,
"upload_time": "2024-12-15T13:10:04",
"upload_time_iso_8601": "2024-12-15T13:10:04.646761Z",
"url": "https://files.pythonhosted.org/packages/ae/b1/dd01c280b09388a481e16c0f09fb8efc1abfc808570e0c1b30a2ba96155c/cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2ea27f34d5a1fd52e99f80a109dfc960808b6a5a9389a172cbd9bdfb396025e8",
"md5": "c291597b505518274f5056d7d81f3c99",
"sha256": "9dd3e5c4260daf45342f063c11525afa4c8605a15ab3296fa5163b90d3fe91ab"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c291597b505518274f5056d7d81f3c99",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 322959,
"upload_time": "2024-12-15T13:10:24",
"upload_time_iso_8601": "2024-12-15T13:10:24.602910Z",
"url": "https://files.pythonhosted.org/packages/2e/a2/7f34d5a1fd52e99f80a109dfc960808b6a5a9389a172cbd9bdfb396025e8/cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a3cae1ec895970034fd27dc1e9dbafb2b62c1e2e1c53dd43713744e6575643bd",
"md5": "04f42a2889ea04b7850b99b718fa8e8b",
"sha256": "b0173a9695cd3e48c10c19dcb73205248ab93fca079d6769a0a3723c0a5a5a55"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "04f42a2889ea04b7850b99b718fa8e8b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 380900,
"upload_time": "2024-12-15T13:10:41",
"upload_time_iso_8601": "2024-12-15T13:10:41.685632Z",
"url": "https://files.pythonhosted.org/packages/a3/ca/e1ec895970034fd27dc1e9dbafb2b62c1e2e1c53dd43713744e6575643bd/cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7b9ee95b995b78748cea88411df0dca75567e4804527e5cc26f55d04d2defcad",
"md5": "dbe31e8119e13d0a6f4735bafc6fba21",
"sha256": "f7cb669ee70785c533ecac96051bc49628f4272e532eadf11613c0f552e9c05c"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "dbe31e8119e13d0a6f4735bafc6fba21",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 386880,
"upload_time": "2024-12-15T13:11:01",
"upload_time_iso_8601": "2024-12-15T13:11:01.381067Z",
"url": "https://files.pythonhosted.org/packages/7b/9e/e95b995b78748cea88411df0dca75567e4804527e5cc26f55d04d2defcad/cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b59d676a20c8a2f9bd52e2e020d86c5d2b7ba57306d3960a3137a344b1a47ec",
"md5": "76c614925dbc4dce588866cef014814d",
"sha256": "24e9276538fcd472e98c9dbffbdd05b3d960542fc466b1bcfe9d0de1b1d5e4fa"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "76c614925dbc4dce588866cef014814d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 327480,
"upload_time": "2024-12-15T13:11:33",
"upload_time_iso_8601": "2024-12-15T13:11:33.692411Z",
"url": "https://files.pythonhosted.org/packages/9b/59/d676a20c8a2f9bd52e2e020d86c5d2b7ba57306d3960a3137a344b1a47ec/cliquepicking-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2652c8c38508162b34451db387dcdb94f972cc6edf24d7252fe177a34a94d93f",
"md5": "b80037ab102764bf8fe2bacdc1d19985",
"sha256": "581ec35a5bd6d1752466e64caa35c45383bc7b382e8e958a4880f4c61ef527ab"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "b80037ab102764bf8fe2bacdc1d19985",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 350442,
"upload_time": "2024-12-15T13:11:16",
"upload_time_iso_8601": "2024-12-15T13:11:16.762828Z",
"url": "https://files.pythonhosted.org/packages/26/52/c8c38508162b34451db387dcdb94f972cc6edf24d7252fe177a34a94d93f/cliquepicking-0.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3cee38c064805fe68fc1596c653eadfcaed835a5d3a689bf121acab302aa1d8c",
"md5": "649c6d8914527aa54861f7d405479185",
"sha256": "f8af5bd6a596e6879e5050c33c0480e3d898d50c21f4f765e429078e6f34b266"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "649c6d8914527aa54861f7d405479185",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 498289,
"upload_time": "2024-12-15T13:12:06",
"upload_time_iso_8601": "2024-12-15T13:12:06.789074Z",
"url": "https://files.pythonhosted.org/packages/3c/ee/38c064805fe68fc1596c653eadfcaed835a5d3a689bf121acab302aa1d8c/cliquepicking-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e69d2edb272addbd02f6de1e2d3b333dc814c7c0123ead99498df4596fe495d",
"md5": "60659d80bb685e71fa963bbbba683651",
"sha256": "57d75aa5de9b209d373db5ca8788c05b8a1098bbf13674dddce059c32b1af3de"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "60659d80bb685e71fa963bbbba683651",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 585709,
"upload_time": "2024-12-15T13:12:23",
"upload_time_iso_8601": "2024-12-15T13:12:23.741080Z",
"url": "https://files.pythonhosted.org/packages/6e/69/d2edb272addbd02f6de1e2d3b333dc814c7c0123ead99498df4596fe495d/cliquepicking-0.2.3-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c19a4a1f78e88f453e3d6087a7a23ae526449672536de03b5669578a92671eef",
"md5": "b6847f47626c63e620b63ed3c27a47fe",
"sha256": "b55e4af17bb32e03139a3cbd2f3787d181900ea969dc27603606e8ddbebe0ef5"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b6847f47626c63e620b63ed3c27a47fe",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 523848,
"upload_time": "2024-12-15T13:12:40",
"upload_time_iso_8601": "2024-12-15T13:12:40.386721Z",
"url": "https://files.pythonhosted.org/packages/c1/9a/4a1f78e88f453e3d6087a7a23ae526449672536de03b5669578a92671eef/cliquepicking-0.2.3-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "816772c041dbf0947bb7a285b4caacd15e2f74e7c080923d827b153fd2030540",
"md5": "158eb2312a8d01379ff21614e6ec6dda",
"sha256": "3a9886c7bcfe9eb16c9c5a66011babe66fdeafbaa33a8cb2ad618ff55a22adb4"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "158eb2312a8d01379ff21614e6ec6dda",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 498213,
"upload_time": "2024-12-15T13:12:56",
"upload_time_iso_8601": "2024-12-15T13:12:56.864020Z",
"url": "https://files.pythonhosted.org/packages/81/67/72c041dbf0947bb7a285b4caacd15e2f74e7c080923d827b153fd2030540/cliquepicking-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5968ba99cac35e94b282a0bf38b795fe566a386295a7ffaf4e4db37ae527ca10",
"md5": "af667edcba913d89140f94b44c6a80e0",
"sha256": "f1a496709cb894a943079fd5f4a8bc6d52707d9c5283467db2de7470f4507f60"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "af667edcba913d89140f94b44c6a80e0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 173761,
"upload_time": "2024-12-15T13:13:20",
"upload_time_iso_8601": "2024-12-15T13:13:20.720877Z",
"url": "https://files.pythonhosted.org/packages/59/68/ba99cac35e94b282a0bf38b795fe566a386295a7ffaf4e4db37ae527ca10/cliquepicking-0.2.3-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "15dd4c250045ac574a60866b8e08e9e067b050dfbe9ea29024688be1fc3f5b74",
"md5": "6a5ba592a06c2ff80f7a5e8566059f5e",
"sha256": "367973fbfb4359ba9e1e6c9ae4478ebb34b3bb1107e2455de871e299b3e9bf3a"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "6a5ba592a06c2ff80f7a5e8566059f5e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 182503,
"upload_time": "2024-12-15T13:13:10",
"upload_time_iso_8601": "2024-12-15T13:13:10.455641Z",
"url": "https://files.pythonhosted.org/packages/15/dd/4c250045ac574a60866b8e08e9e067b050dfbe9ea29024688be1fc3f5b74/cliquepicking-0.2.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9d322d50e791e0a7dfb2e4590ef86a6ab690451adbc2d88d2ad120a5e4ed69e",
"md5": "de13492d3865546fddcba73cc0aaf090",
"sha256": "3ba65bba48a2b97e189f00220122889cdb0e3d80c9de8881dc6948f1ab7b1cb7"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "de13492d3865546fddcba73cc0aaf090",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 320981,
"upload_time": "2024-12-15T13:10:06",
"upload_time_iso_8601": "2024-12-15T13:10:06.328571Z",
"url": "https://files.pythonhosted.org/packages/b9/d3/22d50e791e0a7dfb2e4590ef86a6ab690451adbc2d88d2ad120a5e4ed69e/cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "97bd9f0ffa7fccebd5720b03f8fcd903462ebadbac80814f208038164d9778f2",
"md5": "572ede699ceb726cda8c21dadbf7c08b",
"sha256": "7e24888563dda0f6fc11123dd2db5ba1dcc63577bf954d37562718ff829de780"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "572ede699ceb726cda8c21dadbf7c08b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 323451,
"upload_time": "2024-12-15T13:10:26",
"upload_time_iso_8601": "2024-12-15T13:10:26.069050Z",
"url": "https://files.pythonhosted.org/packages/97/bd/9f0ffa7fccebd5720b03f8fcd903462ebadbac80814f208038164d9778f2/cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0997afb6f875d13d02d2b3dbc5905506840d0fe65677b69558afa42b880fd7e3",
"md5": "05f8796826ac8ea2ae3f87aa2dff0a91",
"sha256": "cd24159d145b5c7fc0f228a10f0c2fa9cf2b00ca52d507f1f2e01139eeb6b99f"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "05f8796826ac8ea2ae3f87aa2dff0a91",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 381229,
"upload_time": "2024-12-15T13:10:43",
"upload_time_iso_8601": "2024-12-15T13:10:43.655537Z",
"url": "https://files.pythonhosted.org/packages/09/97/afb6f875d13d02d2b3dbc5905506840d0fe65677b69558afa42b880fd7e3/cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e02bf224251928798e70de40653202b05429708ebfa0009900df5764257e7931",
"md5": "4e168b3016c568f7235afc501608cfad",
"sha256": "363f6374c6018d97f3bf60fbeb0d22c0d32d9fa7aae35852540dfdeaa000468b"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "4e168b3016c568f7235afc501608cfad",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 387262,
"upload_time": "2024-12-15T13:11:02",
"upload_time_iso_8601": "2024-12-15T13:11:02.878220Z",
"url": "https://files.pythonhosted.org/packages/e0/2b/f224251928798e70de40653202b05429708ebfa0009900df5764257e7931/cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c1b22ec4f2b543ea29aca1e4fe8c3b8e2fd42812931118ea428a2c1c7c33204",
"md5": "935b44eabc3f904f53166c6e36fed4ab",
"sha256": "38d6934d5ef59ab5928de0814951bc09eed6da6b26528cc350a4cbd56f3e12db"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "935b44eabc3f904f53166c6e36fed4ab",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 327613,
"upload_time": "2024-12-15T13:11:37",
"upload_time_iso_8601": "2024-12-15T13:11:37.292973Z",
"url": "https://files.pythonhosted.org/packages/4c/1b/22ec4f2b543ea29aca1e4fe8c3b8e2fd42812931118ea428a2c1c7c33204/cliquepicking-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8afd27b9e28c9f4133bbcfe5b9b91d62737c041d50330b86241bce388ac6ebe2",
"md5": "69f6359eb613e1c65bf8266de746d734",
"sha256": "4d70fe7d5276c1227ce769d5f1923ea5d31ade9df5000247e8515840e85d50ac"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "69f6359eb613e1c65bf8266de746d734",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 350386,
"upload_time": "2024-12-15T13:11:19",
"upload_time_iso_8601": "2024-12-15T13:11:19.395782Z",
"url": "https://files.pythonhosted.org/packages/8a/fd/27b9e28c9f4133bbcfe5b9b91d62737c041d50330b86241bce388ac6ebe2/cliquepicking-0.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d0ff6bd596149785e4f43e19e376638b4a21bc1dd4849b8afe643cfcd9360fd",
"md5": "11eb0787c621044d349acfb7416af927",
"sha256": "d0b50bbcb0d5a9801a488100a25b4dc67e7041c14f0c92d86730b51c6d1d81d2"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "11eb0787c621044d349acfb7416af927",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 498419,
"upload_time": "2024-12-15T13:12:09",
"upload_time_iso_8601": "2024-12-15T13:12:09.158191Z",
"url": "https://files.pythonhosted.org/packages/3d/0f/f6bd596149785e4f43e19e376638b4a21bc1dd4849b8afe643cfcd9360fd/cliquepicking-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b57b84414c63dbaad21f949a50765c5434871e0105b05462cfa2b05d66d46ce",
"md5": "1f83090d0d24e52ebb61ccbf45989762",
"sha256": "8d9c86b0e16f2fb6ab2d584936a353c93456542ec000c59d31bdc65291136409"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "1f83090d0d24e52ebb61ccbf45989762",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 586295,
"upload_time": "2024-12-15T13:12:25",
"upload_time_iso_8601": "2024-12-15T13:12:25.509727Z",
"url": "https://files.pythonhosted.org/packages/9b/57/b84414c63dbaad21f949a50765c5434871e0105b05462cfa2b05d66d46ce/cliquepicking-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b85b16f35a864cb0add79442a7dc42c7353271d7e754f8aa54feae0070817cd",
"md5": "c76354a8a3dd883aa7706fa1d923d507",
"sha256": "c5064e97db0eae296ec740fa4f21e826380f36d75dbdb5119001262722cc3388"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c76354a8a3dd883aa7706fa1d923d507",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 524345,
"upload_time": "2024-12-15T13:12:42",
"upload_time_iso_8601": "2024-12-15T13:12:42.117945Z",
"url": "https://files.pythonhosted.org/packages/1b/85/b16f35a864cb0add79442a7dc42c7353271d7e754f8aa54feae0070817cd/cliquepicking-0.2.3-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "54d5531f096a1656286f181eef230f287b6569ccec157deae25c11f28f029916",
"md5": "f5963fe33bc84233fe712a914eed03fa",
"sha256": "3a0f8b97753b3d1c2d1e167e48466f060340ff890c9cd9725173b9414f9abaac"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f5963fe33bc84233fe712a914eed03fa",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 498388,
"upload_time": "2024-12-15T13:12:58",
"upload_time_iso_8601": "2024-12-15T13:12:58.552180Z",
"url": "https://files.pythonhosted.org/packages/54/d5/531f096a1656286f181eef230f287b6569ccec157deae25c11f28f029916/cliquepicking-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4cc2afcebf7e27b8699712e13b0d7fe5e595251819065f2c7e868bc1a9bb930",
"md5": "154f5821f2d67267231c4fd0494c2a87",
"sha256": "bbd9e2bf112d3f5a25ad4a6ff99a18202f90b3138dea7ace23c7f42f927e2e5e"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "154f5821f2d67267231c4fd0494c2a87",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 174073,
"upload_time": "2024-12-15T13:13:22",
"upload_time_iso_8601": "2024-12-15T13:13:22.931512Z",
"url": "https://files.pythonhosted.org/packages/b4/cc/2afcebf7e27b8699712e13b0d7fe5e595251819065f2c7e868bc1a9bb930/cliquepicking-0.2.3-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f590bdb7414f8e9b6c9f3b7d15886f2082f532b1853d707360aa5091f03625c8",
"md5": "73c2f367ea5e099ed8cf076a90f2d545",
"sha256": "5dd43c84086f3a59a45897d72d564d589f668556de92f8af091b5a46b07361d3"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "73c2f367ea5e099ed8cf076a90f2d545",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 182711,
"upload_time": "2024-12-15T13:13:12",
"upload_time_iso_8601": "2024-12-15T13:13:12.938618Z",
"url": "https://files.pythonhosted.org/packages/f5/90/bdb7414f8e9b6c9f3b7d15886f2082f532b1853d707360aa5091f03625c8/cliquepicking-0.2.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "946321f8f8e845d6b6c83d79cdfc3348d29e9ecb57d2d016ef1f5639a1b52d5c",
"md5": "5dc17a4d8abfac42f5a64569261a001c",
"sha256": "7ee0c307b91ca93828ca0d2666fabcbffeefc55dce463fafeec43643c4932ed9"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "5dc17a4d8abfac42f5a64569261a001c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 321747,
"upload_time": "2024-12-15T13:10:09",
"upload_time_iso_8601": "2024-12-15T13:10:09.833802Z",
"url": "https://files.pythonhosted.org/packages/94/63/21f8f8e845d6b6c83d79cdfc3348d29e9ecb57d2d016ef1f5639a1b52d5c/cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30519d0e31c8304b50ccec58709b25290e38a9c93774e45122d49e836900e5de",
"md5": "49337404471b9803e10daccd84f6f562",
"sha256": "db674958a0100f1c008ea60f1b7b6b703537694cfbf16164fcbbe9410cdb9643"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "49337404471b9803e10daccd84f6f562",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 323753,
"upload_time": "2024-12-15T13:10:27",
"upload_time_iso_8601": "2024-12-15T13:10:27.731271Z",
"url": "https://files.pythonhosted.org/packages/30/51/9d0e31c8304b50ccec58709b25290e38a9c93774e45122d49e836900e5de/cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62e95d7882673d9499f539d937769cbaa1e9d1586da2aa370134861dd52d2a85",
"md5": "8eb7413e78925ed65adc1d6976271fd5",
"sha256": "bdb2e5d844725c29fb093555519bff71e93681f8425ffc1324f0472347a2473c"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8eb7413e78925ed65adc1d6976271fd5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 382353,
"upload_time": "2024-12-15T13:10:46",
"upload_time_iso_8601": "2024-12-15T13:10:46.320718Z",
"url": "https://files.pythonhosted.org/packages/62/e9/5d7882673d9499f539d937769cbaa1e9d1586da2aa370134861dd52d2a85/cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e65a8245e680e8622fc693abaf5a25151ddcbfaf527994c0e56262dc5dceac19",
"md5": "5bc8ae5b2aaf5489599917f091773433",
"sha256": "68cd16fe36e4870c8cd26939ec699cd27876541a077a27514dda103babb177f7"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5bc8ae5b2aaf5489599917f091773433",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 387838,
"upload_time": "2024-12-15T13:11:04",
"upload_time_iso_8601": "2024-12-15T13:11:04.661432Z",
"url": "https://files.pythonhosted.org/packages/e6/5a/8245e680e8622fc693abaf5a25151ddcbfaf527994c0e56262dc5dceac19/cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7d0c3e4a29d93842859106d59a26b07c5044ec9f623cc715af1cb773f4b72a4",
"md5": "e18fcf1a997330026bdac9421a0c1286",
"sha256": "979bd452e9a904856eb45d600ed1dd9beffcdc95d748d7c12922ac69ed15a84b"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e18fcf1a997330026bdac9421a0c1286",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 328418,
"upload_time": "2024-12-15T13:11:38",
"upload_time_iso_8601": "2024-12-15T13:11:38.859491Z",
"url": "https://files.pythonhosted.org/packages/c7/d0/c3e4a29d93842859106d59a26b07c5044ec9f623cc715af1cb773f4b72a4/cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3329e76933f2c2037750cdd765f5f32056c9ee3c254102ec2daeac03843c1e5e",
"md5": "193d6190cc72b91b0ff201abf018ce79",
"sha256": "2593a4d078828dcdc6b4dce2fc3beaba2b1896b825cf9201121007e1f4060511"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "193d6190cc72b91b0ff201abf018ce79",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 351483,
"upload_time": "2024-12-15T13:11:21",
"upload_time_iso_8601": "2024-12-15T13:11:21.220052Z",
"url": "https://files.pythonhosted.org/packages/33/29/e76933f2c2037750cdd765f5f32056c9ee3c254102ec2daeac03843c1e5e/cliquepicking-0.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "900e614c5c64069fc621cd85f54e16427bb83b73667112984443c05292a0c02c",
"md5": "9b56c72e8d4f523f01bd5b07e54140ad",
"sha256": "b5264cf9305b7516414a275d158b14a738e8a64671eff3c71230ab8c6ee8c8f9"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9b56c72e8d4f523f01bd5b07e54140ad",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 499266,
"upload_time": "2024-12-15T13:12:10",
"upload_time_iso_8601": "2024-12-15T13:12:10.904552Z",
"url": "https://files.pythonhosted.org/packages/90/0e/614c5c64069fc621cd85f54e16427bb83b73667112984443c05292a0c02c/cliquepicking-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbc201e3679dc0c95f2de429989136f60dc19da60ac19a0da008145c95718ecd",
"md5": "469bae11707777f2bcc106ba155457f1",
"sha256": "5f49d92e0e60441d7d9e4138a69424ffdab13481404aeba2f583f94af7a6f8bc"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "469bae11707777f2bcc106ba155457f1",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 586479,
"upload_time": "2024-12-15T13:12:27",
"upload_time_iso_8601": "2024-12-15T13:12:27.209195Z",
"url": "https://files.pythonhosted.org/packages/cb/c2/01e3679dc0c95f2de429989136f60dc19da60ac19a0da008145c95718ecd/cliquepicking-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "12c8e7fd5f0ba74bdfe10c307019d1c8df713128e06ca7891286af09796e9eb7",
"md5": "fb4390688167045e0036c815efadfeba",
"sha256": "56e2a92ffbde3d8a51a6ddc0b94e8a047394afbae73da555009b55a8ba90906c"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "fb4390688167045e0036c815efadfeba",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 524384,
"upload_time": "2024-12-15T13:12:43",
"upload_time_iso_8601": "2024-12-15T13:12:43.706295Z",
"url": "https://files.pythonhosted.org/packages/12/c8/e7fd5f0ba74bdfe10c307019d1c8df713128e06ca7891286af09796e9eb7/cliquepicking-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f69ccc057e045decbb6275166b7c67d52826c80c2b46111960b06bad96a913cf",
"md5": "9339562bb4147035372fcecb4bda6f30",
"sha256": "81e0a5a523be0ef2d1ff904ae129f4b04567ef099394c214669c410b6d734f3c"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9339562bb4147035372fcecb4bda6f30",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 499090,
"upload_time": "2024-12-15T13:13:00",
"upload_time_iso_8601": "2024-12-15T13:13:00.269684Z",
"url": "https://files.pythonhosted.org/packages/f6/9c/cc057e045decbb6275166b7c67d52826c80c2b46111960b06bad96a913cf/cliquepicking-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "26ef6422db5fa58800e17b1db0575f4b6607e4ea9c12607973e595919a855695",
"md5": "a06d3dbc2a34f2f9a5a33a8d387b7811",
"sha256": "1e2f43f8f65dcf1d866066f37abf19246d5e91d28679a2e3f18b500653e612f5"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a06d3dbc2a34f2f9a5a33a8d387b7811",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 321646,
"upload_time": "2024-12-15T13:10:12",
"upload_time_iso_8601": "2024-12-15T13:10:12.789045Z",
"url": "https://files.pythonhosted.org/packages/26/ef/6422db5fa58800e17b1db0575f4b6607e4ea9c12607973e595919a855695/cliquepicking-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c848c38fecbcc88638134912fc3d83a0ef2fea317d4f151fef036617147abfe9",
"md5": "740cb9d6a27d87882431ffc5a6932dfa",
"sha256": "c96569029a94f877b3c85a2a00d939ef373b36c91f379d9f6aa54417356823ed"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "740cb9d6a27d87882431ffc5a6932dfa",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 323739,
"upload_time": "2024-12-15T13:10:30",
"upload_time_iso_8601": "2024-12-15T13:10:30.304039Z",
"url": "https://files.pythonhosted.org/packages/c8/48/c38fecbcc88638134912fc3d83a0ef2fea317d4f151fef036617147abfe9/cliquepicking-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00f7284b91f8073827bf7662cc5a9fa2388c37f0935874d0c8ab2f864e4cfdf0",
"md5": "f9b0162bc303a40d04988f1fec61f00c",
"sha256": "82dd4b771b079868cba55ce360391fc492b2e0d5d9d196f7ae658072b3f2c815"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "f9b0162bc303a40d04988f1fec61f00c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 382666,
"upload_time": "2024-12-15T13:10:47",
"upload_time_iso_8601": "2024-12-15T13:10:47.805416Z",
"url": "https://files.pythonhosted.org/packages/00/f7/284b91f8073827bf7662cc5a9fa2388c37f0935874d0c8ab2f864e4cfdf0/cliquepicking-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f721ce36173619b31c7582c11bc70f0025c220fda9956543fc65ebd5cb3fa781",
"md5": "768315707fa30f62cc8a052319184441",
"sha256": "fd652bf7c9290e445c372577c3df3f266c3950d04ce7a9879a034ca1435cbccb"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "768315707fa30f62cc8a052319184441",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 388154,
"upload_time": "2024-12-15T13:11:07",
"upload_time_iso_8601": "2024-12-15T13:11:07.314465Z",
"url": "https://files.pythonhosted.org/packages/f7/21/ce36173619b31c7582c11bc70f0025c220fda9956543fc65ebd5cb3fa781/cliquepicking-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "875e40a2cce1fbe0eec3b8dcb94af8cd2914a0e133b17ef55fdb10a0d864c1e2",
"md5": "182ceb2b22dff8dab7c92f9fcf888562",
"sha256": "335996c60e95ce2461e32a8415934e3d147f34c94704d35609562adbed4fd000"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "182ceb2b22dff8dab7c92f9fcf888562",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 499150,
"upload_time": "2024-12-15T13:12:12",
"upload_time_iso_8601": "2024-12-15T13:12:12.519853Z",
"url": "https://files.pythonhosted.org/packages/87/5e/40a2cce1fbe0eec3b8dcb94af8cd2914a0e133b17ef55fdb10a0d864c1e2/cliquepicking-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "941d68460e9999ede08bba80728e0888477bb55f900f1f34375315c5b8a25442",
"md5": "b341dfd3342cd022b62a3b182357832c",
"sha256": "bfcb26ea389aab9a86bfdc5715726a2567b4eaa528b029b41d59f460ddf992d5"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b341dfd3342cd022b62a3b182357832c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 586566,
"upload_time": "2024-12-15T13:12:29",
"upload_time_iso_8601": "2024-12-15T13:12:29.031021Z",
"url": "https://files.pythonhosted.org/packages/94/1d/68460e9999ede08bba80728e0888477bb55f900f1f34375315c5b8a25442/cliquepicking-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6f1b67c17e0ab99b11caca421a7d824311539c1cf38f5b6c8bccbb6d1ddcab68",
"md5": "c7fe6837cf90f786317953ac223bde28",
"sha256": "d97cffef42d05ba7866dff889a9b37bd8afc5f115d7918319be473494f5ff3ce"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c7fe6837cf90f786317953ac223bde28",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 524679,
"upload_time": "2024-12-15T13:12:45",
"upload_time_iso_8601": "2024-12-15T13:12:45.256925Z",
"url": "https://files.pythonhosted.org/packages/6f/1b/67c17e0ab99b11caca421a7d824311539c1cf38f5b6c8bccbb6d1ddcab68/cliquepicking-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8945dbc8cc865d861f8c6cfe260d79ec2fd87fd0c385d9ea69d309e607b0cde3",
"md5": "99f86b275eaf5e4ca5798cab64ef6ac0",
"sha256": "26275b4d1c3072fead4eba635df401ec822358b06a0f70758533790a1d190e2d"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "99f86b275eaf5e4ca5798cab64ef6ac0",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 498934,
"upload_time": "2024-12-15T13:13:02",
"upload_time_iso_8601": "2024-12-15T13:13:02.936471Z",
"url": "https://files.pythonhosted.org/packages/89/45/dbc8cc865d861f8c6cfe260d79ec2fd87fd0c385d9ea69d309e607b0cde3/cliquepicking-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "062cd362a626b9ac65e7d2b9c499bd09ce871a02e16cce4f43194584364618af",
"md5": "0dbcac30cb106829669723eb771f92c9",
"sha256": "288c563e045d479d777da5cb062df108a077e87d6bd244a6ad34fe5d1e3227f4"
},
"downloads": -1,
"filename": "cliquepicking-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "0dbcac30cb106829669723eb771f92c9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 17092,
"upload_time": "2024-12-15T13:13:04",
"upload_time_iso_8601": "2024-12-15T13:13:04.440256Z",
"url": "https://files.pythonhosted.org/packages/06/2c/d362a626b9ac65e7d2b9c499bd09ce871a02e16cce4f43194584364618af/cliquepicking-0.2.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-15 13:13:04",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "cliquepicking"
}