Skip to main content

Python package for HEALPix discretisation of the sphere

Project description

healpix

Python and C package for HEALPix discretisation of the sphere

This package implements a lean set of routines for working with the HEALPix discretisation of the sphere. It supports NSIDE parameters up to 2^29.

The C library is based on the healpix_bare library, which was released under the 3-clause BSD license, with the following additions:

  • Sub-pixel indexing.
  • Conversions between the UNIQ and RING/NEST pixel indexing schemes.

If you are using this code in your research, please consider citing the original paper in your publications:

Python

The Python package provides functions that deal with the discretisation of the sphere itself. It is not meant to be a replacement of healpy, and does not contain things such as functions for the visualisation of maps, or spherical harmonic transforms.

The Python package consists of two modules:

  • The low-level chealpix module, which is a native C extension, and efficiently vectorises the C library functions over arbitrary numpy array inputs (including scalars, of course).

  • The high-level healpix module, which contains a more streamlined interface, and additional functionality:

    • Random point picking in HEALPix pixels.

For a function reference, run pydoc healpix (or pydoc chealpix) locally if you have the package installed, or see the online reference.

The high-level functions in the healpix module can be used more or less interchangeably with functions from the healpy package. However, in some cases, compatibility is sacrificed for consistency.

The Python package requires only numpy, and can be installed using pip:

pip install healpix

The vectorised C functions carefully avoid the creation of temporary arrays, and therefore have minimal memory overhead:

>>> import numpy as np, healpix, tracemalloc
>>> 
>>> # random vectors with 1G of memory per component (less than a NSIDE=4K map)
>>> x, y, z = np.random.randn(3, 125_000_000)
>>> 
>>> tracemalloc.start()
>>> 
>>> lon, lat = healpix.vec2ang(x, y, z, lonlat=True)
>>> 
>>> tracemalloc.get_traced_memory()
(2000010342, 2000013889)  # current, peak
>>> 
>>> # no memory overhead: only the 2G output arrays were used

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

healpix-2024.2.tar.gz (18.1 kB view details)

Uploaded Source

Built Distributions

