healpy


Namehealpy JSON
Version 1.16.6 PyPI version JSON
download
home_page
SummaryHealpix tools package for Python
upload_time2023-10-04 01:23:55
maintainer
docs_urlNone
authorA. Zonca
requires_python>=3.9
licenseGPL-2.0-only
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ====================================
Healpy, a python wrapper for healpix
====================================

.. image:: https://badge.fury.io/py/healpy.svg
    :target: https://badge.fury.io/py/healpy

.. image:: https://anaconda.org/conda-forge/healpy/badges/version.svg
    :target: https://anaconda.org/conda-forge/healpy

.. image:: https://github.com/healpy/healpy/actions/workflows/cibuildwheel.yml/badge.svg
   :target: https://github.com/healpy/healpy/actions/workflows/cibuildwheel.yml

.. image:: https://readthedocs.org/projects/healpy/badge/?version=latest
   :target: https://readthedocs.org/projects/healpy/?badge=latest
   :alt: Documentation Status

.. image:: https://mybinder.org/badge_logo.svg
   :target: https://mybinder.org/v2/gist/zonca/9c114608e0903a3b8ea0bfe41c96f255/master

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.2605425.svg
   :target: https://doi.org/10.5281/zenodo.2605425

.. image:: http://joss.theoj.org/papers/10.21105/joss.01298/status.svg
   :target: https://doi.org/10.21105/joss.01298

Description
-----------

`healpy` is a Python package to handle pixelated data on the sphere. It is based on the
`Hierarchical Equal Area isoLatitude Pixelization (HEALPix) <https://healpix.jpl.nasa.gov/>`_
scheme and bundles the `HEALPix` C++ library.

`HEALPix` was developed to efficiently process Cosmic Microwave Background data from Cosmology
experiments like BOOMERANG and WMAP but it is now used in other branches of Astrophysics to
store data from all-sky surveys. The target audience used to be primarily the Cosmology
scientific community but currently anyone interested in handling pixelated data on the sphere
is very welcome to propose new features.

Capabilities
------------

`healpy` provides utilities to:

* convert between sky coordinates and pixel indices in `HEALPix` nested and ring schemes
* find pixels within a disk, a polygon or a strip in the sky
* apply coordinate transformations between Galactic, Ecliptic and Equatorial reference frames
* apply custom rotations either to vectors or full maps
* read and write `HEALPix` maps to disk in FITS format
* upgrade and downgrade the resolution of existing `HEALPix` maps
* visualize maps in Mollweide, Gnomonic and Cartographic projections
* transform maps to Spherical Harmonics space and back using multi-threaded C++ routines
* compute Auto and Cross Power Spectra from maps and create map realizations from spectra

The documentation can be found at https://healpy.readthedocs.io, tutorial at
https://healpy.readthedocs.io/en/latest/tutorial.html, or execute it on `mybinder <https://mybinder.org/v2/gist/zonca/9c114608e0903a3b8ea0bfe41c96f255/master>`_

Requirements
------------

* `Python <http://www.python.org>`_ 3.9, 3.10, or 3.11

* `Numpy <http://numpy.scipy.org/>`_ (tested with version >=1.19)

* `Matplotlib <http://matplotlib.sourceforge.net/>`_

* Python development package is required for some distribution (e.g.,
  python-dev package for Ubuntu)

* `Astropy <http://www.astropy.org>`_

Quick installation with Pip
---------------------------

The quickest way to install Healpy is with `pip <http://www.pip-installer.org>`_
(>= 1.4.2), which automatically fetches the latest version of Healpy and any
missing dependencies::

    pip install --user healpy

If you have installed with ``pip``, you can keep your installation up to date
by upgrading from time to time::

    pip install --user --upgrade healpy

See `INSTALL.rst <https://github.com/healpy/healpy/blob/master/INSTALL.rst>`_
for further details and other installation options.

Optional
--------

Healpy depends on the `HEALPix` C++ and cfitsio C libraries. Source code is
include with Healpy and you do not have to install them separately.

However, if you have them installed already, Healpy should detect and reuse
them instead of building them from source. To use your own installations of
`HEALPix` and cfitsio, you will also need:

* `pkg-config <http://pkg-config.freedesktop.org>`_

