akima


Nameakima JSON
Version 2024.1.6 PyPI version JSON
download
home_pagehttps://www.cgohlke.com
SummaryAkima Interpolation
upload_time2024-01-07 07:36:15
maintainer
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.1.6

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.7, 3.12.1
- `NumPy <https://pypi.org/project/numpy/>`_ 1.26.3

Revisions
---------

2024.1.6

- Add type hints.
- Remove support for Python 3.8 and 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": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "",
    "author": "Christoph Gohlke",
    "author_email": "cgohlke@cgohlke.com",
    "download_url": "https://files.pythonhosted.org/packages/b7/c8/21695231ff31ec210ab3a28887f16a127b4aec48fdc7f029de55a31ef07e/akima-2024.1.6.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.1.6\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.7, 3.12.1\n- `NumPy <https://pypi.org/project/numpy/>`_ 1.26.3\n\nRevisions\n---------\n\n2024.1.6\n\n- Add type hints.\n- Remove support for Python 3.8 and 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>>> example()\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Akima Interpolation",
    "version": "2024.1.6",
    "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": "f261de227b04567180993b49536e9e323e244f2276c9f6c495355b1d16616158",
                "md5": "9fa8266a4e2726a802f83f05cdb5d99c",
                "sha256": "c7a8ba48b66d27febd136192b1e2915f015f3bb29d5b283bf605accf18cc90e5"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fa8266a4e2726a802f83f05cdb5d99c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 12803,
            "upload_time": "2024-01-07T07:35:48",
            "upload_time_iso_8601": "2024-01-07T07:35:48.165046Z",
            "url": "https://files.pythonhosted.org/packages/f2/61/de227b04567180993b49536e9e323e244f2276c9f6c495355b1d16616158/akima-2024.1.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1b63f9ab279e939148bdd457392dfaf763bec945a1ef18a6dedc69545e777ac",
                "md5": "1ce2dc5c5ab3c4d75b69621c92b315ab",
                "sha256": "1aed68e77f2f2231b66f61f9b76a8039f17872bdee024d6ee3d74fa6a1da113f"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1ce2dc5c5ab3c4d75b69621c92b315ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 12963,
            "upload_time": "2024-01-07T07:35:49",
            "upload_time_iso_8601": "2024-01-07T07:35:49.231514Z",
            "url": "https://files.pythonhosted.org/packages/c1/b6/3f9ab279e939148bdd457392dfaf763bec945a1ef18a6dedc69545e777ac/akima-2024.1.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0d40f2d996255c8022a1eea34a86bff30a3f2bda46fd7589022d3f36894a4f1",
                "md5": "637c30950cba8b24bc52adcee85fc6f4",
                "sha256": "164eee1276f552bff94eec34def4676f80f6a0074b29e5aef0e49fdac0c0eb54"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "637c30950cba8b24bc52adcee85fc6f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 31715,
            "upload_time": "2024-01-07T07:35:50",
            "upload_time_iso_8601": "2024-01-07T07:35:50.739201Z",
            "url": "https://files.pythonhosted.org/packages/b0/d4/0f2d996255c8022a1eea34a86bff30a3f2bda46fd7589022d3f36894a4f1/akima-2024.1.6-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": "ea1621ba68f8584203912c001973c19ee18eec0564b4bd9f3d35c1d7cb3f65fb",
                "md5": "573cf3c3c233b81b0d35cb65da9274a0",
                "sha256": "192a93b68f9c73e561d6a715e070d1496590cad031ed19301a7891c913890aba"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "573cf3c3c233b81b0d35cb65da9274a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 14673,
            "upload_time": "2024-01-07T07:35:52",
            "upload_time_iso_8601": "2024-01-07T07:35:52.208654Z",
            "url": "https://files.pythonhosted.org/packages/ea/16/21ba68f8584203912c001973c19ee18eec0564b4bd9f3d35c1d7cb3f65fb/akima-2024.1.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c344c934a4f4b187f1646d270bb8f2a4ad0b499862b4876aa74460fca00e5eba",
                "md5": "8c5d463664173a090e8fad9ad19c012b",
                "sha256": "b9fec64ea432d3847511edb4f36292cdb6a89db29bd94197799623b28cf9a195"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8c5d463664173a090e8fad9ad19c012b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 15608,
            "upload_time": "2024-01-07T07:35:53",
            "upload_time_iso_8601": "2024-01-07T07:35:53.668685Z",
            "url": "https://files.pythonhosted.org/packages/c3/44/c934a4f4b187f1646d270bb8f2a4ad0b499862b4876aa74460fca00e5eba/akima-2024.1.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "404535733d26440b5eb68a0b374a726f3f342a40a49b6050e489ee110a0060be",
                "md5": "06b6e519939f5e8834210e8badd976bb",
                "sha256": "c0e60981baf6745b482d1cbd7fdce2e6f82c66aab5036ef67d2e5f4ce843ef13"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06b6e519939f5e8834210e8badd976bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 12806,
            "upload_time": "2024-01-07T07:35:55",
            "upload_time_iso_8601": "2024-01-07T07:35:55.133176Z",
            "url": "https://files.pythonhosted.org/packages/40/45/35733d26440b5eb68a0b374a726f3f342a40a49b6050e489ee110a0060be/akima-2024.1.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5555a34ba55c90e33e1b6cad89890fead98d7e738d5cbd79c6089c8a894fb685",
                "md5": "ff597059a2494373fed3470cb41772ff",
                "sha256": "ab724f9f7ec145230874a4bcc6172fd5d936c4089af458d400b7265f6d8b9584"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ff597059a2494373fed3470cb41772ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 12963,
            "upload_time": "2024-01-07T07:35:56",
            "upload_time_iso_8601": "2024-01-07T07:35:56.601456Z",
            "url": "https://files.pythonhosted.org/packages/55/55/a34ba55c90e33e1b6cad89890fead98d7e738d5cbd79c6089c8a894fb685/akima-2024.1.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3729ad1c19bcbe95cfe09542b32320ee07faf3888192f0c72c61dbbd0d41e49b",
                "md5": "9220b01a325edde38856f1bb265c1b17",
                "sha256": "9a35131041aa43c8f1e79b373198fc741ff9b2798804664c96d90fc024e0c59f"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9220b01a325edde38856f1bb265c1b17",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 31878,
            "upload_time": "2024-01-07T07:35:57",
            "upload_time_iso_8601": "2024-01-07T07:35:57.990435Z",
            "url": "https://files.pythonhosted.org/packages/37/29/ad1c19bcbe95cfe09542b32320ee07faf3888192f0c72c61dbbd0d41e49b/akima-2024.1.6-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": "b491f9d49b9da752636332855c3286e4b51e96f9f8f191239a90805842c29387",
                "md5": "a062af48add23de32c8946e8d6bf1204",
                "sha256": "afafdd2d18e4967fd79813c5ddd6a2f6bb6af09873e0a3d86cd54cb33e6c4f27"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "a062af48add23de32c8946e8d6bf1204",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 14679,
            "upload_time": "2024-01-07T07:35:59",
            "upload_time_iso_8601": "2024-01-07T07:35:59.386126Z",
            "url": "https://files.pythonhosted.org/packages/b4/91/f9d49b9da752636332855c3286e4b51e96f9f8f191239a90805842c29387/akima-2024.1.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e46fb50121323a2ac2973c24783fbe13d6def4dd1c0ea93019dbc6d861ba6d46",
                "md5": "2c20dcf89f56dedfec7edeecfdef401f",
                "sha256": "2b55bb9fc28fd8612e45463b6326b4473feebfff795d27ea21003134a781c6ec"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c20dcf89f56dedfec7edeecfdef401f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 15615,
            "upload_time": "2024-01-07T07:36:00",
            "upload_time_iso_8601": "2024-01-07T07:36:00.437153Z",
            "url": "https://files.pythonhosted.org/packages/e4/6f/b50121323a2ac2973c24783fbe13d6def4dd1c0ea93019dbc6d861ba6d46/akima-2024.1.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cce9d0d381bb7986c5cbd285db53edd2906ee206925ebb05a159a09a4978944",
                "md5": "46cb92a2d1697bbbfe5405ca11c9e3c9",
                "sha256": "8cd6d92584ba2edd58bd221bcc07b91705072f5479f956a88eee5159d4802163"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "46cb92a2d1697bbbfe5405ca11c9e3c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 14417,
            "upload_time": "2024-01-07T07:36:01",
            "upload_time_iso_8601": "2024-01-07T07:36:01.840613Z",
            "url": "https://files.pythonhosted.org/packages/4c/ce/9d0d381bb7986c5cbd285db53edd2906ee206925ebb05a159a09a4978944/akima-2024.1.6-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26761e5af17396f31ba4e3c4b1bf92bed823c573a73f1663c0b4a0743405b641",
                "md5": "e65969c1408a25f8c5a7fe0ce11cadad",
                "sha256": "7d3e5bfb6a0114a5f69f7dfa5cf6aa6bc7b557a028b8486025ad61923acbd3a2"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e65969c1408a25f8c5a7fe0ce11cadad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 12857,
            "upload_time": "2024-01-07T07:36:02",
            "upload_time_iso_8601": "2024-01-07T07:36:02.868516Z",
            "url": "https://files.pythonhosted.org/packages/26/76/1e5af17396f31ba4e3c4b1bf92bed823c573a73f1663c0b4a0743405b641/akima-2024.1.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0d038ace1cabc65a4c8499b0a5a8484bc221483184d05f632f851ff1e96d1d3",
                "md5": "cb6b540f65b0daf928e81dab38cc45ff",
                "sha256": "5b40c30b7fa835a48a6d91d45cc4967617c2e862cc7a8706ce18efdfd436e526"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cb6b540f65b0daf928e81dab38cc45ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 12984,
            "upload_time": "2024-01-07T07:36:04",
            "upload_time_iso_8601": "2024-01-07T07:36:04.305891Z",
            "url": "https://files.pythonhosted.org/packages/d0/d0/38ace1cabc65a4c8499b0a5a8484bc221483184d05f632f851ff1e96d1d3/akima-2024.1.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac3db5f96d342bdc319d550dc62ef9ff5e3460706253a5c1628e970fdb53c6bf",
                "md5": "e9e615c9ab5867324eab5830973e7248",
                "sha256": "c6cd9b461dafbf491f93d83e20c68af8a327dc10034b054bfc9a63bef6b27d5e"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9e615c9ab5867324eab5830973e7248",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 32801,
            "upload_time": "2024-01-07T07:36:05",
            "upload_time_iso_8601": "2024-01-07T07:36:05.160653Z",
            "url": "https://files.pythonhosted.org/packages/ac/3d/b5f96d342bdc319d550dc62ef9ff5e3460706253a5c1628e970fdb53c6bf/akima-2024.1.6-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": "b46ad87e686db0acf052d3bd780cde7ef5513a58bf5496f8036d22d9bfc9eb33",
                "md5": "e4553eb8dfcb9f6f77e61869cb30dacc",
                "sha256": "a861bc7837849f5c34602e3ec78749034cf7aa3c5d5aba11314172a1630b3a91"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "e4553eb8dfcb9f6f77e61869cb30dacc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 14749,
            "upload_time": "2024-01-07T07:36:06",
            "upload_time_iso_8601": "2024-01-07T07:36:06.077320Z",
            "url": "https://files.pythonhosted.org/packages/b4/6a/d87e686db0acf052d3bd780cde7ef5513a58bf5496f8036d22d9bfc9eb33/akima-2024.1.6-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20f5730e88b8c44da3bfabfbfd143f14cc1da04d8bf4c0d2af5a215b6ea202c8",
                "md5": "aea055b704e678bdeeb75d9bc9189d9f",
                "sha256": "13425b5114b14379906f38bc4db54808608c57a79ac4fa32ed94d8d2f6c0b3e1"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aea055b704e678bdeeb75d9bc9189d9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 15652,
            "upload_time": "2024-01-07T07:36:07",
            "upload_time_iso_8601": "2024-01-07T07:36:07.618309Z",
            "url": "https://files.pythonhosted.org/packages/20/f5/730e88b8c44da3bfabfbfd143f14cc1da04d8bf4c0d2af5a215b6ea202c8/akima-2024.1.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4229e04a8716b7c683ccb2a6da05f513a59fd4c042778e966466f9f4429de18e",
                "md5": "62cc0f08bfcc0bc0a7b5b54a29d216db",
                "sha256": "16e16c5635cd0e27b8ebff0dd6a4d7f3b171c74d91ea0491fbaaede3024076cf"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "62cc0f08bfcc0bc0a7b5b54a29d216db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 14427,
            "upload_time": "2024-01-07T07:36:09",
            "upload_time_iso_8601": "2024-01-07T07:36:09.217630Z",
            "url": "https://files.pythonhosted.org/packages/42/29/e04a8716b7c683ccb2a6da05f513a59fd4c042778e966466f9f4429de18e/akima-2024.1.6-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3cdf875345af9e6b7feed3a81a64d0c31937b91363f04295c97e73334a4bba5",
                "md5": "a9f10f435df126bf2c64d7cf8c8bb65a",
                "sha256": "891ff53c6a5ca4adf9790d30f378af3e5883f98beade3d2109edf3496f127911"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9f10f435df126bf2c64d7cf8c8bb65a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 12796,
            "upload_time": "2024-01-07T07:36:10",
            "upload_time_iso_8601": "2024-01-07T07:36:10.754290Z",
            "url": "https://files.pythonhosted.org/packages/b3/cd/f875345af9e6b7feed3a81a64d0c31937b91363f04295c97e73334a4bba5/akima-2024.1.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07c29d905463d2b36e0c0a1e310def576c702de82bbd3be536cdd94bbd9f2560",
                "md5": "2a11919ddfaf87440a3731a53b358b48",
                "sha256": "d5eb732fae52d731f304395bf20614175dd14649b535c32948291de1ef04b9a8"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2a11919ddfaf87440a3731a53b358b48",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 12961,
            "upload_time": "2024-01-07T07:36:11",
            "upload_time_iso_8601": "2024-01-07T07:36:11.642602Z",
            "url": "https://files.pythonhosted.org/packages/07/c2/9d905463d2b36e0c0a1e310def576c702de82bbd3be536cdd94bbd9f2560/akima-2024.1.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07088dad0e6745531793baf688e52f48649bd748de13934d024a997d37db999b",
                "md5": "2b97e0efb45a02010d0e0a39f689b3a6",
                "sha256": "0faa81f8035ccc8c43f395abdff9363e5b4e75edcf43afa5807ec077b1dbb6de"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b97e0efb45a02010d0e0a39f689b3a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 31430,
            "upload_time": "2024-01-07T07:36:13",
            "upload_time_iso_8601": "2024-01-07T07:36:13.052453Z",
            "url": "https://files.pythonhosted.org/packages/07/08/8dad0e6745531793baf688e52f48649bd748de13934d024a997d37db999b/akima-2024.1.6-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": "48e4ea9fbafb2af6f636c7db7b530ad7bae00f484238c9d83af25d46c92fb4c8",
                "md5": "43dedce8c825041d36978a8f8c1473ee",
                "sha256": "763258d039c0a7943f46cbad1253bb8abd4a645f10f68c1ae8defa1e3e9a8278"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "43dedce8c825041d36978a8f8c1473ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 14673,
            "upload_time": "2024-01-07T07:36:13",
            "upload_time_iso_8601": "2024-01-07T07:36:13.987834Z",
            "url": "https://files.pythonhosted.org/packages/48/e4/ea9fbafb2af6f636c7db7b530ad7bae00f484238c9d83af25d46c92fb4c8/akima-2024.1.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44d426cce3cf9a9e2940526ea2c8adb2cb7afc035d8d4322df3ce810b11cf235",
                "md5": "571db8873a6d50ae8628b7bb5492e9b1",
                "sha256": "7fe820f86e556cf9f22ae007d8d856f801da0beece9e4ce0a02e74612e71ddb0"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "571db8873a6d50ae8628b7bb5492e9b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 15605,
            "upload_time": "2024-01-07T07:36:14",
            "upload_time_iso_8601": "2024-01-07T07:36:14.923657Z",
            "url": "https://files.pythonhosted.org/packages/44/d4/26cce3cf9a9e2940526ea2c8adb2cb7afc035d8d4322df3ce810b11cf235/akima-2024.1.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7c821695231ff31ec210ab3a28887f16a127b4aec48fdc7f029de55a31ef07e",
                "md5": "6820f719ff72a17656a657387b108a9b",
                "sha256": "3b53fff11c090512a67bd54bb943bd6e1a6b23f27c89af78e1be52db5b4f9554"
            },
            "downloads": -1,
            "filename": "akima-2024.1.6.tar.gz",
            "has_sig": false,
            "md5_digest": "6820f719ff72a17656a657387b108a9b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 10162,
            "upload_time": "2024-01-07T07:36:15",
            "upload_time_iso_8601": "2024-01-07T07:36:15.880111Z",
            "url": "https://files.pythonhosted.org/packages/b7/c8/21695231ff31ec210ab3a28887f16a127b4aec48fdc7f029de55a31ef07e/akima-2024.1.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-07 07:36:15",
    "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: 0.16056s