GraKeL


NameGraKeL JSON
Version 0.1.10 PyPI version JSON
download
home_page
SummaryA scikit-learn compatible library for graph kernels
upload_time2023-10-27 10:15:14
maintainer
docs_urlNone
author
requires_python>=3.5
licenseNew BSD License Copyright (c) 2018- The grakel developers. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: a. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. b. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. c. Neither the name of the Scikit-learn Developers nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords
VCS
bugtrack_url
requirements numpy cython scikit-learn six future joblib
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <img width="50%" src="https://raw.githubusercontent.com/ysig/GraKeL/0.1a7/doc/_figures/logo.svg?sanitize=true" />
</p>

--------------------------------------------------------------------------------

[![Pypi Versions](https://img.shields.io/pypi/pyversions/grakel.svg)](https://pypi.org/pypi/grakel/)
[![Coverage Status](https://codecov.io/gh/ysig/GraKeL/branch/master/graph/badge.svg)](https://codecov.io/gh/ysig/GraKeL)
[![CircleCI Status](https://circleci.com/gh/ysig/GraKeL.svg?style=svg)](https://circleci.com/gh/ysig/GraKeL)

**[Documentation](https://ysig.github.io/GraKeL/)** | **[Paper](http://jmlr.org/papers/volume21/18-370/18-370.pdf)**

*GraKeL* is a library that provides implementations of several well-established graph kernels. The library unifies these kernels into a common framework. Furthermore, it provides implementations of some frameworks that work on top of graph kernels. Specifically, GraKeL contains 16 kernels and 2 frameworks. The library is compatible with the [scikit-learn](http://scikit-learn.org/) pipeline allowing easy and fast integration inside machine learning algorithms.

--------------------------------------------------------------------------------

In detail, the following kernels and frameworks are currently implemented:

* **[Vertex histogram kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.VertexHistogram.html)**
* **[Edge histogram kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.EdgeHistogram.html)**
* **[Shortest path kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.ShortestPath.html)** from Borgwardt and Kriegel: [Shortest-path kernels on graphs](https://www.dbs.ifi.lmu.de/~borgward/papers/BorKri05.pdf) (ICDM 2005)
* **[Graphlet kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.GraphletSampling.html)** from Shervashidze *et al.*: [Efficient graphlet kernels for large graph comparison](http://proceedings.mlr.press/v5/shervashidze09a/shervashidze09a.pdf) (AISTATS 2009)
* **[Random walk kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.RandomWalk.html)** from Vishwanathan *et al.*: [Graph Kernels](http://www.jmlr.org/papers/volume11/vishwanathan10a/vishwanathan10a.pdf) (JMLR 11(Apr))
* **[Neighborhood hash graph kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.NeighborhoodHash.html)** from Hido and Kashima: [A Linear-time Graph Kernel](https://ieeexplore.ieee.org/abstract/document/5360243) (ICDM 2009)
* **[Weisfeiler-Lehman framework](https://ysig.github.io/GraKeL/latest/generated/grakel.WeisfeilerLehman.html)** from Shervashidze *et al.*: [Weisfeiler-Lehman Graph Kernels](http://www.jmlr.org/papers/volume12/shervashidze11a/shervashidze11a.pdf) (JMLR 12(Sep))
* **[Neighborhood subgraph pairwise distance kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.NeighborhoodSubgraphPairwiseDistance.html)** from Costa and De Grave: [Fast Neighborhood Subgraph Pairwise Distance Kernel](https://pdfs.semanticscholar.org/7a10/f6a406b664d1159e7c4fefbdd6ac275aee53.pdf) (ICML 2010)
* **[Lovasz-theta kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.LovaszTheta.html)** from Johansson *et al.*: [Global graph kernels using geometric embeddings](http://proceedings.mlr.press/v32/johansson14.pdf) (ICML 2014)
* **[SVM-theta kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.SvmTheta.html)** from Johansson *et al.*: [Global graph kernels using geometric embeddings](http://proceedings.mlr.press/v32/johansson14.pdf) (ICML 2014)
* **[Ordered decompositional DAG kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.OddSth.html)** from Da San Martino *et al.*: [A Tree-Based Kernel for Graphs](https://pdfs.semanticscholar.org/69ee/18dd7a214d4d656b5b95742212f050dabeac.pdf) (SDM 2012)
* **[GraphHopper kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.GraphHopper.html)** from Feragen *et al.*: [Scalable kernels for graphs with continuous attributes](https://papers.nips.cc/paper/5155-scalable-kernels-for-graphs-with-continuous-attributes.pdf) (NIPS 2013)
* **[Propagation kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.Propagation.html)** from Neumann *et al.*: [Propagation kernels: efficient graph kernels from propagated information](https://link.springer.com/content/pdf/10.1007/s10994-015-5517-9.pdf) (Machine Learning 102(2))
* **[Pyramid match kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.PyramidMatch.html)** from Nikolentzos *et al.*: [Matching Node Embeddings for Graph Similarity](https://www.aaai.org/ocs/index.php/AAAI/AAAI17/paper/view/14494/14426) (AAAI 2017)
* **[Subgraph matching kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.SubgraphMatching.html)** from Kriege and Mutzel: [Subgraph Matching Kernels for Attributed Graphs](https://arxiv.org/ftp/arxiv/papers/1206/1206.6483.pdf) (ICML 2012)
* **[Multiscale Laplacian kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.MultiscaleLaplacian.html)** from Kondor and Pan: [The Multiscale Laplacian Graph Kernel](https://papers.nips.cc/paper/6135-the-multiscale-laplacian-graph-kernel.pdf) (NIPS 2016)
* **[Core framework](https://ysig.github.io/GraKeL/latest/generated/grakel.CoreFramework.html)** from Nikolentzos *et al.*: [A Degeneracy Framework for Graph Similarity](https://www.ijcai.org/proceedings/2018/0360.pdf) (IJCAI 2018)
* **[Weisfeiler-Lehman optimal assignment kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.WeisfeilerLehmanOptimalAssignment.html)** from Kriege *et al.*: [On Valid Optimal Assignment Kernels and Applications to Graph Classification](http://papers.nips.cc/paper/6166-on-valid-optimal-assignment-kernels-and-applications-to-graph-classification.pdf) (NIPS 2016)

--------------------------------------------------------------------------------

To learn how to install and use GraKeL, and to find out more about the implemented kernels and frameworks, please read our [documentation](https://ysig.github.io/GraKeL/). To learn about the functionality of the library and about example applications, check out our [examples](https://github.com/ysig/GraKeL/tree/master/examples) in the `examples/` directory and our [tutorials](https://github.com/ysig/GraKeL/tree/master/tutorials) in the `tutorials/` directory.

In case you find a bug, please open an [issue](https://github.com/ysig/GraKeL/issues). To propose a new kernel, you can open a [feature request](https://github.com/ysig/GraKeL/issues).

## Installation

The GraKeL library requires the following packages to be installed:

* Python (>=2.7, >=3.5)
* NumPy (>=1.8.2)
* SciPy (>=0.13.3)
* Cython (>=0.27.3)
* cvxopt (>=1.2.0) [optional]
* future (>=0.16.0) (for python 2.7)

To install the package, run:

```sh
$ pip install grakel
```

## Running tests

To test the package, execute:
```sh
$ pytest
```

## Running examples

```
$ cd examples
$ python shortest_path.py
```

## Cite

If you use GraKeL in a scientific publication, please cite our paper (http://jmlr.org/papers/volume21/18-370/18-370.pdf):

```bibtex
@article{JMLR:v21:18-370,
  author  = {Giannis Siglidis and Giannis Nikolentzos and Stratis Limnios and Christos Giatsidis and Konstantinos Skianis and Michalis Vazirgiannis},
  title   = {GraKeL: A Graph Kernel Library in Python},
  journal = {Journal of Machine Learning Research},
  year    = {2020},
  volume  = {21},
  number  = {54},
  pages   = {1-5}
}
```

## License

GraKeL is distributed under the __BSD 3-clause__ license. The library makes use of the C++ source code of [BLISS](http://www.tcs.hut.fi/Software/bliss) (a tool for computing automorphism groups and canonical labelings of graphs) which is __LGPL__ licensed. Futhermore, the [cvxopt](https://cvxopt.org/) package (a software package for convex optimization) which is an optional dependency of GraKeL is __GPL__ licensed.

## Acknowledgements

We would like to thank [@eddiebergman](https://github.com/eddiebergman) for modernizing our CI and extending our python support.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "GraKeL",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Ioannis-Siglidis <y.siglidis@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/7d/8a/e6b4d4bcb1e34c91248675984ee1ebb96e57a2254f955dfde8fd1da5043a/GraKeL-0.1.10.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <img width=\"50%\" src=\"https://raw.githubusercontent.com/ysig/GraKeL/0.1a7/doc/_figures/logo.svg?sanitize=true\" />\n</p>\n\n--------------------------------------------------------------------------------\n\n[![Pypi Versions](https://img.shields.io/pypi/pyversions/grakel.svg)](https://pypi.org/pypi/grakel/)\n[![Coverage Status](https://codecov.io/gh/ysig/GraKeL/branch/master/graph/badge.svg)](https://codecov.io/gh/ysig/GraKeL)\n[![CircleCI Status](https://circleci.com/gh/ysig/GraKeL.svg?style=svg)](https://circleci.com/gh/ysig/GraKeL)\n\n**[Documentation](https://ysig.github.io/GraKeL/)** | **[Paper](http://jmlr.org/papers/volume21/18-370/18-370.pdf)**\n\n*GraKeL* is a library that provides implementations of several well-established graph kernels. The library unifies these kernels into a common framework. Furthermore, it provides implementations of some frameworks that work on top of graph kernels. Specifically, GraKeL contains 16 kernels and 2 frameworks. The library is compatible with the [scikit-learn](http://scikit-learn.org/) pipeline allowing easy and fast integration inside machine learning algorithms.\n\n--------------------------------------------------------------------------------\n\nIn detail, the following kernels and frameworks are currently implemented:\n\n* **[Vertex histogram kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.VertexHistogram.html)**\n* **[Edge histogram kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.EdgeHistogram.html)**\n* **[Shortest path kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.ShortestPath.html)** from Borgwardt and Kriegel: [Shortest-path kernels on graphs](https://www.dbs.ifi.lmu.de/~borgward/papers/BorKri05.pdf) (ICDM 2005)\n* **[Graphlet kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.GraphletSampling.html)** from Shervashidze *et al.*: [Efficient graphlet kernels for large graph comparison](http://proceedings.mlr.press/v5/shervashidze09a/shervashidze09a.pdf) (AISTATS 2009)\n* **[Random walk kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.RandomWalk.html)** from Vishwanathan *et al.*: [Graph Kernels](http://www.jmlr.org/papers/volume11/vishwanathan10a/vishwanathan10a.pdf) (JMLR 11(Apr))\n* **[Neighborhood hash graph kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.NeighborhoodHash.html)** from Hido and Kashima: [A Linear-time Graph Kernel](https://ieeexplore.ieee.org/abstract/document/5360243) (ICDM 2009)\n* **[Weisfeiler-Lehman framework](https://ysig.github.io/GraKeL/latest/generated/grakel.WeisfeilerLehman.html)** from Shervashidze *et al.*: [Weisfeiler-Lehman Graph Kernels](http://www.jmlr.org/papers/volume12/shervashidze11a/shervashidze11a.pdf) (JMLR 12(Sep))\n* **[Neighborhood subgraph pairwise distance kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.NeighborhoodSubgraphPairwiseDistance.html)** from Costa and De Grave: [Fast Neighborhood Subgraph Pairwise Distance Kernel](https://pdfs.semanticscholar.org/7a10/f6a406b664d1159e7c4fefbdd6ac275aee53.pdf) (ICML 2010)\n* **[Lovasz-theta kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.LovaszTheta.html)** from Johansson *et al.*: [Global graph kernels using geometric embeddings](http://proceedings.mlr.press/v32/johansson14.pdf) (ICML 2014)\n* **[SVM-theta kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.SvmTheta.html)** from Johansson *et al.*: [Global graph kernels using geometric embeddings](http://proceedings.mlr.press/v32/johansson14.pdf) (ICML 2014)\n* **[Ordered decompositional DAG kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.OddSth.html)** from Da San Martino *et al.*: [A Tree-Based Kernel for Graphs](https://pdfs.semanticscholar.org/69ee/18dd7a214d4d656b5b95742212f050dabeac.pdf) (SDM 2012)\n* **[GraphHopper kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.GraphHopper.html)** from Feragen *et al.*: [Scalable kernels for graphs with continuous attributes](https://papers.nips.cc/paper/5155-scalable-kernels-for-graphs-with-continuous-attributes.pdf) (NIPS 2013)\n* **[Propagation kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.Propagation.html)** from Neumann *et al.*: [Propagation kernels: efficient graph kernels from propagated information](https://link.springer.com/content/pdf/10.1007/s10994-015-5517-9.pdf) (Machine Learning 102(2))\n* **[Pyramid match kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.PyramidMatch.html)** from Nikolentzos *et al.*: [Matching Node Embeddings for Graph Similarity](https://www.aaai.org/ocs/index.php/AAAI/AAAI17/paper/view/14494/14426) (AAAI 2017)\n* **[Subgraph matching kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.SubgraphMatching.html)** from Kriege and Mutzel: [Subgraph Matching Kernels for Attributed Graphs](https://arxiv.org/ftp/arxiv/papers/1206/1206.6483.pdf) (ICML 2012)\n* **[Multiscale Laplacian kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.MultiscaleLaplacian.html)** from Kondor and Pan: [The Multiscale Laplacian Graph Kernel](https://papers.nips.cc/paper/6135-the-multiscale-laplacian-graph-kernel.pdf) (NIPS 2016)\n* **[Core framework](https://ysig.github.io/GraKeL/latest/generated/grakel.CoreFramework.html)** from Nikolentzos *et al.*: [A Degeneracy Framework for Graph Similarity](https://www.ijcai.org/proceedings/2018/0360.pdf) (IJCAI 2018)\n* **[Weisfeiler-Lehman optimal assignment kernel](https://ysig.github.io/GraKeL/latest/generated/grakel.WeisfeilerLehmanOptimalAssignment.html)** from Kriege *et al.*: [On Valid Optimal Assignment Kernels and Applications to Graph Classification](http://papers.nips.cc/paper/6166-on-valid-optimal-assignment-kernels-and-applications-to-graph-classification.pdf) (NIPS 2016)\n\n--------------------------------------------------------------------------------\n\nTo learn how to install and use GraKeL, and to find out more about the implemented kernels and frameworks, please read our [documentation](https://ysig.github.io/GraKeL/). To learn about the functionality of the library and about example applications, check out our [examples](https://github.com/ysig/GraKeL/tree/master/examples) in the `examples/` directory and our [tutorials](https://github.com/ysig/GraKeL/tree/master/tutorials) in the `tutorials/` directory.\n\nIn case you find a bug, please open an [issue](https://github.com/ysig/GraKeL/issues). To propose a new kernel, you can open a [feature request](https://github.com/ysig/GraKeL/issues).\n\n## Installation\n\nThe GraKeL library requires the following packages to be installed:\n\n* Python (>=2.7, >=3.5)\n* NumPy (>=1.8.2)\n* SciPy (>=0.13.3)\n* Cython (>=0.27.3)\n* cvxopt (>=1.2.0) [optional]\n* future (>=0.16.0) (for python 2.7)\n\nTo install the package, run:\n\n```sh\n$ pip install grakel\n```\n\n## Running tests\n\nTo test the package, execute:\n```sh\n$ pytest\n```\n\n## Running examples\n\n```\n$ cd examples\n$ python shortest_path.py\n```\n\n## Cite\n\nIf you use GraKeL in a scientific publication, please cite our paper (http://jmlr.org/papers/volume21/18-370/18-370.pdf):\n\n```bibtex\n@article{JMLR:v21:18-370,\n  author  = {Giannis Siglidis and Giannis Nikolentzos and Stratis Limnios and Christos Giatsidis and Konstantinos Skianis and Michalis Vazirgiannis},\n  title   = {GraKeL: A Graph Kernel Library in Python},\n  journal = {Journal of Machine Learning Research},\n  year    = {2020},\n  volume  = {21},\n  number  = {54},\n  pages   = {1-5}\n}\n```\n\n## License\n\nGraKeL is distributed under the __BSD 3-clause__ license. The library makes use of the C++ source code of [BLISS](http://www.tcs.hut.fi/Software/bliss) (a tool for computing automorphism groups and canonical labelings of graphs) which is __LGPL__ licensed. Futhermore, the [cvxopt](https://cvxopt.org/) package (a software package for convex optimization) which is an optional dependency of GraKeL is __GPL__ licensed.\n\n## Acknowledgements\n\nWe would like to thank [@eddiebergman](https://github.com/eddiebergman) for modernizing our CI and extending our python support.\n",
    "bugtrack_url": null,
    "license": "New BSD License Copyright (c) 2018- The grakel developers. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: a. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. b. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. c. Neither the name of the Scikit-learn Developers  nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
    "summary": "A scikit-learn compatible library for graph kernels",
    "version": "0.1.10",
    "project_urls": {
        "documentation": "https://ysig.github.io/GraKeL/",
        "feedback": "http://www.lix.polytechnique.fr/dascim/contact/",
        "source": "https://github.com/ysig/GraKeL/",
        "tracker": "https://github.com/ysig/GraKeL/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02e360997210ba1726d7a321d90dd885e598835c554076de399cc2a85a88ef0f",
                "md5": "f2329fc8bfe843442cf48c0917b232b0",
                "sha256": "10e42a1d90f07da217c74b80ef663a081f12c36d2754f3245c965a4bb2b1bb14"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f2329fc8bfe843442cf48c0917b232b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 1040988,
            "upload_time": "2023-10-27T10:14:28",
            "upload_time_iso_8601": "2023-10-27T10:14:28.771408Z",
            "url": "https://files.pythonhosted.org/packages/02/e3/60997210ba1726d7a321d90dd885e598835c554076de399cc2a85a88ef0f/GraKeL-0.1.10-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77ab93a4d0e41168afa832a8da0932a7d726f57cdca19082e7d76c8eef37d187",
                "md5": "aa0bdb370af4ccba9884e3514900ef70",
                "sha256": "e86dfa967d8ea7b22b0bd7d4a5bb49cc9849ef230811c31d9509087bf9bdfbd6"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa0bdb370af4ccba9884e3514900ef70",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 719314,
            "upload_time": "2023-10-27T10:14:30",
            "upload_time_iso_8601": "2023-10-27T10:14:30.663218Z",
            "url": "https://files.pythonhosted.org/packages/77/ab/93a4d0e41168afa832a8da0932a7d726f57cdca19082e7d76c8eef37d187/GraKeL-0.1.10-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd6d5cb7a1f5686895c5a8cff391f3d52ae43f95e2f34c4a6636f3124a688485",
                "md5": "a19526990eaef9a69bc3562953a6fcd6",
                "sha256": "d7afd00a1272a78e2f11df86f159e347dee212e0a18c02ed1a93dbdc0f9abad8"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a19526990eaef9a69bc3562953a6fcd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 1901551,
            "upload_time": "2023-10-27T10:14:32",
            "upload_time_iso_8601": "2023-10-27T10:14:32.627554Z",
            "url": "https://files.pythonhosted.org/packages/fd/6d/5cb7a1f5686895c5a8cff391f3d52ae43f95e2f34c4a6636f3124a688485/GraKeL-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f794f1c66c73f3cea179a65e51bfd2567bd83990c68976c0d07cb6f39e6ee049",
                "md5": "adac5994b2679ae6a763e235581fc5a8",
                "sha256": "8012ac44fc779a1d89b7d903ac68d3ab72b333da91736016e1841c939744a471"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "adac5994b2679ae6a763e235581fc5a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 1933615,
            "upload_time": "2023-10-27T10:14:34",
            "upload_time_iso_8601": "2023-10-27T10:14:34.651464Z",
            "url": "https://files.pythonhosted.org/packages/f7/94/f1c66c73f3cea179a65e51bfd2567bd83990c68976c0d07cb6f39e6ee049/GraKeL-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bac62a02d45df0165312bdf022834fe97f8dc1a479c8c2a7daebfdb7282ba9d",
                "md5": "548079beaaf05a028eb06b0f0315b957",
                "sha256": "e44a72c503967890ff4923654b9c87f1187ff63e217acd0852613ca4355c83d1"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "548079beaaf05a028eb06b0f0315b957",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.5",
            "size": 678978,
            "upload_time": "2023-10-27T10:14:36",
            "upload_time_iso_8601": "2023-10-27T10:14:36.571485Z",
            "url": "https://files.pythonhosted.org/packages/8b/ac/62a02d45df0165312bdf022834fe97f8dc1a479c8c2a7daebfdb7282ba9d/GraKeL-0.1.10-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf5954726f4b988d859c97b9017af639090904c2bef04dd288d99733fcc1489e",
                "md5": "2ebb5c1da61027a3586963fa80f3c6db",
                "sha256": "10fa86a4b884ae9b873d2ca5fd55ec1cd9e138a5e2fceeeafaf3f1e3b3571c8d"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2ebb5c1da61027a3586963fa80f3c6db",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 1042774,
            "upload_time": "2023-10-27T10:14:38",
            "upload_time_iso_8601": "2023-10-27T10:14:38.427633Z",
            "url": "https://files.pythonhosted.org/packages/cf/59/54726f4b988d859c97b9017af639090904c2bef04dd288d99733fcc1489e/GraKeL-0.1.10-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd5a0f1fa0b532bd56dabdfce3aaacd0952aa74edfc4137b5b33d55d5fcf9323",
                "md5": "bb19d49cdf73417a63e9a991baa540bf",
                "sha256": "f66f171801c8a0133a0be540630c8424345502548a5279af481df3215bcced24"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb19d49cdf73417a63e9a991baa540bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 720092,
            "upload_time": "2023-10-27T10:14:39",
            "upload_time_iso_8601": "2023-10-27T10:14:39.950543Z",
            "url": "https://files.pythonhosted.org/packages/bd/5a/0f1fa0b532bd56dabdfce3aaacd0952aa74edfc4137b5b33d55d5fcf9323/GraKeL-0.1.10-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06a9e6da6ba79c7a961c4ef1007f67d4145fa52a1d4c9e29c018dda0f2ba5f22",
                "md5": "bb4e2c1cadaab522177cb878671ae40d",
                "sha256": "aed2fd06e793d8330667daebf9b93a5f776d6d45403b179d74e16df0168d3360"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bb4e2c1cadaab522177cb878671ae40d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 2000266,
            "upload_time": "2023-10-27T10:14:42",
            "upload_time_iso_8601": "2023-10-27T10:14:42.090327Z",
            "url": "https://files.pythonhosted.org/packages/06/a9/e6da6ba79c7a961c4ef1007f67d4145fa52a1d4c9e29c018dda0f2ba5f22/GraKeL-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c99c4e727cf567187d31b8d0290c8eb2421bf387c7d72bb83b258779641356bd",
                "md5": "73d4b98195bd2e58bf695e167aff68ce",
                "sha256": "0826b67750517e01c658dad4e068f71e92ae9384bcbbf34f156e698229bd262e"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73d4b98195bd2e58bf695e167aff68ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 2029461,
            "upload_time": "2023-10-27T10:14:43",
            "upload_time_iso_8601": "2023-10-27T10:14:43.971612Z",
            "url": "https://files.pythonhosted.org/packages/c9/9c/4e727cf567187d31b8d0290c8eb2421bf387c7d72bb83b258779641356bd/GraKeL-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b29714f7a3d09d3defaea6ef556bd8ea04abd2eb356479847cba459ef3bfe39",
                "md5": "739b6a5b31024163bfdadc8a37b25670",
                "sha256": "a73f54c5c3d0a4c8b0967ef67ff12be286d06997b1ee365a531aeef1f632139b"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "739b6a5b31024163bfdadc8a37b25670",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.5",
            "size": 679135,
            "upload_time": "2023-10-27T10:14:46",
            "upload_time_iso_8601": "2023-10-27T10:14:46.353317Z",
            "url": "https://files.pythonhosted.org/packages/6b/29/714f7a3d09d3defaea6ef556bd8ea04abd2eb356479847cba459ef3bfe39/GraKeL-0.1.10-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e85a2fe3217e449210fc5c6ba87863b684527bf99ce5063c63ae8ada1dc6419",
                "md5": "185e6ae08f02d16fb86b33fdfc9a4df1",
                "sha256": "9623c63f3ec85603ebadb1a2e0367a2611f197350882d9cf7b0d39a755d376aa"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "185e6ae08f02d16fb86b33fdfc9a4df1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 717464,
            "upload_time": "2023-10-27T10:14:48",
            "upload_time_iso_8601": "2023-10-27T10:14:48.776354Z",
            "url": "https://files.pythonhosted.org/packages/7e/85/a2fe3217e449210fc5c6ba87863b684527bf99ce5063c63ae8ada1dc6419/GraKeL-0.1.10-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b54d192161c429143e3866ce39b6a13344ac3e098d3c90e6ef56bc9c5da37738",
                "md5": "f1371537d772bb4d428f922babb07d9f",
                "sha256": "7e81b21fdb20eb4ee14a6f4bd2e305351f3780d66aa9c2d7a6ca326adc6eb6a2"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f1371537d772bb4d428f922babb07d9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 1807930,
            "upload_time": "2023-10-27T10:14:50",
            "upload_time_iso_8601": "2023-10-27T10:14:50.881087Z",
            "url": "https://files.pythonhosted.org/packages/b5/4d/192161c429143e3866ce39b6a13344ac3e098d3c90e6ef56bc9c5da37738/GraKeL-0.1.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4620c218adc957f4614b0a81d3cb2283b153d066d7a9be8b5d7f947330968ed8",
                "md5": "70ded1ccc060a08ef2d281cd8b2749ba",
                "sha256": "56dcb27beb7f40dd2fd47ebf22f871960442d3793bc172de6f8b0e6c7d83ca5d"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "70ded1ccc060a08ef2d281cd8b2749ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 1839465,
            "upload_time": "2023-10-27T10:14:52",
            "upload_time_iso_8601": "2023-10-27T10:14:52.837065Z",
            "url": "https://files.pythonhosted.org/packages/46/20/c218adc957f4614b0a81d3cb2283b153d066d7a9be8b5d7f947330968ed8/GraKeL-0.1.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b48be68cc0f09223bd217830227e0745a4d09128fab621fc245027652867e115",
                "md5": "ddc7d7821fc1f6e0b4a6e455256dfbe7",
                "sha256": "459bc5bb3585233261c1c11964fe2a5b6030f4e2c95a46ab7793f5cd80368053"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ddc7d7821fc1f6e0b4a6e455256dfbe7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.5",
            "size": 676169,
            "upload_time": "2023-10-27T10:14:54",
            "upload_time_iso_8601": "2023-10-27T10:14:54.734485Z",
            "url": "https://files.pythonhosted.org/packages/b4/8b/e68cc0f09223bd217830227e0745a4d09128fab621fc245027652867e115/GraKeL-0.1.10-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89188db6d8f28da1710bba6c357957c81414173e5b809dc3e876491500bddf4f",
                "md5": "ca06c48a7bfaee27086fe2817e3be757",
                "sha256": "bfd6c258feb0913add497fad970fbc798b22860e6613dd552d8efbf63a5a807e"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ca06c48a7bfaee27086fe2817e3be757",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 1044263,
            "upload_time": "2023-10-27T10:14:56",
            "upload_time_iso_8601": "2023-10-27T10:14:56.586103Z",
            "url": "https://files.pythonhosted.org/packages/89/18/8db6d8f28da1710bba6c357957c81414173e5b809dc3e876491500bddf4f/GraKeL-0.1.10-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8de0653a1104627af64e93a65aa72219ba77d9f691226a5c3478585f41fc2412",
                "md5": "e660203a244d43096efb8a42ac41d996",
                "sha256": "589906c540486b8c11e2a5d9e70d5153b07fdd36917c275917e02c1f1c37e76e"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e660203a244d43096efb8a42ac41d996",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 721077,
            "upload_time": "2023-10-27T10:14:58",
            "upload_time_iso_8601": "2023-10-27T10:14:58.513871Z",
            "url": "https://files.pythonhosted.org/packages/8d/e0/653a1104627af64e93a65aa72219ba77d9f691226a5c3478585f41fc2412/GraKeL-0.1.10-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc313c3653b3b37275fbb5e6b223bbed45292c3f6008db8c772feef9e5ccbe20",
                "md5": "560b45ce01a2ace2c1b1e0bc90f66500",
                "sha256": "9af0e56ece9616f0b26519a8c1bdd2242d34cecda432d71ea3493dcfc3544e82"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "560b45ce01a2ace2c1b1e0bc90f66500",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 1934138,
            "upload_time": "2023-10-27T10:15:00",
            "upload_time_iso_8601": "2023-10-27T10:15:00.183477Z",
            "url": "https://files.pythonhosted.org/packages/cc/31/3c3653b3b37275fbb5e6b223bbed45292c3f6008db8c772feef9e5ccbe20/GraKeL-0.1.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2d734387e1f10b6f7e814806aa197f106d5e36f873ac82bbad15e2ffbabf06e",
                "md5": "9902d116a22e7e5945e50d4cc636de6e",
                "sha256": "8078fec6893dd189d78f86d9118cf364f090208bb5417151e459fdb66997a0eb"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9902d116a22e7e5945e50d4cc636de6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 1968357,
            "upload_time": "2023-10-27T10:15:02",
            "upload_time_iso_8601": "2023-10-27T10:15:02.412370Z",
            "url": "https://files.pythonhosted.org/packages/f2/d7/34387e1f10b6f7e814806aa197f106d5e36f873ac82bbad15e2ffbabf06e/GraKeL-0.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7311eca6fdf1de1955661d368c69f93259ec2b72d9478cadb4df37c387c6d35",
                "md5": "580f981659e6748eb02d61142c2ece3c",
                "sha256": "57bda9c718cc3672068f7a7ff4214691803282d01a7444df114ada76ad62dcd8"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "580f981659e6748eb02d61142c2ece3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.5",
            "size": 679783,
            "upload_time": "2023-10-27T10:15:04",
            "upload_time_iso_8601": "2023-10-27T10:15:04.483289Z",
            "url": "https://files.pythonhosted.org/packages/d7/31/1eca6fdf1de1955661d368c69f93259ec2b72d9478cadb4df37c387c6d35/GraKeL-0.1.10-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "732be6d27d79481649497f660b1c4325cb2833b11ccdc6af3cc91d49d03209d0",
                "md5": "5df3eaaeb32558a794ecece396420262",
                "sha256": "b4ab05c601bb3bedc8d7b5a54f7395bd998b5176a72acfad9ceebd61d8d0ee78"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "5df3eaaeb32558a794ecece396420262",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 1042199,
            "upload_time": "2023-10-27T10:15:06",
            "upload_time_iso_8601": "2023-10-27T10:15:06.111490Z",
            "url": "https://files.pythonhosted.org/packages/73/2b/e6d27d79481649497f660b1c4325cb2833b11ccdc6af3cc91d49d03209d0/GraKeL-0.1.10-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec3be0e08a546544e74fdc06361e8f11242a9bdf9e288e7798c0a56edbfbcac8",
                "md5": "09bdf3453410e44447b260dd858dc040",
                "sha256": "43378d431f07ad6a2db0a820957218aa40564f0730af3e451acba668556e77a2"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09bdf3453410e44447b260dd858dc040",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 719923,
            "upload_time": "2023-10-27T10:15:07",
            "upload_time_iso_8601": "2023-10-27T10:15:07.812384Z",
            "url": "https://files.pythonhosted.org/packages/ec/3b/e0e08a546544e74fdc06361e8f11242a9bdf9e288e7798c0a56edbfbcac8/GraKeL-0.1.10-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d299d5ce9128c4e1411a7997fafa30d3011b4897f485a54c81e0913feae5fb8",
                "md5": "7979b65e898ff153983258d97a2b73b7",
                "sha256": "b65f634b1ea26f87ea1cbb52bae054084c9baba81b1a7ead267e23ebfab9e282"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7979b65e898ff153983258d97a2b73b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 1899735,
            "upload_time": "2023-10-27T10:15:09",
            "upload_time_iso_8601": "2023-10-27T10:15:09.608724Z",
            "url": "https://files.pythonhosted.org/packages/0d/29/9d5ce9128c4e1411a7997fafa30d3011b4897f485a54c81e0913feae5fb8/GraKeL-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd38598ee5e122fb35d31d071a049aab2ba88794c9f381013ab83a4ff58e9c0a",
                "md5": "7ecf795079093dc5d62d5578380e2ed1",
                "sha256": "822ab90f1cf4402449c3ec03895a869f37217e9899b9e0b7a903b1f597b1a230"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ecf795079093dc5d62d5578380e2ed1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 1934718,
            "upload_time": "2023-10-27T10:15:11",
            "upload_time_iso_8601": "2023-10-27T10:15:11.675558Z",
            "url": "https://files.pythonhosted.org/packages/dd/38/598ee5e122fb35d31d071a049aab2ba88794c9f381013ab83a4ff58e9c0a/GraKeL-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d5aae0f69b31330c076e3d1fffba92c5b18173eebaa6432cf4c081bae6c094c",
                "md5": "bd5c61c77d7e10874caf3db24770af91",
                "sha256": "10b2c378b99901b4091312360b00a10bb99d39c9d504d95ce120040bafad4328"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bd5c61c77d7e10874caf3db24770af91",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.5",
            "size": 679324,
            "upload_time": "2023-10-27T10:15:13",
            "upload_time_iso_8601": "2023-10-27T10:15:13.427356Z",
            "url": "https://files.pythonhosted.org/packages/0d/5a/ae0f69b31330c076e3d1fffba92c5b18173eebaa6432cf4c081bae6c094c/GraKeL-0.1.10-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d8ae6b4d4bcb1e34c91248675984ee1ebb96e57a2254f955dfde8fd1da5043a",
                "md5": "6c01b0beb12255c6ed49c1ad9cd16819",
                "sha256": "0c87f716d8cd69741cf1aa63a230a74c3a8957f8485b2a18689274934ef8fd51"
            },
            "downloads": -1,
            "filename": "GraKeL-0.1.10.tar.gz",
            "has_sig": false,
            "md5_digest": "6c01b0beb12255c6ed49c1ad9cd16819",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 1004389,
            "upload_time": "2023-10-27T10:15:14",
            "upload_time_iso_8601": "2023-10-27T10:15:14.820337Z",
            "url": "https://files.pythonhosted.org/packages/7d/8a/e6b4d4bcb1e34c91248675984ee1ebb96e57a2254f955dfde8fd1da5043a/GraKeL-0.1.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-27 10:15:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ysig",
    "github_project": "GraKeL",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.14.0"
                ]
            ]
        },
        {
            "name": "cython",
            "specs": [
                [
                    ">=",
                    "0.27.3"
                ]
            ]
        },
        {
            "name": "scikit-learn",
            "specs": [
                [
                    ">=",
                    "0.19"
                ]
            ]
        },
        {
            "name": "six",
            "specs": [
                [
                    ">=",
                    "1.11.0"
                ]
            ]
        },
        {
            "name": "future",
            "specs": [
                [
                    ">=",
                    "0.16.0"
                ]
            ]
        },
        {
            "name": "joblib",
            "specs": []
        }
    ],
    "lcname": "grakel"
}
        
Elapsed time: 0.13934s