Skip to main content

H3 Bound Cells

Convert geographic polygons into multi-resolution H3 cell coverings, with fast point-in-region lookups.

Rust core is built on h3o and exposed to Python via PyO3 / Maturin.

Overview

BoundCells is a pair of dicts keyed by H3 resolution:

  • area — cells whose interior lies inside the polygon.
    • The area layer is compacted: wherever all 7 children at a resolution are present, they collapse up to the parent.
    • A single covering naturally spans multiple resolutions (chunky cells in the interior, smaller cells near the edge).
  • border — cells that overlap the polygon boundary, materialised at every coarser resolution down to min_cell_resolution.

The border layer is what makes containment lookups cheap. To check whether an arbitrary cell falls inside the region, cell_in_bound_cells first tests the cell against the border layer at its own resolution, then walks its ancestors from fine to coarse against the compacted area cells, returning true on the first hit — no need to materialise every leaf cell of the polygon. A query cell is "inside" if it — or one of its H3 ancestors computed via cell.parent() — is an area cell.

BoundCells

Install

The package is built locally with maturin:

uv sync --dev
uv run maturin develop --release

The dev dependency group (declared in pyproject.toml) also pulls in flask, h3, polars, and pytest, used by the visualisation server, the tests, and the optional Polars integration below.

Usage

import h3
from h3_bound_cells import polygon_to_bound_cells, cell_in_bound_cells, BoundCells

# Rectangle around central London. (lat, lng) pairs; the ring need not be closed.
exterior = [
    (51.50, -0.13),
    (51.52, -0.13),
    (51.52, -0.08),
    (51.50, -0.08),
]

bc = polygon_to_bound_cells(exterior, start_res=9, min_cell_resolution=4)

print(bc)
# BoundCells(area_resolutions=[...], border_resolutions=[...])

for res, cells in bc.area.items():
    print(f"area   res {res}: {len(cells)} cells")
for res, cells in bc.border.items():
    print(f"border res {res}: {len(cells)} cells")

# Point-in-region check: Trafalgar Square at H3 resolution 11.
cell = h3.latlng_to_cell(51.5074, -0.1278, 11)
assert cell_in_bound_cells(cell, bc)

# JSON-friendly round trip
restored = BoundCells.from_dict(bc.to_dict())

API

  • polygon_to_bound_cells(exterior, holes=None, start_res=None, min_cell_resolution=None) -> BoundCells
    • exterior, holes — lists of (lat, lng) tuples. Note: this is (latitude, longitude), matching the H3 convention (e.g. h3.latlng_to_cell) — the reverse of GeoJSON/shapely/WKT, which use (longitude, latitude). Swap the order when feeding in GeoJSON coordinates.
    • start_res — H3 resolution to tile at. When omitted, it is auto-picked from the polygon's planar area.
    • min_cell_resolution — floor for the border layer (default 4).
  • cell_in_bound_cells(cell: str, bound_cells: BoundCells) -> bool — membership test by H3 cell id.
  • BoundCells — frozen class:
    • .area, .border — dict[str, list[str]] keyed by stringified resolution.
    • .to_dict() / BoundCells.from_dict(d) — JSON-friendly round trip.
    • BoundCells.merge([bc1, bc2, ...]) — union of multiple results.
    • .cells_at_resolution(res) — flatten/expand the covering to a single H3 resolution (parents map up, coarser cells expand to their children).

Polars integration (optional)

Filter a Polars DataFrame/LazyFrame down to the rows whose H3 cell falls inside a covering.

Install the optional polars extra:

pip install h3_bound_cells[polars]

Importing h3_bound_cells registers a bound_cells namespace on Polars expressions (only registered when polars is installed):

import polars as pl
import h3_bound_cells                       # registers the bound_cells namespace

bc = h3_bound_cells.polygon_to_bound_cells(exterior, start_res=9)

df = pl.DataFrame({"cell": [...]})          # H3 cells as hex strings or u64 ints

# Filter to rows inside the covering:
df.filter(pl.col("cell").bound_cells.is_in(bc))