* `HEALPix
  <http://sourceforge.net/projects/healpix/files/Healpix_3.11/autotools_packages/>`_
  autotools-style C++ package

* `cfitsio <http://heasarc.gsfc.nasa.gov/fitsio/>`_

See `INSTALL.rst <https://github.com/healpy/healpy/blob/master/INSTALL.rst>`_
for further instructions.

Known issues
------------

* Building with OpenMP support: the underlying `HEALPix` C++ library can be built
  to use `OpenMP <http://openmp.org/wp/>`_ to speed up some operations on
  systems with multiple cores. Most, but not all, modern C/C++ compilers support
  OpenMP, `the notable exception being clang <http://openmp.llvm.org>`_.

  If your Healpy build fails with an error message about being unable to link
  against `-lgomp`, then this typically means that Healpy detected an
  already-installed `HEALPix` C++ library that was built with OpenMP support, but
  you are trying to build Healpy with a compiler that does not support OpenMP.
  Try cleaning the build with `python setup.py clean --all`, and set the
  environment variables `CC` and `CXX` to point to an OpenMP-capable compiler,
  such as gcc/g++.

* Healpy does not currently support Windows.
  See https://github.com/healpy/healpy/issues/25.

* Incompatibility with ``cfitisio`` from ``HEASOFT``: due to a conflict of
  header file names it is currently not possible to use the cfitsio library
  provided with the HEASOFT package for compilation of `HEALPix` C++. HEASOFT's
  include directory contains a file called "rotmatrix.h" which clashes with
  `HEALPix`'s own rotmatrix.h.

* Compilation problems in the C++ package: some gcc versions (we have reports
  for 4.4.5 and 4.4.6) crash with an internal compiler error during compilation
  of libsharp. Unfortunately we have not found a workaround for this compiler
  problem. To our knowledge, it has been fixed in gcc 4.4.7 and in the 4.5.x
  and newer versions.

* Healpy pixel functions, e.g. ``ang2pix``, do not support 32-bit platforms.
  See https://github.com/healpy/healpy/issues/194.

Support
-------

For specific *HOWTO* questions please create a question on StackOverflow_ and
tag it with the `healpy` tag, so that answers will be easily searchable on
google.

If you think you found a bug or you have install issues, open an issue on GitHub:
https://github.com/healpy/healpy/issues

.. _StackOverflow: http://stackoverflow.com/questions/ask

Contribute
----------

Project development takes place on github, http://github.com/healpy/healpy,
please open an issue over there for reporting bugs or suggest improvements.
Collaboration is very welcome, just fork the project on github and send pull
requests back to the main repository.

Developers
----------
Core developers:

* Cyrille Rosset
* Andrea Zonca
* Martin Reinecke
* Leo Singer
* Daniel Lenz

List of contributors: https://github.com/healpy/healpy/graphs/contributors

Acknowledgements
----------------

1. Cite the HEALPix and `healpy` papers, see the `CITATION file <https://github.com/healpy/healpy/blob/master/CITATION>`_ in the repository.

2. Add an acknowledgment statement: "Some of the results in this paper have been
   derived using the `healpy` and `HEALPix` packages".

3. at the first use of the `HEALPix` acronym, a footnote placed in the main body
   of the paper referring to the `HEALPix` web site, currently
   http://healpix.sf.net

