cdshealpix


Namecdshealpix JSON
Version 0.6.5 PyPI version JSON
download
home_pagehttps://github.com/cds-astro/cds-healpix-python
SummaryPython cdshealpix package wrapping code of the cdshealpix crate
upload_time2023-11-28 09:40:25
maintainerNone
docs_urlNone
authorMatthieu Baumann <matthieu.baumann@astro.unistra.fr>, F.-X. Pineau <francois-xavier.pineau@astro.unistra.fr>
requires_python>=3.8
licenseBSD-3-Clause
keywords healpix astronomy
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # CDSHealpix

[![Build Status](https://github.com/cds-astro/cds-healpix-python/actions/workflows/test.yml/badge.svg)](https://github.com/cds-astro/cds-healpix-python/actions/workflows/test.yml)
[![Deploy status](https://github.com/cds-astro/cds-healpix-python/actions/workflows/deploy_pypi.yml/badge.svg?branch=master)](https://github.com/cds-astro/cds-healpix-python/actions/workflows/deploy_pypi.yml)
[![PyPI version](https://badge.fury.io/py/cdshealpix.svg)](https://badge.fury.io/py/cdshealpix)
[![Documentation](https://img.shields.io/badge/Documentation-link-green.svg)](https://cds-astro.github.io/cds-healpix-python/)

This is a BSD-licensed HEALPix package which is wrapped around the [cdshealpix Rust crate](https://github.com/cds-astro/cds-healpix-rust).

[cdshealpix](https://pypi.org/project/cdshealpix/) is multi-platform and is currently deployed on PyPI for i686, x86_64 and aarch64 archs.

```bash
pip install cdshealpix
```

Or

```bash
conda install -c conda-forge cdshealpix
```

Reminder on conda activation/deactivation:

```bash
conda config --set auto_activate_base false
conda activate base
conda deactivate
```

Test:

```python
import cdshealpix
from cdshealpix import healpix_to_lonlat
lon, lat = healpix_to_lonlat(0, 0)
assert lon.rad[0] == 0.7853981633974483
```

## Features

* [Nested and Ring HEALPix notation](https://cds-astro.github.io/cds-healpix-python/api.html#cdshealpix) supported
* [Cone search](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.cone_search.html#cdshealpix.nested.cone_search)
* [Elliptical-Cone search](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.elliptical_cone_search.html#cdshealpix.nested.elliptical_cone_search)
* [Polygon search](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.polygon_search.html#cdshealpix.nested.polygon_search)
* [Bilinear interpolation](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.bilinear_interpolation.html#cdshealpix.nested.bilinear_interpolation)
* [lonlat_to_healpix](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.lonlat_to_healpix.html#cdshealpix.nested.lonlat_to_healpix) and [healpix_to_lonlat](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.healpix_to_lonlat.html#cdshealpix.nested.healpix_to_lonlat) supports numpy broadcasting
* Rust allows easy concurrency. A ``num_threads`` optional parameter can be used to allow parallelism. By default, concurrency is disabled.
* Get the [world vertices corresponding to an HEALPix cell](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.vertices.html#cdshealpix.nested.vertices)
* Get the [neighbours of an HEALPix cell](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.neighbours.html#cdshealpix.nested.neighbours)

## Documentation

Here is the link to the [documentation](https://cds-astro.github.io/cds-healpix-python/) for informations about how to use this package.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cds-astro/cds-healpix-python",
    "name": "cdshealpix",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "healpix,astronomy",
    "author": "Matthieu Baumann <matthieu.baumann@astro.unistra.fr>, F.-X. Pineau <francois-xavier.pineau@astro.unistra.fr>",
    "author_email": "Matthieu Baumann <matthieu.baumann@astro.unistra.fr>, F.-X. Pineau <francois-xavier.pineau@astro.unistra.fr>",
    "download_url": null,
    "platform": null,
    "description": "# CDSHealpix\r\n\r\n[![Build Status](https://github.com/cds-astro/cds-healpix-python/actions/workflows/test.yml/badge.svg)](https://github.com/cds-astro/cds-healpix-python/actions/workflows/test.yml)\r\n[![Deploy status](https://github.com/cds-astro/cds-healpix-python/actions/workflows/deploy_pypi.yml/badge.svg?branch=master)](https://github.com/cds-astro/cds-healpix-python/actions/workflows/deploy_pypi.yml)\r\n[![PyPI version](https://badge.fury.io/py/cdshealpix.svg)](https://badge.fury.io/py/cdshealpix)\r\n[![Documentation](https://img.shields.io/badge/Documentation-link-green.svg)](https://cds-astro.github.io/cds-healpix-python/)\r\n\r\nThis is a BSD-licensed HEALPix package which is wrapped around the [cdshealpix Rust crate](https://github.com/cds-astro/cds-healpix-rust).\r\n\r\n[cdshealpix](https://pypi.org/project/cdshealpix/) is multi-platform and is currently deployed on PyPI for i686, x86_64 and aarch64 archs.\r\n\r\n```bash\r\npip install cdshealpix\r\n```\r\n\r\nOr\r\n\r\n```bash\r\nconda install -c conda-forge cdshealpix\r\n```\r\n\r\nReminder on conda activation/deactivation:\r\n\r\n```bash\r\nconda config --set auto_activate_base false\r\nconda activate base\r\nconda deactivate\r\n```\r\n\r\nTest:\r\n\r\n```python\r\nimport cdshealpix\r\nfrom cdshealpix import healpix_to_lonlat\r\nlon, lat = healpix_to_lonlat(0, 0)\r\nassert lon.rad[0] == 0.7853981633974483\r\n```\r\n\r\n## Features\r\n\r\n* [Nested and Ring HEALPix notation](https://cds-astro.github.io/cds-healpix-python/api.html#cdshealpix) supported\r\n* [Cone search](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.cone_search.html#cdshealpix.nested.cone_search)\r\n* [Elliptical-Cone search](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.elliptical_cone_search.html#cdshealpix.nested.elliptical_cone_search)\r\n* [Polygon search](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.polygon_search.html#cdshealpix.nested.polygon_search)\r\n* [Bilinear interpolation](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.bilinear_interpolation.html#cdshealpix.nested.bilinear_interpolation)\r\n* [lonlat_to_healpix](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.lonlat_to_healpix.html#cdshealpix.nested.lonlat_to_healpix) and [healpix_to_lonlat](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.healpix_to_lonlat.html#cdshealpix.nested.healpix_to_lonlat) supports numpy broadcasting\r\n* Rust allows easy concurrency. A ``num_threads`` optional parameter can be used to allow parallelism. By default, concurrency is disabled.\r\n* Get the [world vertices corresponding to an HEALPix cell](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.vertices.html#cdshealpix.nested.vertices)\r\n* Get the [neighbours of an HEALPix cell](https://cds-astro.github.io/cds-healpix-python/stubs/cdshealpix.nested.neighbours.html#cdshealpix.nested.neighbours)\r\n\r\n## Documentation\r\n\r\nHere is the link to the [documentation](https://cds-astro.github.io/cds-healpix-python/) for informations about how to use this package.\r\n\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Python cdshealpix package wrapping code of the cdshealpix crate",
    "version": "0.6.5",
    "project_urls": {
        "Homepage": "https://github.com/cds-astro/cds-healpix-python",
        "repository": "https://github.com/cds-astro/cds-healpix-python"
    },
    "split_keywords": [
        "healpix",
        "astronomy"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30b1064cb5d40034da722b6756df5894d22fdaf2b19b4055af525848d5cfe16a",
                "md5": "cd2af1028267a933bfcb600aa38102e8",
                "sha256": "6daff4f2146920f94028acc46f020ccc88d0b0fb930f5f94761934f800c8ca4b"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cd2af1028267a933bfcb600aa38102e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 974881,
            "upload_time": "2023-11-28T09:40:25",
            "upload_time_iso_8601": "2023-11-28T09:40:25.588833Z",
            "url": "https://files.pythonhosted.org/packages/30/b1/064cb5d40034da722b6756df5894d22fdaf2b19b4055af525848d5cfe16a/cdshealpix-0.6.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "416e97ef162b05a124796c532c434a3c57e88b732eea12b07809b9f5269e81a9",
                "md5": "d36459dc976a3836b45af9371ebb32b4",
                "sha256": "c582820c0314fbcae43fb6e11f179740bfcaecae0a11a3e3b8a8a15376d7382f"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d36459dc976a3836b45af9371ebb32b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1242934,
            "upload_time": "2023-11-28T09:40:28",
            "upload_time_iso_8601": "2023-11-28T09:40:28.609096Z",
            "url": "https://files.pythonhosted.org/packages/41/6e/97ef162b05a124796c532c434a3c57e88b732eea12b07809b9f5269e81a9/cdshealpix-0.6.5-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ee94fb38011a152549801dd8a037c53cb6c2ad64bbb2870ace714a15e9bed9d",
                "md5": "06867df15cf18445eb4b1e2a9c7e344d",
                "sha256": "80dc012695642faeb203617f6da6304852f68911a726484b0b17e4c6230a7c9e"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "06867df15cf18445eb4b1e2a9c7e344d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 851482,
            "upload_time": "2023-11-28T09:40:26",
            "upload_time_iso_8601": "2023-11-28T09:40:26.556986Z",
            "url": "https://files.pythonhosted.org/packages/6e/e9/4fb38011a152549801dd8a037c53cb6c2ad64bbb2870ace714a15e9bed9d/cdshealpix-0.6.5-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6dc563642fb8e7ecedf88c17483ac88a811b2a65be05f97fe8c21127885faff3",
                "md5": "4398688ee1457b54c1f0a29179d8c372",
                "sha256": "506fe878e256466c9e9b26b9c8d6a6b503e411df81aaaeb39b4f28f484ec91fc"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4398688ee1457b54c1f0a29179d8c372",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 974881,
            "upload_time": "2023-11-28T09:40:49",
            "upload_time_iso_8601": "2023-11-28T09:40:49.486769Z",
            "url": "https://files.pythonhosted.org/packages/6d/c5/63642fb8e7ecedf88c17483ac88a811b2a65be05f97fe8c21127885faff3/cdshealpix-0.6.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb8ab6b081e76a0a41b35d2929c29b868f641f988f02c078639ade1e1ec55e18",
                "md5": "2090855e5b5f132d9c6a85fc803ec616",
                "sha256": "528eecd86b6badd9986c1b4fa050bd4541eb7bcf41810859e753681381500cb8"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2090855e5b5f132d9c6a85fc803ec616",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1242928,
            "upload_time": "2023-11-28T09:40:52",
            "upload_time_iso_8601": "2023-11-28T09:40:52.572222Z",
            "url": "https://files.pythonhosted.org/packages/bb/8a/b6b081e76a0a41b35d2929c29b868f641f988f02c078639ade1e1ec55e18/cdshealpix-0.6.5-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ec028e320c7ad56a3aa7e4521a009f7e06d301395d21f59c7c6fac310693cb9",
                "md5": "f8e1b40615aff2564360c973d8e656f0",
                "sha256": "98db3f2be1e27048b8bdda1d35426b0a383ada6f42a29b8b7aa4b108f2cd7270"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f8e1b40615aff2564360c973d8e656f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 851478,
            "upload_time": "2023-11-28T09:39:59",
            "upload_time_iso_8601": "2023-11-28T09:39:59.288460Z",
            "url": "https://files.pythonhosted.org/packages/6e/c0/28e320c7ad56a3aa7e4521a009f7e06d301395d21f59c7c6fac310693cb9/cdshealpix-0.6.5-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "321d37048fa75f3845d3f5b5fa9c0b143c923539a2d6122822fcd25156826c53",
                "md5": "d6eeb7d7248010fa3fd147660f09e2df",
                "sha256": "ecd5619f6bf8aeda6d27c1b1767e2809f1afffc569500d67331415859971f586"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d6eeb7d7248010fa3fd147660f09e2df",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 974893,
            "upload_time": "2023-11-28T09:41:13",
            "upload_time_iso_8601": "2023-11-28T09:41:13.265682Z",
            "url": "https://files.pythonhosted.org/packages/32/1d/37048fa75f3845d3f5b5fa9c0b143c923539a2d6122822fcd25156826c53/cdshealpix-0.6.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdac5db18ca10fb6d63c837dadca3db956f2c683ff60b1c842b61b52c78bdff3",
                "md5": "b2a27bc4a9ac3eef7eabdfde8934cce1",
                "sha256": "8cdcd3c6b4c11508326a059facbad0b5a29f12a0149be90c994fef6300210127"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b2a27bc4a9ac3eef7eabdfde8934cce1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1242930,
            "upload_time": "2023-11-28T09:41:17",
            "upload_time_iso_8601": "2023-11-28T09:41:17.002618Z",
            "url": "https://files.pythonhosted.org/packages/fd/ac/5db18ca10fb6d63c837dadca3db956f2c683ff60b1c842b61b52c78bdff3/cdshealpix-0.6.5-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e369f109d287765c95cf94537644c3d5359522a0c2a282ac992836d0bdcfb412",
                "md5": "39cb97df465f83939b31238948875e4f",
                "sha256": "326c1c45e7237493d16bfceba1c11afafd6668b69ea94b6846287b59ae7557a3"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "39cb97df465f83939b31238948875e4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 851454,
            "upload_time": "2023-11-28T09:40:42",
            "upload_time_iso_8601": "2023-11-28T09:40:42.289645Z",
            "url": "https://files.pythonhosted.org/packages/e3/69/f109d287765c95cf94537644c3d5359522a0c2a282ac992836d0bdcfb412/cdshealpix-0.6.5-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a3869ee126c03900f211b3785427909e2a6b51ee05071a3ea2abc8ab022424d",
                "md5": "dfd6ef836d9cda947424f7e19417ef0a",
                "sha256": "69594c51c9584d74dd78bcd4b6514290e89b207a522288531d12285877d41863"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dfd6ef836d9cda947424f7e19417ef0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 975310,
            "upload_time": "2023-11-28T09:39:42",
            "upload_time_iso_8601": "2023-11-28T09:39:42.430034Z",
            "url": "https://files.pythonhosted.org/packages/6a/38/69ee126c03900f211b3785427909e2a6b51ee05071a3ea2abc8ab022424d/cdshealpix-0.6.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58f9d63c9d39f8bf717a23b70ab077a7e3c7b8831c5fb33685ca70447b793c5d",
                "md5": "c6d0863cf21a5d2ca62d3c3b20615387",
                "sha256": "cb49b42fae7dbde1237aec123dbfd697b068dfa63657a442d0f44c563951d9ec"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c6d0863cf21a5d2ca62d3c3b20615387",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1243434,
            "upload_time": "2023-11-28T09:39:44",
            "upload_time_iso_8601": "2023-11-28T09:39:44.597084Z",
            "url": "https://files.pythonhosted.org/packages/58/f9/d63c9d39f8bf717a23b70ab077a7e3c7b8831c5fb33685ca70447b793c5d/cdshealpix-0.6.5-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bf42c3bb38bc7c79ace8d4c9cbdf608045161e6ebd63638dc58f535cdf0ba63",
                "md5": "850350ef81b6b2a21434b7f077faf55a",
                "sha256": "2dbb6c3d15a412526f65b5e09ad441d57c87b28b252cd3de08e80c058169e8a8"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "850350ef81b6b2a21434b7f077faf55a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 851670,
            "upload_time": "2023-11-28T09:39:59",
            "upload_time_iso_8601": "2023-11-28T09:39:59.160299Z",
            "url": "https://files.pythonhosted.org/packages/7b/f4/2c3bb38bc7c79ace8d4c9cbdf608045161e6ebd63638dc58f535cdf0ba63/cdshealpix-0.6.5-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc7081e5848daf091275d9bf6ec51e721a9d4719faa416ba0eb166572fc2e3a8",
                "md5": "9d6a5e0e37646fdef5b49aa6c41bbcb7",
                "sha256": "6ac364c37e5019a5920e4d3b7b33b1ed0e7105a0ad8aa126ef5e6d01da27ced5"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9d6a5e0e37646fdef5b49aa6c41bbcb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 975540,
            "upload_time": "2023-11-28T09:40:04",
            "upload_time_iso_8601": "2023-11-28T09:40:04.322417Z",
            "url": "https://files.pythonhosted.org/packages/fc/70/81e5848daf091275d9bf6ec51e721a9d4719faa416ba0eb166572fc2e3a8/cdshealpix-0.6.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7e4ebacf66c16e893bc2b98772e8c462e8963d1bb7f4aade93b5576a8dc39d8f",
                "md5": "55b5c74c48e2a61390da978d0a8de875",
                "sha256": "56f2246ab7f970f83d4c05d217a96f6ba01157170441ac3de8340b2414720d8b"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "55b5c74c48e2a61390da978d0a8de875",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1243635,
            "upload_time": "2023-11-28T09:40:06",
            "upload_time_iso_8601": "2023-11-28T09:40:06.944267Z",
            "url": "https://files.pythonhosted.org/packages/7e/4e/bacf66c16e893bc2b98772e8c462e8963d1bb7f4aade93b5576a8dc39d8f/cdshealpix-0.6.5-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1b94ca19a1a56153d10925b5488dab9806b90609858353727110d9ddbc077c5",
                "md5": "678dd3c9db4c218069e860b063683c9f",
                "sha256": "6f05b06b214acc031fe21d8db6b4dcb8a8525cd57786f1c1c0a7bc78ef1a89ff"
            },
            "downloads": -1,
            "filename": "cdshealpix-0.6.5-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "678dd3c9db4c218069e860b063683c9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 851504,
            "upload_time": "2023-11-28T09:39:18",
            "upload_time_iso_8601": "2023-11-28T09:39:18.527581Z",
            "url": "https://files.pythonhosted.org/packages/a1/b9/4ca19a1a56153d10925b5488dab9806b90609858353727110d9ddbc077c5/cdshealpix-0.6.5-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-28 09:40:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cds-astro",
    "github_project": "cds-healpix-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cdshealpix"
}
        
Elapsed time: 0.14858s