akima


Nameakima JSON
Version 2025.8.1 PyPI version JSON
download
home_pagehttps://www.cgohlke.com
SummaryAkima Interpolation
upload_time2025-08-01 02:39:27
maintainerNone
docs_urlNone
authorChristoph Gohlke
requires_python>=3.11
licenseBSD-3-Clause
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: 2025.8.1

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.11.9, 3.12.10, 3.13.5, 3.14.0rc 64-bit
- `NumPy <https://pypi.org/project/numpy/>`_ 2.3.2

Revisions
---------

2025.8.1

- Drop support for Python 3.10, support Python 3.14.

2025.1.1

- Drop support for Python 3.9, support Python 3.13.

2024.5.24

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

2024.1.6

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

2022.9.12

- Drop 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.11",
    "maintainer_email": null,
    "keywords": null,
    "author": "Christoph Gohlke",
    "author_email": "cgohlke@cgohlke.com",
    "download_url": "https://files.pythonhosted.org/packages/5a/3e/97ce245dfdae5a66e0e6cf6406e4584e113e013918d50532dc01aab7f878/akima-2025.8.1.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: 2025.8.1\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.11.9, 3.12.10, 3.13.5, 3.14.0rc 64-bit\n- `NumPy <https://pypi.org/project/numpy/>`_ 2.3.2\n\nRevisions\n---------\n\n2025.8.1\n\n- Drop support for Python 3.10, support Python 3.14.\n\n2025.1.1\n\n- Drop support for Python 3.9, support Python 3.13.\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- Drop support for Python 3.8 and numpy 1.22 (NEP 29).\n\n2022.9.12\n\n- Drop 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-3-Clause",
    "summary": "Akima Interpolation",
    "version": "2025.8.1",
    "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": null,
            "digests": {
                "blake2b_256": "f1fd423e8a59b59701b4d34cd252a3901ca6260240eac020af8dd2641dc22320",
                "md5": "e5652751ea757b355872262a814d2589",
                "sha256": "e26c35dc4a24bb7cae0d80eab76033e1d1e38fa6d3b936f9ca7844e1d08ec77f"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5652751ea757b355872262a814d2589",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 13358,
            "upload_time": "2025-08-01T02:39:00",
            "upload_time_iso_8601": "2025-08-01T02:39:00.717419Z",
            "url": "https://files.pythonhosted.org/packages/f1/fd/423e8a59b59701b4d34cd252a3901ca6260240eac020af8dd2641dc22320/akima-2025.8.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3a9904c216253a7bfba6368349622142ef166a8b694d4148e943147fef077b4",
                "md5": "4332cdba4b6fdd8765ca5e3c1c0afe27",
                "sha256": "02560dcbab9b6ae245710de91d3672fbbe623fc1b24bd6c21b45bd8ba81a661b"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4332cdba4b6fdd8765ca5e3c1c0afe27",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 14018,
            "upload_time": "2025-08-01T02:39:01",
            "upload_time_iso_8601": "2025-08-01T02:39:01.747456Z",
            "url": "https://files.pythonhosted.org/packages/a3/a9/904c216253a7bfba6368349622142ef166a8b694d4148e943147fef077b4/akima-2025.8.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b66e81ae87f26774322725fab1fa3de449cbbe89ced54f30d4945e6c2fc1d2a",
                "md5": "a48bf30134cb99e912f47be6f671e82d",
                "sha256": "2942518b2ee3622f0c931728a09bfa7afb5ea4c3e2f7d7fbf4bb9a8491abb010"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a48bf30134cb99e912f47be6f671e82d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 33135,
            "upload_time": "2025-08-01T02:39:02",
            "upload_time_iso_8601": "2025-08-01T02:39:02.659477Z",
            "url": "https://files.pythonhosted.org/packages/6b/66/e81ae87f26774322725fab1fa3de449cbbe89ced54f30d4945e6c2fc1d2a/akima-2025.8.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c153918f66f8799eaad32f22b37c35d4268ef3d0e406f455bdef1b27d49b6774",
                "md5": "dd5a1b767a8b07a791fd635626aea204",
                "sha256": "b862b6c211cc28641d3284fa93f2de404751f444d92516eab5dde785c2bfb74f"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "dd5a1b767a8b07a791fd635626aea204",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 15552,
            "upload_time": "2025-08-01T02:39:03",
            "upload_time_iso_8601": "2025-08-01T02:39:03.605585Z",
            "url": "https://files.pythonhosted.org/packages/c1/53/918f66f8799eaad32f22b37c35d4268ef3d0e406f455bdef1b27d49b6774/akima-2025.8.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "853f0540ba2d5bdf57a6e87d8dc2060cd001ea55197b0c4191a62f076baf8dc5",
                "md5": "cc269855c434c213dfb15d158923fbd2",
                "sha256": "d259238f92c3666baef7283f39f6fa18199c05a7511dc604373cb11e52291b77"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cc269855c434c213dfb15d158923fbd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 16517,
            "upload_time": "2025-08-01T02:39:04",
            "upload_time_iso_8601": "2025-08-01T02:39:04.514247Z",
            "url": "https://files.pythonhosted.org/packages/85/3f/0540ba2d5bdf57a6e87d8dc2060cd001ea55197b0c4191a62f076baf8dc5/akima-2025.8.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43ba87e22d2d966cbe498c0ab942de359be38d3cc00b8ec249baa154b2429a07",
                "md5": "880600353729050582159619f251f476",
                "sha256": "d2d9e634059c3a0b16ba4b21080908c0b0f904483a0fb108261d6540d1ba39e7"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "880600353729050582159619f251f476",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.11",
            "size": 15289,
            "upload_time": "2025-08-01T02:39:05",
            "upload_time_iso_8601": "2025-08-01T02:39:05.471683Z",
            "url": "https://files.pythonhosted.org/packages/43/ba/87e22d2d966cbe498c0ab942de359be38d3cc00b8ec249baa154b2429a07/akima-2025.8.1-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7b6af30063b8bc994cf607be54085e39c7ce0782b4a7ffd62c2138a65e3ec5e0",
                "md5": "b3d046f4ee61901385c0c72959a26868",
                "sha256": "6e98ed34b40f9e7d4e0cdc41fb7f5e44ac391e7437860f65d76e9dd38b0e982d"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3d046f4ee61901385c0c72959a26868",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 13454,
            "upload_time": "2025-08-01T02:39:06",
            "upload_time_iso_8601": "2025-08-01T02:39:06.500650Z",
            "url": "https://files.pythonhosted.org/packages/7b/6a/f30063b8bc994cf607be54085e39c7ce0782b4a7ffd62c2138a65e3ec5e0/akima-2025.8.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90529772d0d39aa96b86403d1b4bebcbdb64c957bef80a29ea66e121c79c3f5d",
                "md5": "f1ad2330166da9c30fba6b6bb764ccf8",
                "sha256": "406010945ceed6fcac440f12a07420e2ce629f98a71729ba86d8e4c878cdd937"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f1ad2330166da9c30fba6b6bb764ccf8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 14052,
            "upload_time": "2025-08-01T02:39:07",
            "upload_time_iso_8601": "2025-08-01T02:39:07.428687Z",
            "url": "https://files.pythonhosted.org/packages/90/52/9772d0d39aa96b86403d1b4bebcbdb64c957bef80a29ea66e121c79c3f5d/akima-2025.8.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67005c4fe3438269e1d43099b84bebcfd9be40f27c5e02973d5e4447a781ea97",
                "md5": "32d97f6d7deeeb5bac0e998cc436d0cb",
                "sha256": "2cb61cced6b4b322fd611af57923a45c7ab155da05c5a718bb89a858553ad967"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32d97f6d7deeeb5bac0e998cc436d0cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 34072,
            "upload_time": "2025-08-01T02:39:08",
            "upload_time_iso_8601": "2025-08-01T02:39:08.528525Z",
            "url": "https://files.pythonhosted.org/packages/67/00/5c4fe3438269e1d43099b84bebcfd9be40f27c5e02973d5e4447a781ea97/akima-2025.8.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8984ee6f2dba9e9c20db71c73ef17a6d8d9f7fd78e3fc0e18ca7b23cf31d7450",
                "md5": "5744a1a8304517068ab1085d44259a56",
                "sha256": "ff70acac913012d0ba84fb70860f053a768874a5e23c34e693c30e84ef4de60a"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "5744a1a8304517068ab1085d44259a56",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 15628,
            "upload_time": "2025-08-01T02:39:09",
            "upload_time_iso_8601": "2025-08-01T02:39:09.816096Z",
            "url": "https://files.pythonhosted.org/packages/89/84/ee6f2dba9e9c20db71c73ef17a6d8d9f7fd78e3fc0e18ca7b23cf31d7450/akima-2025.8.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60d233a281f9e1c56775a2d36817fd84b0e5cede5a39e831b836aff4d3d12bdc",
                "md5": "f9be16b34ccf13e58fbfcd8a214a1b80",
                "sha256": "8c089a677ec3c6bb6db2bee9455800c035d793f106c5b5aba8ab67aa87d2444c"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f9be16b34ccf13e58fbfcd8a214a1b80",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 16560,
            "upload_time": "2025-08-01T02:39:10",
            "upload_time_iso_8601": "2025-08-01T02:39:10.546082Z",
            "url": "https://files.pythonhosted.org/packages/60/d2/33a281f9e1c56775a2d36817fd84b0e5cede5a39e831b836aff4d3d12bdc/akima-2025.8.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a21f7181a2d4a202c09cb20805117a52c6647a89165c1425a7e97a5b133ea07b",
                "md5": "744ada7418b69d17c5c71ad79ce2f567",
                "sha256": "a58a28ccbbb5396605e0ea5318010f22f900ccbcb74a2bcd25bc03168728403c"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "744ada7418b69d17c5c71ad79ce2f567",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.11",
            "size": 15268,
            "upload_time": "2025-08-01T02:39:11",
            "upload_time_iso_8601": "2025-08-01T02:39:11.658374Z",
            "url": "https://files.pythonhosted.org/packages/a2/1f/7181a2d4a202c09cb20805117a52c6647a89165c1425a7e97a5b133ea07b/akima-2025.8.1-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6c74ad43a1abf38a3ef9307357eecf9ba5297fbb8c5020a6505b3a6cfc381ad",
                "md5": "f8f5f3c9dc7abda991f93b79131bfaac",
                "sha256": "c3e77caf9f6513248982d44b6fbaceb03dabbd7c1f6f9a60b42b5ed0d78cca01"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8f5f3c9dc7abda991f93b79131bfaac",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.11",
            "size": 13460,
            "upload_time": "2025-08-01T02:39:12",
            "upload_time_iso_8601": "2025-08-01T02:39:12.632072Z",
            "url": "https://files.pythonhosted.org/packages/b6/c7/4ad43a1abf38a3ef9307357eecf9ba5297fbb8c5020a6505b3a6cfc381ad/akima-2025.8.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be9c0e7b0fb98e0dd17256eb4d268dfddad18e8e458747ee801ca48b937270dd",
                "md5": "640b664862ebc368b22dea79cf6d2fc9",
                "sha256": "3dccf9f953a6a068bd0390efd7d4e4c576b9ab7e2c2d862a8024c73510fb8297"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "640b664862ebc368b22dea79cf6d2fc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.11",
            "size": 14048,
            "upload_time": "2025-08-01T02:39:13",
            "upload_time_iso_8601": "2025-08-01T02:39:13.478236Z",
            "url": "https://files.pythonhosted.org/packages/be/9c/0e7b0fb98e0dd17256eb4d268dfddad18e8e458747ee801ca48b937270dd/akima-2025.8.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a37b6d93eed954731c4798c4d72fe7867d29f1418d03efa1b759e8f751ac4d4",
                "md5": "d685a8c93caeeb92bfaf5a8cf6d9bd5b",
                "sha256": "3c3ee4d047602ccea563d5f536b0f46fd0dce972325af83e7249982f9bdc19ad"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d685a8c93caeeb92bfaf5a8cf6d9bd5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.11",
            "size": 34118,
            "upload_time": "2025-08-01T02:39:14",
            "upload_time_iso_8601": "2025-08-01T02:39:14.420201Z",
            "url": "https://files.pythonhosted.org/packages/7a/37/b6d93eed954731c4798c4d72fe7867d29f1418d03efa1b759e8f751ac4d4/akima-2025.8.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36847c5399794a9eb2b1fcb6b175abff7a92c85bbd40642dc7bf56e578940d86",
                "md5": "7d27217cbd9286cce883a75f8fb47d4c",
                "sha256": "97bbe57f513f67dd6a4cd995540b25da7346766c961479d8ef05bb10080753dd"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "7d27217cbd9286cce883a75f8fb47d4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.11",
            "size": 15632,
            "upload_time": "2025-08-01T02:39:15",
            "upload_time_iso_8601": "2025-08-01T02:39:15.344105Z",
            "url": "https://files.pythonhosted.org/packages/36/84/7c5399794a9eb2b1fcb6b175abff7a92c85bbd40642dc7bf56e578940d86/akima-2025.8.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e5713c6030c68f4b1c2966448e1f67063cbe21acd48a29ea15f4527cf51779c9",
                "md5": "a1ee86ec16a47528a77bbc1b16cbe3d6",
                "sha256": "49f35afae3b9243b5172e40a61d9566a5dddf898c1f854d7d0d0cb96308e14b8"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a1ee86ec16a47528a77bbc1b16cbe3d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.11",
            "size": 16565,
            "upload_time": "2025-08-01T02:39:16",
            "upload_time_iso_8601": "2025-08-01T02:39:16.046042Z",
            "url": "https://files.pythonhosted.org/packages/e5/71/3c6030c68f4b1c2966448e1f67063cbe21acd48a29ea15f4527cf51779c9/akima-2025.8.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adec04575d5659e8bf8fc14941ca8175fbea028b1cf33d06cff806b463ac4af6",
                "md5": "31e8aa8d4047c2318ac613253dde482f",
                "sha256": "02b9c6dfeb05818f37b0a0e4d468392473f36a0e114e2fd07eea99805b0f9e82"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "31e8aa8d4047c2318ac613253dde482f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.11",
            "size": 15274,
            "upload_time": "2025-08-01T02:39:17",
            "upload_time_iso_8601": "2025-08-01T02:39:17.060399Z",
            "url": "https://files.pythonhosted.org/packages/ad/ec/04575d5659e8bf8fc14941ca8175fbea028b1cf33d06cff806b463ac4af6/akima-2025.8.1-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28498bcba70e296ccd5abfd79a9d36a8cb30a85e3772a2044efea4b09b6ec252",
                "md5": "63ac4267254aa690d47d4c29a0acc5bf",
                "sha256": "a0fa5b98e4b2f5ab521e4f3390560228ffee4f60eb6444c3fc8e1ae793b44f29"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63ac4267254aa690d47d4c29a0acc5bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 13437,
            "upload_time": "2025-08-01T02:39:17",
            "upload_time_iso_8601": "2025-08-01T02:39:17.982721Z",
            "url": "https://files.pythonhosted.org/packages/28/49/8bcba70e296ccd5abfd79a9d36a8cb30a85e3772a2044efea4b09b6ec252/akima-2025.8.1-cp314-cp314-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3fa6861fff3a97e10f1ecb30519cb8ab5eee7b554fc482e0cc2e29831c37f03",
                "md5": "50dff979d8a8c3137b2572703dfcd44d",
                "sha256": "25b757169b3d2afdb05729773276831cd7e4aa521e966c522e5368bfc5ca04f3"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "50dff979d8a8c3137b2572703dfcd44d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 14058,
            "upload_time": "2025-08-01T02:39:18",
            "upload_time_iso_8601": "2025-08-01T02:39:18.700794Z",
            "url": "https://files.pythonhosted.org/packages/d3/fa/6861fff3a97e10f1ecb30519cb8ab5eee7b554fc482e0cc2e29831c37f03/akima-2025.8.1-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93c0683ea7e6476e2526dbca5ab88a75dd8adb9d6d60961ebaa341ad884acc3c",
                "md5": "aa92b41680b6092b6b80d24126696b6d",
                "sha256": "e22c33a34d269bf82084cb6b1fcb17d2fbfee707a4301dd1006b1005a5d115a0"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa92b41680b6092b6b80d24126696b6d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 34093,
            "upload_time": "2025-08-01T02:39:19",
            "upload_time_iso_8601": "2025-08-01T02:39:19.441867Z",
            "url": "https://files.pythonhosted.org/packages/93/c0/683ea7e6476e2526dbca5ab88a75dd8adb9d6d60961ebaa341ad884acc3c/akima-2025.8.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d81f3b8d1e5e6ebc502dc158ac38a1b261d0e2da4f7e9712e554525494c22f0c",
                "md5": "578bc7aedb6516045af168960aef3840",
                "sha256": "e2ebcb3203de6397253324b42d0a80a8eb18ba4e7934e74a4ea7c82bdf67ddb3"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "578bc7aedb6516045af168960aef3840",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 13769,
            "upload_time": "2025-08-01T02:39:22",
            "upload_time_iso_8601": "2025-08-01T02:39:22.624601Z",
            "url": "https://files.pythonhosted.org/packages/d8/1f/3b8d1e5e6ebc502dc158ac38a1b261d0e2da4f7e9712e554525494c22f0c/akima-2025.8.1-cp314-cp314t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bfc9e0461d96e6a835e3136334bffd89b4d728a47eda75752b67f96f697cd74",
                "md5": "7027923726ef6a72f22b67028bae2cdc",
                "sha256": "c2aa2584b7501c252729efdcd09d5529106a78c86c3850dc37dd6c198eed2119"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7027923726ef6a72f22b67028bae2cdc",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 14360,
            "upload_time": "2025-08-01T02:39:23",
            "upload_time_iso_8601": "2025-08-01T02:39:23.356010Z",
            "url": "https://files.pythonhosted.org/packages/8b/fc/9e0461d96e6a835e3136334bffd89b4d728a47eda75752b67f96f697cd74/akima-2025.8.1-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9919a8fdf2663d61ec5bcd7108e26ce2941345ea1c67ed738b2b1e05508a25fb",
                "md5": "ebc11b6814ca533087dae1408afe6024",
                "sha256": "60f1756aeb59a03bdb1d868ec03a0251e04e972c38a86682318388a586fb0579"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebc11b6814ca533087dae1408afe6024",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 37543,
            "upload_time": "2025-08-01T02:39:24",
            "upload_time_iso_8601": "2025-08-01T02:39:24.076936Z",
            "url": "https://files.pythonhosted.org/packages/99/19/a8fdf2663d61ec5bcd7108e26ce2941345ea1c67ed738b2b1e05508a25fb/akima-2025.8.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9a96464e701856a2677525f67ee48638d2ada327a480220e81e8065f55f1025",
                "md5": "876022f2a4591851f3ecb7cba627de5e",
                "sha256": "f062e27cf86d4994610b988afd8c1b8b680471dc01bed2df44f46d3a4c5457b2"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "876022f2a4591851f3ecb7cba627de5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 16652,
            "upload_time": "2025-08-01T02:39:24",
            "upload_time_iso_8601": "2025-08-01T02:39:24.789808Z",
            "url": "https://files.pythonhosted.org/packages/a9/a9/6464e701856a2677525f67ee48638d2ada327a480220e81e8065f55f1025/akima-2025.8.1-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89b856107ffcaa76be4e432b45475030fd3119b200ab8d62b4a923d8865a2b73",
                "md5": "abb6f00c6a3476090fa1a5c0f7bc44b9",
                "sha256": "a3d9d9b4a0a4f781cb0b203688d87f43a570af388f50a53c8f68a7f06ed7a3f6"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "abb6f00c6a3476090fa1a5c0f7bc44b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 17635,
            "upload_time": "2025-08-01T02:39:25",
            "upload_time_iso_8601": "2025-08-01T02:39:25.698589Z",
            "url": "https://files.pythonhosted.org/packages/89/b8/56107ffcaa76be4e432b45475030fd3119b200ab8d62b4a923d8865a2b73/akima-2025.8.1-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5674d433f2dc6ed3526d10266187f53c6a3d722976f3c2cf92cf26ef1d1b8cfb",
                "md5": "07720d511e692a384c4b81fcd843d84d",
                "sha256": "c68d2292f5fb762cc8573b1f012fcc6e8f35efd996e880b31d5e3ccc58c62cff"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "07720d511e692a384c4b81fcd843d84d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 15998,
            "upload_time": "2025-08-01T02:39:26",
            "upload_time_iso_8601": "2025-08-01T02:39:26.778152Z",
            "url": "https://files.pythonhosted.org/packages/56/74/d433f2dc6ed3526d10266187f53c6a3d722976f3c2cf92cf26ef1d1b8cfb/akima-2025.8.1-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2512240e2a932c99031aaddb1a569ceb959d10831d627c5233d0847e48dcc64f",
                "md5": "156efef8b60a0aab5d071297fcc42e53",
                "sha256": "21aa5cc7bc06a4a5c7261f5cda96fbae60f4b1854f06a41cac3af4d23f2a7892"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "156efef8b60a0aab5d071297fcc42e53",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 16064,
            "upload_time": "2025-08-01T02:39:20",
            "upload_time_iso_8601": "2025-08-01T02:39:20.440800Z",
            "url": "https://files.pythonhosted.org/packages/25/12/240e2a932c99031aaddb1a569ceb959d10831d627c5233d0847e48dcc64f/akima-2025.8.1-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b97fd058b95ce2479f266bd59d9f796cb01d41511ab5bf78fa5cdd958b2c36a",
                "md5": "d042cdb69b27d2dfa512cb47a2cbe30d",
                "sha256": "98944dbe5f8a3c5b7a5c7e2dee18715a1d1f402e19f57d11439b2b651b3f03a3"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d042cdb69b27d2dfa512cb47a2cbe30d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 17051,
            "upload_time": "2025-08-01T02:39:21",
            "upload_time_iso_8601": "2025-08-01T02:39:21.160895Z",
            "url": "https://files.pythonhosted.org/packages/2b/97/fd058b95ce2479f266bd59d9f796cb01d41511ab5bf78fa5cdd958b2c36a/akima-2025.8.1-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "501af4f0b1c496ee7923c5d1eca9da9007461c2dc06a24c57874e854fd842112",
                "md5": "f7863d0ec2061c8e492fc2cb484896c7",
                "sha256": "5740311902735acb4d2740edb16492421556617e45b59941bd316338ff8b1c75"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1-cp314-cp314-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "f7863d0ec2061c8e492fc2cb484896c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.11",
            "size": 15671,
            "upload_time": "2025-08-01T02:39:21",
            "upload_time_iso_8601": "2025-08-01T02:39:21.904222Z",
            "url": "https://files.pythonhosted.org/packages/50/1a/f4f0b1c496ee7923c5d1eca9da9007461c2dc06a24c57874e854fd842112/akima-2025.8.1-cp314-cp314-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a3e97ce245dfdae5a66e0e6cf6406e4584e113e013918d50532dc01aab7f878",
                "md5": "4017e4e746d54fb776dd152920c79ead",
                "sha256": "6495c2d0fe58b790569d860877c1f6a4979ac7de7aae8ffffe2035cabf39fb09"
            },
            "downloads": -1,
            "filename": "akima-2025.8.1.tar.gz",
            "has_sig": false,
            "md5_digest": "4017e4e746d54fb776dd152920c79ead",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 11043,
            "upload_time": "2025-08-01T02:39:27",
            "upload_time_iso_8601": "2025-08-01T02:39:27.600279Z",
            "url": "https://files.pythonhosted.org/packages/5a/3e/97ce245dfdae5a66e0e6cf6406e4584e113e013918d50532dc01aab7f878/akima-2025.8.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-01 02:39:27",
    "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.44267s