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 tomin_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.
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) -> BoundCellsexterior,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 (default4).
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 insidebound_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 byfilter).
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.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| h3_bound_cells-0.1.3.tar.gz | 5.4 MB | Details |
Built distributions (wheels)
Total release size: 505.7 MB
Release files / h3_bound_cells-0.1.3.tar.gz
| Download URL | h3_bound_cells-0.1.3.tar.gz |
|---|---|
| Size | 5.4 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
1bbc0f253885326f11348362f337a2bf404f6f922049ca5aaa2147a735501eca
|
|
BLAKE2b-256 checksum How to use checksums |
78718ab91be9a1f87038e159a0e6d5387190f2066cd0b928eda718345c10c222
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
e83cc831e57e3c276dd4e054aa529860f47ce306256151b08f6e8466abfabb76
|
|
BLAKE2b-256 checksum How to use checksums |
672983bb5c2923d53ceed6b02ac15adc369a409831a12e65522fd91e81f151b6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
56335d461f914164835f37100c72dbd4521f85778b636fec4d4a839d332389ce
|
|
BLAKE2b-256 checksum How to use checksums |
8693bca5ea984d8756f1775ee0fd1afc63b79c69e895907edcbad89757d4ef73
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
b7fc2c1164c35abd65446ee37ceee390b4d2527417637143df15dd36fdb9f337
|
|
BLAKE2b-256 checksum How to use checksums |
d3f067ac8a023cd0600dedb017e895f67d1f78826096e54c44ddcb36527eb74a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
ca386290658f6201bb0e1d90bb4b82c4c3321165c7903275151bd2d79c0d4634
|
|
BLAKE2b-256 checksum How to use checksums |
10f5e302f53b8aa4a3ec0d4c9ff288a52eb8be8e0c73a2b3b44b4f6123c15424
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
ee85ef7f71ae72c0e8098cfef841c6512471eaf4b6cedd7d0bdfd3c8118ed8dc
|
|
BLAKE2b-256 checksum How to use checksums |
cc5ad2b50df6f728049010e7a65865bf6c0616c05472e55f96cb10bdcf97b213
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
ff6779e2a497219914e7200c777a1e154e9ed04b0e945bb52cfc800a013df01c
|
|
BLAKE2b-256 checksum How to use checksums |
8c3101f60961c87de59b78dea33402d332e0eb7017c52795328c959f550cbfeb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
b643d4c0702ed9d694d2c132f0e8f6affc39d1490fb157d76a87579e41483950
|
|
BLAKE2b-256 checksum How to use checksums |
84aed63e9a039b890d0f6bd4d4de56247fd20224d227447ed02cd9d975279521
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
3e985efba73b050fa59a843a5ebbf3f9fd1d0960899c864fc11d169fa7af51f4
|
|
BLAKE2b-256 checksum How to use checksums |
65dd162c011a3fbed936790bcb940e6f5d2bfb1756f25e42b220dacf6479982e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
4226473457aacc85486181454bec20d9b05a9654cc92ad963c78cdb739b8ab7e
|
|
BLAKE2b-256 checksum How to use checksums |
71d225961bf930e1594c383c2a0eba8e031d6089ae684021b3d071eda4749867
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
b6626d2ada99e86ad087ab629a2faf8fb688c3468cebe7601867c9c783a36948
|
|
BLAKE2b-256 checksum How to use checksums |
8627614c3bac98d1fc6d30b3bd2525169c2a248887b00bdb9c8e4ff6a9c46711
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
a5d465793b2f23cf6ef7f9aa2fc2913c02b703aaad611f50fa571cab6b899a82
|
|
BLAKE2b-256 checksum How to use checksums |
c9aa3ed2cbc7ecf713e7bb3e6552f304812783ee764857872830ab8db2fec8fc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
7c6ce87e315eb5d2465a91ef574ba375edf744894666ac129682cfd09f7487a0
|
|
BLAKE2b-256 checksum How to use checksums |
a7ed84e5d16d9eb298a6e205dfbce0b385d48b86e0d36e3d58a575033c67039e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
63a2ca9a49f90484007f16143261c4b8b2f4b65b41a4a4cdc189778eb0958cea
|
|
BLAKE2b-256 checksum How to use checksums |
dbcc2214b9f20e3e381324562de494d75c434e3bc083b388638ec7ddc1a3caf8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314t-musllinux_1_2_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
60ff19a4b95f9a84c95a5ffe7b6b767a27d851033e9061a3b241bf029111bd3a
|
|
BLAKE2b-256 checksum How to use checksums |
934c161d5f02aa8f29e203c34b5b4587a26c3942f4d0907afa9bd5fbae7376a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314t-musllinux_1_2_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-cp314-cp314t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 5.7 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
74042ab7c9f3f5b97365aef596aab05e08147e5e59a48cc1e61c4ee0cb4084f6
|
|
BLAKE2b-256 checksum How to use checksums |
b343b901dbb342c06dffc1fc71588ccee69c85201abffd78dfc44b65ac40b8c3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
3f9383e3ff52b96e807acf287a4d22d23414483210662223c8b97984d64cdc13
|
|
BLAKE2b-256 checksum How to use checksums |
ced54ec8e7440e2f436c58b702659bb627d6389b363e2c1dbdae3896b2a8b080
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
0cf7a3ececec0cf0bcd21c305f67a6eab31a1ff2730b6f599a9632cdfc9a8fcb
|
|
BLAKE2b-256 checksum How to use checksums |
5a92984787537afc52a248e739835690a6451b6e4ab366e41f6cba588ea453d8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
78f789644bf263fe47c215596ff240f11a32752f5d94f969188dab1e432ce91d
|
|
BLAKE2b-256 checksum How to use checksums |
82cad8c62111c03b06ca27cf2ee1bc57aa34676769f23b96de4a4c569360b8bc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
ba2337dff8050a61decc8974f27a305bdeea1b8c5047ee1c7003225b282f38b1
|
|
BLAKE2b-256 checksum How to use checksums |
8cb49ba4e487617c174a79c8060b1d2646614919e9e27ef7e64d75050bff8f77
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
10ff93947bce90c843a37f36e2b4f8b4be81e8b47b529d7ce01017207859ce1c
|
|
BLAKE2b-256 checksum How to use checksums |
a5c5d3b45eee9fd3ba9e9b5bdaad2508046a18976d756c8c374e930b8af4fdeb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-win_arm64.whl
| Download URL | h3_bound_cells-0.1.3-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
94dad2845c7d504e198960525921201b99d6b2a6c82b49a9a0f0be315369c97f
|
|
BLAKE2b-256 checksum How to use checksums |
0f6424cab825e2795adb4b09069d1490626fb666b54776ad85f465c67149886a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-win_amd64.whl
| Download URL | h3_bound_cells-0.1.3-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 4.8 MB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ca075d161bf65c9fe503a2f315727e283ddae38f3385ef62a9ebfcb1c53a69c5
|
|
BLAKE2b-256 checksum How to use checksums |
e7ee959b479030bd46213e3ff37ba96e3bb14843fa4f413f2de31fa4aa2c8220
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
c7384cf095bc2ae04f27606143c24bc15c82a45c596450a7dcbc9c616a64bf07
|
|
BLAKE2b-256 checksum How to use checksums |
2a334870aeab54b531f3f588ae7358c8b183856466caee5b92c4e5fa0f6dccfb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-musllinux_1_2_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
cc77f2629139ddf97e1e8f4e3ac4287fb552ac011f9a8f33da4e54985e17774e
|
|
BLAKE2b-256 checksum How to use checksums |
627a6dacd43c42fb1d76fccfdbad830f749d412c56e112a14d46172e077c3bc0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
d25f5050c65bff6327f8c0eea0afeebc0cd32f9bf04c31b4ac04a98cdf7d96a4
|
|
BLAKE2b-256 checksum How to use checksums |
26457e88fe888a33744ed5f94ead00d54429afadf42373c95a7c2cd00aaf6873
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
10230ed042249f9e02e68dd7ca748544db26766dcc361808802b48aa98801b49
|
|
BLAKE2b-256 checksum How to use checksums |
758083956b2cfea4148212297dae1c3c6486b69dc79ccce46ea749b366afb479
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
5ce0b078be8a776c33aa946fb7074037f25f36575612d78d544a9bf983e56ee4
|
|
BLAKE2b-256 checksum How to use checksums |
e222f0e369836210178a11a5fd870c053fbd34cf6182148f85aab5fc21068025
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
9b4513b32ce67d06133f25a9e560682c362828b40432c46ddd53259dfba1a20a
|
|
BLAKE2b-256 checksum How to use checksums |
6744fd7b53788b565406a37dd3da71d72837baeb8109b520c0aa1dc04a3384a8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 5.4 MB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
62fd5c500685bc1e4d251e5c6147dbb05f7e37df82858fed233fed698f994860
|
|
BLAKE2b-256 checksum How to use checksums |
28e03477a8ac4943e785977c5d31c2bed4b657ffb417d2d9fc5813a3580844cc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
07dc6af5b515df2ff0fab6ce8d65f49d107149006ab00a83518a06c4652ee4df
|
|
BLAKE2b-256 checksum How to use checksums |
28e5afcfac3860a2f1301de023d407df39454109df46604546086b644a1a3771
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | h3_bound_cells-0.1.3-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
27c3f0d87646fd38e948f5ba3e39f4721d8ab8c1985fa7d08df26327c5152500
|
|
BLAKE2b-256 checksum How to use checksums |
b23026316bff6a61c67fc4c3fa5f6081383ef9f4a76c9588d9f6eeecb66da1b8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp314-cp314-macosx_10_12_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.14 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
74840410ef86bf954389050f21f3bc0d2b7c90eab043e6b803847a7b74de1412
|
|
BLAKE2b-256 checksum How to use checksums |
c7531f9c7d8ec643409154e1b2987d410f9c05b6497bafb5f262b1a771877c6c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-win_arm64.whl
| Download URL | h3_bound_cells-0.1.3-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
d62633058908d9c47b4bbb649c302a8d7b7d0fd1d6b46caf44def85b5496fddd
|
|
BLAKE2b-256 checksum How to use checksums |
20f841e9e803d2e53bbf9ffeecd88bc32e520b089ca698d6ee6e05a2da730589
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-win_amd64.whl
| Download URL | h3_bound_cells-0.1.3-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 4.8 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
37eacb56c3d3cfb61ce0314e922b509a2f83a6dea9571b51c15b26630fd21abb
|
|
BLAKE2b-256 checksum How to use checksums |
e07a5bf532d724db09fb030b53caaad7a77d16e5ebdba36b3185322bc9a34074
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-win32.whl
| Download URL | h3_bound_cells-0.1.3-cp313-cp313-win32.whl |
|---|---|
| Size | 4.1 MB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
a61b425912fe123fd81f1bde19a8055dec543883e6f05f13a5328edf088656cc
|
|
BLAKE2b-256 checksum How to use checksums |
d0a7d53d5cc5d90ab25755f04f7068ebe18c7c03a6c8cd5630e49363b7486349
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
cc4ca373b5085b1ec6acbd2b5d2a7843a748db4d151c17ff5ada74c8f9d238eb
|
|
BLAKE2b-256 checksum How to use checksums |
a818f5085ec81873cf4b5a6af7c451bef956c53296e6a38395f61bbf2da407cb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
b7aa598e321d3d74184de2d8c50fafcae6e4b8a03cb970bd4120a5407f4c9f2b
|
|
BLAKE2b-256 checksum How to use checksums |
cc510eb0da0b8741617af713a7c67795520057e1df54e5ceab82b3c08c9b12f5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
b1616cdfec0ab1c449d77272f9e17f912c7d711632b265f41546d8751e43c222
|
|
BLAKE2b-256 checksum How to use checksums |
5b60fa7d9cc729f571a0b4e148810ebeb357fd1ba64f91426d945263e917f50b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
1ec55c30fa31ce04be42e81713e0c608c8bfcbd8b41ca6d52c71e805fb29287e
|
|
BLAKE2b-256 checksum How to use checksums |
6cc6532b0bafc8996791420df99bd0a7244b18dae73f978abb9cbf14730f3de2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
69353ab06775c587e993df59dfe452c2d08d56388e25db4b0a775f5aa712c469
|
|
BLAKE2b-256 checksum How to use checksums |
599ca40be68be9842c467a8c077be18574fec41bda483ab7ea7ffd7b00916a38
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
a5bf20185bade765eea34381386a6eee199b2bcc2071a702d8f2e75dc40dd58d
|
|
BLAKE2b-256 checksum How to use checksums |
cd0c3687a5c6fe00aba11fe082c77b642a30de0b4810672e0abac1dace369ddb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 5.4 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
f0270f4654b5efd330ee7bc6db9f86cc4779b4cdf3c8a4c7f3f738c1526b2730
|
|
BLAKE2b-256 checksum How to use checksums |
6c7a2db4a54cc0860bd3f9abbc3721f2c8bf939773348804b84a686631291707
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
3de74c20a2a73f3011040789a81dffa1e074baa2c741628ef43776d68a159c72
|
|
BLAKE2b-256 checksum How to use checksums |
0df364c805f16df45af96323c84b93a7eb01eb9dc2e3bd0ff502e5b7f5780e26
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | h3_bound_cells-0.1.3-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
d17d7a9836fbc594bf83c5b41746cb62a046ecfe700a0136408948742b57cf31
|
|
BLAKE2b-256 checksum How to use checksums |
b3f009f84e016e36c01337dbe707ee58435515c1e463a8ce5ec1288fa2002df8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp313-cp313-macosx_10_12_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.13 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
bc149b92c686957b5fcd322f5c298338d270a2a42c42d7997fa3aff74f97fec3
|
|
BLAKE2b-256 checksum How to use checksums |
af4829dbd3dde13a52a806969e653de9cab7ae1ce266729d765760baf88d13fb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-win_arm64.whl
| Download URL | h3_bound_cells-0.1.3-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
148d49104ec623bf524058228cd8c8aa1771b6e2f17dd5c50ba7b4a32bd245e2
|
|
BLAKE2b-256 checksum How to use checksums |
61d31dd0aa9d7958f944ede90b1e757428d87f0d2f666f3f67399d0b3bcb6c30
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-win_amd64.whl
| Download URL | h3_bound_cells-0.1.3-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 4.8 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ebc08e70893c353baf808c0b9c825b46332f6b9a50437bb79e3aa53224010986
|
|
BLAKE2b-256 checksum How to use checksums |
128f1b63817eaf06fb2e00b3cd094f8af2d1b1b321651e0903c962373ee85331
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
29fe653d178df8d23426d53832d165e5100a00c5e8a562c7679ed8120feec951
|
|
BLAKE2b-256 checksum How to use checksums |
074b7d2c565a9c3c27f260067634678c4b485614dc131120d2a557e8e1e73cb7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
7fe69e33ace629f462c99b17e7669ea0e51efd5ba496e0749299fe740682864d
|
|
BLAKE2b-256 checksum How to use checksums |
c946b67bc2d9163511849325fad5e458112a086e199fdbfbe6c81cde42924bfa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-musllinux_1_2_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
b14c7b790a83d24fdd6efc6eac04edb7a3c504589af780f2a22c611056560471
|
|
BLAKE2b-256 checksum How to use checksums |
d2f77e60bb14a0f8bf4c014c7b04dddb800c36daaefb07760742f148386cdcf7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
9020fc7ed83227bf7c1395f88c5f1598d99626eb4014c9f61e5a3c46f40b953a
|
|
BLAKE2b-256 checksum How to use checksums |
448c99a2fb6ba8be774dab64c14b8f05d536ed510f5782215d0c50447137f233
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
f7269cb69f043c71c733e3c8e4e23c299dead55490a8db5bd32256ff8af2f4a4
|
|
BLAKE2b-256 checksum How to use checksums |
2257c905807ad5282b0cd8b26ac0bed17eea33f1c99cbfa23fdd43895c207861
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
e0826c2d15e5976625472acfff9b7e5d2c5c3dc59f2a1ac0b8095d3ec61d1ad5
|
|
BLAKE2b-256 checksum How to use checksums |
7816eb6e2e6914b067e8213747c99bbbf5182ce79ea4f853e934f231aa2055e9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
673710bf81648048d37048c09397bcd6bf8dab442de958ed6ac4e6ba809062cb
|
|
BLAKE2b-256 checksum How to use checksums |
5fc4cf2eb91f6f7b02c57d51efab756beade1f7e7cc6c3e2542a42e409715a28
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
045fc95513173ed4d80dc5d9685086c6ecfa39014848c1dd99516af30372d660
|
|
BLAKE2b-256 checksum How to use checksums |
92ca2f2de40113ff7e8b27bf20dcb3d944ba484bb2b0cd60d26ec853b3f4a7ef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | h3_bound_cells-0.1.3-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 4.6 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
27f0d75dc6aeceed8e229eb1d21e5c689a45a26553a36c99af63bde001654750
|
|
BLAKE2b-256 checksum How to use checksums |
f8d9610cf24a6f72ff774f819fff7d524190fec0e5db01a10ddabe12987f0a0e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp312-cp312-macosx_10_12_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.12 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
43bccfb11ba32e849948547a1e02cb055018c2d253b0a437a8d7a91f0eb06aec
|
|
BLAKE2b-256 checksum How to use checksums |
5a035c651655c1e3211ff460ab8ed30ca4a66732f69daa1e60d64c99decb0c26
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-win_amd64.whl
| Download URL | h3_bound_cells-0.1.3-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 4.8 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
47cd266606d6c800699aa0ccbcedcf6c385539165fc216cf380230b18f1e3150
|
|
BLAKE2b-256 checksum How to use checksums |
2893d8c6eccc9a41577d4774797b4807f33d78259f10e04d35b95b343eb95499
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
24d54d52da42e8ab1792b3dcb2b72102771e65558a326302e49be43e4808d4cb
|
|
BLAKE2b-256 checksum How to use checksums |
c63dc4cdf7732ce378ceb5ecc09c1fe8b87ec987d24549d06616431adb5df02e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
5bda5fe690c89ac7b92b32cb3bad4bb6308d409e392dbf22847ecc755c872ec1
|
|
BLAKE2b-256 checksum How to use checksums |
94d24fc59df12e83125c306f4796ec9628e550e898bd232d7a5decfb79069bc4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-musllinux_1_2_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
375eb3d4081637bea8ca2c7ac04bfbd426ddc7085271958769d557c7189cf659
|
|
BLAKE2b-256 checksum How to use checksums |
d4dec86a73a02a5cf9896e294aa4459799b328429633e3ca70de4b4536e7396e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
07da3871d65071e7fac9e3f885bc8bd63f762367786f8645b90a57adfd64a81c
|
|
BLAKE2b-256 checksum How to use checksums |
06f960d1292d77ef8387a93cd32f3bb1996439b025306c030d7fd352bfa9eb7f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
4e33d1996a0c23f6862ee9440713dcc1599853a9ce04325168baa1378ed50e01
|
|
BLAKE2b-256 checksum How to use checksums |
96d6cfa547935c582547990535e7a324c81fb40eb8e41554af68d445146a3937
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
3bfb96028a035341b86856ca12b7ffe02096cb7efe2d24212f4199d736e8b9a7
|
|
BLAKE2b-256 checksum How to use checksums |
a7339b61de1ae5d5e58f0df16c552531509c7483fa61953e011fc9f17475ce0f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
adfa2971934902111de9d6ba3ad7ecc4b86e6ab0a3f2a69c15d28b15df10800b
|
|
BLAKE2b-256 checksum How to use checksums |
4ce2b495df9a8ec51a18d1d4af6e0a04985167c5348f7f501848b7db8b6cfb0e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
02acb03c9aa213c906a5da21601c0fd6eb706fda24a6860389d12f5fe639e92b
|
|
BLAKE2b-256 checksum How to use checksums |
e897db8f72dae89c469a3c7e4406b30f980612fa8e5b97a7ed0fcabf10020559
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | h3_bound_cells-0.1.3-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 4.7 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
2ece931502f0517b103bf825f4a25288d76f436acf66aa3fd3e857c854233d21
|
|
BLAKE2b-256 checksum How to use checksums |
35d97b28c2610143709aa1f5e07d3efaa9230c574ec76fa4a55230f0439665ec
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp311-cp311-macosx_10_12_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl |
|---|---|
| Size | 5.0 MB |
| Tags | CPython 3.11 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
2e046456a74f688649eaa4d2ae2078759b2cdbe786764e8b16e4948a36ecdb47
|
|
BLAKE2b-256 checksum How to use checksums |
56b2671c116865b25a89580bebbbf883d7744e8ca48a0374561c975d7eb54ae0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp310-cp310-win_amd64.whl
| Download URL | h3_bound_cells-0.1.3-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 4.8 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
23a8559a7e8ca5c9b296c289601c8deb5d392df6f2cdb4419e8ad1f3ace24153
|
|
BLAKE2b-256 checksum How to use checksums |
e2a70f33c1a8702ab661c4592911f3aa4b726d841eb48a02f27f2a9ca50fe470
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
eac382d8c069db594d160adad60eccedbdbad3e1dfedc4f9deac45db9fc47730
|
|
BLAKE2b-256 checksum How to use checksums |
3369c348e9280b637aa47e08a0dc103a72c28c1b441c0bb5021c27247b59e2b2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp310-cp310-musllinux_1_2_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
948592afb55c4db374b549371bf049ca3f6f73588e6b9ae0166ffc3db5317ed0
|
|
BLAKE2b-256 checksum How to use checksums |
f648cc09fc8bac86b6df0a521c224b70bbb7c21314dcfc6d9d7396f0148fa8bd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp310-cp310-musllinux_1_2_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
ba24546ce73ad81d8e76acd908a17190e991ba6624bd69505f78fc50644f9115
|
|
BLAKE2b-256 checksum How to use checksums |
620d21bf6ba016a918b828591ccc9096821abd3e175450c410d2fc1ada924df5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
28d15fdb8318e5c766c0498ba8333a17147842fc4f75c059690889c38c6ccb65
|
|
BLAKE2b-256 checksum How to use checksums |
7124ae3776664409fc58be9101a3907ecb681581131ec6e4502b60664831e466
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
661895b97a619df7c4454d623147b9a23030bf05a7aee89914d606f29cbf0ec7
|
|
BLAKE2b-256 checksum How to use checksums |
80a4ceed42e0ce4591138e135a0af4469eb7f3bb6a7b848a3a6b282f61eb673b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
b7fdc73b2595da5e4ce0a4f0e0e2220cdd2ad559ad4f9e16df3a62a315b34284
|
|
BLAKE2b-256 checksum How to use checksums |
e6c61efd8cde1aeb285a9494d431c6f633e72a05c73ac4fec24fdab241bbc690
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
d03fded8c13d2c3aedf13159009d151db9ba6687b656583b27fe6cc023304c93
|
|
BLAKE2b-256 checksum How to use checksums |
f0a1fbfaf2385f0e46b83c5f0d4bfb73ae563d8e28b5229d4585c4abc51510f2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
3fc9b79906d78c895c43e0101c9e147eb826bdcd157cdf9e9f00008c712a72b2
|
|
BLAKE2b-256 checksum How to use checksums |
9d07472802de4f5b89bbade3d0c095dec4b45468bd10a094f93b13ba4ed8bce9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
8855da1e8e81ad99b159c47da6ee2d8593ea1ed0d40aa28881817a9d5003878a
|
|
BLAKE2b-256 checksum How to use checksums |
b248433e4af3a481ad35d1d80bb3cd3c9461e461d9614fe9fa1b068b5aef5321
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp39-cp39-musllinux_1_2_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
6793520bc9737538a94a29d31ec6c48aa7bd71c4c30117b832f5a39940cd6d18
|
|
BLAKE2b-256 checksum How to use checksums |
10b46b33c3ff0c13f7bb6caf6bb33865b7f2081f2f1e39f0f441c5faf7404287
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp39-cp39-musllinux_1_2_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
31d8664e6f00468c4f7777cb250fab0e5c2478690110127b0db7e820d65ac93f
|
|
BLAKE2b-256 checksum How to use checksums |
c937dbcd3963fbead72704feff9431769513cc3b30f6059f468654b393d7a567
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
05c0790fc429f25eec624198947ea2a7004bb09bdbaaeaee00d0619fd96c21af
|
|
BLAKE2b-256 checksum How to use checksums |
ca4e17420d8ba67d115e12ed27c0e7f0ff51984bd2b2ab836ac5f4a0765fd9b5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
3904e938f716803bd7f43b6517d433e2b703946c920e1989c70aed0002d02dcf
|
|
BLAKE2b-256 checksum How to use checksums |
d3fd65b8ab72b3e9d04f5315259ea4fd12436921bfc2705122dc216985016842
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
2324afc12e09757a97e84d91d80786ef54042f04bcf7cd03154eb659089bd97f
|
|
BLAKE2b-256 checksum How to use checksums |
7acd61421f5fca9222108272bc79347e16da2e68e3da25352df3db3af475240e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
5f284dc24843fbe80252dd3be326b4c28f8e25305b624dc64e1757e1e323b110
|
|
BLAKE2b-256 checksum How to use checksums |
342b958d9a00cf0b537e216e2945f69cced54c1869265d7421e1a1edcbfa05bd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
87fdb4f5299c5441019ca29f462138986da8ac3b78ac3896bd36b2391059bdc1
|
|
BLAKE2b-256 checksum How to use checksums |
fed0a0623c89cef05bba09828d444e22051db38e54b70edda3f88383288a0afb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp38-cp38-musllinux_1_2_x86_64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
426c6fb783c9cebc269417b39bacff3c0a5eba1b33cc98feefc1d70be0dc849c
|
|
BLAKE2b-256 checksum How to use checksums |
360babd2aa2f8184f4dcf30b06a4d397cf1ab665abc42358dbbb0a5a8b9ad6a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp38-cp38-musllinux_1_2_i686.whl
| Download URL | h3_bound_cells-0.1.3-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 |
07ca455cb14ec33ebc6501f7bed6299da7af84ba3e2c815726f1e0dfd5d642c2
|
|
BLAKE2b-256 checksum How to use checksums |
1ce11a435ae9fb8025a74d331939c2f42db9766359a267d54b2af15f715a6676
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp38-cp38-musllinux_1_2_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
5fd6dcd7f89d76a1b06268184de425de183ca83104fe2b8b4b3551f07462ac1d
|
|
BLAKE2b-256 checksum How to use checksums |
be818c0d0fcc13ff12f0cb57355725a294f601f26feb6c099db33554faf5f7b1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp38-cp38-musllinux_1_2_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
9752cac4c463f39257a3c43da85ae6a049a4c456224747ed698066491aabb96c
|
|
BLAKE2b-256 checksum How to use checksums |
659c274ebbfd829cb0438ffaaccc7c04f48e159152137c990dfbcf2563dbfae4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | h3_bound_cells-0.1.3-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 |
9ad74f56db41ba35a2c3c2136c37891a4ed57dacf86fcd6cd5df01cf32eb64b7
|
|
BLAKE2b-256 checksum How to use checksums |
5020a40aaf3a6252fea1a743f5dc8ecdf41e95c97ddbdddd4314b186954fab28
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | h3_bound_cells-0.1.3-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 |
90fff2f0fc815d2e3ca62ba0abaf5d1ff605abfc18af0cd26a9ee119410743a7
|
|
BLAKE2b-256 checksum How to use checksums |
de30fd8d4079f048e5d6b6aa855a8ca194e61e51890e80a2be646feac71b64a2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.29 {"installer":{"name":"uv","version":"0.11.29","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}
|