aeon


Nameaeon JSON
Version 0.8.1 PyPI version JSON
download
home_pageNone
SummaryA toolkit for conducting machine learning tasks with time series data
upload_time2024-04-25 12:14:29
maintainerNone
docs_urlNone
authorNone
requires_python<3.13,>=3.8
licenseBSD 3-Clause License Copyright (c) The aeon 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: * 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. * Neither the name of the copyright holder 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 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.
keywords data-science machine-learning data-mining time-series scikit-learn forecasting time-series-analysis time-series-classification time-series-clustering time-series-regression
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            <p align="center">
    <a href="https://aeon-toolkit.org"><img src="https://raw.githubusercontent.com/aeon-toolkit/aeon/main/docs/images/logo/aeon-logo-blue-compact.png" width="50%" alt="aeon logo" /></a>
</p>

# ⌛ Welcome to aeon

`aeon` is an open-source toolkit for learning from time series. It is compatible with
[scikit-learn](https://scikit-learn.org) and provides access to the very latest
algorithms for time series machine learning, in addition to a range of classical
techniques for learning tasks such as forecasting and classification.

We strive to provide a broad library of time series algorithms including the
latest advances, offer efficient implementations using numba, and interfaces with other
time series packages to provide a single framework for algorithm comparison.

The latest `aeon` release is `v0.8.1`. You can view the full changelog
[here](https://www.aeon-toolkit.org/en/stable/changelog.html).

Our webpage and documentation is available at https://aeon-toolkit.org.

The following modules are still considered experimental, and the [deprecation policy](https://www.aeon-toolkit.org/en/stable/developer_guide/deprecation.html)
does not apply:

`annotation`, `anomaly_detection`, `benchmarking`, `segmentation`, `similarity_search`,
`testing`, `transformations/series`, `visualisation`

| Overview      |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
|---------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **CI/CD**     | [![github-actions-release](https://img.shields.io/github/actions/workflow/status/aeon-toolkit/aeon/release.yml?logo=github&label=build%20%28release%29)](https://github.com/aeon-toolkit/aeon/actions/workflows/release.yml) [![github-actions-main](https://img.shields.io/github/actions/workflow/status/aeon-toolkit/aeon/pr_pytest.yml?logo=github&branch=main&label=build%20%28main%29)](https://github.com/aeon-toolkit/aeon/actions/workflows/pr_pytest.yml) [![github-actions-nightly](https://img.shields.io/github/actions/workflow/status/aeon-toolkit/aeon/periodic_tests.yml?logo=github&label=build%20%28nightly%29)](https://github.com/aeon-toolkit/aeon/actions/workflows/periodic_tests.yml) [![docs-main](https://img.shields.io/readthedocs/aeon-toolkit/stable?logo=readthedocs&label=docs%20%28stable%29)](https://www.aeon-toolkit.org/en/stable/) [![docs-main](https://img.shields.io/readthedocs/aeon-toolkit/latest?logo=readthedocs&label=docs%20%28latest%29)](https://www.aeon-toolkit.org/en/latest/) [![!codecov](https://img.shields.io/codecov/c/github/aeon-toolkit/aeon?label=codecov&logo=codecov)](https://codecov.io/gh/aeon-toolkit/aeon) |
| **Code**      | [![!pypi](https://img.shields.io/pypi/v/aeon?logo=pypi&color=blue)](https://pypi.org/project/aeon/) [![!conda](https://img.shields.io/conda/vn/conda-forge/aeon?logo=anaconda&color=blue)](https://anaconda.org/conda-forge/aeon) [![!python-versions](https://img.shields.io/pypi/pyversions/aeon?logo=python)](https://www.python.org/) [![!black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![license](https://img.shields.io/badge/license-BSD%203--Clause-green?logo=style)](https://github.com/aeon-toolkit/aeon/blob/main/LICENSE) [![binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/aeon-toolkit/aeon/main?filepath=examples)                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| **Community** | [![!slack](https://img.shields.io/static/v1?logo=slack&label=Slack&message=chat&color=lightgreen)](https://join.slack.com/t/aeon-toolkit/shared_invite/zt-22vwvut29-HDpCu~7VBUozyfL_8j3dLA) [![!linkedin](https://img.shields.io/static/v1?logo=linkedin&label=LinkedIn&message=news&color=lightblue)](https://www.linkedin.com/company/aeon-toolkit/) [![!twitter](https://img.shields.io/static/v1?logo=twitter&label=Twitter&message=news&color=lightblue)](https://twitter.com/aeon_toolkit)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |

## ⚙️ Installation

`aeon` requires a Python version of 3.8 or greater. Our full installation guide is
available in our [documentation](https://www.aeon-toolkit.org/en/stable/installation.html).

The easiest way to install `aeon` is via pip:

```bash
pip install aeon
```

Some estimators require additional packages to be installed. If you want to install
the full package with all optional dependencies, you can use:

```bash
pip install aeon[all_extras]
```

Instructions for installation from the [GitHub source](https://github.com/aeon-toolkit/aeon)
can be found [here](https://www.aeon-toolkit.org/en/stable/developer_guide/dev_installation.html).

## ⏲️ Getting started

The best place to get started for all `aeon` packages is our [getting started guide](https://www.aeon-toolkit.org/en/stable/getting_started.html).

Below we provide a quick example of how to use `aeon` for forecasting,
classification and clustering.

### Forecasting

```python
import pandas as pd
from aeon.forecasting.trend import TrendForecaster

y = pd.Series([20.0, 40.0, 60.0, 80.0, 100.0])
>>> 0     20.0
>>> 1     40.0
>>> 2     60.0
>>> 3     80.0
>>> 4    100.0
>>> dtype: float64

forecaster = TrendForecaster()
forecaster.fit(y)  # fit the forecaster
>>> TrendForecaster()

pred = forecaster.predict(fh=[1, 2, 3])  # forecast the next 3 values
>>> 5    120.0
>>> 6    140.0
>>> 7    160.0
>>> dtype: float64
```

### Classification

```python
import numpy as np
from aeon.classification.distance_based import KNeighborsTimeSeriesClassifier

X = [[[1, 2, 3, 4, 5, 5]],  # 3D array example (univariate)
     [[1, 2, 3, 4, 4, 2]],  # Three samples, one channel, six series length,
     [[8, 7, 6, 5, 4, 4]]]
y = ['low', 'low', 'high']  # class labels for each sample
X = np.array(X)
y = np.array(y)

clf = KNeighborsTimeSeriesClassifier(distance="dtw")
clf.fit(X, y)  # fit the classifier on train data
>>> KNeighborsTimeSeriesClassifier()

X_test = np.array(
    [[[2, 2, 2, 2, 2, 2]], [[5, 5, 5, 5, 5, 5]], [[6, 6, 6, 6, 6, 6]]]
)
y_pred = clf.predict(X_test)  # make class predictions on new data
>>> ['low' 'high' 'high']
```

### Clustering

```python
import numpy as np
from aeon.clustering import TimeSeriesKMeans

X = np.array([[[1, 2, 3, 4, 5, 5]],  # 3D array example (univariate)
     [[1, 2, 3, 4, 4, 2]],  # Three samples, one channel, six series length,
     [[8, 7, 6, 5, 4, 4]]])

clu = TimeSeriesKMeans(distance="dtw", n_clusters=2)
clu.fit(X)  # fit the clusterer on train data
>>> TimeSeriesKMeans(distance='dtw', n_clusters=2)

clu.labels_ # get training cluster labels
>>> array([0, 0, 1])

X_test = np.array(
    [[[2, 2, 2, 2, 2, 2]], [[5, 5, 5, 5, 5, 5]], [[6, 6, 6, 6, 6, 6]]]
)
clu.predict(X_test)  # Assign clusters to new data
>>> array([1, 0, 0])
```

## 💬 Where to ask questions

| Type                                | Platforms                        |
|-------------------------------------|----------------------------------|
| 🐛 **Bug Reports**                  | [GitHub Issue Tracker]           |
| ✨ **Feature Requests & Ideas**      | [GitHub Issue Tracker] & [Slack] |
| 💻 **Usage Questions**              | [GitHub Discussions] & [Slack]   |
| 💬 **General Discussion**           | [GitHub Discussions] & [Slack]   |
| 🏭 **Contribution & Development**   | [Slack]                          |

[GitHub Issue Tracker]: https://github.com/aeon-toolkit/aeon/issues
[GitHub Discussions]: https://github.com/aeon-toolkit/aeon/discussions
[Slack]: https://join.slack.com/t/aeon-toolkit/shared_invite/zt-22vwvut29-HDpCu~7VBUozyfL_8j3dLA

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "aeon",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.13,>=3.8",
    "maintainer_email": "aeon developers <contact@aeon-toolkit.org>",
    "keywords": "data-science, machine-learning, data-mining, time-series, scikit-learn, forecasting, time-series-analysis, time-series-classification, time-series-clustering, time-series-regression",
    "author": null,
    "author_email": "aeon developers <contact@aeon-toolkit.org>",
    "download_url": "https://files.pythonhosted.org/packages/5f/4b/c72a00eecd76394d16964d8a5ba050b0cb2df7c3c1fc3d837bb718b65386/aeon-0.8.1.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n    <a href=\"https://aeon-toolkit.org\"><img src=\"https://raw.githubusercontent.com/aeon-toolkit/aeon/main/docs/images/logo/aeon-logo-blue-compact.png\" width=\"50%\" alt=\"aeon logo\" /></a>\n</p>\n\n# \u231b Welcome to aeon\n\n`aeon` is an open-source toolkit for learning from time series. It is compatible with\n[scikit-learn](https://scikit-learn.org) and provides access to the very latest\nalgorithms for time series machine learning, in addition to a range of classical\ntechniques for learning tasks such as forecasting and classification.\n\nWe strive to provide a broad library of time series algorithms including the\nlatest advances, offer efficient implementations using numba, and interfaces with other\ntime series packages to provide a single framework for algorithm comparison.\n\nThe latest `aeon` release is `v0.8.1`. You can view the full changelog\n[here](https://www.aeon-toolkit.org/en/stable/changelog.html).\n\nOur webpage and documentation is available at https://aeon-toolkit.org.\n\nThe following modules are still considered experimental, and the [deprecation policy](https://www.aeon-toolkit.org/en/stable/developer_guide/deprecation.html)\ndoes not apply:\n\n`annotation`, `anomaly_detection`, `benchmarking`, `segmentation`, `similarity_search`,\n`testing`, `transformations/series`, `visualisation`\n\n| Overview      |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |\n|---------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| **CI/CD**     | [![github-actions-release](https://img.shields.io/github/actions/workflow/status/aeon-toolkit/aeon/release.yml?logo=github&label=build%20%28release%29)](https://github.com/aeon-toolkit/aeon/actions/workflows/release.yml) [![github-actions-main](https://img.shields.io/github/actions/workflow/status/aeon-toolkit/aeon/pr_pytest.yml?logo=github&branch=main&label=build%20%28main%29)](https://github.com/aeon-toolkit/aeon/actions/workflows/pr_pytest.yml) [![github-actions-nightly](https://img.shields.io/github/actions/workflow/status/aeon-toolkit/aeon/periodic_tests.yml?logo=github&label=build%20%28nightly%29)](https://github.com/aeon-toolkit/aeon/actions/workflows/periodic_tests.yml) [![docs-main](https://img.shields.io/readthedocs/aeon-toolkit/stable?logo=readthedocs&label=docs%20%28stable%29)](https://www.aeon-toolkit.org/en/stable/) [![docs-main](https://img.shields.io/readthedocs/aeon-toolkit/latest?logo=readthedocs&label=docs%20%28latest%29)](https://www.aeon-toolkit.org/en/latest/) [![!codecov](https://img.shields.io/codecov/c/github/aeon-toolkit/aeon?label=codecov&logo=codecov)](https://codecov.io/gh/aeon-toolkit/aeon) |\n| **Code**      | [![!pypi](https://img.shields.io/pypi/v/aeon?logo=pypi&color=blue)](https://pypi.org/project/aeon/) [![!conda](https://img.shields.io/conda/vn/conda-forge/aeon?logo=anaconda&color=blue)](https://anaconda.org/conda-forge/aeon) [![!python-versions](https://img.shields.io/pypi/pyversions/aeon?logo=python)](https://www.python.org/) [![!black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![license](https://img.shields.io/badge/license-BSD%203--Clause-green?logo=style)](https://github.com/aeon-toolkit/aeon/blob/main/LICENSE) [![binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/aeon-toolkit/aeon/main?filepath=examples)                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |\n| **Community** | [![!slack](https://img.shields.io/static/v1?logo=slack&label=Slack&message=chat&color=lightgreen)](https://join.slack.com/t/aeon-toolkit/shared_invite/zt-22vwvut29-HDpCu~7VBUozyfL_8j3dLA) [![!linkedin](https://img.shields.io/static/v1?logo=linkedin&label=LinkedIn&message=news&color=lightblue)](https://www.linkedin.com/company/aeon-toolkit/) [![!twitter](https://img.shields.io/static/v1?logo=twitter&label=Twitter&message=news&color=lightblue)](https://twitter.com/aeon_toolkit)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |\n\n## \u2699\ufe0f Installation\n\n`aeon` requires a Python version of 3.8 or greater. Our full installation guide is\navailable in our [documentation](https://www.aeon-toolkit.org/en/stable/installation.html).\n\nThe easiest way to install `aeon` is via pip:\n\n```bash\npip install aeon\n```\n\nSome estimators require additional packages to be installed. If you want to install\nthe full package with all optional dependencies, you can use:\n\n```bash\npip install aeon[all_extras]\n```\n\nInstructions for installation from the [GitHub source](https://github.com/aeon-toolkit/aeon)\ncan be found [here](https://www.aeon-toolkit.org/en/stable/developer_guide/dev_installation.html).\n\n## \u23f2\ufe0f Getting started\n\nThe best place to get started for all `aeon` packages is our [getting started guide](https://www.aeon-toolkit.org/en/stable/getting_started.html).\n\nBelow we provide a quick example of how to use `aeon` for forecasting,\nclassification and clustering.\n\n### Forecasting\n\n```python\nimport pandas as pd\nfrom aeon.forecasting.trend import TrendForecaster\n\ny = pd.Series([20.0, 40.0, 60.0, 80.0, 100.0])\n>>> 0     20.0\n>>> 1     40.0\n>>> 2     60.0\n>>> 3     80.0\n>>> 4    100.0\n>>> dtype: float64\n\nforecaster = TrendForecaster()\nforecaster.fit(y)  # fit the forecaster\n>>> TrendForecaster()\n\npred = forecaster.predict(fh=[1, 2, 3])  # forecast the next 3 values\n>>> 5    120.0\n>>> 6    140.0\n>>> 7    160.0\n>>> dtype: float64\n```\n\n### Classification\n\n```python\nimport numpy as np\nfrom aeon.classification.distance_based import KNeighborsTimeSeriesClassifier\n\nX = [[[1, 2, 3, 4, 5, 5]],  # 3D array example (univariate)\n     [[1, 2, 3, 4, 4, 2]],  # Three samples, one channel, six series length,\n     [[8, 7, 6, 5, 4, 4]]]\ny = ['low', 'low', 'high']  # class labels for each sample\nX = np.array(X)\ny = np.array(y)\n\nclf = KNeighborsTimeSeriesClassifier(distance=\"dtw\")\nclf.fit(X, y)  # fit the classifier on train data\n>>> KNeighborsTimeSeriesClassifier()\n\nX_test = np.array(\n    [[[2, 2, 2, 2, 2, 2]], [[5, 5, 5, 5, 5, 5]], [[6, 6, 6, 6, 6, 6]]]\n)\ny_pred = clf.predict(X_test)  # make class predictions on new data\n>>> ['low' 'high' 'high']\n```\n\n### Clustering\n\n```python\nimport numpy as np\nfrom aeon.clustering import TimeSeriesKMeans\n\nX = np.array([[[1, 2, 3, 4, 5, 5]],  # 3D array example (univariate)\n     [[1, 2, 3, 4, 4, 2]],  # Three samples, one channel, six series length,\n     [[8, 7, 6, 5, 4, 4]]])\n\nclu = TimeSeriesKMeans(distance=\"dtw\", n_clusters=2)\nclu.fit(X)  # fit the clusterer on train data\n>>> TimeSeriesKMeans(distance='dtw', n_clusters=2)\n\nclu.labels_ # get training cluster labels\n>>> array([0, 0, 1])\n\nX_test = np.array(\n    [[[2, 2, 2, 2, 2, 2]], [[5, 5, 5, 5, 5, 5]], [[6, 6, 6, 6, 6, 6]]]\n)\nclu.predict(X_test)  # Assign clusters to new data\n>>> array([1, 0, 0])\n```\n\n## \ud83d\udcac Where to ask questions\n\n| Type                                | Platforms                        |\n|-------------------------------------|----------------------------------|\n| \ud83d\udc1b **Bug Reports**                  | [GitHub Issue Tracker]           |\n| \u2728 **Feature Requests & Ideas**      | [GitHub Issue Tracker] & [Slack] |\n| \ud83d\udcbb **Usage Questions**              | [GitHub Discussions] & [Slack]   |\n| \ud83d\udcac **General Discussion**           | [GitHub Discussions] & [Slack]   |\n| \ud83c\udfed **Contribution & Development**   | [Slack]                          |\n\n[GitHub Issue Tracker]: https://github.com/aeon-toolkit/aeon/issues\n[GitHub Discussions]: https://github.com/aeon-toolkit/aeon/discussions\n[Slack]: https://join.slack.com/t/aeon-toolkit/shared_invite/zt-22vwvut29-HDpCu~7VBUozyfL_8j3dLA\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License  Copyright (c) The aeon 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:  * 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.  * Neither the name of the copyright holder 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 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. ",
    "summary": "A toolkit for conducting machine learning tasks with time series data",
    "version": "0.8.1",
    "project_urls": {
        "API": "https://www.aeon-toolkit.org/en/stable/api_reference.html",
        "Changelog": "https://www.aeon-toolkit.org/en/stable/changelog.html",
        "Documentation": "https://www.aeon-toolkit.org",
        "Download": "https://pypi.org/project/aeon/#files",
        "Homepage": "https://www.aeon-toolkit.org",
        "Repository": "https://github.com/aeon-toolkit/aeon"
    },
    "split_keywords": [
        "data-science",
        " machine-learning",
        " data-mining",
        " time-series",
        " scikit-learn",
        " forecasting",
        " time-series-analysis",
        " time-series-classification",
        " time-series-clustering",
        " time-series-regression"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01f7d916aa68c411b79540a60b6ecbf82ade2fee3d642d32ad7978043c42ced7",
                "md5": "1472935c9a16061bfc9c01c061bd0347",
                "sha256": "e9f404c3ac26f913add60da223ec114459148734dfe5343d38931734142e4246"
            },
            "downloads": -1,
            "filename": "aeon-0.8.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1472935c9a16061bfc9c01c061bd0347",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.13,>=3.8",
            "size": 54452725,
            "upload_time": "2024-04-25T12:14:23",
            "upload_time_iso_8601": "2024-04-25T12:14:23.412610Z",
            "url": "https://files.pythonhosted.org/packages/01/f7/d916aa68c411b79540a60b6ecbf82ade2fee3d642d32ad7978043c42ced7/aeon-0.8.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f4bc72a00eecd76394d16964d8a5ba050b0cb2df7c3c1fc3d837bb718b65386",
                "md5": "32cf90b6c8b254a8d60d422a64025674",
                "sha256": "305948d6a82bd50d37b9d97f83b95fae7d9e3c2ae7aaab56eb578f4b7852c8d4"
            },
            "downloads": -1,
            "filename": "aeon-0.8.1.tar.gz",
            "has_sig": false,
            "md5_digest": "32cf90b6c8b254a8d60d422a64025674",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.13,>=3.8",
            "size": 53802139,
            "upload_time": "2024-04-25T12:14:29",
            "upload_time_iso_8601": "2024-04-25T12:14:29.135364Z",
            "url": "https://files.pythonhosted.org/packages/5f/4b/c72a00eecd76394d16964d8a5ba050b0cb2df7c3c1fc3d837bb718b65386/aeon-0.8.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-25 12:14:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aeon-toolkit",
    "github_project": "aeon",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "aeon"
}
        
Elapsed time: 0.23524s