ruptures


Nameruptures JSON
Version 1.1.8 PyPI version JSON
download
home_pagehttps://github.com/deepcharles/ruptures/
SummaryChange point detection for signals in Python.
upload_time2023-06-07 13:30:35
maintainerCharles Truong, Olivier Boulant
docs_urlNone
authorCharles Truong, Laurent Oudre, Nicolas Vayatis
requires_python>=3.6
licenseBSD-2-Clause
keywords change point detection signal segmentation computer science machine learning kernel methods time series
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Welcome to ruptures

[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/deepcharles/ruptures/graphs/commit-activity)
[![build](https://github.com/deepcharles/ruptures/actions/workflows/run-test.yml/badge.svg)](https://github.com/deepcharles/ruptures/actions/workflows/run-test.yml)
![python](https://img.shields.io/badge/python-3.6%20|%203.7%20|%203.8%20|%203.9-blue)
[![PyPI version](https://badge.fury.io/py/ruptures.svg)](https://badge.fury.io/py/ruptures)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/ruptures.svg)](https://anaconda.org/conda-forge/ruptures)
[![docs](https://github.com/deepcharles/ruptures/actions/workflows/check-docs.yml/badge.svg)](https://github.com/deepcharles/ruptures/actions/workflows/check-docs.yml)
![PyPI - License](https://img.shields.io/pypi/l/ruptures)
[![Downloads](https://pepy.tech/badge/ruptures)](https://pepy.tech/project/ruptures)
<a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/deepcharles/ruptures/master)
[![Codecov](https://codecov.io/gh/deepcharles/ruptures/branch/master/graphs/badge.svg)](https://app.codecov.io/gh/deepcharles/ruptures/branch/master)

`ruptures` is a Python library for off-line change point detection.
This package provides methods for the analysis and segmentation of non-stationary signals.  Implemented algorithms include exact and approximate detection for various parametric and non-parametric models.
`ruptures` focuses on ease of use by providing a well-documented and consistent interface.
In addition, thanks to its modular structure, different algorithms and models can be connected and extended within this package.

**How to cite.** If you use `ruptures` in a scientific publication, we would appreciate citations to the following paper:

- C. Truong, L. Oudre, N. Vayatis. Selective review of offline change point detection methods. _Signal Processing_, 167:107299, 2020. [[journal]](https://doi.org/10.1016/j.sigpro.2019.107299) [[pdf]](http://www.laurentoudre.fr/publis/TOG-SP-19.pdf)


## Basic usage

(Please refer to the [documentation](https://centre-borelli.github.io/ruptures-docs/ "Link to documentation") for more advanced use.)

The following snippet creates a noisy piecewise constant signal, performs a penalized kernel change point detection and displays the results (alternating colors mark true regimes and dashed lines mark estimated change points).

```python
import matplotlib.pyplot as plt
import ruptures as rpt

# generate signal
n_samples, dim, sigma = 1000, 3, 4
n_bkps = 4  # number of breakpoints
signal, bkps = rpt.pw_constant(n_samples, dim, n_bkps, noise_std=sigma)

# detection
algo = rpt.Pelt(model="rbf").fit(signal)
result = algo.predict(pen=10)

# display
rpt.display(signal, bkps, result)
plt.show()
```

![](./images/example_readme.png)

## General information

#### Contact

Concerning this package, its use and bugs, use the [issue page](https://github.com/deepcharles/ruptures/issues) of the [ruptures repository](https://github.com/deepcharles/ruptures). For other inquiries, you can contact me [here](https://charles.doffy.net/contact/).


#### Important links

- [Documentation](https://centre-borelli.github.io/ruptures-docs)
- [Pypi package index](https://pypi.python.org/pypi/ruptures)

#### Dependencies and install

Installation instructions can be found [here](https://centre-borelli.github.io/ruptures-docs/install/).

#### Changelog

See the [changelog](https://github.com/deepcharles/ruptures/blob/master/CHANGELOG.md) for a history of notable changes to `ruptures`.

## Thanks to all our contributors

<a href="https://github.com/deepcharles/ruptures/graphs/contributors">
  <img src="https://contributors-img.web.app/image?repo=deepcharles/ruptures" />
</a>

## License

This project is under BSD license.

```
BSD 2-Clause License

Copyright (c) 2017-2022, ENS Paris-Saclay, CNRS
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
  list of conditions and the following disclaimer.

* 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.

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 COPYRIGHT HOLDER 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.
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/deepcharles/ruptures/",
    "name": "ruptures",
    "maintainer": "Charles Truong, Olivier Boulant",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "change point detection,signal segmentation,computer science,machine learning,kernel methods,time series",
    "author": "Charles Truong, Laurent Oudre, Nicolas Vayatis",
    "author_email": "charles@doffy.net",
    "download_url": "https://files.pythonhosted.org/packages/c4/5a/602dcb917f6cad8396c98477b6572501a1f84630124942b17b747bfea20a/ruptures-1.1.8.tar.gz",
    "platform": null,
    "description": "# Welcome to ruptures\n\n[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/deepcharles/ruptures/graphs/commit-activity)\n[![build](https://github.com/deepcharles/ruptures/actions/workflows/run-test.yml/badge.svg)](https://github.com/deepcharles/ruptures/actions/workflows/run-test.yml)\n![python](https://img.shields.io/badge/python-3.6%20|%203.7%20|%203.8%20|%203.9-blue)\n[![PyPI version](https://badge.fury.io/py/ruptures.svg)](https://badge.fury.io/py/ruptures)\n[![Conda Version](https://img.shields.io/conda/vn/conda-forge/ruptures.svg)](https://anaconda.org/conda-forge/ruptures)\n[![docs](https://github.com/deepcharles/ruptures/actions/workflows/check-docs.yml/badge.svg)](https://github.com/deepcharles/ruptures/actions/workflows/check-docs.yml)\n![PyPI - License](https://img.shields.io/pypi/l/ruptures)\n[![Downloads](https://pepy.tech/badge/ruptures)](https://pepy.tech/project/ruptures)\n<a href=\"https://github.com/psf/black\"><img alt=\"Code style: black\" src=\"https://img.shields.io/badge/code%20style-black-000000.svg\"></a>\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/deepcharles/ruptures/master)\n[![Codecov](https://codecov.io/gh/deepcharles/ruptures/branch/master/graphs/badge.svg)](https://app.codecov.io/gh/deepcharles/ruptures/branch/master)\n\n`ruptures` is a Python library for off-line change point detection.\nThis package provides methods for the analysis and segmentation of non-stationary signals.  Implemented algorithms include exact and approximate detection for various parametric and non-parametric models.\n`ruptures` focuses on ease of use by providing a well-documented and consistent interface.\nIn addition, thanks to its modular structure, different algorithms and models can be connected and extended within this package.\n\n**How to cite.** If you use `ruptures` in a scientific publication, we would appreciate citations to the following paper:\n\n- C. Truong, L. Oudre, N. Vayatis. Selective review of offline change point detection methods. _Signal Processing_, 167:107299, 2020. [[journal]](https://doi.org/10.1016/j.sigpro.2019.107299) [[pdf]](http://www.laurentoudre.fr/publis/TOG-SP-19.pdf)\n\n\n## Basic usage\n\n(Please refer to the [documentation](https://centre-borelli.github.io/ruptures-docs/ \"Link to documentation\") for more advanced use.)\n\nThe following snippet creates a noisy piecewise constant signal, performs a penalized kernel change point detection and displays the results (alternating colors mark true regimes and dashed lines mark estimated change points).\n\n```python\nimport matplotlib.pyplot as plt\nimport ruptures as rpt\n\n# generate signal\nn_samples, dim, sigma = 1000, 3, 4\nn_bkps = 4  # number of breakpoints\nsignal, bkps = rpt.pw_constant(n_samples, dim, n_bkps, noise_std=sigma)\n\n# detection\nalgo = rpt.Pelt(model=\"rbf\").fit(signal)\nresult = algo.predict(pen=10)\n\n# display\nrpt.display(signal, bkps, result)\nplt.show()\n```\n\n![](./images/example_readme.png)\n\n## General information\n\n#### Contact\n\nConcerning this package, its use and bugs, use the [issue page](https://github.com/deepcharles/ruptures/issues) of the [ruptures repository](https://github.com/deepcharles/ruptures). For other inquiries, you can contact me [here](https://charles.doffy.net/contact/).\n\n\n#### Important links\n\n- [Documentation](https://centre-borelli.github.io/ruptures-docs)\n- [Pypi package index](https://pypi.python.org/pypi/ruptures)\n\n#### Dependencies and install\n\nInstallation instructions can be found [here](https://centre-borelli.github.io/ruptures-docs/install/).\n\n#### Changelog\n\nSee the [changelog](https://github.com/deepcharles/ruptures/blob/master/CHANGELOG.md) for a history of notable changes to `ruptures`.\n\n## Thanks to all our contributors\n\n<a href=\"https://github.com/deepcharles/ruptures/graphs/contributors\">\n  <img src=\"https://contributors-img.web.app/image?repo=deepcharles/ruptures\" />\n</a>\n\n## License\n\nThis project is under BSD license.\n\n```\nBSD 2-Clause License\n\nCopyright (c) 2017-2022, ENS Paris-Saclay, CNRS\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this\n  list of conditions and the following disclaimer.\n\n* Redistributions in binary form must reproduce the above copyright notice,\n  this list of conditions and the following disclaimer in the documentation\n  and/or other materials provided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n```\n",
    "bugtrack_url": null,
    "license": "BSD-2-Clause",
    "summary": "Change point detection for signals in Python.",
    "version": "1.1.8",
    "project_urls": {
        "Bug Tracker": "https://github.com/deepcharles/ruptures/issues/",
        "Documentation": "https://centre-borelli.github.io/ruptures-docs/",
        "Homepage": "https://github.com/deepcharles/ruptures/",
        "Source": "https://github.com/deepcharles/ruptures/"
    },
    "split_keywords": [
        "change point detection",
        "signal segmentation",
        "computer science",
        "machine learning",
        "kernel methods",
        "time series"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66d41c51c6ea0ca2c738e72722ca9109f632e5cbbe2f227215db37b115cc9baa",
                "md5": "b0c934b2d41c2d20066e2ad22503a8cf",
                "sha256": "b45e371160aaf3ae1caa7b4b1496778944ee4469bffdb5f382d7f72af3593961"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b0c934b2d41c2d20066e2ad22503a8cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 399406,
            "upload_time": "2023-06-07T13:29:40",
            "upload_time_iso_8601": "2023-06-07T13:29:40.756789Z",
            "url": "https://files.pythonhosted.org/packages/66/d4/1c51c6ea0ca2c738e72722ca9109f632e5cbbe2f227215db37b115cc9baa/ruptures-1.1.8-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5055603e33eb5d41809a4c189bc7b4570288198b516d2656fea90d03f0b984f",
                "md5": "561aef892e1c663849c49e475f255c84",
                "sha256": "d081ce5db1f06eab4545bcd1aa4415572da571dd2579dd07b74cb17b3be02345"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "561aef892e1c663849c49e475f255c84",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1028986,
            "upload_time": "2023-06-07T13:29:43",
            "upload_time_iso_8601": "2023-06-07T13:29:43.087792Z",
            "url": "https://files.pythonhosted.org/packages/b5/05/5603e33eb5d41809a4c189bc7b4570288198b516d2656fea90d03f0b984f/ruptures-1.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bfc47e46e21e67c000ac730b8b1fdfe39b5de275212f6644e1fe9313aca08d8",
                "md5": "94ea8c026e0522365558ad7e84529394",
                "sha256": "7e371a49a649a887ce6b4247385b1f3c8a827e4b4cc46f7c8c386c0fc10627b1"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94ea8c026e0522365558ad7e84529394",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1044596,
            "upload_time": "2023-06-07T13:29:45",
            "upload_time_iso_8601": "2023-06-07T13:29:45.271489Z",
            "url": "https://files.pythonhosted.org/packages/6b/fc/47e46e21e67c000ac730b8b1fdfe39b5de275212f6644e1fe9313aca08d8/ruptures-1.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f34b5860b2f8a1c2739d56bb2364c5bc8eb8f83334142dc6208aca81d0c0272b",
                "md5": "b8dcbc2ed7211bfec86ce47167c7d944",
                "sha256": "8b845e35d316382cd86f09b334a20a97da34ec225b65ac5c10a7cb9431d040af"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b8dcbc2ed7211bfec86ce47167c7d944",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 382196,
            "upload_time": "2023-06-07T13:29:47",
            "upload_time_iso_8601": "2023-06-07T13:29:47.422042Z",
            "url": "https://files.pythonhosted.org/packages/f3/4b/5860b2f8a1c2739d56bb2364c5bc8eb8f83334142dc6208aca81d0c0272b/ruptures-1.1.8-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "410a416f329f7e4bd7fd2ce72414664c6e226458decd6de1984b1a7bb19ee0ee",
                "md5": "ea55240a7f5416dfd1449894c941512f",
                "sha256": "635c8fe5a6c181a7fa6340c6b03e803bc1feaf9f67c0cdd09e06b4a04bb4629b"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea55240a7f5416dfd1449894c941512f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 396810,
            "upload_time": "2023-06-07T13:29:48",
            "upload_time_iso_8601": "2023-06-07T13:29:48.881128Z",
            "url": "https://files.pythonhosted.org/packages/41/0a/416f329f7e4bd7fd2ce72414664c6e226458decd6de1984b1a7bb19ee0ee/ruptures-1.1.8-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2e649f97d6585ee31ece6b77aa22797b7750945a4a66de13f77b482c79d3910",
                "md5": "3059c9cd85be96055ff52976da5a16cf",
                "sha256": "6532bf82b1ed3059e82f9074e062c23a7ecc186a9dd86c3debedacd42b1e53fc"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3059c9cd85be96055ff52976da5a16cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1069508,
            "upload_time": "2023-06-07T13:29:50",
            "upload_time_iso_8601": "2023-06-07T13:29:50.910873Z",
            "url": "https://files.pythonhosted.org/packages/f2/e6/49f97d6585ee31ece6b77aa22797b7750945a4a66de13f77b482c79d3910/ruptures-1.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d058236b86c4b27c7416284e7026ff07a4b34b66e747faf4fd3a11da544e075c",
                "md5": "2ad5179b8866e942ebf53a1eb29c7d4d",
                "sha256": "f70019960e47fc9680be7b31474e31036c865772f5999e412ab6f4bc3826f00a"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ad5179b8866e942ebf53a1eb29c7d4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1077403,
            "upload_time": "2023-06-07T13:29:52",
            "upload_time_iso_8601": "2023-06-07T13:29:52.980702Z",
            "url": "https://files.pythonhosted.org/packages/d0/58/236b86c4b27c7416284e7026ff07a4b34b66e747faf4fd3a11da544e075c/ruptures-1.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a06fb44c312c931254b1024e8b62b3e71bdf12c71813022b3b8d3453f2f3b0cc",
                "md5": "cfc75028ed4d50f37436d3ee3215a6ff",
                "sha256": "d67239d6fff2ae2bbb7fc459ab673fefb9a6a48f39fa01a49bac30d88ce33e7f"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cfc75028ed4d50f37436d3ee3215a6ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 380814,
            "upload_time": "2023-06-07T13:29:54",
            "upload_time_iso_8601": "2023-06-07T13:29:54.236012Z",
            "url": "https://files.pythonhosted.org/packages/a0/6f/b44c312c931254b1024e8b62b3e71bdf12c71813022b3b8d3453f2f3b0cc/ruptures-1.1.8-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1527adf03d88248b76258fa955ca15ec69514df165012862bc75e53c4f1384dd",
                "md5": "8805c5758b3bdbf50728605b7a381b7c",
                "sha256": "39b17a603e3d05fc210584e5adea9125aac9704b5e2427f13b0b0589b33774ea"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8805c5758b3bdbf50728605b7a381b7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 396352,
            "upload_time": "2023-06-07T13:29:56",
            "upload_time_iso_8601": "2023-06-07T13:29:56.122651Z",
            "url": "https://files.pythonhosted.org/packages/15/27/adf03d88248b76258fa955ca15ec69514df165012862bc75e53c4f1384dd/ruptures-1.1.8-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78c770de0200448070634404653810fa26b37da2f108394a2fab2f85a777d7ae",
                "md5": "94d232a97724f0c5dd648cd3dc5afdaf",
                "sha256": "184695eb414bef4976642939b074272dcee7d1e975d5c92b88e2f6649c97259e"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "94d232a97724f0c5dd648cd3dc5afdaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 993169,
            "upload_time": "2023-06-07T13:29:57",
            "upload_time_iso_8601": "2023-06-07T13:29:57.624575Z",
            "url": "https://files.pythonhosted.org/packages/78/c7/70de0200448070634404653810fa26b37da2f108394a2fab2f85a777d7ae/ruptures-1.1.8-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7537e6402005a6d7a451c6b16172be9ed93e162c2ef9d9d885ad73b059950963",
                "md5": "b73d58705100a529d647a8a17f809db7",
                "sha256": "363f19a9bc60fb6039a1279bca8968ce8c80aefc71920c10454b18ffdc38c609"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b73d58705100a529d647a8a17f809db7",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 998296,
            "upload_time": "2023-06-07T13:29:59",
            "upload_time_iso_8601": "2023-06-07T13:29:59.417772Z",
            "url": "https://files.pythonhosted.org/packages/75/37/e6402005a6d7a451c6b16172be9ed93e162c2ef9d9d885ad73b059950963/ruptures-1.1.8-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5eec0c537649beee156cea8f34156be22d448ddd7322325c9d086ababe57fb6f",
                "md5": "9540c70d59c7e4be96d5e0c25d6dac89",
                "sha256": "85d2304237204a91c9cab87da0eb09b304486f3173807b4925c7055e9f795e26"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9540c70d59c7e4be96d5e0c25d6dac89",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 973980,
            "upload_time": "2023-06-07T13:30:02",
            "upload_time_iso_8601": "2023-06-07T13:30:02.649217Z",
            "url": "https://files.pythonhosted.org/packages/5e/ec/0c537649beee156cea8f34156be22d448ddd7322325c9d086ababe57fb6f/ruptures-1.1.8-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f62794f26780e2d81744e30238f70a4d484644c92aa4203d52315c6e9578029",
                "md5": "a9bee49c0fb13d98b2cc3a114562dbd3",
                "sha256": "062b15d0847d06f26e9e200b0ee2d11259d9040d9fbcca30260b1905d1186d0b"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "a9bee49c0fb13d98b2cc3a114562dbd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 375234,
            "upload_time": "2023-06-07T13:30:07",
            "upload_time_iso_8601": "2023-06-07T13:30:07.163472Z",
            "url": "https://files.pythonhosted.org/packages/8f/62/794f26780e2d81744e30238f70a4d484644c92aa4203d52315c6e9578029/ruptures-1.1.8-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e887c8b3ab9238774b938597d222b67bc27ddf45c0d1ec0f948c28f4eb406c2",
                "md5": "10bc82c5630ccfdd3a31781bac66507a",
                "sha256": "20df80d9b9b0da4255d891b63e7f222fb819731c090cd52a75acbaf6e1c0a497"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "10bc82c5630ccfdd3a31781bac66507a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": ">=3.6",
            "size": 403106,
            "upload_time": "2023-06-07T13:30:08",
            "upload_time_iso_8601": "2023-06-07T13:30:08.822088Z",
            "url": "https://files.pythonhosted.org/packages/1e/88/7c8b3ab9238774b938597d222b67bc27ddf45c0d1ec0f948c28f4eb406c2/ruptures-1.1.8-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fa1bc8a3beebcac3c1806ce420aca2970c6b880dc2be4734f1da0338dc12b49",
                "md5": "76f74109eb0a3d3ae3231f0bef860a46",
                "sha256": "ee68cfb87f9ed08e53fd00501de7b9964bc045ddbdee0604e2fb6879b64ac593"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76f74109eb0a3d3ae3231f0bef860a46",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 396480,
            "upload_time": "2023-06-07T13:30:10",
            "upload_time_iso_8601": "2023-06-07T13:30:10.421446Z",
            "url": "https://files.pythonhosted.org/packages/2f/a1/bc8a3beebcac3c1806ce420aca2970c6b880dc2be4734f1da0338dc12b49/ruptures-1.1.8-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c461f5d2b12dea431d930d03cd4000fd94e4726608f817adb937c76cf64d8573",
                "md5": "b2afb51f6ad85e4ab332cfd516d9ffb6",
                "sha256": "5f4b0e76a98e5a3ffd12d09f2d02900590c1957a3e4fb0636d656861ba061345"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b2afb51f6ad85e4ab332cfd516d9ffb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 993702,
            "upload_time": "2023-06-07T13:30:12",
            "upload_time_iso_8601": "2023-06-07T13:30:12.536668Z",
            "url": "https://files.pythonhosted.org/packages/c4/61/f5d2b12dea431d930d03cd4000fd94e4726608f817adb937c76cf64d8573/ruptures-1.1.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6dc4c1e6bc0b3b00798e1710a33e20b5cb99f91cf2eb88158a7df7982f34e845",
                "md5": "a13acaf0db8b579620363300d1828fcc",
                "sha256": "f2ca504e5b0fdf3a70bb17f3ac903ea9d79f608e8ac68a6424cada2c839afab7"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a13acaf0db8b579620363300d1828fcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 997781,
            "upload_time": "2023-06-07T13:30:14",
            "upload_time_iso_8601": "2023-06-07T13:30:14.025818Z",
            "url": "https://files.pythonhosted.org/packages/6d/c4/c1e6bc0b3b00798e1710a33e20b5cb99f91cf2eb88158a7df7982f34e845/ruptures-1.1.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b9a43d0e8e94f12610c4b15ceca9b17815a818e6ccaaf39a089ccc85ce9107d",
                "md5": "c544faaa78b27d4889c6af8b9fc0f01b",
                "sha256": "cea13924c990876bd919fc0d1726806683f5fc03e294fa4b3e5ed18fa17f3008"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c544faaa78b27d4889c6af8b9fc0f01b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 971748,
            "upload_time": "2023-06-07T13:30:15",
            "upload_time_iso_8601": "2023-06-07T13:30:15.786386Z",
            "url": "https://files.pythonhosted.org/packages/7b/9a/43d0e8e94f12610c4b15ceca9b17815a818e6ccaaf39a089ccc85ce9107d/ruptures-1.1.8-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4eba4f59c5e4a7c592c3a6551be27f99b145ec577f9cc2a7d838246ecb51d78",
                "md5": "0e6c53230838ae523e86c3841ba8028c",
                "sha256": "a847146f541de09af6ca8c0f74eefd00593c8b1d77875beb317a0efbdcf32575"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "0e6c53230838ae523e86c3841ba8028c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 363881,
            "upload_time": "2023-06-07T13:30:17",
            "upload_time_iso_8601": "2023-06-07T13:30:17.856374Z",
            "url": "https://files.pythonhosted.org/packages/d4/eb/a4f59c5e4a7c592c3a6551be27f99b145ec577f9cc2a7d838246ecb51d78/ruptures-1.1.8-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fdd9d2d8db3dfa2e70bc4d5def3e1702f6822585bef6682dc7cf3958a9ab68d",
                "md5": "60227b291ac20865e7a78d9c5b0fdeb7",
                "sha256": "1ab470608fe7c7d139a73f98996120e88afb1c850bdecd19665edf52f6a740ef"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "60227b291ac20865e7a78d9c5b0fdeb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.6",
            "size": 383075,
            "upload_time": "2023-06-07T13:30:19",
            "upload_time_iso_8601": "2023-06-07T13:30:19.880491Z",
            "url": "https://files.pythonhosted.org/packages/8f/dd/9d2d8db3dfa2e70bc4d5def3e1702f6822585bef6682dc7cf3958a9ab68d/ruptures-1.1.8-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86070279c81d815b02e1ecc0083a219c492e832f8015f7071a5e5110e991d81a",
                "md5": "56c3cb45c550d3ff576b7d6c65785d07",
                "sha256": "e0b3e0116611cdd16751787eb9e60e609714a10aa95c72139c7cef213c4fb4a7"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56c3cb45c550d3ff576b7d6c65785d07",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 395613,
            "upload_time": "2023-06-07T13:30:21",
            "upload_time_iso_8601": "2023-06-07T13:30:21.953378Z",
            "url": "https://files.pythonhosted.org/packages/86/07/0279c81d815b02e1ecc0083a219c492e832f8015f7071a5e5110e991d81a/ruptures-1.1.8-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ca56eadb37c7b8231e584421cbc5f123999f7991abbc01ffd7f0374c895a138",
                "md5": "a0ddb4b4b86132b024ee33a994e90672",
                "sha256": "4a6438f19ae39746da5f371442167856d59fe536577f9197135d1c5f59c2a50d"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a0ddb4b4b86132b024ee33a994e90672",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1047867,
            "upload_time": "2023-06-07T13:30:24",
            "upload_time_iso_8601": "2023-06-07T13:30:24.085005Z",
            "url": "https://files.pythonhosted.org/packages/9c/a5/6eadb37c7b8231e584421cbc5f123999f7991abbc01ffd7f0374c895a138/ruptures-1.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01019d2e98070518f6bfcd80a0511b69f507d604b3738da9694f1cfbe966607b",
                "md5": "292335c8009f48db90cfa4a181fb2d1e",
                "sha256": "676058cf0bb08274f98e70b7aa21309a2b960ebbaa5f093e032f778652aa3488"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "292335c8009f48db90cfa4a181fb2d1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1057466,
            "upload_time": "2023-06-07T13:30:25",
            "upload_time_iso_8601": "2023-06-07T13:30:25.880914Z",
            "url": "https://files.pythonhosted.org/packages/01/01/9d2e98070518f6bfcd80a0511b69f507d604b3738da9694f1cfbe966607b/ruptures-1.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8963ac65b18958bf0636ab2fef36efae921e95147b2a14c3c046b23ddd7a6f5",
                "md5": "f5e5d7aaaa21630474263c778bf81c35",
                "sha256": "2826de86d2ec1d42079eda540bf783b21879e9fd500a03a22a00a914dcfa02e7"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5e5d7aaaa21630474263c778bf81c35",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 384358,
            "upload_time": "2023-06-07T13:30:27",
            "upload_time_iso_8601": "2023-06-07T13:30:27.919051Z",
            "url": "https://files.pythonhosted.org/packages/b8/96/3ac65b18958bf0636ab2fef36efae921e95147b2a14c3c046b23ddd7a6f5/ruptures-1.1.8-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa45fe4e2a15aeb7a62741149c8f9f697af30640ddfa3feee8cc114a89800282",
                "md5": "e8874e4609dc13cf35826173b24f2ebc",
                "sha256": "55924f655dd7030dd4f332677c9d3ace06777a65e69b3e60688e070c4830d712"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8874e4609dc13cf35826173b24f2ebc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 399406,
            "upload_time": "2023-06-07T13:30:29",
            "upload_time_iso_8601": "2023-06-07T13:30:29.313692Z",
            "url": "https://files.pythonhosted.org/packages/aa/45/fe4e2a15aeb7a62741149c8f9f697af30640ddfa3feee8cc114a89800282/ruptures-1.1.8-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab135f5879eb57d4ef380801f99da4f93a8768b0503acb10b6e158b35c18ce7b",
                "md5": "81a6345e334e5648ddbe515053787d90",
                "sha256": "5fb05f5c503a42cef4231a62469f08fb3e3a410462c83f2fc513ca886fc1502a"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "81a6345e334e5648ddbe515053787d90",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1040410,
            "upload_time": "2023-06-07T13:30:30",
            "upload_time_iso_8601": "2023-06-07T13:30:30.798770Z",
            "url": "https://files.pythonhosted.org/packages/ab/13/5f5879eb57d4ef380801f99da4f93a8768b0503acb10b6e158b35c18ce7b/ruptures-1.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f58b426099456ec8eb96e225e686f1ee4507cbe355388f4ea52a30f913cbddc8",
                "md5": "250af8d49a559af9d90d0bfbd48f5397",
                "sha256": "6a5073c5cda3308ffafc2c317440e5bac8403b286c4b6f28eb6cd87df10ad52e"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "250af8d49a559af9d90d0bfbd48f5397",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1047914,
            "upload_time": "2023-06-07T13:30:32",
            "upload_time_iso_8601": "2023-06-07T13:30:32.342149Z",
            "url": "https://files.pythonhosted.org/packages/f5/8b/426099456ec8eb96e225e686f1ee4507cbe355388f4ea52a30f913cbddc8/ruptures-1.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d0194b4e4f6e0e159a0da24acfa1664526595c6c89a279f3bf6d1fbde44f98d",
                "md5": "4286c03e3a4f886b86aa74a7ce2947ee",
                "sha256": "d97c8c877c6d7d4cdae172abcd246eddae64eb4c1fa733657a989099a181cb82"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4286c03e3a4f886b86aa74a7ce2947ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 384220,
            "upload_time": "2023-06-07T13:30:33",
            "upload_time_iso_8601": "2023-06-07T13:30:33.782495Z",
            "url": "https://files.pythonhosted.org/packages/2d/01/94b4e4f6e0e159a0da24acfa1664526595c6c89a279f3bf6d1fbde44f98d/ruptures-1.1.8-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c45a602dcb917f6cad8396c98477b6572501a1f84630124942b17b747bfea20a",
                "md5": "bee3b1110ebdd5a43b352d43c0ccc988",
                "sha256": "75e1814851b706218c47a733d3d1c94acdcc690f35c69c08d48f0df9d3672cb6"
            },
            "downloads": -1,
            "filename": "ruptures-1.1.8.tar.gz",
            "has_sig": false,
            "md5_digest": "bee3b1110ebdd5a43b352d43c0ccc988",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 241947,
            "upload_time": "2023-06-07T13:30:35",
            "upload_time_iso_8601": "2023-06-07T13:30:35.309382Z",
            "url": "https://files.pythonhosted.org/packages/c4/5a/602dcb917f6cad8396c98477b6572501a1f84630124942b17b747bfea20a/ruptures-1.1.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-07 13:30:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "deepcharles",
    "github_project": "ruptures",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "ruptures"
}
        
Elapsed time: 0.15892s