healpix-2024.2-cp313-cp313-win_amd64.whl (25.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

healpix-2024.2-cp313-cp313-win32.whl (24.5 kB view details)

Uploaded CPython 3.13 Windows x86

healpix-2024.2-cp313-cp313-musllinux_1_2_x86_64.whl (72.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

healpix-2024.2-cp313-cp313-musllinux_1_2_i686.whl (74.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

healpix-2024.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

healpix-2024.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (77.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

healpix-2024.2-cp313-cp313-macosx_11_0_arm64.whl (22.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

healpix-2024.2-cp313-cp313-macosx_10_13_x86_64.whl (23.6 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

healpix-2024.2-cp312-cp312-win_amd64.whl (25.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

healpix-2024.2-cp312-cp312-win32.whl (24.4 kB view details)

Uploaded CPython 3.12 Windows x86

healpix-2024.2-cp312-cp312-musllinux_1_2_x86_64.whl (72.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

healpix-2024.2-cp312-cp312-musllinux_1_2_i686.whl (74.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

healpix-2024.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

healpix-2024.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (77.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

healpix-2024.2-cp312-cp312-macosx_11_0_arm64.whl (22.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

healpix-2024.2-cp312-cp312-macosx_10_9_x86_64.whl (23.7 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

healpix-2024.2-cp311-cp311-win_amd64.whl (25.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

healpix-2024.2-cp311-cp311-win32.whl (24.4 kB view details)

Uploaded CPython 3.11 Windows x86

healpix-2024.2-cp311-cp311-musllinux_1_2_x86_64.whl (72.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

healpix-2024.2-cp311-cp311-musllinux_1_2_i686.whl (74.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

healpix-2024.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

healpix-2024.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (77.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

healpix-2024.2-cp311-cp311-macosx_11_0_arm64.whl (22.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

healpix-2024.2-cp311-cp311-macosx_10_9_x86_64.whl (23.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

healpix-2024.2-cp310-cp310-win_amd64.whl (25.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

healpix-2024.2-cp310-cp310-win32.whl (24.4 kB view details)

Uploaded CPython 3.10 Windows x86

healpix-2024.2-cp310-cp310-musllinux_1_2_x86_64.whl (71.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

healpix-2024.2-cp310-cp310-musllinux_1_2_i686.whl (73.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

healpix-2024.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (73.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

healpix-2024.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (76.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

healpix-2024.2-cp310-cp310-macosx_11_0_arm64.whl (22.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

healpix-2024.2-cp310-cp310-macosx_10_9_x86_64.whl (23.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

healpix-2024.2-cp39-cp39-win_amd64.whl (25.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

healpix-2024.2-cp39-cp39-win32.whl (24.4 kB view details)

Uploaded CPython 3.9 Windows x86

healpix-2024.2-cp39-cp39-musllinux_1_2_x86_64.whl (71.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

healpix-2024.2-cp39-cp39-musllinux_1_2_i686.whl (73.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

healpix-2024.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (72.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

healpix-2024.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (76.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

healpix-2024.2-cp39-cp39-macosx_11_0_arm64.whl (22.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

healpix-2024.2-cp39-cp39-macosx_10_9_x86_64.whl (23.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

healpix-2024.2-cp38-cp38-win_amd64.whl (25.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

healpix-2024.2-cp38-cp38-win32.whl (24.1 kB view details)

Uploaded CPython 3.8 Windows x86

healpix-2024.2-cp38-cp38-musllinux_1_2_x86_64.whl (72.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

healpix-2024.2-cp38-cp38-musllinux_1_2_i686.whl (75.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

healpix-2024.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

healpix-2024.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (78.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

healpix-2024.2-cp38-cp38-macosx_11_0_arm64.whl (21.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

healpix-2024.2-cp38-cp38-macosx_10_9_x86_64.whl (23.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

healpix-2024.2-cp37-cp37m-win_amd64.whl (25.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

healpix-2024.2-cp37-cp37m-win32.whl (24.1 kB view details)

Uploaded CPython 3.7m Windows x86

healpix-2024.2-cp37-cp37m-musllinux_1_2_x86_64.whl (72.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

healpix-2024.2-cp37-cp37m-musllinux_1_2_i686.whl (74.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

healpix-2024.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

healpix-2024.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (77.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

healpix-2024.2-cp37-cp37m-macosx_10_9_x86_64.whl (23.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file healpix-2024.2.tar.gz.

File metadata

  • Download URL: healpix-2024.2.tar.gz
  • Upload date:
  • Size: 18.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2.tar.gz
Algorithm Hash digest
SHA256 dc908dd39080a088476bfc451b6dcfe9ad015851473b8d97177bf698e4748ae3
MD5 8c9fe871ab4cfc4cf3bb36c640cee243
BLAKE2b-256 b9244e54e733df4948ed3b24a46703067420a172a5774d8d9d9edfa8eb0a9fdc

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: healpix-2024.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for healpix-2024.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e11afd01bedb0d654f803a29a0d82a30ecc0ce5e8cc9e6bed180d69fc028f08b
MD5 f0cc9a33861fd663572af28a68d61d4e
BLAKE2b-256 b8c2b00ac911ca0e3f9cb8afad4a82e3d386a3c7abc5b8b31177c76ef1a05b85

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: healpix-2024.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for healpix-2024.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f67cdc26624b9551b2f544e36e220fa48582b2a0065dad305c1912a0719f8720
MD5 da0ddd238f8bf0ede52eedc4a833c660
BLAKE2b-256 9a2bcca2888f49965761b1b26d9568fc9e8e0b92151bf4dc38f1022c63fbfabb

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b06472ffbd63bd4498a8ceac7d71404a135ab2413c8e2152f273a8367dcc1a7
MD5 64756cbce7f5ba141fb043ad2cedaa49
BLAKE2b-256 2f6be9d8d359a08677c2c2327b6bfb138437bbd0d497bad41204484c9d932590

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 361fda4920d64e5ccb8bc4e5ff5c4ceaba26828dd605b80372e062c78c25d69b
MD5 ced128959bb124f0c3bdf8919869f13a
BLAKE2b-256 e8b836ba64260e5a5ed5281a500bce5501a99937e6221b021b71eb21f86c5785

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 194b6b509fcbfbd160eb9a665b6b103a6bbf9349655671cbdee43d156ff49341
MD5 186dac332fd4c92afb251ed92cad75ea
BLAKE2b-256 bf93ac6b74c13d6e8cef2bf1f3f566e3ed833312f909df588b3a81cb156bed43

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0eac63f265a54d3d05d35a2e38e8817d89278166dce2392ece858345f1964ec8
MD5 c7ceda5dbd9a28aa8416f61941044616
BLAKE2b-256 e625f0f93c2784251559be0911e5ffe98fc48421e4dd6a0e0a122194a9cc3347

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7affbd8f3c96738d3b1f01399698d3a9933b6529df7fa6dc512b6b6d994c1df1
MD5 03314bf2db8a651cc18e527108c80ed6
BLAKE2b-256 a6c3c7a2d855a537431e47be8554c4e6117b2a3bd7f7fda83f7e7940a389aab1

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d91ff10dc041d6ea16938047815d325f8926d685717678784c42dd7454733228
MD5 de64ba5d9143f12b4b67b3b1c0badb57
BLAKE2b-256 4473211839359b873f38ed1b7828d02735b9727156cbcca13422a21d84b796ed

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: healpix-2024.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e4fdfc0926351ed4bc23a46b38d4a8c4014393b4a223698daaa08624330921c1
MD5 1ddf22009fce4601af5939f9a0fece98
BLAKE2b-256 08ad3641237a58ee36f1d790bbe9357a4b1ef8db6e59070f4264cb69bf1563f0

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: healpix-2024.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 71804c991b77fd8cec8694b2a62abeb275374b8e48204aab87751c0a880e2e9f
MD5 7e51f28a2bc96e9c7f32c8f0e2e7aae7
BLAKE2b-256 b9ade80398350585d202d2433daac63cd7b318e6f2139919bdb179b0beac2317

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 035baafa2f701c1f8c19ee793bcc0e310bd1cfe00d000201900ac4c3611a0192
MD5 b4ab71c0b47bc46a996bd4e36204779a
BLAKE2b-256 f960d52488b1bb6c5a0c29c46bafbedb649de963cb16a5f0d53d2555874b2697

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf1b1aebb212fe98993da8e83940732c89dbed0df3c024137e1eda96632d1a9a
MD5 9c5c30daa1b4535f22d44530abb34bab
BLAKE2b-256 b0e75b25baeda02494c727377c1c82544f5ee34d48b026ea7b76df970295dc0c

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85778b6ac6ca6432869dac1f8baaaa2986c49cee67560ec87ff10c0ce5cf7983
MD5 a822480e3e93b65cf05c1a8f6a853075
BLAKE2b-256 5e3a3143d4e38967703f171b6f734eceb0697ab3b4821695cf873f1a937350a2

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8597e11e32cdc80909d6bf1ac359b5706414589ed9e241ba03743532d25dc28f
MD5 0fea34eb360cdab6ea5c0af7e7829720
BLAKE2b-256 67c29ce8115c018683848a5170c3d1816433489c4446d3b93db82d905c0c123b

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 269f62bcf388fb5d3a22e119b38ccd8f53833dd184c47771394b2168df4184a5
MD5 c5e92e2c66f879c92ed165a2e1094e8e
BLAKE2b-256 493edad509bc88bb059ef377634d0fad2ae41fc6ad41a6bd137794a20fc13232

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6709ba86ea991380c4c4238de2c6a5314e9731972d7bf876c90823865677f1ed
MD5 fa71142a2b5fb14c0919c4932b3a4c92
BLAKE2b-256 1e813d7fbf5c2d95d2c56bff4cf0d02cce61b4de0c63aeb5fb9bcfac9f1ffbbd

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: healpix-2024.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36ed6569270845f2c03b3f3aa1870c7e48f86e0457c058049db7ef7c53566d52
MD5 2eaaa23823a317cf0b6eee30875d808e
BLAKE2b-256 a681ae3a16921f48a26a46250111aadc410fdd772fa2975488b3fb7a64d16bb3

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: healpix-2024.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1d883bfe3707f633b799fee914b6904d0ad47cc1709ee22ccd898ded41dde556
MD5 483bf6d4522edaf870ad740c2c0120c6
BLAKE2b-256 57d4b1ec2e67cb9c83e710daf58268acdf31a8d22ede2382b1d07915656b666c

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d03293c4fb84d754d42bef9bd69ef8d5b5aea293e1c12c23bcc8a28dddb4512
MD5 f935508012fb9febe021e4b5cf5b3bc7
BLAKE2b-256 58ee4fee26addc53ec2f372c1f6a369e54fda1b0841f26a52abfd42fe6e4acd0

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c4d279bec4418f8a632188e304f905a3e8c1a932998ee3612562dffb238ed37
MD5 d1915a50352471bae2095adc13ceba71
BLAKE2b-256 8ec2ab2a82b66337f0db9c522813635a258254e30b28aaf4d39d1477f2477866

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2771b3e37dcfc9aff5caa5fa447a2a5cd604fb090a94529fcc018bdfe2ef1af5
MD5 d587f485fc86b025b9753856e24fe2fb
BLAKE2b-256 90f1d528dd9bdd159fdf54f5291da0ee0b22320ffc595d844d9701d32c5ec6c6

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99792f232f2d6e3356955156e2b458f52b54800aa6a9ec12ddeccbd06d0451a3
MD5 fb75557bbef6d4d45e890654c51d195b
BLAKE2b-256 8e40b3609a7b3e1144ad9eb3d4a1d74dfbc9875bf4bf1df9735dd7b1e2df61e5

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a17aac0eade26ff783238c1576682f8daf3b6212ffdc3bde35c4147582337784
MD5 04a5d4ff57ec393d157485ebbe451dae
BLAKE2b-256 7bd7664b8d7eb5ad29943541bce657f652bd844e9ab2b2d46aadeb8398c19385

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e77d13cc5393238541499f495b0ab26cd2d3619c42a9309d65cdf16901e556fb
MD5 c3d0e0f58e55e26619b90c7689a241c2
BLAKE2b-256 71195ecb381454ff08c85dd9f54c9a06b72653590afdb84428cf3fc5861e64bd

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: healpix-2024.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 090d2bdab6e43a4f99c365facc4bca264ac63f4e6df5ad72dccfeaf35553d0b6
MD5 8f64a5e76a72f52c52ca4ff7a9222eeb
BLAKE2b-256 b9ea9f095b687d35e1567fc349d2db7aebff75c0405aa4b07be02fafa8cd7ecb

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: healpix-2024.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9e74e96d3a4b01df4c0f0d857c93e4bf338160afa8c3732f9b25c8ca88acdd04
MD5 f91562a1f5751ebee1d96df923547d87
BLAKE2b-256 53dd20294fe306e322585236510dc8c2429351681412fc23748412cff09d5c27

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d167cae85075151b5eb7528e540b3d50f0d2daccf167d2522db5ab9fdea5fc0
MD5 ca488ecdac4ca3e7137d08e51288e0aa
BLAKE2b-256 84061b693f6d82b5455b9475449e46ce0b0a05855435e20f751491000cc47394

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acdbd1ca89e651b2ef262576528fdef3c0a13a14f99f59744bad43e752fd1d4c
MD5 05d9e44377d83abcd2fbd6d7180c6203
BLAKE2b-256 df177d4704944f88143b428b933cf8ebecd4552bfdfb5c732ed203fca3760ad7

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8222b220610d055fecbe40516e16ded1e1ee093aded787318d0fd154e1856fa2
MD5 bdf4ad0b6ab896672ec57e14fcbbc453
BLAKE2b-256 d1090e07639c655e1a41848a3fa4629847aa0a4a07d4f805b28300e1eb7c4ee3

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b09c21d221bb0b9aacab234a11c5ea5eee7cadddeffe95bb8d3a0b800522ce52
MD5 84d189586ad3d05ec811331a18883cca
BLAKE2b-256 cde4e1a3d3cd2f4d6d9174816c3b374d792969f6d4d24a93e93a2404ca20ad4c

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62701ac0e78fdd5c0be8df60de3af38ae4bb2836e22002682a2c8ed42a336b6c
MD5 e0dfde3b12d075a2c5c2ae1f6d00a540
BLAKE2b-256 809b1b8843eb071628ae88235b6bc06cdd423abb3eb355dce57f4059612f9847

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1d5831a56b17f403ac5e75bd3023dd1285f109b3526e3451e8c1233dade240a0
MD5 a4c9adab2ee8bcc54b153be517cf3626
BLAKE2b-256 78257870e9fb9306113621e5b5bd14faefaf699476291275980c4f39c8ee0160

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: healpix-2024.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3f53be512b6ec654d8e40a3993d3c8c1759575bba6514f3414ca8683652e864a
MD5 e302eb8e17ab39ba093bc5fac7ead1cb
BLAKE2b-256 c6b54a1ccca1d8b42c84a42bbcc91962940f8564a9e23bc8f0f9ba77e6df1be2

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: healpix-2024.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c0434f6816a4b3e1f1b54fa401a222a3ced95464aacad7b744a98f13d0957349
MD5 8e99206f06ba3d2840a74635f3c423cb
BLAKE2b-256 96e474d797c263d75f2691a55a598a74979361ad8b2d58bcdb92c1ae8acd2dba

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3e77f98bad7959ab8aacb716d8f4faf3c60f87f3c300d97dec75d9f80a3fe67
MD5 ab02f6011c3f213e40c8934c56c7fb5f
BLAKE2b-256 52beb0c940f4783493119a69c39e424162dc0793259bf5383dfcd8aac78849f1

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 428dd4ea52087774688cddfcadb86cb3984a1b7b50ed6b2c640b6e4333196d2c
MD5 2001d6c9bff3baae42c53ba5b4ec66ce
BLAKE2b-256 7b2f737d9ea1d8b23f4209512715ee1dca33a9364c1f118269356bc6b79d1891

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96cfc28e02ca06a389566dc763f67663cc7ac43dc52372911a4aa79e9057a3ae
MD5 65ababb88707d12c69a58774cce6bf16
BLAKE2b-256 4e66e955a2d1279e64b078069105c989fbd4f902eb6734de189c0dbbe85d0d40

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7694cfee1273a54c39a7e3c66a2bb3d0a5b52d555a0af4e872d102c77d2494f
MD5 6f5943398603c4ab60a3d8f6f26b0bc9
BLAKE2b-256 4575865574704da6551031fb457bdc3222b9c3275d47e6024d7fa58c4993d539

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9111c3283432b74dd890c2fc518dad8cbbc4af97ab9b1019a9c205da04d75225
MD5 bb769b2d8ae55f86d11e9cb4b37dc85c
BLAKE2b-256 f0b908bb0b67c219330cf6cc5230d5863181bdf02d73ea1dc8d5aee5c13307d7

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8d563a028b74b761b2976d06550f74a9962b51c532a7b21d6660887460a31bb
MD5 5c18c0450b38888bb21565aa9a38cc4e
BLAKE2b-256 3d9965bf3037d5a58cfb131a57838148cb9f59b2baa6d44f73e7ef289a77e9f9

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: healpix-2024.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 25.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d88ea6ef7bc0ee62839d62c965bdfdd678577dcf324116fbe2c935cc97cce654
MD5 520520919aba835fb653c8ecf140466c
BLAKE2b-256 3e7352641a7225ca20bf51002be03fd16a83c2c0becf3169d34bcfd66e31ddce

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: healpix-2024.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c881957de15d203fc035d65939c3f54bb19c1c27e6ab31dfcfe4c734a6f1e47f
MD5 24efd96a1d1f602a1f8d53a6d5565ac9
BLAKE2b-256 f13e1d984a8df66e9b149243932e3492a31a3d6ead69f4e8839593836c6b1d74

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35860f81e6218a7ef273829ba193d6f1da2b4a2b5126cb11259d772123be5c94
MD5 5512f650db8f3dad1edf0032881b0b00
BLAKE2b-256 7fa0bb7abdfac210991dfa3d3ad3f33910e7559496c677992612412ba8783339

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d436aa500b06773bf1b3e8b227f5733f18da10df6b0d21ff65afffab37679835
MD5 6176217675375f52eeddabf8d6470e84
BLAKE2b-256 a72a911ea6ce0152e34ca5804f4177c70c8b14fb1055d14354e50507b1e17f33

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 955f0a77e6e90d0221c6517170c8c7711c816cd117654f849c71d4e337cb5f39
MD5 1c129b19105846a99fc88de01494ac5c
BLAKE2b-256 f6e86f202a1967b3db24575b3931b095058983c675adc1210d40a98f5c59fb99

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a131b9a14c49b960bf60b53f2e5907b6b1cbe1f0bbf3da3929c749cddda456a3
MD5 243433c252deb844e9a835fc73b59ede
BLAKE2b-256 c62cb2d0fdd29da198221ea0fc27ea2cc70965ce0affdf08e46b2a62c0d04eac

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a9a34c9939d02a3a0d60418e310bea2745812c0051047ae318d42631a50bf3b
MD5 894fe463fe3eb73cb391b855914621bd
BLAKE2b-256 f22a6d1c153923b48b090be2d3f54eb1ab0d22e53923b7588207034ba03f4d22

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 752e76b04c2b0b8a4f372a288420863d65f9ef099d84fed9f3db44f00fef26f1
MD5 50619ca208c9d4b509b07e36c2411db3
BLAKE2b-256 694c942bcf9d8022c7c981e9bd590055a1069d36b6d79459ffabbeb1e24a8d56

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: healpix-2024.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 25.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 42e08a6287d45b3c6e71af808441fde0f05361c6c988d45046ec20702ad7a814
MD5 e814d58dfc77122244ed19619b5f582c
BLAKE2b-256 a46d951fa87f6180732175eeb748f3244ac67f56b829da488d2a2cd03acac391

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: healpix-2024.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for healpix-2024.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0d72648770ad07d69ab510653cb2bf15bc1aae4e3886e80c022b99942188405c
MD5 8a339606a09c51df4281e2bfc679bd98
BLAKE2b-256 80b2e15a030b13ada6a330b7bc8857074db441283c3db3a33809fb2dcf904e0c

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bda1968461ebd4376dbe8b3947f34d1af641318efbfaa3fa3f7ba99a26eccf1a
MD5 ad0a27fcdb1776dd7d58cb98476adc60
BLAKE2b-256 e5a5fb4dec47a601e8f5f559ee3ab143383713ee868e431fbbbe53bc1dd2b9b7

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 491de54d4b95f891cadd75ecb0917113ba2e466b6132db18d311d0cfb7fccffa
MD5 c0baa783ddf4ae2b2659826cf5874c13
BLAKE2b-256 568e4acdace7d922bb9817d0393f2511fd4c245379a9dc98a7681515a2480f16

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef6c1e75a45862b66e00268c7288788d3e671a9da983309d26804da1f849ce09
MD5 bb31493284ff3398d3f870db7f5fca13
BLAKE2b-256 1f83809c523017ac5702dda0f4bb68f74bb80d6a541150985cc4b418fc90c910

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5fb88fea65bd452494213056bae745983d35e530d98be601551ad2a67184b1b
MD5 2d2aa92093ef80883873729f09e54536
BLAKE2b-256 9b4620d70fd26e0008eb0ac320f9b256e8b4540f428fca34ee43694d02d47abc

See more details on using hashes here.

File details

Details for the file healpix-2024.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd8fd4f70fe85b164b4b81ccda79276554cf6d37edb5883ee100fd98b3ebf8ad
MD5 a5240b05ce6d5fce7055105338930f3b
BLAKE2b-256 949099d3494afee827e2449a653c7cd7bf7fa32e3f091972d5e1469cc7004553

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page