akima


Nameakima JSON
Version 2024.5.24 PyPI version JSON
download
home_pagehttps://www.cgohlke.com
SummaryAkima Interpolation
upload_time2024-05-25 05:13:37
maintainerNone
docs_urlNone
authorChristoph Gohlke
requires_python>=3.9
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Akima Interpolation
===================

Akima is a Python library that implements Akima's interpolation method
described in:

    A new method of interpolation and smooth curve fitting based on local
    procedures. Hiroshi Akima, J. ACM, October 1970, 17(4), 589-602.

A continuously differentiable sub-spline is built from piecewise cubic
polynomials. It passes through the given data points and will appear smooth
and natural.

This module is no longer being actively developed. Consider using
`scipy.interpolate.Akima1DInterpolator
<http://docs.scipy.org/doc/scipy/reference/interpolate.html>`_ instead.

:Author: `Christoph Gohlke <https://www.cgohlke.com>`_
:License: BSD 3-Clause
:Version: 2024.5.24

Quickstart
----------

Install the akima package and all dependencies from the
`Python Package Index <https://pypi.org/project/akima/>`_::

    python -m pip install -U akima

See `Examples`_ for using the programming interface.

Source code, examples, and support are available on
`GitHub <https://github.com/cgohlke/akima>`_.

Requirements
------------

This revision was tested with the following requirements and dependencies
(other versions may work):

- `CPython <https://www.python.org>`_ 3.9.13, 3.10.11, 3.11.9, 3.12.3
- `NumPy <https://pypi.org/project/numpy/>`_ 1.26.4

Revisions
---------

2024.5.24

- Fix docstring examples not correctly rendered on GitHub.
- Support NumPy 2.

2024.1.6

- Add type hints.
- Remove support for Python 3.8 and numpy 1.22 (NEP 29).

2022.9.12

- Remove support for Python 3.7 (NEP 29).
- Update metadata.

Examples
--------
>>> import numpy
>>> from matplotlib import pyplot
>>> from scipy.interpolate import Akima1DInterpolator
>>> def example():
...     '''Plot interpolated Gaussian noise.'''
...     x = numpy.sort(numpy.random.random(10) * 100)
...     y = numpy.random.normal(0.0, 0.1, size=len(x))
...     x2 = numpy.arange(x[0], x[-1], 0.05)
...     y2 = interpolate(x, y, x2)
...     y3 = Akima1DInterpolator(x, y)(x2)
...     pyplot.title('Akima interpolation of Gaussian noise')
...     pyplot.plot(x2, y2, 'r-', label='akima')
...     pyplot.plot(x2, y3, 'b:', label='scipy', linewidth=2.5)
...     pyplot.plot(x, y, 'go', label='data')
...     pyplot.legend()
...     pyplot.show()
...
>>> example()

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.cgohlke.com",
    "name": "akima",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Christoph Gohlke",
    "author_email": "cgohlke@cgohlke.com",
    "download_url": "https://files.pythonhosted.org/packages/b1/95/93759508b2dfd82b5a69941f5d1f14e098b3e375e8531f3c6550ea529755/akima-2024.5.24.tar.gz",
    "platform": "any",
    "description": "Akima Interpolation\n===================\n\nAkima is a Python library that implements Akima's interpolation method\ndescribed in:\n\n    A new method of interpolation and smooth curve fitting based on local\n    procedures. Hiroshi Akima, J. ACM, October 1970, 17(4), 589-602.\n\nA continuously differentiable sub-spline is built from piecewise cubic\npolynomials. It passes through the given data points and will appear smooth\nand natural.\n\nThis module is no longer being actively developed. Consider using\n`scipy.interpolate.Akima1DInterpolator\n<http://docs.scipy.org/doc/scipy/reference/interpolate.html>`_ instead.\n\n:Author: `Christoph Gohlke <https://www.cgohlke.com>`_\n:License: BSD 3-Clause\n:Version: 2024.5.24\n\nQuickstart\n----------\n\nInstall the akima package and all dependencies from the\n`Python Package Index <https://pypi.org/project/akima/>`_::\n\n    python -m pip install -U akima\n\nSee `Examples`_ for using the programming interface.\n\nSource code, examples, and support are available on\n`GitHub <https://github.com/cgohlke/akima>`_.\n\nRequirements\n------------\n\nThis revision was tested with the following requirements and dependencies\n(other versions may work):\n\n- `CPython <https://www.python.org>`_ 3.9.13, 3.10.11, 3.11.9, 3.12.3\n- `NumPy <https://pypi.org/project/numpy/>`_ 1.26.4\n\nRevisions\n---------\n\n2024.5.24\n\n- Fix docstring examples not correctly rendered on GitHub.\n- Support NumPy 2.\n\n2024.1.6\n\n- Add type hints.\n- Remove support for Python 3.8 and numpy 1.22 (NEP 29).\n\n2022.9.12\n\n- Remove support for Python 3.7 (NEP 29).\n- Update metadata.\n\nExamples\n--------\n>>> import numpy\n>>> from matplotlib import pyplot\n>>> from scipy.interpolate import Akima1DInterpolator\n>>> def example():\n...     '''Plot interpolated Gaussian noise.'''\n...     x = numpy.sort(numpy.random.random(10) * 100)\n...     y = numpy.random.normal(0.0, 0.1, size=len(x))\n...     x2 = numpy.arange(x[0], x[-1], 0.05)\n...     y2 = interpolate(x, y, x2)\n...     y3 = Akima1DInterpolator(x, y)(x2)\n...     pyplot.title('Akima interpolation of Gaussian noise')\n...     pyplot.plot(x2, y2, 'r-', label='akima')\n...     pyplot.plot(x2, y3, 'b:', label='scipy', linewidth=2.5)\n...     pyplot.plot(x, y, 'go', label='data')\n...     pyplot.legend()\n...     pyplot.show()\n...\n>>> example()\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Akima Interpolation",
    "version": "2024.5.24",
    "project_urls": {
        "Bug Tracker": "https://github.com/cgohlke/akima/issues",
        "Homepage": "https://www.cgohlke.com",
        "Source Code": "https://github.com/cgohlke/akima"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0817ce590bb11f557fdcddc4a8513ac6933cd915d93683bc4f0d21d0d1c414a3",
                "md5": "dc2f320abac5550b69e42c6b649385fc",
                "sha256": "0d6e2301f625c0950e90f52ed0c2c4e43c91bd692eaf07a50def79b0d137a247"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc2f320abac5550b69e42c6b649385fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 13332,
            "upload_time": "2024-05-25T05:13:07",
            "upload_time_iso_8601": "2024-05-25T05:13:07.849439Z",
            "url": "https://files.pythonhosted.org/packages/08/17/ce590bb11f557fdcddc4a8513ac6933cd915d93683bc4f0d21d0d1c414a3/akima-2024.5.24-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "edd79c55c75575ec4e2d7dcec294ee42191c23f8624790dd0a807ff9be7312b3",
                "md5": "a0828ddb39bd3b95e5c47991f5a54cb5",
                "sha256": "2a7bf7efafd7dc788d1a1971c432da8881b2feebe52f9ab36f71aed5a256c68e"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a0828ddb39bd3b95e5c47991f5a54cb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 13473,
            "upload_time": "2024-05-25T05:13:09",
            "upload_time_iso_8601": "2024-05-25T05:13:09.717840Z",
            "url": "https://files.pythonhosted.org/packages/ed/d7/9c55c75575ec4e2d7dcec294ee42191c23f8624790dd0a807ff9be7312b3/akima-2024.5.24-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf381f669356cd06704f786056c49d4b1a50b2cb4a6fa584cba92ec88490d2f9",
                "md5": "35ce92378aaf5e4210416baa67a44ad5",
                "sha256": "b7839a44bf4a6c908c1ca95430462dce317e9cf4e2cbc6a6b3844f7dd57355dd"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35ce92378aaf5e4210416baa67a44ad5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 32456,
            "upload_time": "2024-05-25T05:13:11",
            "upload_time_iso_8601": "2024-05-25T05:13:11.399598Z",
            "url": "https://files.pythonhosted.org/packages/bf/38/1f669356cd06704f786056c49d4b1a50b2cb4a6fa584cba92ec88490d2f9/akima-2024.5.24-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9afc002a70c6bdbd67fa91eba9525fdb884ec4d1af77a0559c308f69b69b3020",
                "md5": "1e3ceb4f13990dd7fa971794d0be645f",
                "sha256": "51b397105f500d826969e3aa9aa59ad1b69329d3ab736cd43d9155cf9ff64ad8"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "1e3ceb4f13990dd7fa971794d0be645f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 14926,
            "upload_time": "2024-05-25T05:13:12",
            "upload_time_iso_8601": "2024-05-25T05:13:12.873477Z",
            "url": "https://files.pythonhosted.org/packages/9a/fc/002a70c6bdbd67fa91eba9525fdb884ec4d1af77a0559c308f69b69b3020/akima-2024.5.24-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d30b3b698d6a399432afe58343f1eca067e6bc52ca3a625ac9773fc86a5c2fa1",
                "md5": "91f85d85689ba35813a92d71c3fece12",
                "sha256": "3e58f4af09c66aa3e42a2ad1a358dd0707ec112ba8a542afd9f5a56fd9f7d99b"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "91f85d85689ba35813a92d71c3fece12",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 15834,
            "upload_time": "2024-05-25T05:13:14",
            "upload_time_iso_8601": "2024-05-25T05:13:14.741643Z",
            "url": "https://files.pythonhosted.org/packages/d3/0b/3b698d6a399432afe58343f1eca067e6bc52ca3a625ac9773fc86a5c2fa1/akima-2024.5.24-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7336611bbc23f956b40bfe3004f0bcccf5258d34fdefa8d1a797ec1edffd016f",
                "md5": "603ebaf7965a651617f177df1cd19e78",
                "sha256": "6af27102766ab9be3f2a6d159fa368b2406faaca19ef3163fd3ff6414ead66e4"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "603ebaf7965a651617f177df1cd19e78",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 13328,
            "upload_time": "2024-05-25T05:13:16",
            "upload_time_iso_8601": "2024-05-25T05:13:16.404050Z",
            "url": "https://files.pythonhosted.org/packages/73/36/611bbc23f956b40bfe3004f0bcccf5258d34fdefa8d1a797ec1edffd016f/akima-2024.5.24-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5f2c32a8aa6de32b227239c31425bb912c6ff7d6bf71546329d4cf6c9a37204",
                "md5": "00af2ce4e5d3fe1654ee5b724fb8e684",
                "sha256": "b0651965454e453360a3dd034c38f8dcecfde8b0fec33a69f92dbc56039ad11e"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "00af2ce4e5d3fe1654ee5b724fb8e684",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 13475,
            "upload_time": "2024-05-25T05:13:17",
            "upload_time_iso_8601": "2024-05-25T05:13:17.892071Z",
            "url": "https://files.pythonhosted.org/packages/b5/f2/c32a8aa6de32b227239c31425bb912c6ff7d6bf71546329d4cf6c9a37204/akima-2024.5.24-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86b4efc8d0cf428de3826348ffe56c48351c83d3c5032a1c5d11b0ea95ca1e9c",
                "md5": "c371a29c796e62a5ac37573b700a6590",
                "sha256": "b2221ac87e98cd7939903fdc13435cc146541cf3490f357c5787e2c22570f837"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c371a29c796e62a5ac37573b700a6590",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 32624,
            "upload_time": "2024-05-25T05:13:19",
            "upload_time_iso_8601": "2024-05-25T05:13:19.424410Z",
            "url": "https://files.pythonhosted.org/packages/86/b4/efc8d0cf428de3826348ffe56c48351c83d3c5032a1c5d11b0ea95ca1e9c/akima-2024.5.24-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01bce56584bc25908785e743b9b2611bac7f95c5ebbdcebc8c37ba8fb8966b53",
                "md5": "e1078603e0eb2852cecd89663623fe26",
                "sha256": "8d4b1002aac02cb90c53db859844a381d6603c42c2186fb5bb7cd9c801965b2a"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "e1078603e0eb2852cecd89663623fe26",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 14931,
            "upload_time": "2024-05-25T05:13:21",
            "upload_time_iso_8601": "2024-05-25T05:13:21.011483Z",
            "url": "https://files.pythonhosted.org/packages/01/bc/e56584bc25908785e743b9b2611bac7f95c5ebbdcebc8c37ba8fb8966b53/akima-2024.5.24-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13fd0d0c70ad60d61ad9b58decd253bf8df23b98b0220bdc4e8d35273266afee",
                "md5": "631a93df3b7a796ceb9776f6a86862b7",
                "sha256": "1a37581110f72c128e0e99a1874235de7b255612d2c1c422d7dd61f0330e3a28"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "631a93df3b7a796ceb9776f6a86862b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 15840,
            "upload_time": "2024-05-25T05:13:22",
            "upload_time_iso_8601": "2024-05-25T05:13:22.514413Z",
            "url": "https://files.pythonhosted.org/packages/13/fd/0d0c70ad60d61ad9b58decd253bf8df23b98b0220bdc4e8d35273266afee/akima-2024.5.24-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae0d66ef79aace1db16df777ccf6dd5cc314c3a053b350667cac246cf47d20ab",
                "md5": "4b1bb68a1eac09932e3965cdfced9ab5",
                "sha256": "28b5609cc09f27164474659c7f8afb80032fad4f08c1c71112b4c01d76cc8b6a"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "4b1bb68a1eac09932e3965cdfced9ab5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 14627,
            "upload_time": "2024-05-25T05:13:23",
            "upload_time_iso_8601": "2024-05-25T05:13:23.708172Z",
            "url": "https://files.pythonhosted.org/packages/ae/0d/66ef79aace1db16df777ccf6dd5cc314c3a053b350667cac246cf47d20ab/akima-2024.5.24-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cea976bec8ab889c1cfcb13bbce4f2e3927c07458377841f8d13ad5dd4799e9",
                "md5": "ac88dcb22d44426cfe953267ca176950",
                "sha256": "4c4ac30fec8a673687d7a8180fa28cd38e5e12fc6e0a91319ef0b2eab35e021f"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac88dcb22d44426cfe953267ca176950",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 13411,
            "upload_time": "2024-05-25T05:13:24",
            "upload_time_iso_8601": "2024-05-25T05:13:24.559447Z",
            "url": "https://files.pythonhosted.org/packages/7c/ea/976bec8ab889c1cfcb13bbce4f2e3927c07458377841f8d13ad5dd4799e9/akima-2024.5.24-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ade82012da0ec83b7f260eab4422d04795edb81ab2c841a81d5766ebc1ca585",
                "md5": "3174fd84ceda2add688ac3f16ab9a2da",
                "sha256": "bdbd21ffa366ed09e3facfe5b1b73bb537e189c40cd7183d21de564771bd5a12"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3174fd84ceda2add688ac3f16ab9a2da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 13505,
            "upload_time": "2024-05-25T05:13:26",
            "upload_time_iso_8601": "2024-05-25T05:13:26.281832Z",
            "url": "https://files.pythonhosted.org/packages/2a/de/82012da0ec83b7f260eab4422d04795edb81ab2c841a81d5766ebc1ca585/akima-2024.5.24-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0b1fdcb547c4c7449ed06faee1486e207679062e8414fef824ef1da49bd106f",
                "md5": "354686325cdc56eadf1505071db07de3",
                "sha256": "275dc4fc7c4bb51383d5ad288ccfb28b5fb0841dce0c2a84d5ec21d40524d55b"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "354686325cdc56eadf1505071db07de3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 33551,
            "upload_time": "2024-05-25T05:13:27",
            "upload_time_iso_8601": "2024-05-25T05:13:27.715539Z",
            "url": "https://files.pythonhosted.org/packages/d0/b1/fdcb547c4c7449ed06faee1486e207679062e8414fef824ef1da49bd106f/akima-2024.5.24-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afb0fcdcb32007a197c3d2c42c5feb5644bed44a75684ce8111fe99b74e73152",
                "md5": "cb16455006c0b8d1d3b5370d9a8e5b3e",
                "sha256": "e65926a72e1e33729981d20db4c5f66b65510686e14f289337f92aba0bc14665"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "cb16455006c0b8d1d3b5370d9a8e5b3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 14996,
            "upload_time": "2024-05-25T05:13:28",
            "upload_time_iso_8601": "2024-05-25T05:13:28.594596Z",
            "url": "https://files.pythonhosted.org/packages/af/b0/fcdcb32007a197c3d2c42c5feb5644bed44a75684ce8111fe99b74e73152/akima-2024.5.24-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f84c7b76d69b676940cbd0bdb61b824f8d00b34a4233ea76d62352d8961cf71",
                "md5": "19372fae247f9ad77b78fda5e1a9de4b",
                "sha256": "7a1f242b521e8679150c23f23ad42f33d394d92efb54847a083aeed60b512c48"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "19372fae247f9ad77b78fda5e1a9de4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 15888,
            "upload_time": "2024-05-25T05:13:29",
            "upload_time_iso_8601": "2024-05-25T05:13:29.541658Z",
            "url": "https://files.pythonhosted.org/packages/7f/84/c7b76d69b676940cbd0bdb61b824f8d00b34a4233ea76d62352d8961cf71/akima-2024.5.24-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5c3d1cb63b0fadf1801f5ad0697f74cdc0ce9ee8538b3c9bf2149c0fc754262",
                "md5": "dbaa7e1d2b2b5cbb459b9e501169d0f1",
                "sha256": "6ac8322edb0383904bdc7829af8a29489b06ad7247f6d3da6c30544e41629f77"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "dbaa7e1d2b2b5cbb459b9e501169d0f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 14669,
            "upload_time": "2024-05-25T05:13:31",
            "upload_time_iso_8601": "2024-05-25T05:13:31.029886Z",
            "url": "https://files.pythonhosted.org/packages/a5/c3/d1cb63b0fadf1801f5ad0697f74cdc0ce9ee8538b3c9bf2149c0fc754262/akima-2024.5.24-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "068ac8a41cad32ff610280e6ec09f49804f8dce913efe64f15dbba007ff1299a",
                "md5": "800a6d818f7b706d73b0667076924c25",
                "sha256": "1d545a96849ed73ce855f6ff889acb052367db7e837c62ed99964ceb6a9e249f"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "800a6d818f7b706d73b0667076924c25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 13328,
            "upload_time": "2024-05-25T05:13:31",
            "upload_time_iso_8601": "2024-05-25T05:13:31.882264Z",
            "url": "https://files.pythonhosted.org/packages/06/8a/c8a41cad32ff610280e6ec09f49804f8dce913efe64f15dbba007ff1299a/akima-2024.5.24-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "673263dd41651a46fd310ee099fe53621d0f9be8caa76a0109df1978c02b3d78",
                "md5": "f4f0209ad0314f33a921e965c08ae4f4",
                "sha256": "7e3a3908b122ca2b14d4d55b5d27fbd7f25542c03ea2d3b31c9e92513fa9b0d7"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f4f0209ad0314f33a921e965c08ae4f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 13471,
            "upload_time": "2024-05-25T05:13:33",
            "upload_time_iso_8601": "2024-05-25T05:13:33.317788Z",
            "url": "https://files.pythonhosted.org/packages/67/32/63dd41651a46fd310ee099fe53621d0f9be8caa76a0109df1978c02b3d78/akima-2024.5.24-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c979e64d39da5272dedc00b0004ae7d8edd09c353543c3ffb6f9c6b824af8346",
                "md5": "b35f04a06dcd229bb5f8a030793c3231",
                "sha256": "225e787f8ebaf8f2b33afe4004457d30b10757cf5e1f82f7ba08e92c4e8a9f61"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b35f04a06dcd229bb5f8a030793c3231",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 32217,
            "upload_time": "2024-05-25T05:13:34",
            "upload_time_iso_8601": "2024-05-25T05:13:34.770789Z",
            "url": "https://files.pythonhosted.org/packages/c9/79/e64d39da5272dedc00b0004ae7d8edd09c353543c3ffb6f9c6b824af8346/akima-2024.5.24-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f29a8dcc0414e3cddd4f68ed9a364307699cd515afb3c71ff80bd04fe263109",
                "md5": "c4263eb1bd984e28132f2c88e74a36e9",
                "sha256": "11e02c109598c7fc0dec134a1dba578cd55cee288a64cd51badf33fc54027cb3"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "c4263eb1bd984e28132f2c88e74a36e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 14922,
            "upload_time": "2024-05-25T05:13:35",
            "upload_time_iso_8601": "2024-05-25T05:13:35.678112Z",
            "url": "https://files.pythonhosted.org/packages/6f/29/a8dcc0414e3cddd4f68ed9a364307699cd515afb3c71ff80bd04fe263109/akima-2024.5.24-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8530b72367d6868ed7b8f4f3bd87999b5299072b53c90751e64b4741acd8c2b6",
                "md5": "23e0e02bad9cc0d0eb86b25b7769792f",
                "sha256": "1213ed2af75dca41d930a997d0aa7b81fe1d798e8ebfcd1008096f84c6e79b77"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "23e0e02bad9cc0d0eb86b25b7769792f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 15836,
            "upload_time": "2024-05-25T05:13:36",
            "upload_time_iso_8601": "2024-05-25T05:13:36.581869Z",
            "url": "https://files.pythonhosted.org/packages/85/30/b72367d6868ed7b8f4f3bd87999b5299072b53c90751e64b4741acd8c2b6/akima-2024.5.24-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b19593759508b2dfd82b5a69941f5d1f14e098b3e375e8531f3c6550ea529755",
                "md5": "3f423b21d33a1c14bc30c50bc1bec697",
                "sha256": "ffabc1c159402e7c11ad3424022a5f6c985acc1a592fd307e386fe132a7af2a3"
            },
            "downloads": -1,
            "filename": "akima-2024.5.24.tar.gz",
            "has_sig": false,
            "md5_digest": "3f423b21d33a1c14bc30c50bc1bec697",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 10615,
            "upload_time": "2024-05-25T05:13:37",
            "upload_time_iso_8601": "2024-05-25T05:13:37.509914Z",
            "url": "https://files.pythonhosted.org/packages/b1/95/93759508b2dfd82b5a69941f5d1f14e098b3e375e8531f3c6550ea529755/akima-2024.5.24.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-25 05:13:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cgohlke",
    "github_project": "akima",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "akima"
}
        
Elapsed time: 1.55130s