akima


Nameakima JSON
Version 2025.1.1 PyPI version JSON
download
home_pagehttps://www.cgohlke.com
SummaryAkima Interpolation
upload_time2025-01-02 19:30:53
maintainerNone
docs_urlNone
authorChristoph Gohlke
requires_python>=3.10
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: 2025.1.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.10.11, 3.11.9, 3.12.8, 3.13.1 64-bit
- `NumPy <https://pypi.org/project/numpy/>`_ 2.1.3

Revisions
---------

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.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "Christoph Gohlke",
    "author_email": "cgohlke@cgohlke.com",
    "download_url": "https://files.pythonhosted.org/packages/fe/75/0348e7e235a1597fbad1a5b5659e7bd2ab2fa2f8b16e10fdc078e4dda0f6/akima-2025.1.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.1.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.10.11, 3.11.9, 3.12.8, 3.13.1 64-bit\n- `NumPy <https://pypi.org/project/numpy/>`_ 2.1.3\n\nRevisions\n---------\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",
    "summary": "Akima Interpolation",
    "version": "2025.1.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": "",
            "digests": {
                "blake2b_256": "ce9634444300aac814a83a7f06f5c289fba0f5eb317c20a41f32d98fae63c6c5",
                "md5": "f629d788afa18129d0a078ec3cd241fc",
                "sha256": "206c1b0ccf2e036c3d661d56b11eb1f7ce6731526cb2a8ace1b57c2137b8130d"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f629d788afa18129d0a078ec3cd241fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 13072,
            "upload_time": "2025-01-02T19:28:28",
            "upload_time_iso_8601": "2025-01-02T19:28:28.670710Z",
            "url": "https://files.pythonhosted.org/packages/ce/96/34444300aac814a83a7f06f5c289fba0f5eb317c20a41f32d98fae63c6c5/akima-2025.1.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49077cb40f5338ccdc5f9d718eed4b598986e0dcbce801f090d15e03d3c7884d",
                "md5": "c342d1102ec90a20881f55d6293ef39c",
                "sha256": "bd82b846c4f7e960fe12e90b8c36a66883ace0db438317799d742cae1e5a8b3a"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c342d1102ec90a20881f55d6293ef39c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 13606,
            "upload_time": "2025-01-02T19:28:30",
            "upload_time_iso_8601": "2025-01-02T19:28:30.002639Z",
            "url": "https://files.pythonhosted.org/packages/49/07/7cb40f5338ccdc5f9d718eed4b598986e0dcbce801f090d15e03d3c7884d/akima-2025.1.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b41118626a524eb5269b4b7db96160b50c3aff3bceb4d99d6cb5acdaf6e69c2e",
                "md5": "4309839a449b4d0a1085cd118d74a272",
                "sha256": "3b94ee6ec1e94718cb4ec60b35ad3e13cb254ba80bbde73137e9936860e222a2"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4309839a449b4d0a1085cd118d74a272",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 32430,
            "upload_time": "2025-01-02T19:28:32",
            "upload_time_iso_8601": "2025-01-02T19:28:32.084281Z",
            "url": "https://files.pythonhosted.org/packages/b4/11/18626a524eb5269b4b7db96160b50c3aff3bceb4d99d6cb5acdaf6e69c2e/akima-2025.1.1-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": "70084958f2094c0dba5dc6efc2a90b385e4b709319f3e8f3df40d2747a559629",
                "md5": "28dcf01e2586f4e8915c05ce87cb2e76",
                "sha256": "56e3550ceffee598464af1d5479abd26a239660067d85dbeb77d03622b03eabd"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "28dcf01e2586f4e8915c05ce87cb2e76",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 14990,
            "upload_time": "2025-01-02T19:28:33",
            "upload_time_iso_8601": "2025-01-02T19:28:33.966330Z",
            "url": "https://files.pythonhosted.org/packages/70/08/4958f2094c0dba5dc6efc2a90b385e4b709319f3e8f3df40d2747a559629/akima-2025.1.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "685907858eb396805acf8eda561fdac0373c9f20a87bb7fd6ac7dec3cb6fec41",
                "md5": "fa3a2437083a97a26755bde55d6d8494",
                "sha256": "33b91dd5608076cdcff07e20abf449f940c1691b6967aedc04cf823308f51ea2"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fa3a2437083a97a26755bde55d6d8494",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 15908,
            "upload_time": "2025-01-02T19:28:35",
            "upload_time_iso_8601": "2025-01-02T19:28:35.862091Z",
            "url": "https://files.pythonhosted.org/packages/68/59/07858eb396805acf8eda561fdac0373c9f20a87bb7fd6ac7dec3cb6fec41/akima-2025.1.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24588027d9b5a5dfdf2d61c0ae640295b9b050d61b7f0b881d6b8735b1002de3",
                "md5": "1a0f629f507ef6f22ae9725a034d5304",
                "sha256": "6fb8b0e1b39a6f4cf481652857405fa307ac4cadff0bacfa018128d037449b3f"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a0f629f507ef6f22ae9725a034d5304",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 13068,
            "upload_time": "2025-01-02T19:28:37",
            "upload_time_iso_8601": "2025-01-02T19:28:37.950929Z",
            "url": "https://files.pythonhosted.org/packages/24/58/8027d9b5a5dfdf2d61c0ae640295b9b050d61b7f0b881d6b8735b1002de3/akima-2025.1.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2573c6f5cbaf8354027321e2c2d7fe8c9f6482cf036deb0d3a7a541a82702a4e",
                "md5": "f2dea0afd0de824a243430aeff2b8e6b",
                "sha256": "5ad05e6e1550f1371efabefb44a8e5c89408b5bb789b1618005eea0ed773227c"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f2dea0afd0de824a243430aeff2b8e6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 13605,
            "upload_time": "2025-01-02T19:28:39",
            "upload_time_iso_8601": "2025-01-02T19:28:39.863136Z",
            "url": "https://files.pythonhosted.org/packages/25/73/c6f5cbaf8354027321e2c2d7fe8c9f6482cf036deb0d3a7a541a82702a4e/akima-2025.1.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8b29f7351194f47f1e86e290fce0f24e13912deab164cc85f770fc37bee6c9b",
                "md5": "9be3308ed2736c8229422f42f18e0704",
                "sha256": "cc5c6b9c1a378c6ba8ba47285ba8fe3782dd0005443349ea20c3f0c8d557a8f8"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9be3308ed2736c8229422f42f18e0704",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 32605,
            "upload_time": "2025-01-02T19:28:40",
            "upload_time_iso_8601": "2025-01-02T19:28:40.770001Z",
            "url": "https://files.pythonhosted.org/packages/f8/b2/9f7351194f47f1e86e290fce0f24e13912deab164cc85f770fc37bee6c9b/akima-2025.1.1-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": "79309865bfcc85d134a088b23bfc9a090f06f8f03e95dc2cdebfad1e4cac1085",
                "md5": "31adf9c9090af6c1086bed639cbb57c7",
                "sha256": "bfb9b9916b964e4154f5738086c2d66b21b695ecc3a79fd00ceb3f0a36c0f34f"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "31adf9c9090af6c1086bed639cbb57c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 15000,
            "upload_time": "2025-01-02T19:28:41",
            "upload_time_iso_8601": "2025-01-02T19:28:41.965169Z",
            "url": "https://files.pythonhosted.org/packages/79/30/9865bfcc85d134a088b23bfc9a090f06f8f03e95dc2cdebfad1e4cac1085/akima-2025.1.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40d101438d1649d01d13cf2152571d135c83bae1d65f80e134075559a659d8c8",
                "md5": "c2b74fcc6507c6ad77371764fd5265b0",
                "sha256": "cca6269e5bce74479c80785a2a6160c657b9ce012e5e018c47723f560c302eb8"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c2b74fcc6507c6ad77371764fd5265b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 15908,
            "upload_time": "2025-01-02T19:28:44",
            "upload_time_iso_8601": "2025-01-02T19:28:44.262981Z",
            "url": "https://files.pythonhosted.org/packages/40/d1/01438d1649d01d13cf2152571d135c83bae1d65f80e134075559a659d8c8/akima-2025.1.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "857cf5dd08d5795e3a4749ac9293688f1a9985abf891dc3c96fbb51dfcad3129",
                "md5": "75e093f75d17b03c85bb9b9ce0d534ac",
                "sha256": "de3a4b1b2a1814bc77e9fc45b26b5ffe89f8fdb65354b005109d74f06d3b534f"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "75e093f75d17b03c85bb9b9ce0d534ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 14696,
            "upload_time": "2025-01-02T19:28:45",
            "upload_time_iso_8601": "2025-01-02T19:28:45.655224Z",
            "url": "https://files.pythonhosted.org/packages/85/7c/f5dd08d5795e3a4749ac9293688f1a9985abf891dc3c96fbb51dfcad3129/akima-2025.1.1-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61f52bacd1a4fbb66479ce35405b4bd06be4b3bd459573b279a63c73a458989a",
                "md5": "9a3dce979998049a6efd6c2892bc6f75",
                "sha256": "55cd5f24080911d47025ee56658a8c9e7d844b89eae08c85273e3ce06d515342"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9a3dce979998049a6efd6c2892bc6f75",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 13169,
            "upload_time": "2025-01-02T19:28:47",
            "upload_time_iso_8601": "2025-01-02T19:28:47.830762Z",
            "url": "https://files.pythonhosted.org/packages/61/f5/2bacd1a4fbb66479ce35405b4bd06be4b3bd459573b279a63c73a458989a/akima-2025.1.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd341fcf512e027557bc5a1a52ebeace569919fe063d63b532bc96c683737e40",
                "md5": "3774ed730ac6297c5d6fea4ecf85cb6a",
                "sha256": "804e79970a454fde894039b7a4516cfee5b78c714755d96a36555880010fe193"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3774ed730ac6297c5d6fea4ecf85cb6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 13635,
            "upload_time": "2025-01-02T19:28:48",
            "upload_time_iso_8601": "2025-01-02T19:28:48.668579Z",
            "url": "https://files.pythonhosted.org/packages/fd/34/1fcf512e027557bc5a1a52ebeace569919fe063d63b532bc96c683737e40/akima-2025.1.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eff0b02d4beb6fcd6357fccbf2ca46a4b963c305e64c853bfbc1a3aefb6dcc23",
                "md5": "9f14e29bb5125a4af4eb3a4c6d047f09",
                "sha256": "01c31ebd20482aaf35c0c157703af2b38ee00a9e435f238e6e08902886d29c9d"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f14e29bb5125a4af4eb3a4c6d047f09",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 33530,
            "upload_time": "2025-01-02T19:28:49",
            "upload_time_iso_8601": "2025-01-02T19:28:49.992756Z",
            "url": "https://files.pythonhosted.org/packages/ef/f0/b02d4beb6fcd6357fccbf2ca46a4b963c305e64c853bfbc1a3aefb6dcc23/akima-2025.1.1-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": "64b02b1ea93b37c562d7d16ae9b9e8d547bd0e8db451c508a8d86fcf3e055278",
                "md5": "3f86e7aef21398ec6a54fde76325a11b",
                "sha256": "27d4b467b61a1ce1fcbebec5c3803bc7a102e96cb1d0249a1cd7b0edd9439382"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "3f86e7aef21398ec6a54fde76325a11b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 15062,
            "upload_time": "2025-01-02T19:28:50",
            "upload_time_iso_8601": "2025-01-02T19:28:50.878438Z",
            "url": "https://files.pythonhosted.org/packages/64/b0/2b1ea93b37c562d7d16ae9b9e8d547bd0e8db451c508a8d86fcf3e055278/akima-2025.1.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec96934f4f38c0741b78ffe5e570cacd37fbc1f00a134131606f6bdaa7b4da22",
                "md5": "4e21be4253c81f9b698c452a0560aa56",
                "sha256": "34dc0d9ed2b6ca39c280c4490576774818edf7751a4a8425dbd07f2f431f0548"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e21be4253c81f9b698c452a0560aa56",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 15955,
            "upload_time": "2025-01-02T19:28:51",
            "upload_time_iso_8601": "2025-01-02T19:28:51.990084Z",
            "url": "https://files.pythonhosted.org/packages/ec/96/934f4f38c0741b78ffe5e570cacd37fbc1f00a134131606f6bdaa7b4da22/akima-2025.1.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09d516e36b3243c28708261e723d58b9e66ae5408d005e678bf1cee2fb323361",
                "md5": "ba52698168db4f6ce45211b5c9bdcedc",
                "sha256": "06e9921398cd454cd8a238e7b082bf9404517a1bd36bf600ec02e72cbaf08dbd"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "ba52698168db4f6ce45211b5c9bdcedc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 14736,
            "upload_time": "2025-01-02T19:28:52",
            "upload_time_iso_8601": "2025-01-02T19:28:52.926447Z",
            "url": "https://files.pythonhosted.org/packages/09/d5/16e36b3243c28708261e723d58b9e66ae5408d005e678bf1cee2fb323361/akima-2025.1.1-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2d339552bf5a98474c9e42edd9f99a186654112418328af1edc3d2332247b0f",
                "md5": "dbddd732b3d8657509b0836c767f089b",
                "sha256": "398c7afd7042c3c73d24f5b1c16fe14374da8605f2bb090a302537edc855680d"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dbddd732b3d8657509b0836c767f089b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 13173,
            "upload_time": "2025-01-02T19:28:55",
            "upload_time_iso_8601": "2025-01-02T19:28:55.106715Z",
            "url": "https://files.pythonhosted.org/packages/e2/d3/39552bf5a98474c9e42edd9f99a186654112418328af1edc3d2332247b0f/akima-2025.1.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4afb07e962a533c0c672b83e83e4514e3739df78f195daad12d283f32420a92",
                "md5": "dcbd31472186b8e631c949ff2e6ac13e",
                "sha256": "fcff7666f008d89b54078f2c57bd9e5e2cbe178720ff58c95200805138f25912"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dcbd31472186b8e631c949ff2e6ac13e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 13635,
            "upload_time": "2025-01-02T19:28:56",
            "upload_time_iso_8601": "2025-01-02T19:28:56.022387Z",
            "url": "https://files.pythonhosted.org/packages/b4/af/b07e962a533c0c672b83e83e4514e3739df78f195daad12d283f32420a92/akima-2025.1.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0efdda278b66d2fdd2b5f43fda61a67f2538b3c64a38981ee38a9e9b0c412d8",
                "md5": "ee941d56cfbf8f24be51545d482b621b",
                "sha256": "5f37cbf4023e7da76f9b8f4edd32e81e07b2fe903f58e0ef5917cd2f61bbbae4"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee941d56cfbf8f24be51545d482b621b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 33496,
            "upload_time": "2025-01-02T19:28:59",
            "upload_time_iso_8601": "2025-01-02T19:28:59.047276Z",
            "url": "https://files.pythonhosted.org/packages/c0/ef/dda278b66d2fdd2b5f43fda61a67f2538b3c64a38981ee38a9e9b0c412d8/akima-2025.1.1-cp313-cp313-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": "5272b4ad09384eafb7bd335f3632f674a08d405bf7ce9eb75365b92d0af93171",
                "md5": "b031841fa9fa67ad51371b744524e451",
                "sha256": "5cefdda1ba730e3640566677d2c3251910d35b1a73db308ad2458e2f8b4a9003"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "b031841fa9fa67ad51371b744524e451",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 15066,
            "upload_time": "2025-01-02T19:29:00",
            "upload_time_iso_8601": "2025-01-02T19:29:00.099161Z",
            "url": "https://files.pythonhosted.org/packages/52/72/b4ad09384eafb7bd335f3632f674a08d405bf7ce9eb75365b92d0af93171/akima-2025.1.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d979bc8587c41eaa6bb95f8032c48fd3e1110b4288a0d00c08012a4516525bd3",
                "md5": "5453f73c9d7269ba43772b0c64a50666",
                "sha256": "7b740eb2923fe746dd3e1f4baee5179e8a1e1fdaf443c9912e7c722f8a1da6d8"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5453f73c9d7269ba43772b0c64a50666",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 15961,
            "upload_time": "2025-01-02T19:29:01",
            "upload_time_iso_8601": "2025-01-02T19:29:01.057502Z",
            "url": "https://files.pythonhosted.org/packages/d9/79/bc8587c41eaa6bb95f8032c48fd3e1110b4288a0d00c08012a4516525bd3/akima-2025.1.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39cb0300bbf248cff0b193f11bf49fc054dbaf044796bac03c077f34d5de605c",
                "md5": "096db43994fee3b3bc378c436d64d71e",
                "sha256": "a80d43febc27ec831b03d4926a83fe035aab665e0a4089cef77fe8ca87039e4d"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "096db43994fee3b3bc378c436d64d71e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 14743,
            "upload_time": "2025-01-02T19:29:02",
            "upload_time_iso_8601": "2025-01-02T19:29:02.548585Z",
            "url": "https://files.pythonhosted.org/packages/39/cb/0300bbf248cff0b193f11bf49fc054dbaf044796bac03c077f34d5de605c/akima-2025.1.1-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe750348e7e235a1597fbad1a5b5659e7bd2ab2fa2f8b16e10fdc078e4dda0f6",
                "md5": "a051ff7aeadb7b2d9c23f01a1d15ef3a",
                "sha256": "bbefb5c18c60e9cc37b202a15782612e0a48f35d8f01afd3638aeaa98a34fe4f"
            },
            "downloads": -1,
            "filename": "akima-2025.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a051ff7aeadb7b2d9c23f01a1d15ef3a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 10695,
            "upload_time": "2025-01-02T19:30:53",
            "upload_time_iso_8601": "2025-01-02T19:30:53.028744Z",
            "url": "https://files.pythonhosted.org/packages/fe/75/0348e7e235a1597fbad1a5b5659e7bd2ab2fa2f8b16e10fdc078e4dda0f6/akima-2025.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-02 19:30:53",
    "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.30040s