4. You can also directly support the maintenance and development of `healpy` via `Github Sponsors <https://github.com/sponsors/zonca>`_

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "healpy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "",
    "author": "A. Zonca",
    "author_email": "\"C. Rosset\" <cyrille.rosset@apc.univ-paris-diderot.fr>",
    "download_url": "https://files.pythonhosted.org/packages/2a/73/d2215e43c122098daad1a666f621479cca0fd04ca89976170896d9afe03a/healpy-1.16.6.tar.gz",
    "platform": null,
    "description": "====================================\nHealpy, a python wrapper for healpix\n====================================\n\n.. image:: https://badge.fury.io/py/healpy.svg\n    :target: https://badge.fury.io/py/healpy\n\n.. image:: https://anaconda.org/conda-forge/healpy/badges/version.svg\n    :target: https://anaconda.org/conda-forge/healpy\n\n.. image:: https://github.com/healpy/healpy/actions/workflows/cibuildwheel.yml/badge.svg\n   :target: https://github.com/healpy/healpy/actions/workflows/cibuildwheel.yml\n\n.. image:: https://readthedocs.org/projects/healpy/badge/?version=latest\n   :target: https://readthedocs.org/projects/healpy/?badge=latest\n   :alt: Documentation Status\n\n.. image:: https://mybinder.org/badge_logo.svg\n   :target: https://mybinder.org/v2/gist/zonca/9c114608e0903a3b8ea0bfe41c96f255/master\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.2605425.svg\n   :target: https://doi.org/10.5281/zenodo.2605425\n\n.. image:: http://joss.theoj.org/papers/10.21105/joss.01298/status.svg\n   :target: https://doi.org/10.21105/joss.01298\n\nDescription\n-----------\n\n`healpy` is a Python package to handle pixelated data on the sphere. It is based on the\n`Hierarchical Equal Area isoLatitude Pixelization (HEALPix) <https://healpix.jpl.nasa.gov/>`_\nscheme and bundles the `HEALPix` C++ library.\n\n`HEALPix` was developed to efficiently process Cosmic Microwave Background data from Cosmology\nexperiments like BOOMERANG and WMAP but it is now used in other branches of Astrophysics to\nstore data from all-sky surveys. The target audience used to be primarily the Cosmology\nscientific community but currently anyone interested in handling pixelated data on the sphere\nis very welcome to propose new features.\n\nCapabilities\n------------\n\n`healpy` provides utilities to:\n\n* convert between sky coordinates and pixel indices in `HEALPix` nested and ring schemes\n* find pixels within a disk, a polygon or a strip in the sky\n* apply coordinate transformations between Galactic, Ecliptic and Equatorial reference frames\n* apply custom rotations either to vectors or full maps\n* read and write `HEALPix` maps to disk in FITS format\n* upgrade and downgrade the resolution of existing `HEALPix` maps\n* visualize maps in Mollweide, Gnomonic and Cartographic projections\n* transform maps to Spherical Harmonics space and back using multi-threaded C++ routines\n* compute Auto and Cross Power Spectra from maps and create map realizations from spectra\n\nThe documentation can be found at https://healpy.readthedocs.io, tutorial at\nhttps://healpy.readthedocs.io/en/latest/tutorial.html, or execute it on `mybinder <https://mybinder.org/v2/gist/zonca/9c114608e0903a3b8ea0bfe41c96f255/master>`_\n\nRequirements\n------------\n\n* `Python <http://www.python.org>`_ 3.9, 3.10, or 3.11\n\n* `Numpy <http://numpy.scipy.org/>`_ (tested with version >=1.19)\n\n* `Matplotlib <http://matplotlib.sourceforge.net/>`_\n\n* Python development package is required for some distribution (e.g.,\n  python-dev package for Ubuntu)\n\n* `Astropy <http://www.astropy.org>`_\n\nQuick installation with Pip\n---------------------------\n\nThe quickest way to install Healpy is with `pip <http://www.pip-installer.org>`_\n(>= 1.4.2), which automatically fetches the latest version of Healpy and any\nmissing dependencies::\n\n    pip install --user healpy\n\nIf you have installed with ``pip``, you can keep your installation up to date\nby upgrading from time to time::\n\n    pip install --user --upgrade healpy\n\nSee `INSTALL.rst <https://github.com/healpy/healpy/blob/master/INSTALL.rst>`_\nfor further details and other installation options.\n\nOptional\n--------\n\nHealpy depends on the `HEALPix` C++ and cfitsio C libraries. Source code is\ninclude with Healpy and you do not have to install them separately.\n\nHowever, if you have them installed already, Healpy should detect and reuse\nthem instead of building them from source. To use your own installations of\n`HEALPix` and cfitsio, you will also need:\n\n* `pkg-config <http://pkg-config.freedesktop.org>`_\n\n* `HEALPix\n  <http://sourceforge.net/projects/healpix/files/Healpix_3.11/autotools_packages/>`_\n  autotools-style C++ package\n\n* `cfitsio <http://heasarc.gsfc.nasa.gov/fitsio/>`_\n\nSee `INSTALL.rst <https://github.com/healpy/healpy/blob/master/INSTALL.rst>`_\nfor further instructions.\n\nKnown issues\n------------\n\n* Building with OpenMP support: the underlying `HEALPix` C++ library can be built\n  to use `OpenMP <http://openmp.org/wp/>`_ to speed up some operations on\n  systems with multiple cores. Most, but not all, modern C/C++ compilers support\n  OpenMP, `the notable exception being clang <http://openmp.llvm.org>`_.\n\n  If your Healpy build fails with an error message about being unable to link\n  against `-lgomp`, then this typically means that Healpy detected an\n  already-installed `HEALPix` C++ library that was built with OpenMP support, but\n  you are trying to build Healpy with a compiler that does not support OpenMP.\n  Try cleaning the build with `python setup.py clean --all`, and set the\n  environment variables `CC` and `CXX` to point to an OpenMP-capable compiler,\n  such as gcc/g++.\n\n* Healpy does not currently support Windows.\n  See https://github.com/healpy/healpy/issues/25.\n\n* Incompatibility with ``cfitisio`` from ``HEASOFT``: due to a conflict of\n  header file names it is currently not possible to use the cfitsio library\n  provided with the HEASOFT package for compilation of `HEALPix` C++. HEASOFT's\n  include directory contains a file called \"rotmatrix.h\" which clashes with\n  `HEALPix`'s own rotmatrix.h.\n\n* Compilation problems in the C++ package: some gcc versions (we have reports\n  for 4.4.5 and 4.4.6) crash with an internal compiler error during compilation\n  of libsharp. Unfortunately we have not found a workaround for this compiler\n  problem. To our knowledge, it has been fixed in gcc 4.4.7 and in the 4.5.x\n  and newer versions.\n\n* Healpy pixel functions, e.g. ``ang2pix``, do not support 32-bit platforms.\n  See https://github.com/healpy/healpy/issues/194.\n\nSupport\n-------\n\nFor specific *HOWTO* questions please create a question on StackOverflow_ and\ntag it with the `healpy` tag, so that answers will be easily searchable on\ngoogle.\n\nIf you think you found a bug or you have install issues, open an issue on GitHub:\nhttps://github.com/healpy/healpy/issues\n\n.. _StackOverflow: http://stackoverflow.com/questions/ask\n\nContribute\n----------\n\nProject development takes place on github, http://github.com/healpy/healpy,\nplease open an issue over there for reporting bugs or suggest improvements.\nCollaboration is very welcome, just fork the project on github and send pull\nrequests back to the main repository.\n\nDevelopers\n----------\nCore developers:\n\n* Cyrille Rosset\n* Andrea Zonca\n* Martin Reinecke\n* Leo Singer\n* Daniel Lenz\n\nList of contributors: https://github.com/healpy/healpy/graphs/contributors\n\nAcknowledgements\n----------------\n\n1. Cite the HEALPix and `healpy` papers, see the `CITATION file <https://github.com/healpy/healpy/blob/master/CITATION>`_ in the repository.\n\n2. Add an acknowledgment statement: \"Some of the results in this paper have been\n   derived using the `healpy` and `HEALPix` packages\".\n\n3. at the first use of the `HEALPix` acronym, a footnote placed in the main body\n   of the paper referring to the `HEALPix` web site, currently\n   http://healpix.sf.net\n\n4. You can also directly support the maintenance and development of `healpy` via `Github Sponsors <https://github.com/sponsors/zonca>`_\n",
    "bugtrack_url": null,
    "license": "GPL-2.0-only",
    "summary": "Healpix tools package for Python",
    "version": "1.16.6",
    "project_urls": {
        "homepage": "http://github.com/healpy"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b1fc7b5315db9290afe2c3ee98eacad76b88d120295c0f08d2f6d758296474c",
                "md5": "5710f259d8493b4a9e8477dd43f81195",
                "sha256": "1cad7ed1d7030eeb06081240f669c9107db1282678512c85f5cf6eef1bea01bb"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5710f259d8493b4a9e8477dd43f81195",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 7844787,
            "upload_time": "2023-10-04T01:23:24",
            "upload_time_iso_8601": "2023-10-04T01:23:24.101736Z",
            "url": "https://files.pythonhosted.org/packages/8b/1f/c7b5315db9290afe2c3ee98eacad76b88d120295c0f08d2f6d758296474c/healpy-1.16.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24fdb6f71062c6deef36cd5c3e51ad95c333a8ae3211b259e66e891be85d99f3",
                "md5": "dc844816ea672b75679efdbaeb611005",
                "sha256": "6be3ca85cb78f3f243f660f3105d362615843f32c1ff53ffdead5ea1ffe07eb6"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dc844816ea672b75679efdbaeb611005",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 23689192,
            "upload_time": "2023-10-04T01:23:26",
            "upload_time_iso_8601": "2023-10-04T01:23:26.069105Z",
            "url": "https://files.pythonhosted.org/packages/24/fd/b6f71062c6deef36cd5c3e51ad95c333a8ae3211b259e66e891be85d99f3/healpy-1.16.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b61db79e31cae4226bbcac8cec6285c2f481562fd52148c911ba8663df16a1a",
                "md5": "50449f0a42c2f4e1ecd095c51401ee54",
                "sha256": "af4469864f465fc4bc3752543812ab1161d84eff4a8aead3842d56ea1b2585bb"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50449f0a42c2f4e1ecd095c51401ee54",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 24488130,
            "upload_time": "2023-10-04T01:23:28",
            "upload_time_iso_8601": "2023-10-04T01:23:28.934280Z",
            "url": "https://files.pythonhosted.org/packages/5b/61/db79e31cae4226bbcac8cec6285c2f481562fd52148c911ba8663df16a1a/healpy-1.16.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "735910e1a32527ade484da9aaf505b54126555272164b8e7a816bcb9aed12130",
                "md5": "f1d2b0a8a8e72d04f85493bde764ae40",
                "sha256": "366a269b239eeabf924d4a069cce5f2f1d72c7af24132d59f95fec09f670a38a"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1d2b0a8a8e72d04f85493bde764ae40",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 7846119,
            "upload_time": "2023-10-04T01:23:31",
            "upload_time_iso_8601": "2023-10-04T01:23:31.398222Z",
            "url": "https://files.pythonhosted.org/packages/73/59/10e1a32527ade484da9aaf505b54126555272164b8e7a816bcb9aed12130/healpy-1.16.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad5b1c3062484364d19f977ca5a4b76c84632907d90b348c048ee790e94b10e9",
                "md5": "2b28ae479bd1f438bcff27b47a4acf89",
                "sha256": "3324fc5aa737188db8017819d4ecb18c11315873481f31d97aceb29958591f40"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2b28ae479bd1f438bcff27b47a4acf89",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 23808388,
            "upload_time": "2023-10-04T01:23:33",
            "upload_time_iso_8601": "2023-10-04T01:23:33.759968Z",
            "url": "https://files.pythonhosted.org/packages/ad/5b/1c3062484364d19f977ca5a4b76c84632907d90b348c048ee790e94b10e9/healpy-1.16.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f834bf388eb082e302a269b5afa037a6b892113cbc5cd38e3659d6cc839695ef",
                "md5": "9dcd96f195b41fd937d8c3ca6f807505",
                "sha256": "fd5adc827a90dffa72158b8a576143459d06dbd3afc52c2ff5c4a566aafcb049"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9dcd96f195b41fd937d8c3ca6f807505",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 24605059,
            "upload_time": "2023-10-04T01:23:36",
            "upload_time_iso_8601": "2023-10-04T01:23:36.517852Z",
            "url": "https://files.pythonhosted.org/packages/f8/34/bf388eb082e302a269b5afa037a6b892113cbc5cd38e3659d6cc839695ef/healpy-1.16.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9eab233744e6381e50c0525246698e3e644ea556b2874b88591df47878106668",
                "md5": "04aa50753fa45a51b35d8a4fe5d26895",
                "sha256": "12b5c5ea0c767b7ae7659b18bd4c42b11384765b44b9205b27147ab4686657bf"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04aa50753fa45a51b35d8a4fe5d26895",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 7827240,
            "upload_time": "2023-10-04T01:23:39",
            "upload_time_iso_8601": "2023-10-04T01:23:39.093513Z",
            "url": "https://files.pythonhosted.org/packages/9e/ab/233744e6381e50c0525246698e3e644ea556b2874b88591df47878106668/healpy-1.16.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5229a605d9ddd3d4c54cbb59280732be5c0d821216ae21a4d5094839e84da049",
                "md5": "91967114db60c5ad8cb5bdb0fdce2280",
                "sha256": "f72338a29fc776a4031cb2e9b7bd9306cbe2f0b6355e9541716b38ad23ba880d"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91967114db60c5ad8cb5bdb0fdce2280",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 23816793,
            "upload_time": "2023-10-04T01:23:41",
            "upload_time_iso_8601": "2023-10-04T01:23:41.887785Z",
            "url": "https://files.pythonhosted.org/packages/52/29/a605d9ddd3d4c54cbb59280732be5c0d821216ae21a4d5094839e84da049/healpy-1.16.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d55aeb6888933a44ba3151f70b11be2684ff23b9d3ba242b5f6dc78c52242908",
                "md5": "7f77997eeba617fbde206cef8dc8765e",
                "sha256": "9d13dd979e804d2d7e80f5121b0acf46f94dcddfac757ebb01cecbcb3304b285"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f77997eeba617fbde206cef8dc8765e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 24616962,
            "upload_time": "2023-10-04T01:23:45",
            "upload_time_iso_8601": "2023-10-04T01:23:45.163642Z",
            "url": "https://files.pythonhosted.org/packages/d5/5a/eb6888933a44ba3151f70b11be2684ff23b9d3ba242b5f6dc78c52242908/healpy-1.16.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55300a4a628f528a0427ca10a30c2d471881ac3cec43b31e8dab670ecc65940c",
                "md5": "1587a8547c9bbdb4b3592d64d9f01bea",
                "sha256": "0a0e0b725c9fa2777f184c70beed87ff7c8dfa1869aca1fc370b40057db5c739"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1587a8547c9bbdb4b3592d64d9f01bea",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 7346671,
            "upload_time": "2023-10-04T01:23:47",
            "upload_time_iso_8601": "2023-10-04T01:23:47.780401Z",
            "url": "https://files.pythonhosted.org/packages/55/30/0a4a628f528a0427ca10a30c2d471881ac3cec43b31e8dab670ecc65940c/healpy-1.16.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cebc942a380606d328f756a1e1c87ec02a106b084e4a18c69231d86e28589789",
                "md5": "22aec0a7395053e4696664499d909329",
                "sha256": "7e5a284e7ec4cc06b7b222098ab0961a3b31f72014f0194b3cfd62e4dcd2963e"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "22aec0a7395053e4696664499d909329",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 23189494,
            "upload_time": "2023-10-04T01:23:49",
            "upload_time_iso_8601": "2023-10-04T01:23:49.735841Z",
            "url": "https://files.pythonhosted.org/packages/ce/bc/942a380606d328f756a1e1c87ec02a106b084e4a18c69231d86e28589789/healpy-1.16.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "028a50e86daa5173aa7bdc4077c5481667cdab969540e6ffb02b971ceaeb7047",
                "md5": "72cc22d23b642ee3156f05e5fce6d9b9",
                "sha256": "754fed0f2313f805535ea44e37a538b8d7b58b377cdfe8f36accdf8fec417f4a"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72cc22d23b642ee3156f05e5fce6d9b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 23989381,
            "upload_time": "2023-10-04T01:23:52",
            "upload_time_iso_8601": "2023-10-04T01:23:52.929501Z",
            "url": "https://files.pythonhosted.org/packages/02/8a/50e86daa5173aa7bdc4077c5481667cdab969540e6ffb02b971ceaeb7047/healpy-1.16.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a73d2215e43c122098daad1a666f621479cca0fd04ca89976170896d9afe03a",
                "md5": "3ce7788da61cc6e8ad38c9cd0267ed04",
                "sha256": "0ab26e828fcd251a141095af6d9bf3dba43cec6f0f5cd48b65bf0af8f56329f1"
            },
            "downloads": -1,
            "filename": "healpy-1.16.6.tar.gz",
            "has_sig": false,
            "md5_digest": "3ce7788da61cc6e8ad38c9cd0267ed04",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 4374432,
            "upload_time": "2023-10-04T01:23:55",
            "upload_time_iso_8601": "2023-10-04T01:23:55.877838Z",
            "url": "https://files.pythonhosted.org/packages/2a/73/d2215e43c122098daad1a666f621479cca0fd04ca89976170896d9afe03a/healpy-1.16.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-04 01:23:55",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "healpy"
}
        
Elapsed time: 0.11666s