[![DOI](http://joss.theoj.org/papers/10.21105/joss.00925/status.svg)](https://doi.org/10.21105/joss.00925)
[![PyPI version](https://badge.fury.io/py/ripser.svg)](https://badge.fury.io/py/ripser)
[![Downloads](https://img.shields.io/pypi/dm/ripser)](https://pypi.python.org/pypi/ripser/)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/ripser.svg)](https://anaconda.org/conda-forge/ripser)
[![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/ripser.svg)](https://anaconda.org/conda-forge/ripser)
[![Build status](https://ci.appveyor.com/api/projects/status/020nrvrq2rdg2iu1?svg=true)](https://ci.appveyor.com/project/sauln/ripser-py)
[![codecov](https://codecov.io/gh/scikit-tda/ripser.py/branch/master/graph/badge.svg)](https://codecov.io/gh/scikit-tda/ripser.py)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
# Ripser.py
Ripser.py is a lean persistent homology package for Python. Building on the blazing fast C++ Ripser package as the core computational engine, Ripser.py provides an intuitive interface for
- computing persistence cohomology of sparse and dense data sets,
- visualizing persistence diagrams,
- computing lowerstar filtrations on images, and
- computing representative cochains.
Additionally, through extensive testing and continuous integration, Ripser.py is easy to install on Mac, Linux, and Windows platforms.
To aid your use of the package, we've put together a large set of notebooks that demonstrate many of the features available. Complete documentation about the package can be found at [ripser.scikit-tda.org](https://ripser.scikit-tda.org).
## Related Projects
If you're looking for the original C++ library, you can find it at [Ripser/ripser](https://github.com/ripser/ripser).
If you're looking for a GPU-accelerated version of Ripser, you can find it at [Ripser++](https://github.com/simonzhang00/ripser-plusplus)
## Setup
Ripser.py is available on `pypi` with wheels for all major platforms. To install, type the following command into your environment:
```bash
pip install python
```
### Local build
If the above command fails, you can build `ripser.py` locally. All that is required is that you
install the standard Python numerical computing libraries and Cython.
Dependencies:
- Cython
- numpy
- scipy
- scikit-learn
- persim
**Windows users:** If you are using a Windows machine, you will also need to install [MinGW](http://www.mingw.org) on your system.
**Mac users:** Updating your Xcode and Xcode command line tools will probably fix any issues you have with installation.
Cython should be the only library required before installation. To install, type the following commands into your environment:
```
pip install cython
```
Following this, clone the repository, `cd` into the clone, and execute `pip install -v .`
#### Optional dependency
Ripser.py when compiled from source can have a _steroid_<sup>1</sup> shot by replacing the standard `unordered_map` from the STL by one of the fastest implementation available: [robin_hood](https://github.com/martinus/robin-hood-hashing). Benchmarking of Ripser.py using the `robin_hood` implementation showed speed-ups up to **30%**.
To be able to use `robin_hood` instead of STL, you only need to clone the repository containing the implementation:
```
# Run this command at the root of the project
git clone https://github.com/martinus/robin-hood-hashing robinhood
```
After cloning robinhood with the above command, install `ripser.py` with
```
pip install -v .
```
This will install a local version of `ripser.py` with verbose output. In the verbose output,
you will see confirmation that robinhood was found or not.
<sup>1</sup> The Python package is already compiled with `robin_hood` by default.
If you are having trouble installing, please let us know!
## Usage
The interface is as simple as can be:
```
import numpy as np
from ripser import ripser
from persim import plot_diagrams
data = np.random.random((100,2))
diagrams = ripser(data)['dgms']
plot_diagrams(diagrams, show=True)
```
We also supply a Scikit-learn transformer style object if you would prefer to use that:
```
import numpy as np
from ripser import Rips
rips = Rips()
data = np.random.random((100,2))
diagrams = rips.fit_transform(data)
rips.plot(diagrams)
```
<img src="https://i.imgur.com/WmQPYnn.png" alt="Ripser.py output persistence diagram" width="70%"/>
# Contributions
We welcome all kinds of contributions! Please get in touch if you would like to help out. Everything from code to notebooks to examples and documentation are all equally valuable so please don't feel you can't contribute. To contribute please fork the project make your changes and submit a pull request. We will do our best to work through any issues with you and get your code merged into the main branch.
If you found a bug, have questions, or are just having trouble with the library, please open an issue in our [issue tracker](https://github.com/scikit-tda/ripser.py/issues/new) and we'll try to help resolve the concern.
# License
Ripser.py is available under an MIT license! The core C++ code is derived from Ripser, which is also available under an MIT license and copyright to Ulrich Bauer. The modifications, Python code, and documentation is copyright to Christopher Tralie and Nathaniel Saul.
# Citing
If you use this package, please site the JoSS paper found here [![DOI](http://joss.theoj.org/papers/10.21105/joss.00925/status.svg)](https://doi.org/10.21105/joss.00925) and the JACT paper about Ripser found here [![DOI:10.1007/s41468-021-00071-5](https://zenodo.org/badge/DOI/10.1007/s41468-021-00071-5.svg)](https://doi.org/10.1007/s41468-021-00071-5).
You can use the following bibtex entries:
```
@article{ctralie2018ripser,
doi = {10.21105/joss.00925},
url = {https://doi.org/10.21105/joss.00925},
year = {2018},
month = {Sep},
publisher = {The Open Journal},
volume = {3},
number = {29},
pages = {925},
author = {Christopher Tralie and Nathaniel Saul and Rann Bar-On},
title = {{Ripser.py}: A Lean Persistent Homology Library for Python},
journal = {The Journal of Open Source Software}
}
@article{Bauer2021Ripser,
AUTHOR = {Bauer, Ulrich},
TITLE = {Ripser: efficient computation of {V}ietoris-{R}ips persistence
barcodes},
JOURNAL = {J. Appl. Comput. Topol.},
FJOURNAL = {Journal of Applied and Computational Topology},
VOLUME = {5},
YEAR = {2021},
NUMBER = {3},
PAGES = {391--423},
ISSN = {2367-1726},
MRCLASS = {55N31 (55-04)},
MRNUMBER = {4298669},
DOI = {10.1007/s41468-021-00071-5},
URL = {https://doi.org/10.1007/s41468-021-00071-5},
}
```
Raw data
{
"_id": null,
"home_page": null,
"name": "ripser",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": "Chris Tralie <chris.tralie@gmail.com>, Nathaniel Saul <nat@riverasaul.com>, Michael Catanzaro <catanzaromj@pm.me>",
"keywords": "topological data analysis, persistent homology, Rips filtration, algebraic topology, unsupervised learning, persistence diagrams",
"author": null,
"author_email": "Chris Tralie <chris.tralie@gmail.com>, Nathaniel Saul <nat@riverasaul.com>",
"download_url": "https://files.pythonhosted.org/packages/c8/27/31ea7effa8a1cabd0f36962bb242eaa529577bec19157dfaaa983647caff/ripser-0.6.10.tar.gz",
"platform": null,
"description": "[![DOI](http://joss.theoj.org/papers/10.21105/joss.00925/status.svg)](https://doi.org/10.21105/joss.00925)\n[![PyPI version](https://badge.fury.io/py/ripser.svg)](https://badge.fury.io/py/ripser)\n[![Downloads](https://img.shields.io/pypi/dm/ripser)](https://pypi.python.org/pypi/ripser/)\n[![Conda Version](https://img.shields.io/conda/vn/conda-forge/ripser.svg)](https://anaconda.org/conda-forge/ripser)\n[![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/ripser.svg)](https://anaconda.org/conda-forge/ripser)\n\n[![Build status](https://ci.appveyor.com/api/projects/status/020nrvrq2rdg2iu1?svg=true)](https://ci.appveyor.com/project/sauln/ripser-py)\n[![codecov](https://codecov.io/gh/scikit-tda/ripser.py/branch/master/graph/badge.svg)](https://codecov.io/gh/scikit-tda/ripser.py)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n# Ripser.py\n\nRipser.py is a lean persistent homology package for Python. Building on the blazing fast C++ Ripser package as the core computational engine, Ripser.py provides an intuitive interface for\n\n- computing persistence cohomology of sparse and dense data sets,\n- visualizing persistence diagrams,\n- computing lowerstar filtrations on images, and\n- computing representative cochains.\n\nAdditionally, through extensive testing and continuous integration, Ripser.py is easy to install on Mac, Linux, and Windows platforms.\n\nTo aid your use of the package, we've put together a large set of notebooks that demonstrate many of the features available. Complete documentation about the package can be found at [ripser.scikit-tda.org](https://ripser.scikit-tda.org).\n\n## Related Projects\n\nIf you're looking for the original C++ library, you can find it at [Ripser/ripser](https://github.com/ripser/ripser).\n\nIf you're looking for a GPU-accelerated version of Ripser, you can find it at [Ripser++](https://github.com/simonzhang00/ripser-plusplus)\n\n## Setup\n\nRipser.py is available on `pypi` with wheels for all major platforms. To install, type the following command into your environment:\n\n```bash\npip install python\n```\n### Local build\n\nIf the above command fails, you can build `ripser.py` locally. All that is required is that you \ninstall the standard Python numerical computing libraries and Cython.\n\nDependencies:\n\n- Cython\n- numpy\n- scipy\n- scikit-learn\n- persim\n\n**Windows users:** If you are using a Windows machine, you will also need to install [MinGW](http://www.mingw.org) on your system.\n\n**Mac users:** Updating your Xcode and Xcode command line tools will probably fix any issues you have with installation.\n\nCython should be the only library required before installation. To install, type the following commands into your environment:\n\n```\npip install cython\n```\n\nFollowing this, clone the repository, `cd` into the clone, and execute `pip install -v .`\n\n\n#### Optional dependency\n\nRipser.py when compiled from source can have a _steroid_<sup>1</sup> shot by replacing the standard `unordered_map` from the STL by one of the fastest implementation available: [robin_hood](https://github.com/martinus/robin-hood-hashing). Benchmarking of Ripser.py using the `robin_hood` implementation showed speed-ups up to **30%**.\n\nTo be able to use `robin_hood` instead of STL, you only need to clone the repository containing the implementation:\n\n```\n# Run this command at the root of the project\ngit clone https://github.com/martinus/robin-hood-hashing robinhood\n```\n\nAfter cloning robinhood with the above command, install `ripser.py` with\n\n```\npip install -v .\n```\n\nThis will install a local version of `ripser.py` with verbose output. In the verbose output,\nyou will see confirmation that robinhood was found or not.\n\n<sup>1</sup> The Python package is already compiled with `robin_hood` by default.\n\nIf you are having trouble installing, please let us know!\n\n## Usage\n\nThe interface is as simple as can be:\n\n```\nimport numpy as np\nfrom ripser import ripser\nfrom persim import plot_diagrams\n\ndata = np.random.random((100,2))\ndiagrams = ripser(data)['dgms']\nplot_diagrams(diagrams, show=True)\n```\n\nWe also supply a Scikit-learn transformer style object if you would prefer to use that:\n\n```\nimport numpy as np\nfrom ripser import Rips\n\nrips = Rips()\ndata = np.random.random((100,2))\ndiagrams = rips.fit_transform(data)\nrips.plot(diagrams)\n```\n\n<img src=\"https://i.imgur.com/WmQPYnn.png\" alt=\"Ripser.py output persistence diagram\" width=\"70%\"/>\n\n# Contributions\n\nWe welcome all kinds of contributions! Please get in touch if you would like to help out. Everything from code to notebooks to examples and documentation are all equally valuable so please don't feel you can't contribute. To contribute please fork the project make your changes and submit a pull request. We will do our best to work through any issues with you and get your code merged into the main branch.\n\nIf you found a bug, have questions, or are just having trouble with the library, please open an issue in our [issue tracker](https://github.com/scikit-tda/ripser.py/issues/new) and we'll try to help resolve the concern.\n\n# License\n\nRipser.py is available under an MIT license! The core C++ code is derived from Ripser, which is also available under an MIT license and copyright to Ulrich Bauer. The modifications, Python code, and documentation is copyright to Christopher Tralie and Nathaniel Saul.\n\n# Citing\n\nIf you use this package, please site the JoSS paper found here [![DOI](http://joss.theoj.org/papers/10.21105/joss.00925/status.svg)](https://doi.org/10.21105/joss.00925) and the JACT paper about Ripser found here [![DOI:10.1007/s41468-021-00071-5](https://zenodo.org/badge/DOI/10.1007/s41468-021-00071-5.svg)](https://doi.org/10.1007/s41468-021-00071-5).\n\nYou can use the following bibtex entries:\n\n```\n@article{ctralie2018ripser,\n doi = {10.21105/joss.00925},\n url = {https://doi.org/10.21105/joss.00925},\n year = {2018},\n month = {Sep},\n publisher = {The Open Journal},\n volume = {3},\n number = {29},\n pages = {925},\n author = {Christopher Tralie and Nathaniel Saul and Rann Bar-On},\n title = {{Ripser.py}: A Lean Persistent Homology Library for Python},\n journal = {The Journal of Open Source Software}\n}\n\n@article{Bauer2021Ripser,\n AUTHOR = {Bauer, Ulrich},\n TITLE = {Ripser: efficient computation of {V}ietoris-{R}ips persistence\n barcodes},\n JOURNAL = {J. Appl. Comput. Topol.},\n FJOURNAL = {Journal of Applied and Computational Topology},\n VOLUME = {5},\n YEAR = {2021},\n NUMBER = {3},\n PAGES = {391--423},\n ISSN = {2367-1726},\n MRCLASS = {55N31 (55-04)},\n MRNUMBER = {4298669},\n DOI = {10.1007/s41468-021-00071-5},\n URL = {https://doi.org/10.1007/s41468-021-00071-5},\n}\n```\n",
"bugtrack_url": null,
"license": null,
"summary": "A Lean Persistent Homology Library for Python",
"version": "0.6.10",
"project_urls": {
"Changelog": "https://github.com/scikit-tda/ripser.py/blob/master/RELEASE.txt",
"Documentation": "https://ripser.scikit-tda.org",
"Homepage": "https://ripser.scikit-tda.org",
"Issues": "https://github.com/scikit-tda/ripser.py/issues",
"Repository": "https://github.com/scikit-tda/ripser.py"
},
"split_keywords": [
"topological data analysis",
" persistent homology",
" rips filtration",
" algebraic topology",
" unsupervised learning",
" persistence diagrams"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "8c530f80cdd04fb3cdaa2c46313b82b7eeb3336f88fb6d0591a8523deb0c6c1e",
"md5": "21e38f0fa4f31171871960a007cb4edf",
"sha256": "aa74c75b08d385ba49c51c25308b72e57e09341080b728f7c755cdebbb7689a3"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "21e38f0fa4f31171871960a007cb4edf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 157594,
"upload_time": "2024-07-12T18:30:56",
"upload_time_iso_8601": "2024-07-12T18:30:56.758819Z",
"url": "https://files.pythonhosted.org/packages/8c/53/0f80cdd04fb3cdaa2c46313b82b7eeb3336f88fb6d0591a8523deb0c6c1e/ripser-0.6.10-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "90c2dadf04102194294e5ffba49f6cc283dc4bb9b2a376b637624ea8f7a455c8",
"md5": "09f8aa74386e3844ca2660a3edd6e418",
"sha256": "0e72641e526e56c6f082c6960bf2cc38676210b013b145da67456eb6f47801ff"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "09f8aa74386e3844ca2660a3edd6e418",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 834461,
"upload_time": "2024-07-12T18:30:58",
"upload_time_iso_8601": "2024-07-12T18:30:58.760451Z",
"url": "https://files.pythonhosted.org/packages/90/c2/dadf04102194294e5ffba49f6cc283dc4bb9b2a376b637624ea8f7a455c8/ripser-0.6.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3e2f3e7df3ce072413fb67cf043a54bd7a28073062f7de548b8d152a3f079f01",
"md5": "faae24ac2b907958277396934156d962",
"sha256": "fa4dc1b7cc3f2488c39991f0b6e8148e3e206858abf506ea685855e8f6db1665"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "faae24ac2b907958277396934156d962",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 144575,
"upload_time": "2024-07-12T18:31:00",
"upload_time_iso_8601": "2024-07-12T18:31:00.051968Z",
"url": "https://files.pythonhosted.org/packages/3e/2f/3e7df3ce072413fb67cf043a54bd7a28073062f7de548b8d152a3f079f01/ripser-0.6.10-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6bac5356a56c19870932842e03a99a635c7c58488d73b3c58ace8684d72e6955",
"md5": "856151ee2e63ca4882b85f9bca9cac17",
"sha256": "3658a5a8207f9587d736122273ff51cca3e2cbcbe67557a96aba8b5779d1a22b"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "856151ee2e63ca4882b85f9bca9cac17",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 149665,
"upload_time": "2024-07-12T18:31:01",
"upload_time_iso_8601": "2024-07-12T18:31:01.433083Z",
"url": "https://files.pythonhosted.org/packages/6b/ac/5356a56c19870932842e03a99a635c7c58488d73b3c58ace8684d72e6955/ripser-0.6.10-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08677262a47e6e4567856a8a031e0c0dcb12a814ba3bada4bad13fd2b10c543f",
"md5": "ec8d3389f517d18aaf4fda7b8ed52776",
"sha256": "dd078f851b216fea7f6b89e6b2ca5eac9decda5772af7cb0d9f9d39f61e25831"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ec8d3389f517d18aaf4fda7b8ed52776",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 157439,
"upload_time": "2024-07-12T18:31:02",
"upload_time_iso_8601": "2024-07-12T18:31:02.692569Z",
"url": "https://files.pythonhosted.org/packages/08/67/7262a47e6e4567856a8a031e0c0dcb12a814ba3bada4bad13fd2b10c543f/ripser-0.6.10-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0e273288a81a9254ce779bbc56c229686fe217888b05be4ea9ec2fbdfa8157d4",
"md5": "dc42f321d927d5953cdb5966afccd883",
"sha256": "968827252e9b1f7f785320989918c54ace23955cd0cbff17e638d05874fcefce"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dc42f321d927d5953cdb5966afccd883",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 841347,
"upload_time": "2024-07-12T18:31:04",
"upload_time_iso_8601": "2024-07-12T18:31:04.829896Z",
"url": "https://files.pythonhosted.org/packages/0e/27/3288a81a9254ce779bbc56c229686fe217888b05be4ea9ec2fbdfa8157d4/ripser-0.6.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "666582581541b1892efb3c468805aa9f88ed69a60613a398fba64d273593fdae",
"md5": "c946c20101bb019426f85df8a3ad9f99",
"sha256": "533e5ad05cea47161c4a58e2791cf6c303496af3caf560d5c0ba8cd14af1aa08"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "c946c20101bb019426f85df8a3ad9f99",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 144549,
"upload_time": "2024-07-12T18:31:06",
"upload_time_iso_8601": "2024-07-12T18:31:06.677733Z",
"url": "https://files.pythonhosted.org/packages/66/65/82581541b1892efb3c468805aa9f88ed69a60613a398fba64d273593fdae/ripser-0.6.10-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78ffd08a755dc72c763057bbb549c0642c4c76f8044e5230054fcfcda4bba337",
"md5": "9bef37854e2fb8c1192b40f6cbbe2a3a",
"sha256": "b819c1bfca6a912c327bf9a4140f0efe27aa90e333cabdfa7933c8fa30c1623a"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9bef37854e2fb8c1192b40f6cbbe2a3a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 149940,
"upload_time": "2024-07-12T18:31:08",
"upload_time_iso_8601": "2024-07-12T18:31:08.355463Z",
"url": "https://files.pythonhosted.org/packages/78/ff/d08a755dc72c763057bbb549c0642c4c76f8044e5230054fcfcda4bba337/ripser-0.6.10-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "476a75ab5c2df0c542f2309696aad60bb7c68346a4db3ccb855424782e71b992",
"md5": "79d18c8b8f4be188a46c0f7e0d757fb4",
"sha256": "beb12c2803a98b00ea1eb4df9add94ad7e87d551eb1e7da5e631699d947750d0"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "79d18c8b8f4be188a46c0f7e0d757fb4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 157614,
"upload_time": "2024-07-12T18:31:09",
"upload_time_iso_8601": "2024-07-12T18:31:09.855350Z",
"url": "https://files.pythonhosted.org/packages/47/6a/75ab5c2df0c542f2309696aad60bb7c68346a4db3ccb855424782e71b992/ripser-0.6.10-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9199067bdf19dca7c1bca5607c3e945da479dfbcdca39fd4084c0fa6ca2332d3",
"md5": "34084d17da1aadc86feb8f2290d3c413",
"sha256": "5ce75f555b0a9ed3da13d56772f9ec612758445e73db4f55be8a75c431bcb19e"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "34084d17da1aadc86feb8f2290d3c413",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 827382,
"upload_time": "2024-07-12T18:31:11",
"upload_time_iso_8601": "2024-07-12T18:31:11.469100Z",
"url": "https://files.pythonhosted.org/packages/91/99/067bdf19dca7c1bca5607c3e945da479dfbcdca39fd4084c0fa6ca2332d3/ripser-0.6.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "643945e318ae65401b2cd958192f76460c10fd46b4ab100c831666589c6f6097",
"md5": "145828478f30c9ab48a6e30a3a76fd67",
"sha256": "2cd0c0c3ef2fa085300dd76bc8f07b4c12c49a72f52cb8e0bd7fc6ca70390f7b"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "145828478f30c9ab48a6e30a3a76fd67",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 144621,
"upload_time": "2024-07-12T18:31:13",
"upload_time_iso_8601": "2024-07-12T18:31:13.907975Z",
"url": "https://files.pythonhosted.org/packages/64/39/45e318ae65401b2cd958192f76460c10fd46b4ab100c831666589c6f6097/ripser-0.6.10-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e0ef9b5bcd7fa2fa77ea7db81f9bdd942f6d4fddb4d68c7cf609871674dfb003",
"md5": "3ea8498429efa0d0a4cd5498ce95b04a",
"sha256": "5ee6c7433b95a84299ea00527e71f476312fac595166811d8a831c767c19a9da"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "3ea8498429efa0d0a4cd5498ce95b04a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 150328,
"upload_time": "2024-07-12T18:31:15",
"upload_time_iso_8601": "2024-07-12T18:31:15.853692Z",
"url": "https://files.pythonhosted.org/packages/e0/ef/9b5bcd7fa2fa77ea7db81f9bdd942f6d4fddb4d68c7cf609871674dfb003/ripser-0.6.10-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c426e8f15ed7593b6e1f6e51a97e887f149823e0f00469cb82e90e9f86775a9",
"md5": "cc5b5ad8ed0902ead9b863842f981b6e",
"sha256": "89f012e70189e989560081dcafff89053ba4085fdcfc0e1fe67b544a243304e9"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cc5b5ad8ed0902ead9b863842f981b6e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 155804,
"upload_time": "2024-07-12T18:31:17",
"upload_time_iso_8601": "2024-07-12T18:31:17.198525Z",
"url": "https://files.pythonhosted.org/packages/7c/42/6e8f15ed7593b6e1f6e51a97e887f149823e0f00469cb82e90e9f86775a9/ripser-0.6.10-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "597277a4896be5fe24ddac09550e6da032bf259d082f229259b3871958702f20",
"md5": "734b34898d6057f5ff8319f6b0d37a44",
"sha256": "00c60b8c01d0339105c9a1661ab15543f85f65f797db37161efb6dbc33421cc0"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "734b34898d6057f5ff8319f6b0d37a44",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 833803,
"upload_time": "2024-07-12T18:31:18",
"upload_time_iso_8601": "2024-07-12T18:31:18.485321Z",
"url": "https://files.pythonhosted.org/packages/59/72/77a4896be5fe24ddac09550e6da032bf259d082f229259b3871958702f20/ripser-0.6.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6bf92291153adc5cb2bd2127577a2669b816966a514f452beb9bcc9f7352a957",
"md5": "006cfef1820488fe45a14dfde54adfee",
"sha256": "fa2d96266b2d54c705678f611f9a6fb1bceaf247022b42809aa1dda1cc92e35b"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "006cfef1820488fe45a14dfde54adfee",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 142772,
"upload_time": "2024-07-12T18:31:20",
"upload_time_iso_8601": "2024-07-12T18:31:20.360868Z",
"url": "https://files.pythonhosted.org/packages/6b/f9/2291153adc5cb2bd2127577a2669b816966a514f452beb9bcc9f7352a957/ripser-0.6.10-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e583e2aa65600883987796d6f29702f5d9332aeedeb6833ede503fc019d68cd2",
"md5": "00e7936dbb772a48398caadb2129a375",
"sha256": "677f8f08d72260b210d2f4da7c8e53ee1d6b1b9c8d9d1f1ab3b583cc74073994"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "00e7936dbb772a48398caadb2129a375",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 147867,
"upload_time": "2024-07-12T18:31:22",
"upload_time_iso_8601": "2024-07-12T18:31:22.024503Z",
"url": "https://files.pythonhosted.org/packages/e5/83/e2aa65600883987796d6f29702f5d9332aeedeb6833ede503fc019d68cd2/ripser-0.6.10-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88464952c69191058a2ac1fd2d75d32d082aec63da65669e18a4c74f6da0f096",
"md5": "498a9e9004ff88a7ae14836aa32f7bb8",
"sha256": "557566db156e71f660a438b4571f1bac73658f4ea270d10924eff17582f04c1e"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "498a9e9004ff88a7ae14836aa32f7bb8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 157592,
"upload_time": "2024-07-12T18:31:23",
"upload_time_iso_8601": "2024-07-12T18:31:23.677083Z",
"url": "https://files.pythonhosted.org/packages/88/46/4952c69191058a2ac1fd2d75d32d082aec63da65669e18a4c74f6da0f096/ripser-0.6.10-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af1c5b21cca8d70ba4e3f2f70f44b65d1e91f85097f74744ac565e68f8578595",
"md5": "25e15ef67208e97dd593f7e55ae295d9",
"sha256": "9ff9d8ee951d797fb11510c67b56c1a194c2fe8e228d585b26e2684ca979e59c"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "25e15ef67208e97dd593f7e55ae295d9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 834308,
"upload_time": "2024-07-12T18:31:25",
"upload_time_iso_8601": "2024-07-12T18:31:25.218488Z",
"url": "https://files.pythonhosted.org/packages/af/1c/5b21cca8d70ba4e3f2f70f44b65d1e91f85097f74744ac565e68f8578595/ripser-0.6.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d4f7c0e1e7657a614294071b8b08a44f314644b375a069d70de2be34c28729a",
"md5": "b3b19617e4815e75ea5211b3947ea7b0",
"sha256": "d38a6d55319770639fce1c836d1e32eca1601e7037fd1f3c1ac3d6633db15e22"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "b3b19617e4815e75ea5211b3947ea7b0",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 144568,
"upload_time": "2024-07-12T18:31:26",
"upload_time_iso_8601": "2024-07-12T18:31:26.625163Z",
"url": "https://files.pythonhosted.org/packages/6d/4f/7c0e1e7657a614294071b8b08a44f314644b375a069d70de2be34c28729a/ripser-0.6.10-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b04e0641e6ef24f8c05ffe12b233b6a7ca677a29f4323a642fb83e17353a7e2",
"md5": "65125d39f7569b8a8ffa25035050dddd",
"sha256": "acf0e5367bcfe18655ac9f776006c20790574abd5f14674a4d35062c537c67b7"
},
"downloads": -1,
"filename": "ripser-0.6.10-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "65125d39f7569b8a8ffa25035050dddd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 149669,
"upload_time": "2024-07-12T18:31:28",
"upload_time_iso_8601": "2024-07-12T18:31:28.249196Z",
"url": "https://files.pythonhosted.org/packages/4b/04/e0641e6ef24f8c05ffe12b233b6a7ca677a29f4323a642fb83e17353a7e2/ripser-0.6.10-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c82731ea7effa8a1cabd0f36962bb242eaa529577bec19157dfaaa983647caff",
"md5": "c137c2850175096c9ffd995e31ef0291",
"sha256": "dccafaf97ad2395bc66cb376e5fbe0f6f264372b298fd093e4107132c1f79484"
},
"downloads": -1,
"filename": "ripser-0.6.10.tar.gz",
"has_sig": false,
"md5_digest": "c137c2850175096c9ffd995e31ef0291",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 98476,
"upload_time": "2024-07-12T18:31:29",
"upload_time_iso_8601": "2024-07-12T18:31:29.853062Z",
"url": "https://files.pythonhosted.org/packages/c8/27/31ea7effa8a1cabd0f36962bb242eaa529577bec19157dfaaa983647caff/ripser-0.6.10.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-07-12 18:31:29",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "scikit-tda",
"github_project": "ripser.py",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "ripser"
}