palpy


Namepalpy JSON
Version 1.8.4 PyPI version JSON
download
home_pageNone
SummaryPAL -- A Positional Astronomy Library
upload_time2024-08-17 23:45:04
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseGPLv2 License
keywords starlink
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            PALpy - Python positional astronomy library
===========================================

.. image:: https://zenodo.org/badge/12517/Starlink/palpy.svg
   :target: https://zenodo.org/badge/latestdoi/12517/Starlink/palpy

.. image:: https://travis-ci.org/Starlink/palpy.svg
    :target: https://travis-ci.org/Starlink/palpy

PALpy is a python interface to the PAL positional astronomy library
(<https://github.com/Starlink/pal>). All source code is included with
the distribution via git submodules.

To build the python interface from the git repository::

    git submodule init
    git submodule update
    python setup.py build
    python setup.py install
    python test_pal.py

Requires that Cython and numpy are installed.

The interface uses the same names as the C interface with the pal
prefix missing::

    import palpy as pal

    djm = pal.caldj( 1999, 12, 31 )
    (r2000, d2000) = pal.fk45z( 1.2, -0.3, 1960 )

All arguments modified by the C API are returned. No arguments
are modified. The one routine that is different is palObs which
returns a simple dict that can be searched using standard python.
The keys to the dict are the short names and the values are another
dict with keys name, long, lat and height.

Docstrings are included with each routine describing the python
usage and the associated C documentation:

     help(palpy)
     help(palpy.caldj)

See ``test_pal.py`` for detailed examples of all functions.

Documentation:
--------------

The module provides documentation on how to use the python interface
to PAL. It does not contain information on how to use
PAL itself.

The basic PAL documentation can be found at

 http://www.starlink.ac.uk/star/docs/sun267.htx/sun267.html

For more information the SLA documentation provides much more
detail:

  http://www.starlink.ac.uk/star/docs/sun67.htx/sun67.html

A description paper for PAL was published in the ADASS XXII
conference proceedings:

  http://adsabs.harvard.edu/abs/2013ASPC..475..307J

Please consider citing this if you use PAL or palpy in your
research.

Further Work
------------

Not all the SLALIB routines are available from PAL. More can be added
as need arises.

Author
------

Copyright (C) 2012, 2014-2016
Tim Jenness (tim.jenness@gmail.com).
All Rights Reserved.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 3 of
the License, or (at your option) any later version.

This program is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "palpy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Starlink",
    "author": null,
    "author_email": "Tim Jenness <tim.jenness@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/25/a2/1cb04047cb45519d7e68346ae1facd66b2e35b8643e7f229d5c126722b8c/palpy-1.8.4.tar.gz",
    "platform": null,
    "description": "PALpy - Python positional astronomy library\n===========================================\n\n.. image:: https://zenodo.org/badge/12517/Starlink/palpy.svg\n   :target: https://zenodo.org/badge/latestdoi/12517/Starlink/palpy\n\n.. image:: https://travis-ci.org/Starlink/palpy.svg\n    :target: https://travis-ci.org/Starlink/palpy\n\nPALpy is a python interface to the PAL positional astronomy library\n(<https://github.com/Starlink/pal>). All source code is included with\nthe distribution via git submodules.\n\nTo build the python interface from the git repository::\n\n    git submodule init\n    git submodule update\n    python setup.py build\n    python setup.py install\n    python test_pal.py\n\nRequires that Cython and numpy are installed.\n\nThe interface uses the same names as the C interface with the pal\nprefix missing::\n\n    import palpy as pal\n\n    djm = pal.caldj( 1999, 12, 31 )\n    (r2000, d2000) = pal.fk45z( 1.2, -0.3, 1960 )\n\nAll arguments modified by the C API are returned. No arguments\nare modified. The one routine that is different is palObs which\nreturns a simple dict that can be searched using standard python.\nThe keys to the dict are the short names and the values are another\ndict with keys name, long, lat and height.\n\nDocstrings are included with each routine describing the python\nusage and the associated C documentation:\n\n     help(palpy)\n     help(palpy.caldj)\n\nSee ``test_pal.py`` for detailed examples of all functions.\n\nDocumentation:\n--------------\n\nThe module provides documentation on how to use the python interface\nto PAL. It does not contain information on how to use\nPAL itself.\n\nThe basic PAL documentation can be found at\n\n http://www.starlink.ac.uk/star/docs/sun267.htx/sun267.html\n\nFor more information the SLA documentation provides much more\ndetail:\n\n  http://www.starlink.ac.uk/star/docs/sun67.htx/sun67.html\n\nA description paper for PAL was published in the ADASS XXII\nconference proceedings:\n\n  http://adsabs.harvard.edu/abs/2013ASPC..475..307J\n\nPlease consider citing this if you use PAL or palpy in your\nresearch.\n\nFurther Work\n------------\n\nNot all the SLALIB routines are available from PAL. More can be added\nas need arises.\n\nAuthor\n------\n\nCopyright (C) 2012, 2014-2016\nTim Jenness (tim.jenness@gmail.com).\nAll Rights Reserved.\n\nThis program is free software; you can redistribute it and/or\nmodify it under the terms of the GNU General Public License as\npublished by the Free Software Foundation; either version 3 of\nthe License, or (at your option) any later version.\n\nThis program is distributed in the hope that it will be\nuseful, but WITHOUT ANY WARRANTY; without even the implied\nwarranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\nPURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n",
    "bugtrack_url": null,
    "license": "GPLv2 License",
    "summary": "PAL -- A Positional Astronomy Library",
    "version": "1.8.4",
    "project_urls": {
        "Homepage": "https://github.com/Starlink/palpy"
    },
    "split_keywords": [
        "starlink"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0323e2a7fe64727c97dd22d9e5077a28142ace9c897e6826926d3ce4182b3693",
                "md5": "6db4d6482c1342afac36c600be7b02d7",
                "sha256": "cc8424fc562a9c643d6be1a38a35319bf6bc88709c1f05d2f8af07df3c804aa7"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6db4d6482c1342afac36c600be7b02d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 617029,
            "upload_time": "2024-08-17T23:44:29",
            "upload_time_iso_8601": "2024-08-17T23:44:29.380556Z",
            "url": "https://files.pythonhosted.org/packages/03/23/e2a7fe64727c97dd22d9e5077a28142ace9c897e6826926d3ce4182b3693/palpy-1.8.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da95271cb06074b0a1c2c2f08dd4a77db753308c2f1c8498e8fec84e01630beb",
                "md5": "c640e05522f2917d7a8b08038a485593",
                "sha256": "0bb17c15501a3dd4280b70ae4b698a4417e95e337dcd77fc7d8969c3585e487e"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c640e05522f2917d7a8b08038a485593",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 568374,
            "upload_time": "2024-08-17T23:44:31",
            "upload_time_iso_8601": "2024-08-17T23:44:31.351129Z",
            "url": "https://files.pythonhosted.org/packages/da/95/271cb06074b0a1c2c2f08dd4a77db753308c2f1c8498e8fec84e01630beb/palpy-1.8.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90ef6b53e987e3132484d900fd366a0fc44fb5d347690829675bc7c84a53947b",
                "md5": "ae09b043c41fe731f3bc82722a6ce29f",
                "sha256": "64ffad4b1973d0eceb4e6a6c2df1bd5b86199ff2306004a1bd4c7e26cc97cf6b"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae09b043c41fe731f3bc82722a6ce29f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2266454,
            "upload_time": "2024-08-17T23:44:33",
            "upload_time_iso_8601": "2024-08-17T23:44:33.493167Z",
            "url": "https://files.pythonhosted.org/packages/90/ef/6b53e987e3132484d900fd366a0fc44fb5d347690829675bc7c84a53947b/palpy-1.8.4-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": "94c3ca106f525047701dc9e1b1d87e0917007c65fdd1fc4143d1890d9440b8fe",
                "md5": "e6f922c6a5d62d2773a119a37ddad21e",
                "sha256": "9afdcf5be4acaba7bb7e0ce243d4bc8e6a19b9b5fc113d93b428e4952c3c7f81"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6f922c6a5d62d2773a119a37ddad21e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 622656,
            "upload_time": "2024-08-17T23:44:35",
            "upload_time_iso_8601": "2024-08-17T23:44:35.233006Z",
            "url": "https://files.pythonhosted.org/packages/94/c3/ca106f525047701dc9e1b1d87e0917007c65fdd1fc4143d1890d9440b8fe/palpy-1.8.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fd43a9f5716d0dc2fb587e5934bcbfe199740365b0369acf30520502d3272b4",
                "md5": "5fce8de06f7a48dac505a9c8c0b87265",
                "sha256": "98dad6e9baf2b8af4526e9c4f1717d5a299d47443ee10005fe7ad949b47bba08"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5fce8de06f7a48dac505a9c8c0b87265",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 571755,
            "upload_time": "2024-08-17T23:44:36",
            "upload_time_iso_8601": "2024-08-17T23:44:36.579813Z",
            "url": "https://files.pythonhosted.org/packages/5f/d4/3a9f5716d0dc2fb587e5934bcbfe199740365b0369acf30520502d3272b4/palpy-1.8.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d350ec0b567a9ccb5ea945d575b4e1565bdb48a7e1e87639198afd6f2672d36",
                "md5": "4e48447b8382399629701966bef2f42c",
                "sha256": "64308ea7a0b0aef2f9d469c96f5ee4e6b3ff9b0913a516e936d23274848fd484"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e48447b8382399629701966bef2f42c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2502912,
            "upload_time": "2024-08-17T23:44:38",
            "upload_time_iso_8601": "2024-08-17T23:44:38.678307Z",
            "url": "https://files.pythonhosted.org/packages/2d/35/0ec0b567a9ccb5ea945d575b4e1565bdb48a7e1e87639198afd6f2672d36/palpy-1.8.4-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": "535d209cf4c94072ababf33fdf66ddfea67ac65fa9d1b17414cd4b719fcd2e5e",
                "md5": "4fabc5407d60c3c37c3c8f7c459f2650",
                "sha256": "60e27c49d9db1e6c604c2ff79556e2cf4d9ffedc0eecebb038b87f52b3b049eb"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4fabc5407d60c3c37c3c8f7c459f2650",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 598541,
            "upload_time": "2024-08-17T23:44:40",
            "upload_time_iso_8601": "2024-08-17T23:44:40.670327Z",
            "url": "https://files.pythonhosted.org/packages/53/5d/209cf4c94072ababf33fdf66ddfea67ac65fa9d1b17414cd4b719fcd2e5e/palpy-1.8.4-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "973ee16c314222bdff5d753b0b57ac1925086ad36ad7035abee34b917944f29e",
                "md5": "dbb7fac2526a5047b6f3873d26e6970f",
                "sha256": "7b1336d0bb8ef06b477cf369e9bd9db63a519316abb0aa75fe871f4e91a204c7"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dbb7fac2526a5047b6f3873d26e6970f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 558750,
            "upload_time": "2024-08-17T23:44:42",
            "upload_time_iso_8601": "2024-08-17T23:44:42.409590Z",
            "url": "https://files.pythonhosted.org/packages/97/3e/e16c314222bdff5d753b0b57ac1925086ad36ad7035abee34b917944f29e/palpy-1.8.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8fc1b49acd1c32d2b9cc58440aeb64bc7af1cbfd9c15d2890edd1a49efd7fbac",
                "md5": "a8d5a5d4094d5b180af9d5c513c80c0d",
                "sha256": "e4d8e6f027a9c5b7ddad29cd6fbde8025102a908fed2495173cd80f966ac16ea"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8d5a5d4094d5b180af9d5c513c80c0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2385909,
            "upload_time": "2024-08-17T23:44:45",
            "upload_time_iso_8601": "2024-08-17T23:44:45.037340Z",
            "url": "https://files.pythonhosted.org/packages/8f/c1/b49acd1c32d2b9cc58440aeb64bc7af1cbfd9c15d2890edd1a49efd7fbac/palpy-1.8.4-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": "f6aa9cb163bd91b80ab48c5a8bd8408c7a284479ae05700ff68e998bc943f682",
                "md5": "852b667edc71a7aead4c17320292f64f",
                "sha256": "cbbe086960fc40293d3f683b2f9966474617182b2f330dc971e7a581e6678d42"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "852b667edc71a7aead4c17320292f64f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 593656,
            "upload_time": "2024-08-17T23:44:46",
            "upload_time_iso_8601": "2024-08-17T23:44:46.917958Z",
            "url": "https://files.pythonhosted.org/packages/f6/aa/9cb163bd91b80ab48c5a8bd8408c7a284479ae05700ff68e998bc943f682/palpy-1.8.4-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "115f668b37ffef0dde9da74beaf984f47e2607b2e0d2eb6356f0f7cbe606092a",
                "md5": "910ca49096d430a4d8f23a9e7e4ce7c7",
                "sha256": "1cc22d544ce9d4b872772f7205d921623483b5c9631e0f59c134361142df6353"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "910ca49096d430a4d8f23a9e7e4ce7c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 556728,
            "upload_time": "2024-08-17T23:44:48",
            "upload_time_iso_8601": "2024-08-17T23:44:48.706342Z",
            "url": "https://files.pythonhosted.org/packages/11/5f/668b37ffef0dde9da74beaf984f47e2607b2e0d2eb6356f0f7cbe606092a/palpy-1.8.4-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86ffe474beddcaa2999253539f7845f807a01b32b24af1e6f193c7d3dd31b479",
                "md5": "b3b5d9e578b782d620809539b76c3fcc",
                "sha256": "e4f5231cfc6519690caa9c4c6c4bbcd86150aa794898e885bfa3799e18115e52"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3b5d9e578b782d620809539b76c3fcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 2397380,
            "upload_time": "2024-08-17T23:44:50",
            "upload_time_iso_8601": "2024-08-17T23:44:50.633985Z",
            "url": "https://files.pythonhosted.org/packages/86/ff/e474beddcaa2999253539f7845f807a01b32b24af1e6f193c7d3dd31b479/palpy-1.8.4-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": "59c5278d280650d3a92b60d43b5880c8bae6f36866a1923dfd8d88ac5951ad52",
                "md5": "80dc509f7aa97eeae9fd56a00312157e",
                "sha256": "ac62f998ae2a523a35cb61e8cf8353ecbb6ba1499b466e1970de9649e0b8f20a"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80dc509f7aa97eeae9fd56a00312157e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 605177,
            "upload_time": "2024-08-17T23:44:52",
            "upload_time_iso_8601": "2024-08-17T23:44:52.646674Z",
            "url": "https://files.pythonhosted.org/packages/59/c5/278d280650d3a92b60d43b5880c8bae6f36866a1923dfd8d88ac5951ad52/palpy-1.8.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3eb4724ce7b0cef9b654690011a6e90545bf053db0ce1e0440419f4bfd8628dc",
                "md5": "12cb4f9d54ed1d29c535dbb2b62fae4d",
                "sha256": "491efa1153a3619f235f19707c0df38c3a4254be5862bc8be7dff65c629ade2b"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "12cb4f9d54ed1d29c535dbb2b62fae4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 556581,
            "upload_time": "2024-08-17T23:44:54",
            "upload_time_iso_8601": "2024-08-17T23:44:54.844967Z",
            "url": "https://files.pythonhosted.org/packages/3e/b4/724ce7b0cef9b654690011a6e90545bf053db0ce1e0440419f4bfd8628dc/palpy-1.8.4-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "298edab145a7346a9279bb7e2ccdb8d7735b30276c5f028d2038e6361f7038e1",
                "md5": "085a8f777bfc883789c1d62edc233381",
                "sha256": "38da3876059a1548c9f82365c44114a7718f9d2de5054a9d48081eed4196506f"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "085a8f777bfc883789c1d62edc233381",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2293394,
            "upload_time": "2024-08-17T23:44:56",
            "upload_time_iso_8601": "2024-08-17T23:44:56.978000Z",
            "url": "https://files.pythonhosted.org/packages/29/8e/dab145a7346a9279bb7e2ccdb8d7735b30276c5f028d2038e6361f7038e1/palpy-1.8.4-cp38-cp38-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": "132433a740a945472786211316d65b08cee320263e6ddcd83b676517684373ee",
                "md5": "44b529296cf644bf18dfb5e3cd04cec7",
                "sha256": "5077b95ef974f1e7d06c037d934527d3f89ff63c1d7d37f79f7a485d15b5bfd0"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44b529296cf644bf18dfb5e3cd04cec7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 617025,
            "upload_time": "2024-08-17T23:44:58",
            "upload_time_iso_8601": "2024-08-17T23:44:58.678902Z",
            "url": "https://files.pythonhosted.org/packages/13/24/33a740a945472786211316d65b08cee320263e6ddcd83b676517684373ee/palpy-1.8.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb105b26191fe83976a496f9edeada248d556908c14feb7cf35e0e995099aa49",
                "md5": "888bb590f8cfb0368b1768ffd2a6779e",
                "sha256": "18700807990cf8b3ac73921dfbe1c907236e9a7a3502f2b9643d53d44f0fc4bd"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "888bb590f8cfb0368b1768ffd2a6779e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 568405,
            "upload_time": "2024-08-17T23:45:00",
            "upload_time_iso_8601": "2024-08-17T23:45:00.605839Z",
            "url": "https://files.pythonhosted.org/packages/eb/10/5b26191fe83976a496f9edeada248d556908c14feb7cf35e0e995099aa49/palpy-1.8.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bb0b6d6a753ac27cc5d4f001a98050e5cdda2d8a5c5107aa037320da4313a94",
                "md5": "34f6bacc1080d6f86ccc01879aa472b5",
                "sha256": "a85cbd90bcc687e9d45f74c938685b1f1ed335d04547283c6ba037199332c8a4"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34f6bacc1080d6f86ccc01879aa472b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2265881,
            "upload_time": "2024-08-17T23:45:02",
            "upload_time_iso_8601": "2024-08-17T23:45:02.793772Z",
            "url": "https://files.pythonhosted.org/packages/3b/b0/b6d6a753ac27cc5d4f001a98050e5cdda2d8a5c5107aa037320da4313a94/palpy-1.8.4-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": "25a21cb04047cb45519d7e68346ae1facd66b2e35b8643e7f229d5c126722b8c",
                "md5": "9dcdbe26b8421036c9cbdc4005009aba",
                "sha256": "d42d537bc4af2b0d88af1bb2fa19d6911d78df72de0f94ce6a371a8c6535c540"
            },
            "downloads": -1,
            "filename": "palpy-1.8.4.tar.gz",
            "has_sig": false,
            "md5_digest": "9dcdbe26b8421036c9cbdc4005009aba",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 543374,
            "upload_time": "2024-08-17T23:45:04",
            "upload_time_iso_8601": "2024-08-17T23:45:04.642980Z",
            "url": "https://files.pythonhosted.org/packages/25/a2/1cb04047cb45519d7e68346ae1facd66b2e35b8643e7f229d5c126722b8c/palpy-1.8.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-17 23:45:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Starlink",
    "github_project": "palpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "palpy"
}
        
Elapsed time: 0.30953s