# Or use the boolean result as a column:
df.with_columns(inside=pl.col("cell").bound_cells.is_in(bc))
  • pl.col(cell_column).bound_cells.is_in(bound_cells) — a boolean expression, true where the cell lies inside bound_cells.
  • Use it anywhere an expression is accepted (filter, select, with_columns, boolean combinations, …).
  • Works with both eager and lazy frames. Cells may be hex strings or u64 ints; a null cell maps to false (dropped by filter).

Dev server

A small Flask + MapLibre app for drawing polygons and visualising the output:

just serve
# or:
uv run --dev dev/server.py

Then open http://127.0.0.1:5050/. Draw a polygon, hit Compute Bound Cells, and the area and border layers render colour-coded by resolution. Renders are capped at 50,000 cells; reduce start_res or shrink the polygon if you trip the limit. The page also accepts a pre-computed {"area": {...}, "border": {...}} blob via the Render Cells panel for offline inspection of saved output.

Release files for h3_bound_cells 0.1.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for h3_bound_cells 0.1.4
File Size Uploaded
h3_bound_cells-0.1.4.tar.gz 5.5 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for h3_bound_cells 0.1.4
File
h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
h3_bound_cells-0.1.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
h3_bound_cells-0.1.4-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
h3_bound_cells-0.1.4-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
h3_bound_cells-0.1.4-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
h3_bound_cells-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
h3_bound_cells-0.1.4-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
h3_bound_cells-0.1.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
h3_bound_cells-0.1.4-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
h3_bound_cells-0.1.4-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
h3_bound_cells-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
h3_bound_cells-0.1.4-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
h3_bound_cells-0.1.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
h3_bound_cells-0.1.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
h3_bound_cells-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
h3_bound_cells-0.1.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
h3_bound_cells-0.1.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
h3_bound_cells-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
h3_bound_cells-0.1.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
h3_bound_cells-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
h3_bound_cells-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details

Total release size: 503.8 MB

Release files / h3_bound_cells-0.1.4.tar.gz

