Declarative spatial query layer for Polars
Project description
A spatial query layer for Polars. Rust core, Python API.
State of the art on Apache SpatialBench
PyCanopy reaches state of the art on Apache SpatialBench, the standard single-node spatial-analytics benchmark whose 12 queries span range filters, distance and kNN joins, and point-in-polygon aggregation over millions of trips and zones. On matched hardware it beats the best open-source engines like Apache SedonaDB and DuckDB on most queries, without leaving Polars.
Apache SpatialBench SF1 · log scale, lower is better · missing bars are TIMEOUT / ERROR
[!NOTE] Versus GeoPandas microbenchmarks: up to 199× on range queries · 1,024× on kNN · 931× on polygon contains · 3,307× on within joins · Full benchmarks
Installation
pip install pycanopy
Pre-built wheels for Linux, macOS, and Windows. No Rust toolchain required.
import polars as pl
from pycanopy import SpatialFrame
sf = SpatialFrame(pl.read_parquet("cities.parquet"), x_col="lon", y_col="lat")
result = sf.lazy().filter(pl.col("population") > 100_000).range_query(-10.0, 35.0, 40.0, 70.0).collect()
Why PyCanopy
Every spatial option for a Polars user asks you to give something up:
- GeoPandas is eager and pandas-based. Its one index (STRtree) is opt-in, and a join larger than memory simply fails.
- DuckDB spatial is fast and out-of-core, but you leave Polars for SQL and create the R-tree index by hand.
- SedonaDB is a capable spatial engine, but it is a separate SQL engine rather than a Polars-native API.
PyCanopy's principle is to stay inside Polars and add a real query planner. You declare spatial ops in any order. It reorders them, fuses adjacent predicates, pushes projections into joins, and uses a cost model to decide per query whether to build an index at all (and which kind). kNN and within-distance joins are first-class, and results larger than RAM stream and spill to disk.
How the options compare:
| PyCanopy | GeoPandas | DuckDB spatial | SedonaDB | GeoPolars | |
|---|---|---|---|---|---|
| Runs inside Polars (no SQL, no convert) | ✓ | ✗ | ✗ (SQL) | ✗ (SQL) | ✓ |
| Lazy, declarative API | ✓ | ✗ (eager) | SQL | SQL | ✓ |
| Automatic index, no manual setup | ✓ | ✗ (manual) | ✗ (manual) | ✓ | ✗ |
| Cost-based index vs scan, per query | ✓ | ✗ | ✗ | ✗ | ✗ |
| kNN join built in | ✓ | ✓ (nearest) | ✗ | ✓ | ✗ |
| Within-distance / point-in-polygon join | ✓ | ✓ | ✓ | ✓ | ✗ |
| Larger-than-RAM joins | ✓ | ✗ | ✓ | ✓ | ✗ |
Operations
Point datasets
| Operation | Call | Returns |
|---|---|---|
| Range query | .range_query(min_x, min_y, max_x, max_y) |
Rows inside the bounding box |
| k-nearest neighbours | .knn(x, y, k) |
The k rows nearest a point |
| kNN join | .knn_join(df, x_col, y_col, k) |
The k nearest rows for each query point |
| Within-distance join | .within_distance_join(df, x_col, y_col, distance) |
Rows within distance of each query point |
| Convex-hull area | SpatialFrame.convex_hull_area(xs, ys) |
Area of the convex hull of a point set |
Polygon datasets
| Operation | Call | Returns |
|---|---|---|
| Point in polygon | .contains(x, y) |
Polygons that contain the point |
| MBR range | .range_query(min_x, min_y, max_x, max_y) |
Polygons whose bounding box meets the query box |
| Within join | .within_join(df, x_col, y_col) |
Polygons that contain each query point |
| Point-to-polygon distance join | .polygon_within_distance_join(df, x_col, y_col, distance) |
Polygons within distance of each query point |
| Point-to-polygon kNN join | .polygon_knn_join(df, x_col, y_col, k) |
The k nearest polygons for each query point |
| Intersects self-join | .intersects_pairs() |
Intersecting polygon pairs with overlap area and IoU |
| Area | .polygon_areas() |
Area of each polygon |
| Points near a polygon | .points_within_distance_of_polygon(polygon, distance) |
Points within distance of a single polygon |
Reductions and streaming (compose with any join)
| Operation | Call | Returns |
|---|---|---|
| Aggregate-join | .group_by(keys).agg(pc.agg.count/sum/mean/min/max(...)) |
One row per group, reduced over the join with no pair frame |
| Projection pushdown | .select(cols) |
Narrows both join sides before the gather |
| Stream in batches | .collect_batched() |
An iterator of result morsels, bounded memory |
| Stream to Parquet | .sink_parquet(path) |
Writes the result to disk in bounded memory |
| Out-of-core pipeline | .lazy_source() |
A Polars source that fuses join + sort + sink, spilling to disk |
Usage
Point dataset: range and KNN
import polars as pl
from pycanopy import SpatialFrame
df = pl.read_parquet("cities.parquet")
sf = SpatialFrame(df, x_col="lon", y_col="lat")
# Bounding-box filter combined with a scalar predicate.
# Optimizer places the scalar filter first, then runs the range query
# on the reduced row set.
result = (
sf.lazy()
.filter(pl.col("population") > 100_000)
.range_query(min_x=-10.0, min_y=35.0, max_x=40.0, max_y=70.0)
.collect()
)
# k-nearest neighbours
nearest = sf.lazy().knn(x=2.35, y=48.85, k=5).collect()
Inspecting the plan
# Declare ops in any order. explain() shows what the optimizer will actually run.
lf = (
sf.lazy()
.range_query(min_x=-10.0, min_y=35.0, max_x=40.0, max_y=70.0)
.filter(pl.col("population") > 100_000)
)
print(lf.explain())
# RANGE_QUERY [(-10, 35) → (40, 70)]
# FROM
# FILTER [(col("population")) > (dyn int: 100000)]
# FROM
# DF [N=100,000; path: EXPR]
The optimizer flipped the declaration order. The scalar filter runs first on all rows, then the spatial query runs on the smaller survivor set. Plans follow Polars' FROM-chain convention, so the bottom runs first and the top is the final result.
Aggregate over a join
import pycanopy as pc
# Count trips per zone and average their fare, reduced over a streamed
# point-in-polygon join. The full pair frame is never materialised: each
# morsel reduces to per-group partials that combine into the final result.
stats = (
zones.lazy()
.within_join(trips, x_col="lon", y_col="lat")
.group_by(["zone_id", "zone_name"])
.agg(trip_count=pc.agg.count(), avg_fare=pc.agg.mean("fare"))
)
Out-of-core joins (larger than RAM)
# A join whose result exceeds memory: stream it straight to Parquet,
# bounded to one morsel at a time.
sf.lazy().polygon_knn_join(trips, "lon", "lat", k=5).sink_parquet("nearest.parquet")
# Or fuse the join with a sort and sink into a single spilling Polars
# pipeline, so even an ordered result larger than RAM never materialises.
(
sf.lazy()
.polygon_knn_join(trips, "lon", "lat", k=5)
.select(["trip_id", "building_id", "distance_to_polygon"])
.lazy_source()
.sort("distance_to_polygon")
.sink_parquet("nearest_sorted.parquet")
)
More examples: point and polygon joins, aggregations, branching, delta buffer, index modes
Chaining multiple spatial predicates
# Two range predicates are fused into a single index build on large datasets.
result = (
sf.lazy()
.range_query(0.0, 0.0, 50.0, 50.0)
.range_query(10.0, 10.0, 40.0, 40.0)
.collect()
)
KNN join
query_df = pl.DataFrame({"qx": [2.35, 13.4], "qy": [48.85, 52.5]})
# For each row in query_df, find the 3 nearest rows in sf.
result = sf.lazy().knn_join(query_df, x_col="qx", y_col="qy", k=3).collect()
Polygon dataset: contains and range
from shapely.geometry import box
from pycanopy import SpatialFrame
polygons = [box(i, 0, i + 0.9, 0.9) for i in range(100_000)]
df = pl.DataFrame({"id": list(range(100_000)), "geom": polygons})
sf = SpatialFrame.from_polygons(df, geometry_col="geom")
# Which polygons contain this point?
containing = sf.lazy().contains(x=5.5, y=0.5).collect()
# Which polygon MBRs intersect this bbox?
intersecting = sf.lazy().range_query(0.0, 0.0, 10.0, 1.0).collect()
Polygon holes
from shapely.geometry import Polygon
# Interior rings (holes) are fully supported.
outer = [(0, 0), (10, 0), (10, 10), (0, 10)]
hole = [(2, 2), (8, 2), (8, 8), (2, 8)]
donut = Polygon(outer, [hole])
sf = SpatialFrame.from_polygons(pl.DataFrame({"id": [0], "geom": [donut]}), geometry_col="geom")
# Point inside the hole is NOT contained.
sf.lazy().contains(x=5.0, y=5.0).collect() # empty
# Point outside the hole but inside the outer ring IS contained.
sf.lazy().contains(x=1.0, y=1.0).collect() # returns the polygon row
Within join
# For each query point, find which polygons in sf contain it.
query_df = pl.DataFrame({"qx": [5.5, 12.3], "qy": [0.5, 0.5]})
result = sf.lazy().within_join(query_df, x_col="qx", y_col="qy").collect()
Within-distance join
# For each query point, find all sf points within 50 km.
query_df = pl.DataFrame({"qx": [2.35, 13.4], "qy": [48.85, 52.5]})
result = sf.lazy().within_distance_join(query_df, x_col="qx", y_col="qy", distance=50.0).collect()
Point-to-polygon joins
# (polygon SpatialFrame) For each query point, the polygons within a distance
# of it. Distance is to the polygon boundary, and zero when the point is inside.
query_df = pl.DataFrame({"qx": [5.5, 12.3], "qy": [0.5, 0.5]})
near = sf.lazy().polygon_within_distance_join(query_df, x_col="qx", y_col="qy", distance=2.0).collect()
# For each query point, its k nearest polygons (adds a distance_to_polygon column).
nearest = sf.lazy().polygon_knn_join(query_df, x_col="qx", y_col="qy", k=3).collect()
Polygon aggregations
# Area of every polygon (appends an 'area' column).
areas = sf.polygon_areas()
# All intersecting polygon pairs, with overlap area and IoU.
overlaps = sf.intersects_pairs()
# (point SpatialFrame) rows whose point lies within a distance of one polygon.
from shapely.geometry import box
pts = point_sf.points_within_distance_of_polygon(box(0.0, 0.0, 1.0, 1.0), distance=0.5)
Convex-hull area
import numpy as np
# Area of the convex hull of a standalone point set (no frame needed).
area = SpatialFrame.convex_hull_area(np.array([0.0, 1.0, 0.5]), np.array([0.0, 0.0, 1.0]))
Index mode
# Fixed per frame. "auto" lets the cost model choose index vs scan per query;
# "none" always scans; "eager" (default) always builds the selected index.
sf = SpatialFrame(df, x_col="lon", y_col="lat", index_mode="auto")
Branching from a shared base
from pycanopy import SpatialFrame, SpatialLazyFrame
# Expensive filter applied once; two queries branch from the result.
base = sf.lazy().filter(pl.col("population") > 100_000).range_query(-10.0, 35.0, 40.0, 70.0)
major = base.filter(pl.col("population") > 1_000_000)
minor = base.filter(pl.col("population") <= 1_000_000)
# collect_all detects the shared prefix, caches it in Polars,
# and executes both branches in a single pass.
results = SpatialLazyFrame.collect_all([major, minor])
df_major, df_minor = results
Live updates via delta buffer
# Append new points -- visible to queries immediately, no index rebuild yet.
import numpy as np
sf.engine.append_delta(np.array([2.5]), np.array([48.9]))
# Queries probe the main index and scan the delta in parallel.
result = sf.lazy().range_query(-10.0, 35.0, 40.0, 70.0).collect()
# The buffer flushes automatically when accumulated query cost exceeds
# the estimated index rebuild cost, or when it exceeds 10% of N.
# Force a flush manually if needed.
sf.engine.flush()
Benchmarks
Apache SpatialBench
Run on a single m7i.2xlarge (8 vCPU, 32 GB), the same instance as the published SedonaDB / DuckDB / GeoPandas numbers.
SF1 (~6M trips). PyCanopy beats SedonaDB on 11 of 12 queries and wins the heavy cross-zone joins q10/q11/q12 by 2 to 4x.
Apache SpatialBench SF1 · log scale, lower is better · missing bars are TIMEOUT / ERROR
SF10 (~60M trips). PyCanopy wins 8 of 12. q12 returns a result larger than the 32 GB box, so it streams the join and spills the sort to disk, completing where DuckDB errors and GeoPandas times out.
Apache SpatialBench SF10 · log scale, lower is better · missing bars are TIMEOUT / ERROR
Per-operation vs GeoPandas
Apple M-series. Cold = fresh engine, index build included. Warm = cached index, second call. GeoPandas is the naive baseline (no spatial index). Uniform random data.
| Operation | N | Cold | Warm | GeoPandas | Speedup |
|---|---|---|---|---|---|
| Range query (points) | 100,000 | 2.6 ms | 28 µs | 5.6 ms | 199× |
| kNN k=10 | 100,000 | 9.9 ms | 7 µs | 7.3 ms | 1,024× |
| Contains (polygons) | 100,000 | 6.1 ms | 6 µs | 5.4 ms | 931× |
| Range (polygons) | 100,000 | 6.1 ms | 9 µs | 4.4 ms | 503× |
| kNN join k=5 | 10,000 | 10.4 ms | 2.2 ms | 5.5 s | 2,463× |
| Within-distance join | 10,000 | 14.1 ms | 13.6 ms | 3.5 s | 260× |
| Within join (polygons) | 5,000 | 2.8 ms | 0.37 ms | 1.2 s | 3,307× |
| Point→polygon kNN join k=5 | 5,000 | 6.7 ms | 5.7 ms | 6.1 s | 1,076× |
| Point→polygon within-distance join | 5,000 | 6.6 ms | 6.4 ms | 5.4 s | 845× |
| Intersects self-join | 5,000 | 2.2 ms | 1.1 ms | 0.86 s | 796× |
How It Works
PyCanopy plans a query in two layers, then hands the result to Polars to run.
Query flow
sf.lazy().filter(...).range_query(...).knn_join(...).collect()
|
+---------------+----------------+
| Logical plan (whole chain) |
| order ops, fuse predicates, |
| pick join side, EXPR vs IO |
+---------------+----------------+
|
+---------------+----------------+
| Access path (per operation) |
| index or scan, and which |
| kind: a cost model decides |
+---------------+----------------+
|
+---------------+----------------+
| Polars runs the emitted ops |
+---------------+----------------+
|
pl.DataFrame
Logical planning
Decisions about the whole chain, made before any data is touched:
- Predicate pushdown: scalar filters run before spatial ops, cheapest first (cost estimated from the Polars expression tree). They shrink the row count for little cost.
- Fusion: consecutive spatial predicates merge into one index build and one pass.
- Join side: symmetric joins (
within_join,within_distance_join) index the smaller side.knn_joinalways indexes the engine side. - Projection pushdown: a terminal
.select()is pushed into the join, so only the requested columns are gathered from each side instead of the full width. - Execution path: very selective filters slice the prebuilt index directly (IO path). Otherwise filters run first and a small index is built on the survivors (EXPR path).
Cost model: index or scan?
Building an index costs about N log N, so it only pays off if queried enough times. For each operation the planner compares two estimates (N is the dataset size, Q the number of query points):
scan = Q * N every row, for every query point
index = N log N (build once) + Q * log N (probe per query point)
Building wins once Q passes roughly log N. A one-off lookup scans; a join with many probes builds the index and reuses it. Selectivity refines this: if a predicate keeps most rows, the planner skips the index, since a tree that prunes nothing loses to a plain scan.
index_mode, set per frame, picks how the estimate is used:
eager(default): always build the selected index.auto: build only when the estimate beats a scan for thisQ.none: always scan.
Index management
Indexes build lazily, never at load time. Dataset stats (extent, distribution, a 32x32 histogram) are computed once up front and drive the first query's choice, after which the index is cached for all later queries. When a non-brute index is built, its kind comes from:
| Condition | Index |
|---|---|
| N < 500, selectivity > 50%, or k/N > 10% | Brute force |
| Point range, uniform distribution | Uniform grid |
| Point range, clustered distribution | KD-tree |
| Point KNN or contains | KD-tree |
| Polygons, any query | R-tree |
All index types share the same coordinate arrays with no duplication.
Streaming and out-of-core
A join never has to fit in memory. The probe side is sliced into fixed-size morsels run one at a time, so the join intermediate stays bounded:
collect()auto-streams a large probe, bounding the transient.collect_batched()andsink_parquet()bound the full output (to an iterator, or straight to a Parquet file).lazy_source()exposes the streamed join as a native Polars source, fusing it with a downstreamsortandsink_parquetinto one pipeline that spills to disk, so an ordered result larger than RAM still completes.group_by(keys).agg(...)reduces each morsel to associative partials that combine into the per-group result, so the join is never materialised at all.
Why Rust
The hot paths need packed immutable index structures, zero-copy array slices at the Python boundary, and loop-level parallelism. C++ would require a separate FFI layer and loses the native Polars plugin integration that PyO3/Maturin provides for free.
Accepted input formats
| Format | Example |
|---|---|
numpy (N, 2) array |
np.array([[x, y], ...]) |
| GeoArrow PyArrow array | pa.StructArray or FixedSizeList<2> |
geopandas GeoSeries |
gdf.geometry |
| shapely Points / Polygons / MultiPolygons | [Point(x, y), ...] |
list of (x, y) tuples |
[(x, y), ...] |
| Separate coordinate sequences | Engine.from_coords(xs, ys) |
| WKB point column (Binary) | SpatialFrame.from_wkb_points(df, "geom") |
| WKB polygon column (Binary) | SpatialFrame.from_wkb_polygons(df, "geom") |
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pycanopy-0.3.0.tar.gz.
File metadata
- Download URL: pycanopy-0.3.0.tar.gz
- Upload date:
- Size: 231.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ea84217c68c9c8a8437204b1b02fa353334da9d9bb218abd8e778c8ba83749b
|
|
| MD5 |
45d8e0d93ce5fabb9afe94af4e2d2e47
|
|
| BLAKE2b-256 |
0d09f251a8c151872ecc086cf45f065f4e34474ba7e82036e97cf818d909a44c
|
Provenance
The following attestation bundles were made for pycanopy-0.3.0.tar.gz:
Publisher:
release.yml on pranav-walimbe/PyCanopy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pycanopy-0.3.0.tar.gz -
Subject digest:
9ea84217c68c9c8a8437204b1b02fa353334da9d9bb218abd8e778c8ba83749b - Sigstore transparency entry: 1876340872
- Sigstore integration time:
-
Permalink:
pranav-walimbe/PyCanopy@6f93a46e807d640155cb1b6b6b2047588043a842 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/pranav-walimbe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6f93a46e807d640155cb1b6b6b2047588043a842 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pycanopy-0.3.0-cp39-abi3-win_amd64.whl.
File metadata
- Download URL: pycanopy-0.3.0-cp39-abi3-win_amd64.whl
- Upload date:
- Size: 580.3 kB
- Tags: CPython 3.9+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99c62157cea11baf4d2dcd9a7d29a1da89b1a11a4dbb35038284aa8da8b2d4a7
|
|
| MD5 |
0dbe603840a8246b92a12a91821d5010
|
|
| BLAKE2b-256 |
0fea600218ea42ae47ab95bdf4a6d231257afa269ed8c1eb848e551be5eb8666
|
Provenance
The following attestation bundles were made for pycanopy-0.3.0-cp39-abi3-win_amd64.whl:
Publisher:
release.yml on pranav-walimbe/PyCanopy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pycanopy-0.3.0-cp39-abi3-win_amd64.whl -
Subject digest:
99c62157cea11baf4d2dcd9a7d29a1da89b1a11a4dbb35038284aa8da8b2d4a7 - Sigstore transparency entry: 1876340959
- Sigstore integration time:
-
Permalink:
pranav-walimbe/PyCanopy@6f93a46e807d640155cb1b6b6b2047588043a842 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/pranav-walimbe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6f93a46e807d640155cb1b6b6b2047588043a842 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pycanopy-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pycanopy-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 715.2 kB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca227e2ff48c3eed02957a98095b646d38689e3e4eaa78387e3c2db95a937767
|
|
| MD5 |
352362aa1d3fce52461435a92752e74c
|
|
| BLAKE2b-256 |
e778dfc765d21add69b9332d2c4ef1519c760cb378174e25b167cefe19685e63
|
Provenance
The following attestation bundles were made for pycanopy-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on pranav-walimbe/PyCanopy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pycanopy-0.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ca227e2ff48c3eed02957a98095b646d38689e3e4eaa78387e3c2db95a937767 - Sigstore transparency entry: 1876341038
- Sigstore integration time:
-
Permalink:
pranav-walimbe/PyCanopy@6f93a46e807d640155cb1b6b6b2047588043a842 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/pranav-walimbe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6f93a46e807d640155cb1b6b6b2047588043a842 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pycanopy-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pycanopy-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 682.0 kB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2be43405710a0edd4e642b38a258871201e0ef0e774044e7e08fef507d28f9dd
|
|
| MD5 |
d2e00f6e37d5c05cffca6cc17147f487
|
|
| BLAKE2b-256 |
cefe238c657e02944f53c78ca8cbfdd07ed012ec9ff622d50189d40faa7eab81
|
Provenance
The following attestation bundles were made for pycanopy-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on pranav-walimbe/PyCanopy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pycanopy-0.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
2be43405710a0edd4e642b38a258871201e0ef0e774044e7e08fef507d28f9dd - Sigstore transparency entry: 1876341079
- Sigstore integration time:
-
Permalink:
pranav-walimbe/PyCanopy@6f93a46e807d640155cb1b6b6b2047588043a842 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/pranav-walimbe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6f93a46e807d640155cb1b6b6b2047588043a842 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pycanopy-0.3.0-cp39-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pycanopy-0.3.0-cp39-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 636.2 kB
- Tags: CPython 3.9+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd7d8e0d44a9ef24b384c73bc1eca38bbb7e472d28ca29fec5d674d450d7c57a
|
|
| MD5 |
daea3dafad3bfaee690aa308ae8bfccd
|
|
| BLAKE2b-256 |
f8a1bd1d5f5818ec965926199b1d361583c4952aeb9757671421d6e08470bc6c
|
Provenance
The following attestation bundles were made for pycanopy-0.3.0-cp39-abi3-macosx_11_0_arm64.whl:
Publisher:
release.yml on pranav-walimbe/PyCanopy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pycanopy-0.3.0-cp39-abi3-macosx_11_0_arm64.whl -
Subject digest:
cd7d8e0d44a9ef24b384c73bc1eca38bbb7e472d28ca29fec5d674d450d7c57a - Sigstore transparency entry: 1876340920
- Sigstore integration time:
-
Permalink:
pranav-walimbe/PyCanopy@6f93a46e807d640155cb1b6b6b2047588043a842 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/pranav-walimbe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6f93a46e807d640155cb1b6b6b2047588043a842 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pycanopy-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pycanopy-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 679.5 kB
- Tags: CPython 3.9+, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba50de026007d7bf678e825f08804a4b04033cdc3e9e99a45351bffd0c1321b3
|
|
| MD5 |
d33066d632c7b05c85b4912bc4448828
|
|
| BLAKE2b-256 |
c514ea80e94ada2d73dbcf71cc99cc380a62b32b322bb269e4e79c62142a4ebd
|
Provenance
The following attestation bundles were made for pycanopy-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl:
Publisher:
release.yml on pranav-walimbe/PyCanopy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pycanopy-0.3.0-cp39-abi3-macosx_10_12_x86_64.whl -
Subject digest:
ba50de026007d7bf678e825f08804a4b04033cdc3e9e99a45351bffd0c1321b3 - Sigstore transparency entry: 1876340991
- Sigstore integration time:
-
Permalink:
pranav-walimbe/PyCanopy@6f93a46e807d640155cb1b6b6b2047588043a842 -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/pranav-walimbe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6f93a46e807d640155cb1b6b6b2047588043a842 -
Trigger Event:
push
-
Statement type: