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.1.tar.gz (18.1 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

healpix-2024.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (74.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

healpix-2024.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (22.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

healpix-2024.1-cp312-cp312-win_amd64.whl (25.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

healpix-2024.1-cp312-cp312-win32.whl (24.0 kB view details)

Uploaded CPython 3.12 Windows x86

healpix-2024.1-cp312-cp312-musllinux_1_1_x86_64.whl (77.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

healpix-2024.1-cp312-cp312-musllinux_1_1_i686.whl (79.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

healpix-2024.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (75.4 kB view details)

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

healpix-2024.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (78.9 kB view details)

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

healpix-2024.1-cp312-cp312-macosx_11_0_arm64.whl (21.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

healpix-2024.1-cp312-cp312-macosx_10_9_x86_64.whl (23.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

healpix-2024.1-cp311-cp311-win_amd64.whl (25.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

healpix-2024.1-cp311-cp311-win32.whl (23.9 kB view details)

Uploaded CPython 3.11 Windows x86

healpix-2024.1-cp311-cp311-musllinux_1_1_x86_64.whl (77.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

healpix-2024.1-cp311-cp311-musllinux_1_1_i686.whl (79.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

healpix-2024.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (75.5 kB view details)

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

healpix-2024.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (78.9 kB view details)

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

healpix-2024.1-cp311-cp311-macosx_11_0_arm64.whl (21.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

healpix-2024.1-cp311-cp311-macosx_10_9_x86_64.whl (23.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

healpix-2024.1-cp310-cp310-win_amd64.whl (25.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

healpix-2024.1-cp310-cp310-win32.whl (23.9 kB view details)

Uploaded CPython 3.10 Windows x86

healpix-2024.1-cp310-cp310-musllinux_1_1_x86_64.whl (76.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

healpix-2024.1-cp310-cp310-musllinux_1_1_i686.whl (78.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

healpix-2024.1-cp310-cp310-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.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

healpix-2024.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (77.9 kB view details)

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

healpix-2024.1-cp310-cp310-macosx_11_0_arm64.whl (21.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

healpix-2024.1-cp310-cp310-macosx_10_9_x86_64.whl (23.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

healpix-2024.1-cp39-cp39-win_amd64.whl (25.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

healpix-2024.1-cp39-cp39-win32.whl (23.9 kB view details)

Uploaded CPython 3.9 Windows x86

healpix-2024.1-cp39-cp39-musllinux_1_1_x86_64.whl (76.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

healpix-2024.1-cp39-cp39-musllinux_1_1_i686.whl (78.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

healpix-2024.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (74.1 kB view details)

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

healpix-2024.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (77.6 kB view details)

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

healpix-2024.1-cp39-cp39-macosx_11_0_arm64.whl (21.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

healpix-2024.1-cp39-cp39-macosx_10_9_x86_64.whl (23.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

healpix-2024.1-cp38-cp38-win_amd64.whl (25.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

healpix-2024.1-cp38-cp38-win32.whl (23.9 kB view details)

Uploaded CPython 3.8 Windows x86

healpix-2024.1-cp38-cp38-musllinux_1_1_x86_64.whl (77.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

healpix-2024.1-cp38-cp38-musllinux_1_1_i686.whl (79.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

healpix-2024.1-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.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (21.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

healpix-2024.1-cp37-cp37m-win_amd64.whl (25.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

healpix-2024.1-cp37-cp37m-win32.whl (23.8 kB view details)

Uploaded CPython 3.7m Windows x86

healpix-2024.1-cp37-cp37m-musllinux_1_1_x86_64.whl (76.9 kB view details)

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

healpix-2024.1-cp37-cp37m-musllinux_1_1_i686.whl (78.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

healpix-2024.1-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.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for healpix-2024.1.tar.gz
Algorithm Hash digest
SHA256 3462c187206aad701f90f1a7e0e81cabd96974034d9e2befdc1c26721267a777
MD5 b46f3c798d647140b825e92dba26a959
BLAKE2b-256 dd150e587aef008813d87170dc6dc50b65b45cf5ef3b60cbaa95e055af48b6b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a3590eb8b2b11752a8284a8915b3fd820c6bafd577c286345a398d46b2add5b
MD5 35f042ea5e5d87530551fc4769d82bcb
BLAKE2b-256 2b2714cc62bba3d8bc41bc623ef9922149aa991b1e9f25e370344bb5d0a6064e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4d3d2035b73ced3d3e2ecdb6f7adec1990305427e17d439e48c6ee187c6281c8
MD5 ada023cf58862026d293e652ab3220bb
BLAKE2b-256 229755706145ca0f4aca87bda1ee73b72acfba472d8004129a234064c834fa48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a52c47a29fdb67412a153caa07412c3a4fad1ae710c5a5bb01fe26356e2ff70e
MD5 aa53feba82b9cc8d883489f41a0bdb11
BLAKE2b-256 e0fa1f12b43934895252401877f1fc3a8853bc7374470a0bb18269fe05253af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc7b5c383ca5d16fe829a756ec302eedd80df74024cda17fe68c17598b0b91fd
MD5 ef359726d8025cf6fbd28aebba30ce7b
BLAKE2b-256 279d6f5024341d045d6c0c63d5399536dc240aa782249aed0b0ba3ba6a26773e

See more details on using hashes here.

File details

Details for the file healpix-2024.1-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.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b0bfa916545faaa63dc1f4bb2d8027c5ff994192661587d38521f59eb0db630
MD5 a51ce28d07c66ae3f34208940acb1792
BLAKE2b-256 d68f51b8b392651451610f442f126c9e20e97e58618c112227c125f171c661f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0582d471f3e375a33e6f69fc038e14101899cbf9e7131fcc4b2d012219eebda1
MD5 b6df2a7e8972008050ad32127c6df188
BLAKE2b-256 9c8f6156a132653aa61600da9a4d36c1de4d44dc3917da3be5fccf4db49f897c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 feb0718da60e759210b2f37aeddabd61f3dad217899a125b6a2e198b564076d4
MD5 3ea8d26f3821fe2f5ecbc72bd5aa5082
BLAKE2b-256 1c6214f1de32d87a45299855236cba36c57bbbe618c80f6d23f3d31259cd051a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b678451ac2410e3d77f19d0f38c3eb44bc448d1390868ede50cda34a5ce78a21
MD5 9dea0738f01bfbb481c03a9c9a1f039d
BLAKE2b-256 6d89e42521ba53c4b4afc59335856e6114a82e52b74c851fb4d88cdf4e853271

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 25.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3f2546704a15da02a0b94eafdb6e8dbab57e8f8ce8e4d2d0b2ab70c4465dcdff
MD5 cf87035f0da58276cb6e3791f76e8a25
BLAKE2b-256 146a80489611f753248c3b379766fcf83b6a29c48418b7a25cabd36875fc57c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 24.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 50940c30027499beb6a4e2cbfe0b0e9bd38a36195eb966894803073e663be198
MD5 f09d1f2f53921a1e0d1d38c74ec97897
BLAKE2b-256 4daf8f0649820e9bfcccd76e0015e0a2748af82b731427c24b5329ae00378327

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d3473fb937a3bea45a54cc173b64314729035c0c80f0c23571d32f6feac3331
MD5 2c48717ac237efa566227ffc418d5565
BLAKE2b-256 c337bb99a06cce9af690d4315629df8118e045eb4d6f38216e6260cde59390a7

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d6edf534c441170e00ecca782a6914856269a029f4472d583a7279d05c433638
MD5 e67b607a30f553871d763eb342b49464
BLAKE2b-256 76d0114a550cb24f0efaf3496b3e5c46135a2f7f4ec295f9385d31064fadadd6

See more details on using hashes here.

File details

Details for the file healpix-2024.1-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.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e33425b930a005e3008a1b2ee4a47a3a0c1fabdccad89a24500861c87c9471f
MD5 250a1426adf1bec5bee69b421361556d
BLAKE2b-256 d2d8291717ab1e8e16304b8082bf44ce9a2fe06efbe76d613fd00b9baad0c1cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f6e11c1a204225a2269c7d837fef7fd7100e82428db22b7b6a1e1b81e7dd007
MD5 dbf54b66b25ddeb61672f020f66f885a
BLAKE2b-256 a8156495ab9318ae7cf89194dfc8fcbffeb245cff382452058a199f0e329d2d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebac5c04dd6b88f3821ef56f0d8575242fd9637a8491934122989e76e55ac012
MD5 615d0889bc042aded93f3e536f9cd4fd
BLAKE2b-256 e01f08a20fe1028f80d7d2d576bc68ce110c4b497bcd411059a117e699512142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d04ba1a5388ad7872801e3fa2823b0f330cc5849af8ea6beb5055a45ee073f57
MD5 f466ea18a0279769e7ef218369aaeab3
BLAKE2b-256 8a4976737baca93f685bd6eed430130ee3be98b5a2ce4429ed2172b7bb553265

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 25.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d010ba03ec5bd34b8941df22cda259dda123b9e399c42138017fc5da40e30ceb
MD5 0541e7b0da5becbd993648654b43c4f4
BLAKE2b-256 d5c59ad7f437ac6d9cff8a7e69b2e8af7586a92eb40c34a58599b4a2807f3a03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 61d4b336c676e66fd9e79aaa5e19a08b9f2e7e23081d82ab2a5cf99cfa029bc8
MD5 81aa44da6c7b5e04be502345fc2656eb
BLAKE2b-256 994b7587f5a1a48513d83dbcae175342cb1b4df6b315663c3ef239fc79d3a4db

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6ca606d989a7bd3c22759292e8cef2733cf13825de4159ffa863c858cf547ceb
MD5 c3fe8efddb12f40bed6ec851ec895827
BLAKE2b-256 5f83d386546ecb230636fe08ff8964c74d0f1b408f132f6405f31ea29d59e40f

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 24700715adbf433cecc52bc97814d0175f20755629f0edf3ed92a5140ad1dd05
MD5 4f2e45274fbb138b881e5f6e207577c8
BLAKE2b-256 507cc4cfb71df68f4364542b25f6fe0b0f4444757934b14c6e2739ce3ae99301

See more details on using hashes here.

File details

Details for the file healpix-2024.1-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.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4612d7dfde0c26eef824bd71af9d1e2db8bdfe71385cd130570ec0903ce22c71
MD5 fbf81f82b87b75da4d0c5382b9f82ee5
BLAKE2b-256 11668cf7e0145f05cb9afe77eaa7299304d12e26b2ecf78f49246802b7e3d790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3728b499d39af6c682725a33b25b899b4e68e148fbabf1a06035c7c83a066c98
MD5 51d1a7d127b40cd0c33dd5e890debd86
BLAKE2b-256 caaddf3bd69620f8036013151cc5055013d526974adce3ff9dc93701a3bf2bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 390b2b4a73dcd98b16c3539de14323f2d5fc186776629920ccb02036a0f059ae
MD5 a517dc9006b6bafcabb5872118e3c544
BLAKE2b-256 ae2e536bb856b709e01ffa4ec229f9913f86b45216f21fc9f9079c2cca1c6514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e9590dca76241144e4aee13b06587206e4254501f4e83489bde842ca8346180
MD5 d071201701ebdbc46268ed44e687ca5d
BLAKE2b-256 3ac35db3ccbd1eca467b4becded4a47f6c3a2d65fb3cc64b2f881000403b919e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 25.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e827fe16bee3c1e643a1bbf60e4dfe64f71bbe14a0f8c2d18f22d9c6f224be07
MD5 1ebd8ea4869611bac07546acc9895dd7
BLAKE2b-256 894890d45f4b686ed3c5d17e134ba4b9051d34ad6d06e8cd84a8544a459a33cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c318e348288eeff01557b007a2fa0e313e087640aff36f61ca4a7336511f3268
MD5 83008039e50f2d1d1fc09159e9319988
BLAKE2b-256 e405ddaf19475c0153369d580e0d13ce00c5eafd70342f1a6679f227c612d5f1

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39f69fcbaec8f7dd42efecf66d069782e9cad5bc097c9dd33fd470fd100ff569
MD5 59a41e8f2d135bf927564077fdd637fa
BLAKE2b-256 999c470ee7106affed0f0312ba0c4e852d68cd61cddfe2b10e8e22d37a492c28

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eaea6524ef07cfd5c629c30c822839449cb7467b7326ac8edd26d1df0f7faa0f
MD5 c22216a055594d416061efe35f9e11db
BLAKE2b-256 83979f326721763bbd27b303ebed66ae08c1fe58f02bfe70765cb1c53a93fb49

See more details on using hashes here.

File details

Details for the file healpix-2024.1-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.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f9c6a29ce21ac8536b5915b67c42f63092e5bf6516d610a29a1da59cf9a5bd5
MD5 bf5f9c62ec29af5a5f9b19bc92f37a8a
BLAKE2b-256 771b996ba0827d7e41120793e8f559d9313d23d89b0cfaa49cc9a199581331d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d1451ab9fa01e7fff964cc8fcbac39254300971e8c3b3022b86f701287ba8a03
MD5 d19f9ce724ff49710e8b8a0be1609be7
BLAKE2b-256 fe840ec380a6cb85031365b66537fe43306bc706231272e81ba9881c29ff4394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2eaeb57b0328476c8c6e47066f64aa3ed440a47149340f007bba52ae7d9172db
MD5 60c01d3c1f499ed692ec10e052462d2a
BLAKE2b-256 ff8a4852d041798dc6882b48afffa9f70a6514e41df4a93ec6b5c594e2a17270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10239825cd71ca52108208c6edfc74ea19a9b7c800afe5a557d1b1d6f52d728a
MD5 e46f5268fb749c376bb31ddbcf803006
BLAKE2b-256 177672602d4b890c3e1b63653be47910a36f0afb1d011c22720c08d5e823ac7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 25.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c338468973537150740e79312ccbfb7be95f11fa8e6b3fbe97725db34bf1b5ea
MD5 ac1f7f05d15f153045335db9d5a52694
BLAKE2b-256 95bff69bb0f09f2ec52609dedb6a2d8713337b470b31f026790189fe1c6c72b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4b9ee3a9be3ed28be366b73e70649bcbd4506add3eac3c1d1d3c49c973fdca6b
MD5 c1f5374d768eb39381865781c4c063e7
BLAKE2b-256 f7b4d6918ab319b00d1814eadde71a435cbf770681c53c148e01b820ce9bb431

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63859dc0fbcf27f21a23e37c62234ed8e9de4de7eed47832c61338caa36002f8
MD5 6132d2563fa03f11ea827c5047210644
BLAKE2b-256 8a799dcc2ab65de42aa9c2b3f6319e94367fbb4ccb50d1b5955ef20a0bf101b4

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 087c50042df0f01e5bc3dc63b5e569b9b0acae09c18330b9daf02adfea5395a3
MD5 49d6fe169c3fb7c7f10e79deef15fcee
BLAKE2b-256 0e46bc2b99a3315c9f174268216512da3309346378f16422df6178258541427f

See more details on using hashes here.

File details

Details for the file healpix-2024.1-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.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3557d3debfb84a195152b53f93e57e5d1250d69b1741a0bdcd0fa9e4e271c04
MD5 a770a2094e403a05b8b45999edb9de29
BLAKE2b-256 dd7fae5d656be7326d1c29aedfde22e060f2b956a44ddf2c8c2d24376a7341c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb605bd0b59c377e726778d29b201827b165402699922ba26d396b24ef67e451
MD5 e81024a9d7945e848634ec8cfb2e8b84
BLAKE2b-256 9edb3822167fba2e301b9776991728d2a6c42fec1fb0281d8c1c7d115f4ee826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f28bc5d17797b9b4767642bfde798273eb328173eda6ef44a8d46cfb22ac067
MD5 b59897f557618f15d0e81f1097969780
BLAKE2b-256 574b61151853b2f9ae00a711bb2e8fd13d3e4b37e25968bfb077d50e3a5f1a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0e327c1fd9e449895150dc88dcca5498d8819f707e10f2a98941b4d3bfd80d4
MD5 16affd4371d6f5b7c667c52ab33913ea
BLAKE2b-256 16193b4512653c1b98ba24c044d86bd08860f1f0713c76e3e977eb1e1d42e11a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 25.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f26a736b896050b86d707586a29f56008dd4b2ea26780769f6f8a9c4ecae718b
MD5 0f86a693db806bb38f78018d6ee1dce4
BLAKE2b-256 ee06ea72967dd40cbf12c7e23f3b9e3a121c9fbf7afab551f8b3a6cef0ae4b39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 53a06149a0cda565a92e91320e141baaf32172e5df9eda1a7bd3881abe30f446
MD5 f35706fbdaf193cf8f7e77bc3e7dd6d0
BLAKE2b-256 9f629b04a72ce097e21265485ef23aa755205886d4826b2f836c54cb8184256a

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 83f62b0e6c176e0f30ba739eba3f1d463a74a91ba1c364c34fcda48a68d50c71
MD5 93baa5dbd30cf00db88e860305557b76
BLAKE2b-256 d342e9d05fb2a0d96130ebf3e8382b3399f54ee9b9ca1fec2509482af1df3566

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 63b385cd5fdfb4dfa0d013821ce45f769c14838cbff5fbb9f66eee5c8174d779
MD5 0474d2382a6f2e7514bbb7b5f1790b22
BLAKE2b-256 89aadda3eae4b90b5a3a347046f4d574b6697d8547ba6b516a8d1c171dbcc019

See more details on using hashes here.

File details

Details for the file healpix-2024.1-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.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 269be3a1159737ef31a85f09fd7429ed26fe9793ad0e2ab14677195ca5b4bca7
MD5 7320735fb579fb711531a26288d57cf6
BLAKE2b-256 c3270880816a858e6c108b8c42a1c322f86715c616d90334c8af656dd21758f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 870d3d0f73b25170b094f0f51d532b7a766abd186740b2006a0d6619053546d6
MD5 ba5810f77197e5d59f2319149259a945
BLAKE2b-256 f513c667e7794b43141a30505218bc368fd97f9e3e412ec7d3e5e52db3f2f246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 325b64369f52fd77698d9be94254bdb95c7a0640268938c21bf6230f71d829c9
MD5 efa1e1b7efd8a1ebb377320f9392d814
BLAKE2b-256 098c0300c463daa7ffd56bcdca6546e77eeadf88dac50beff98578fb72756625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e65d4f346c810505d30a32970a7f4bc247a63ab4138a72ad63241d3a55dedb92
MD5 5b3e406d42e8d0b5ff530b9687849b2a
BLAKE2b-256 26948088ad4cb8262788373c6c7633156300f64b518cda7706b19bfb2d72c746

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for healpix-2024.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ac8ff08c5a21daa58bfa24f6982ff5744bf42251347e5c09d31152949f02485a
MD5 2e4caac107e9c03d8bdc9bd99b3fcb60
BLAKE2b-256 6eec0b8e299d6589258f9386e8a754e3d028b085c9e426b0a8516a3784e1c7ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: healpix-2024.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 23.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for healpix-2024.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9e5bde971768f033f20a26f5eced580b1f5a975b24e767ded84d12594c99e01c
MD5 bb7202f94ceea0a710d84178ffc6a32d
BLAKE2b-256 92596ae405084413c455b5aa1eae8853ddbae68704db918e834a700c23b9f4eb

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 017404ba99abd78e6a5ead68563e631a5132eb89c33df6fe001fda4e54941698
MD5 f8ada825c32c94679f4f13bf92fad1bb
BLAKE2b-256 948f89cfcfaad84f5c511cb7f53a39a03ea5cd554b047dc112b6fa070e50ca2c

See more details on using hashes here.

File details

Details for the file healpix-2024.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for healpix-2024.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5afdf594f590272b45fef6602da4b9987dabfbf96c1006e36e63620a973c55f4
MD5 eb380e2aa226283348f74ad1b473b4ad
BLAKE2b-256 6338ee6b08baf3c4e78fc96c234ff1ca73b5f1f6d68c182b7dde8f30e8d5302c

See more details on using hashes here.

File details

Details for the file healpix-2024.1-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.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c9c60bd23b051f094d75c2e3fdd38ef372d7a3f002c3332958a00a9841722a1
MD5 4d9bf9cc87fd9cdceefbcddb4b3a561d
BLAKE2b-256 c62a719ecd76cb8113b3a80de81ff87c09a768e422726f4ac9dfeace6fd155cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1dda5f30c8df5731c4a78fde2d6c0a35006dcbe3c0407629ab1a522d6c0aea2b
MD5 9d908d34b18f6d93055c8b4277c57707
BLAKE2b-256 619b3a77a4295932d7f65cd09b311b7f151603957e86b949f8910685ee833864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for healpix-2024.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb7d9272381f2a4c49d110657879ce7d87dd25aa08f2e7c16a27d2715d9f1e2b
MD5 7331eee0fef8b53cebd435cec4409c4c
BLAKE2b-256 d9902346f7c8b1eeb3b6cdbb1e237755eb826f41ed5a12d26c5120165e902eb0

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