Download URL h3_bound_cells-0.1.4.tar.gz
Size 5.5 MB
Tags Source
SHA-256 checksum
How to use checksums
657e62ffdf7cf8edb7d2de26c695b8ee9908f0771eebc5456ee0a0d9f2660bb6
BLAKE2b-256 checksum
How to use checksums
423d6e338cacb5191ea9ceb6df06e8ab817c55069c0ffd7e8452130632eef327
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 5.8 MB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
7b6ec4677d4a825e3d286d21e2d75097e1c20e79f3dfbac60ee6caf8e7ea86b7
BLAKE2b-256 checksum
How to use checksums
375cb026df3639463fb121b776a6f722d40b3fcbdf1ff748e6382a80229a7042
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 6.1 MB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c45661be4b22109c805f0a3e30b9f660471bc9c578abf2da0edf159d2b68c4ee
BLAKE2b-256 checksum
How to use checksums
8c88f7dc532e67775f940d1f60f92851ab5095b902d6bcdb4bc757bf7ff0cb3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 5.7 MB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
d5e50eb7dc47820ea0360b10f1324b25d983868db7c36fa29540a2b4139f7398
BLAKE2b-256 checksum
How to use checksums
4c3caa3b228e5facc360c79fd85af0c32dda6dfc2132f5be4e7728dee528025b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL h3_bound_cells-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 5.5 MB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
83a7dd977a60d29961a50a0fa538a17de85acfb585f810e9176ed3810356931c
BLAKE2b-256 checksum
How to use checksums
9a9004801e2a83171a9f71eec506490b978c9da872a1a6b0d5f4f426599d2a5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
71e55d45a70e4db9fdae09e9c3a94a16dd6803825e990d88fa95ed677c3c5a08
BLAKE2b-256 checksum
How to use checksums
0c0dab70d5d47ab317ae17a4e8c59333e91e56fbe603353797bd7342c1a43461
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.2 MB
Tags Linux glibc 2.17+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
3f84752b81ee6793e47606ca3afc742ca62e03ff9a87c2b6630292d4c669be7a
BLAKE2b-256 checksum
How to use checksums
c71fceeccd6e63dbee2226a2d4ee83e63a698e528cbf5cac8845c5b58b984b0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 5.5 MB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
27011492325f8efb7555c543b350ae223c35a3245b7fd462eb43b52976d2c7e9
BLAKE2b-256 checksum
How to use checksums
b88ecbe4e761b205cfd84f89b3758d78b23df056047eef31ffa122615ba3d74d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL h3_bound_cells-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.4 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
4a4bf3aaf6714dcd45ed2c31cca1f504b266b715b86e2f35a64c10b8241ccb8f
BLAKE2b-256 checksum
How to use checksums
5ff25041dda4402c6c604dff2ac34b5d48638018eff3763e282dee16fa850de2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e452f0820f3054aaceddbf7a26e382094ee741dd8fc012d08499eba7f252fd70
BLAKE2b-256 checksum
How to use checksums
ca6db57f182493d943fc0f190f95bc9b345ddd607a2ce8b88c19d67131f1cd8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.1 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
9e98058c1baeb7a2a4bd343fc9023b3db5ea2fe503002283f72889beaad90f3d
BLAKE2b-256 checksum
How to use checksums
c9812201ff2e13d84e7e5c4a4d2b1a7ff9104f5888f044509d7f314c6d8a503a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d6c754a5861e20db5a89da65cc4fb484cde8c72564627716b5294830640a2e08
BLAKE2b-256 checksum
How to use checksums
45e23c12761ac9ed1962f8de68e1e1758efc9a477504d97eb4bc8d9dfe7a120c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.1 MB
Tags CPython 3.15 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d3cac034cfb77bb185de9c4a24748816aa68cf0b353ff37f12577f305ba55920
BLAKE2b-256 checksum
How to use checksums
7598087e920b3bec01c20ee0b40a4f2c60ca605e95ebbe56beb18318ce2c39a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 5.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b24c5915681e6a1aef5b0e6b3bc59815e3f2b33032d6afef8b53db82a54e56d3
BLAKE2b-256 checksum
How to use checksums
b7e3ae6637140a40529619c6e4e446f1611ed794a55c92555b0056e6865b2ff1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_i686.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_i686.whl
Size 6.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
42fd357c1db1df15238da31880ec5e4db16e56c727df1f2c2816f51760fc27ea
BLAKE2b-256 checksum
How to use checksums
72c0ef1a89bdd633b454ca20fbc4d54bcdf5579e3bcc5eed26fc08856c7d11aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 5.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
06adbc7d08ae81065e34a8a27102e8d89cc5f39c71098e4c6e8b7877b351bf8b
BLAKE2b-256 checksum
How to use checksums
bf0cafa18d677f7c39c0acdb0d970127b1a776aa26b70f15e9248fa8078b6fe9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 5.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
50a35056475f9b289c187f8d32786a2b3f347896ade910be4854260f8e581f60
BLAKE2b-256 checksum
How to use checksums
85d1f0a58de3a2808439126f68d7ed408b3a9137873aebbbe7cf3f2154b2a6fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
14a0420a5882f03ebf72dd23af3739887e90236a20f8d78fd807b18679c6dadf
BLAKE2b-256 checksum
How to use checksums
81ad006d45a177fa7de8492b118ffa359c37ff35ccea6a60f6d78a7312938327
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
4a17ddd4e825d69c0e9c2805a981638078781f5ae3f3022fa040b37d1b52f01b
BLAKE2b-256 checksum
How to use checksums
64f4850becc156591b29948a0afc2cff4f6bab19cd5424d1a6d099a7c6c34719
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 5.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
2f11539d8100ba468636c7418265c4d1db18dc31c0d1328d62acd5452f407b7e
BLAKE2b-256 checksum
How to use checksums
03d984ecfac00b86afecf7fc81c5ff7360201748fba9f737c38663735d1a286f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ce4c4582db8482675d29404607b3903ea4fd2123ea73bc83b10081b43f53ae53
BLAKE2b-256 checksum
How to use checksums
c4d74ac84c9444b16ae9c681e497dfaf32416737bc99e97ecedcfa89cad4d62a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-win_arm64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-win_arm64.whl
Size 4.2 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
bc983a2e2cb4bca58392d24afcc4b2f33a6ce17b0d578980abe30ccc6c10b0f2
BLAKE2b-256 checksum
How to use checksums
ec73f7a7a46435695d2dde21cea69f976a42677e99b44027ee3d104562bc2e40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-win_amd64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-win_amd64.whl
Size 4.8 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
d0bb38a036918360e4e3adc0b7a478763afe10defc94c7fe78c23c5d8d5d4491
BLAKE2b-256 checksum
How to use checksums
5c32c8078e0c73ece898da31739e84f99a08bcf435c456eb58ff3b6e5d4cd3ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Size 5.8 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
aacfb6f1ef595d33a15c1860b1ef7023e65e773da245e6b5620478a1ef005839
BLAKE2b-256 checksum
How to use checksums
e3f12d8ac07112df4b0a26e76c59a70949feed2c1d99d0d19df0abe20c264c85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_i686.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_i686.whl
Size 6.1 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3aec1cd865ec2327e857c4dc58525fdde408b4a428e7a137ca1480e4a1cc14c4
BLAKE2b-256 checksum
How to use checksums
905a594c709d36dfc584f8cd4d28fc22c2ec4a83c73102d10af3b4ca242814c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_armv7l.whl
Size 5.7 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
5d0ae8794b0096eb47cd9094b42e04ee2227ff16234d48399344922fd61b91a9
BLAKE2b-256 checksum
How to use checksums
269a465bb3fd8e365128f75ac3ec2156463555c0d6644d470c827dac05aac8af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Size 5.5 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cae94cb97227e8a393b5c26a4198c6f81f6372f286dd956eefa1be8c07c1f093
BLAKE2b-256 checksum
How to use checksums
4f13d14bbf422ee6297efe6b2e00c6dae3b1008af72643cc7151ade5c713f93e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
328852af44957b080e24d2ac6413f5d5fcf838501910b787f3cecd8654b3cb6d
BLAKE2b-256 checksum
How to use checksums
a1970f83e1784e4a1daaa37a97e1e6bdf5c5bd5d5bf7239b209121e2d32c91b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.1 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
290f6ac12a205499254cf526b3ddc58e6d8508b93d441f1a6067e1ff115bf400
BLAKE2b-256 checksum
How to use checksums
be08dd1f0b1ac3df989c7a7539c3f878797fccdd64b5b9c9fe749d65226e4620
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 5.5 MB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
4ec8b4c44c16454a57b837cdbe3c790b5df0ea397c661fac6927b2ba9b82a634
BLAKE2b-256 checksum
How to use checksums
e9ce11d7a748e757eaca3806ceec59a561c75fd07b66345d8d9e13491f4ce488
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.3 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e8028fdfca5e89c98ed23cb7eb8cf28ba5227bbafa920bc03cf9c91989d208c7
BLAKE2b-256 checksum
How to use checksums
7851da27d3180d77f7796555e30277b1de68908845139097ffb31305e3a207a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-macosx_11_0_arm64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Size 4.4 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
97f5eb2cf87af03bb254c03fb524529218c64cace6a3989f894becc78ce0658e
BLAKE2b-256 checksum
How to use checksums
0b54e295545ea333a99ca5a169e61f2025be1088d0945eac2c8ddfd0b72c8a64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Size 4.7 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
9a7aa857fd5167ff798d8b2c6b2e1497c8c17a1b05ef9a5514070d75ab6a392a
BLAKE2b-256 checksum
How to use checksums
ff6a03141490c21e3a023572d727de6b35c1267f1930a042111e4aef1e05d25f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-win_arm64.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-win_arm64.whl
Size 4.2 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
2cb405687efeeec00d470891687b630ca7bc05ccb1222662643950aaae45e661
BLAKE2b-256 checksum
How to use checksums
c3653c098b91f518d3c3c8c7b518b526c08007d8be1edf15659936f0dd5a50db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-win_amd64.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-win_amd64.whl
Size 4.8 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
25ef6ca8cdca84f8c22876b401719ac04dd0d23b4dc6d8d002d6e37a58c6fd34
BLAKE2b-256 checksum
How to use checksums
c453b12b231f01d8b36a9bc1df5763fd035557f73956689199681bfbd717f2c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-win32.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-win32.whl
Size 4.1 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
54e36da095f143c3300953f5d726e7721d9f82a2b529c671ebcfaffaf800097e
BLAKE2b-256 checksum
How to use checksums
e19cc4092f20010d51d9fdc55bb71b2ef1ddd3a33978e0113c3bc114f849bf0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Size 5.8 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
faf84ea954ce5352f6acfba72064964d9442ddcacd3eccbda8b5cc0e7a5a10a7
BLAKE2b-256 checksum
How to use checksums
6752a6f87f58e1a56501f64436d1c1f99656449c0b95a45d9f2a5189eafb2dca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_i686.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Size 6.1 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
bb395b87273114aaa8652f98291ec9e9e50a5f3b56023d68ca87d39afcdc0ba6
BLAKE2b-256 checksum
How to use checksums
6ae3d315c7e9b3eafc8018686a52f44a146fdedc0bf685f3eb79e353411923f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Size 5.7 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
27f5ea5c26f3a51818f8360dac816309f2d57d0948dd7b216a4b10af0e045935
BLAKE2b-256 checksum
How to use checksums
c6d9412f39931e36d947fa6e9b0b8385e876374a37cbb37148f267efe8d1f322
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Size 5.5 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
78e1b03b04db20c872f28a414c8c08cea7f2c20fcafd11bb6ba548179dfebe1a
BLAKE2b-256 checksum
How to use checksums
8eeafc8c6afda8843b1ae58a0565be1273b5ccc695543b5b2b76cbf7fc5f95fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ac8e6a1873cc2e2b9c081dc52828648684530eb2bc63b8f86341acb86a0f98fb
BLAKE2b-256 checksum
How to use checksums
4a83ef54f9e380af9aa2da75f7e1ba416cc5785c91b086dd992a0415a176ed6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
8aff3b33b71197657c3e821108edba26d2b56067645567fb53154067071d89a5
BLAKE2b-256 checksum
How to use checksums
4a44a5248704b245c3d16131641db9b1da55ad4bcb677d3c9f9c633c58c97f95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 5.5 MB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
0051179130d8922364b2ec1c39c775a4d571ebb1b7d1b4df5bfde3fa50652170
BLAKE2b-256 checksum
How to use checksums
1c08b960c8307261801c37b35fc7a2c2bd177075952df07259ec0ae49984db88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.3 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
899ca9e49e17c855bb0bdefb15e88be9e9ae8ed729f60f1bd6f4c9f59625275e
BLAKE2b-256 checksum
How to use checksums
f8b42237a9761466955222d00b672a7378e428a0c82afa80fbe8999acd13ae89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-macosx_11_0_arm64.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Size 4.4 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e549316f8ada02313678e383392e333fd49416313fef9197b2c267d1b108e723
BLAKE2b-256 checksum
How to use checksums
1098c718ee107fa7409c644d8cf38c4064d1c290ea6640dacf9ab8816ce5b4d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Size 4.7 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
b345112388321abaa6f87d31381e833835fb727b9932f67320b3ce7ac7189332
BLAKE2b-256 checksum
How to use checksums
147e8c04ac87832c938f46c224306fe749f9b5205bae2edc183178b5bda5ef4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-win_arm64.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-win_arm64.whl
Size 4.2 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
48e5790b94095281657379b4c432810dc6f67c7543401d96fec079304591bdf9
BLAKE2b-256 checksum
How to use checksums
48dd2adb7086b73cd6145f3f945b6d9ef14a9567171af4e7b344b99094c5a1b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-win_amd64.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-win_amd64.whl
Size 4.8 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
72743628307dbe93a332a86a95316902779024717baa5fce8442ee3c8b07815a
BLAKE2b-256 checksum
How to use checksums
47c7a33db1f923b0b00aafbe424a7d469e8576735026acea012cd20d44e41545
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Size 5.8 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
094ae58476b3bcdd730007c537a1b101835284d368405adc20b2cb24553e0ada
BLAKE2b-256 checksum
How to use checksums
879ea771e681067649c88a890e1c17b9d1cf8fc6b6b45043e56edc82013b0c60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_i686.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Size 6.1 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3c36e648823253d862c5001bd1bd60fdb6a2e5f25c7daa15460b12bf243eb934
BLAKE2b-256 checksum
How to use checksums
248bcbaca16ae965ec4f18dbf94078e6c0b2c6a0f268a9fd8772c3195ae08ab4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Size 5.7 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
58f283764f4742f997f00407b4f1e68c4efefdede6a06568f9eacb3f4b744807
BLAKE2b-256 checksum
How to use checksums
1e63cf5c4391f36cd517fcb7c430bddcf56f0e5b83552694dd7b65369d2d63df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Size 5.5 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1217bf32089c522b8b04444f7ea039798a3dccd31dab0bf1b395e8c2a8b3e949
BLAKE2b-256 checksum
How to use checksums
3b64dc111fd03656b1f7957f0d17c20574cb841d5bb6c1cf7db2f1a8da65233e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
780e6d5ec79d7b5ee0117a3bec233cf8cf706e8ce9cf5dabfc05c0515fb8093f
BLAKE2b-256 checksum
How to use checksums
fa39e9b49f019f60e2c52514a7b640113029124efc2a7986e8c06a1635afdfc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6234fb28982538eba2401e76f0a86e9d947c8e92e37d95e48a6d2535eeab0ab6
BLAKE2b-256 checksum
How to use checksums
c474ef0508af495ff9cdd3ada5d61dc5b550bef3ca3dd630650c8798a3858add
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 5.5 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a3b18d6ac50c9af0e40028da454f5458f1acbf87f4bdd5848f32bba5789cee1c
BLAKE2b-256 checksum
How to use checksums
1dcb4bbea0d871d0e2850702b6f060ff45e80358959c6be5890d6365a2d7857e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.3 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ead5190abf1e75dd7a1e66a081f64009815ce0e6b1b5a1df428a36e426419c37
BLAKE2b-256 checksum
How to use checksums
f309cb9f57131548d733d48cba55af9f38019bc2e7969c470d3d8188f76bc614
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Size 4.4 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7fcce51da599f2ad8a12d75eb397c4b304088f2098848bcd928f238263cd4b25
BLAKE2b-256 checksum
How to use checksums
155b399b8a9f21baad0346625df046e0a0e2969972de3c9c4af33bd6aca35a94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Size 4.7 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
0af3e66bda66a2b2bad793ce8279e7b35f5724ae562b2c998e9c6b05060c8919
BLAKE2b-256 checksum
How to use checksums
9bb0aa637de284eea31d8df78ebf18df392fb194071fffb1ba5837812f8179d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-win_amd64.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-win_amd64.whl
Size 4.8 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f86f4d1080193cc57bf1938658dc2e15400d804e9f5d8aa0e703a62990602091
BLAKE2b-256 checksum
How to use checksums
21bccdfa862e985aa370867610360bc04b27e1d039f8fc5f06e7c2abb9b035a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Size 5.8 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
52653003e49bab98334874e101d4a4f9ba4adc8e23c6416889eb5b6a84678817
BLAKE2b-256 checksum
How to use checksums
5fc9854fd2bbc65b663ba6867e530cd25102ddea52c37aaa3fbfb663d7a4cce3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_i686.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Size 6.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
be6331083c9e0d44eca4e196a4f58ef21984946d997a202485f004561d5bcc27
BLAKE2b-256 checksum
How to use checksums
f9994b09af516bad1d1aa59b7b6d3526141f0448c1cc4eba4e9c30f3b4205e8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Size 5.7 MB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
4f0b75fa27781c8cbd08c4e1090eeabf8c89750442d03ee3d49cf55eddffe75c
BLAKE2b-256 checksum
How to use checksums
24d6bfea5713d6456715e9062e104fb9be22a949fbb123ba626e54a81357c7e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Size 5.5 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b0391996f860ce8f1e5dbe76d579a471114d672b63393892e000fe06455fc64c
BLAKE2b-256 checksum
How to use checksums
bf0462c1119c16772bc58cb48d6ee09f93b993796475bdcf7d3b366ad2336fb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1a3ab9da6e05109bc321207d5cc3c596f5b7fa52d5e0dd171a5071ebf59d7ac3
BLAKE2b-256 checksum
How to use checksums
3f219010883cf605596cfea53310ce7eec487e04eedb76e7ce08f6f142a743e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
3aefc190208c9ba276a6c414eff30687d318f2e5cdcd16c7199dc58b4391c732
BLAKE2b-256 checksum
How to use checksums
a4d10f7ea62924a0e9b8af43b352b1d27bdfcffec198a9c20b097dc588efba77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 5.5 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
99203dc193a8b7c461eefc7d47445adb4162eca756ca2ec469acc5a8543fb9b9
BLAKE2b-256 checksum
How to use checksums
6ff75d8bdb715275cd720b74e3a218b3b83f755c76a6249455ee049462f0c4ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.4 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
de521b303686b8d51f8253a867f6d756b5bb1f422114a46bc7103811aed9a77e
BLAKE2b-256 checksum
How to use checksums
f74c1645166ffc4715ed14d88cface017ca4006fa803f9f1f2dd9cbbae3c7f7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Size 4.4 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
84a3b200d4518cba7aa05c8ccc658cadd9c2a0d10d648809aa8b291ba7c9b36c
BLAKE2b-256 checksum
How to use checksums
9e79a507be496df1c28dbef4b27579e8df560f1ded9bc43a9403f69f020c2924
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Size 4.7 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
6e15749bb781bc1137be268d13f06f0226e0b9dad9d4fa2f7f81e702cdd143e6
BLAKE2b-256 checksum
How to use checksums
1f834553073f66db1a20c8a2e8d45a95358f3f680a79be114bae099cce4e539c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp310-cp310-win_amd64.whl

Download URL h3_bound_cells-0.1.4-cp310-cp310-win_amd64.whl
Size 4.8 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c8821a7a78c4208285abcb93888ed090c86fced6f99b3423815c0ea8d0b42f7d
BLAKE2b-256 checksum
How to use checksums
29e60e382bd3a16fa109532b43897506c5a86813a6bc0ca38c3e6768683127a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Size 5.8 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
04afca376dd9431e6486ae633810f36fe1d23d9c9574ed27f79e3f726e64433e
BLAKE2b-256 checksum
How to use checksums
d3e5727447fbfe0322bdcab234169709821e7f081a2bbbfe9018b5a6b942ebb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_i686.whl

Download URL h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Size 6.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
4cac85c9f7741dd4420616d01194d43e064d67032900402309160364f4e8df59
BLAKE2b-256 checksum
How to use checksums
de120fef1d5c9aa59a08b5b0720575676d4e2f50ec3fb1e0d8a4445f8f653ba0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Size 5.7 MB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
703b3de705a9e5bf39cdb97ca8b53653c679e3907c787671b8b89b69564ed50a
BLAKE2b-256 checksum
How to use checksums
fd7e76294ea532122ea860304c13825c9af50047597921769e6d97217ba3c237
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Size 5.5 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c4357846d55ceca17fa61afcff2878d7fe9311704dc5d6ad5d2d471bca0d688d
BLAKE2b-256 checksum
How to use checksums
219abd71e099fa979a23f00146dc2356d8658c145a340e9b2def44091e2c4016
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a854283e2f8d9a3eafb02a80ffaf5c4005fb1a33a70b78a7210754011e7a9dbf
BLAKE2b-256 checksum
How to use checksums
f0f11ba6e0852b4dec7fc887f562150324c9741c9016bea5f0c7a0a5e11552b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
3fe1b511661d5e8e07dbcd40d888112df99e031ad0cb5839c4afe05078233e17
BLAKE2b-256 checksum
How to use checksums
7ecb07b31ec799121e87387ca7c446029be21e243391becc3cb0af82c456adaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 5.5 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c7cfa78602f36bdff9878640d95461f1fc72480fc0d53676765019ddcbd3d7d0
BLAKE2b-256 checksum
How to use checksums
3f0c19c9fa23772200f24ec92cbdcf1e0f2cac80d50d9fe46bc3d9d37fa863a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.4 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
43eba556ca129e03040acfdcfe68edc67971b24d52bb774164a0f7dc8c48651d
BLAKE2b-256 checksum
How to use checksums
81152f7b91a457a5fab3953095a9d9e68cf718f55afb83cf190cb232a0eae857
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Size 5.8 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cd34e98ac9f36b552d28b2b47d188ef6f404d375fa369c891e712daa8da07ac8
BLAKE2b-256 checksum
How to use checksums
a468b38b9c2403477c5e2d761dfd79af67e4330e14c3b64181f90dea0914f02e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_i686.whl

Download URL h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
Size 6.1 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
cef9f5bebfe679f94b5f5acb429ea4d92ff094db1319015e725dbc571339f69b
BLAKE2b-256 checksum
How to use checksums
c3b180223ebd84ba9d9d25c067fa4be6fb44bcf333b631ff4ccfe1b13a497acf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Size 5.7 MB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
70377f14562dfc7b96e8bf5fea10dc36d752aa5476b53a6dee50f24c11fc1110
BLAKE2b-256 checksum
How to use checksums
239dbf5e94741dcc90cdd401128ff042c057745d7472568c7eb56d8a62bba54a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Size 5.5 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c8170d4042c094e7ad58a30658bfeb6ffaad5a0bebe637919d19fc0b71882873
BLAKE2b-256 checksum
How to use checksums
837c3ffeeec531c5f7f15ea5ae99aaf5822551df732278709706029e77a447e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.4 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
edc9cf242bfb6cc121bb5641590a19ebeaffb58c08aba0b99c9ca2645fb63a63
BLAKE2b-256 checksum
How to use checksums
7a7df613c5a02257c10d4c26e9dca5fa44a003f73ef97c4dc9bbf0da9f9c615b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 6.2 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
4de4c4ca509e1eb6d965473b51fa86575d4afc26d747e6ac6b11965620ba936e
BLAKE2b-256 checksum
How to use checksums
b592eaa07e3ff55564dc3136cae1fb81af38eb8238c1f9c3cd045c1e95c175c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 5.5 MB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a2e27f44c470d7e2e52707abac2189d7c8dbb02aff6f816e1387027055481478
BLAKE2b-256 checksum
How to use checksums
8e2cab43d7168e912c427cfbd6be74f17b1c247162030576bbdd017101a318ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.4 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
84d4e0e9ad83c10b3072f7c909607ade31563035034e26ce9f75545611d70b1b
BLAKE2b-256 checksum
How to use checksums
69f697f6b066e8d23db6ab50c6097949a072a57497c15683e4b37bb0583becdd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Size 5.8 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5ae717e98c36a3ca287903dba3930de33a570c79e960de879f974fb2da610832
BLAKE2b-256 checksum
How to use checksums
5c3b892d910303ee14a905d109f97b72adb690e89daf924e346a5e3f08d24305
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_i686.whl

Download URL h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_i686.whl
Size 6.1 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
dec552d9fa9eee3a739d655386a2b6a9178c52d44013bbda2a99b3a6fe33556d
BLAKE2b-256 checksum
How to use checksums
cdc2ba1881106916dd2375f0ad0aef208b0a13af2a7f6150b3416037aab88e47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Size 5.7 MB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
a1d7567b330dedbf208213a52b2e54d596fcea6c15d17f352f04c93654b538df
BLAKE2b-256 checksum
How to use checksums
99bf5e9d5f70f7da3cfd0c77f4dfc61fbec1b5478c79c48a300ee26378803065
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Size 5.5 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
836a0826c2e74850e9aba83f7a03e9bb6d1bf11adda7ab6a72648bffa3baf858
BLAKE2b-256 checksum
How to use checksums
8e8b049f777a675a8facf04a8b8c0c1fc0e4f1a5c6401a6af73a23ef336448d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL h3_bound_cells-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 5.5 MB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
400d48341197e9c574e6256b9e9736bbe92bb2e2636b9f8e8f203d8bfc75fbdd
BLAKE2b-256 checksum
How to use checksums
177f3312cb94732079dd2ff5eef39865d950b5f0e7ce4be1e572a95de969eda7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release files / h3_bound_cells-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL h3_bound_cells-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 5.4 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d1853ba72c9e30adfa33f815d503b38dbc2887e0b60102e0b7e8074218d8977d
BLAKE2b-256 checksum
How to use checksums
73754d17aa929d44c1ec45b86d96db5f836afc9af6ae4fb144336ea6af78fffc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via uv/0.12.4 {"installer":{"name":"uv","version":"0.12.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

Release history Release notifications | RSS feed

0.5.3

11 release files

0.5.2

11 release files

0.5.1

11 release files

0.5.0

11 release files

0.4.1

11 release files

0.3.1

11 release files

0.3.0

11 release files

0.2.2

11 release files

0.2.1

11 release files

0.2.0

11 release files

0.1.5

92 release files

This release

0.1.4 This release

92 release files

0.1.3

92 release files

0.1.2

92 release files

0.1.0

92 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page