Make Delta Lake pruning visible: partition pruning and data skipping diagnostics, as a CLI and a thin Python wrapper around it.
Project description
delta-explain
Make Delta pruning visible.
A CLI that shows how partition pruning and data skipping reduce the set of candidate files in a Delta table.
Production-usable as a conservative Delta metadata diagnostic and CI guardrail — not yet a fully production-grade general-purpose Delta observability product. That line is meant literally: what the tool guarantees, and what it deliberately does not, is written down in docs/semantics.md.
Documentation: three-minute quickstart - what delta-explain guarantees (and what it does not) - the JSON report, field by field - what it is validated against - current limitations
The problem
You run a query with a filter. The engine reads some files. But how many files were actually eliminated, and why?
Delta Lake uses two mechanisms to skip files before reading data:
- Partition pruning eliminates files at the directory level based on partition column values
- Data skipping eliminates files at the file level based on per-column min/max statistics
Both happen silently during scan planning, below the query. If partitioning is wrong or stats are missing, you won't know until performance degrades.
What this tool does
delta-explain uses delta-kernel-rs to read Delta metadata directly (no Spark, no DuckDB, no query execution engine) and shows, step by step, how a predicate narrows the set of candidate files.
$ delta-explain ./my-table -w "age > 40 AND country = 'DE'"
Delta table: ./my-table
Version: 5
Predicate: age > 40 AND country = 'DE'
Predicate Analysis:
partition-safe: country = 'DE'
stats-safe: age > 40
unsplittable: -
confidence: conservative
Files in snapshot: 6
Phase 1: Partition pruning [exact]
predicate: country = 'DE'
files remaining: 2 (-4, 67% pruned)
Phase 2: Data skipping (min/max statistics) [conservative]
predicate: age > 40
files remaining: 1 (-1, 50% pruned)
Total reduction: 6 -> 1 files (83% pruned)
The Predicate Analysis block shows how the predicate was split across the two pruning phases, and confidence labels how precisely the elimination can be explained (exact / conservative / incomplete). The precise definitions, the degradation rules, and what each label guarantees are in docs/semantics.md.
With --verbose, you see exactly which files are kept or dropped and why:
Phase 1: Partition pruning [exact]
predicate: country = 'DE'
files remaining: 2 (-4, 67% pruned)
[DROPPED] part-00000-48368dae.parquet (1.1 KB 3 records) partition(country=IT) stats(age: 41..65)
[DROPPED] part-00000-fcf95aac.parquet (1.1 KB 5 records) partition(country=IT) stats(age: 22..38)
[DROPPED] part-00000-eee5a3ec.parquet (1.1 KB 3 records) partition(country=US) stats(age: 31..55)
[DROPPED] part-00000-de2ffaef.parquet (1.1 KB 4 records) partition(country=US) stats(age: 18..29)
[KEPT ] part-00000-a35083c1.parquet (1.1 KB 4 records) partition(country=DE) stats(age: 40..60)
[KEPT ] part-00000-c34f1417.parquet (1.1 KB 5 records) partition(country=DE) stats(age: 20..35)
(Use --limit to cap the listing on large tables; in JSON mode --verbose emits the machine-readable files[] array instead.) Files without a stats payload appear as [no stats]; statistics come from the kernel's log replay, checkpoint Parquet included, so [no stats] means the writer really recorded none.
Install
Homebrew (macOS, Linux)
brew tap cdelmonte-zg/tap
brew install delta-explain
Scoop (Windows)
scoop bucket add cdelmonte-zg https://github.com/cdelmonte-zg/scoop-bucket
scoop install delta-explain
Debian / Ubuntu (.deb)
Download the .deb for your architecture from the latest release and install with dpkg:
wget https://github.com/cdelmonte-zg/delta-explain/releases/download/v0.2.3/delta-explain_0.2.3-1_amd64.deb
sudo dpkg -i delta-explain_0.2.3-1_amd64.deb
Available for amd64 and arm64. Uninstall with sudo apt remove delta-explain.
Pre-built binary (any OS, no package manager)
Download the archive for your platform from the latest release, extract, and place on $PATH:
| Platform | Archive |
|---|---|
| Linux x86_64 (glibc) | delta-explain-x86_64-unknown-linux-gnu.tar.gz |
| Linux x86_64 (static, musl) | delta-explain-x86_64-unknown-linux-musl.tar.gz |
| Linux ARM64 | delta-explain-aarch64-unknown-linux-gnu.tar.gz |
| macOS Intel | delta-explain-x86_64-apple-darwin.tar.gz |
| macOS Apple Silicon | delta-explain-aarch64-apple-darwin.tar.gz |
| Windows x86_64 | delta-explain-x86_64-pc-windows-msvc.zip |
Each archive ships with a .sha256 checksum. The musl build is statically linked and runs on any Linux distribution without glibc dependencies.
From PyPI (Python, no Rust needed)
pip install delta-explain
The wheel ships the compiled binary (the delta-explain command works from the same environment) plus a thin Python API around the JSON contract:
from delta_explain import explain
report = explain("s3://warehouse/events",
where="country = 'DE' AND age > 40",
min_pruning=80, env_creds=True)
report.passed # gate outcome; False means the CLI would exit 1
report.total_pruning_pct
report["analysis"]["confidence"]
Gate failures come back as a report with passed == False; runtime errors raise DeltaExplainError with the CLI's message — the same exit-code contract as the command line, in Python types.
From crates.io (requires Rust 1.88+)
cargo install delta-explain
From Git (latest development version)
cargo install --git https://github.com/cdelmonte-zg/delta-explain
Docker (amd64 + arm64)
docker pull ghcr.io/cdelmonte-zg/delta-explain
docker run --rm -v /path/to/table:/data ghcr.io/cdelmonte-zg/delta-explain /data -w "col > 10"
For pipelines, pin to a release tag (e.g., :0.2.3) or to a digest; :latest is for local exploration only.
Usage
delta-explain <PATH> [OPTIONS]
Arguments:
<PATH> Path to the Delta table (local path, s3://, az://, gs://)
Options:
-w, --where <PREDICATE> Predicate (e.g. "age > 30 AND country = 'DE'")
-v, --verbose Show per-file details (kept/dropped with reason);
in JSON, adds the "files" array
--limit <N> Cap per-file listings at N entries
--format <FORMAT> Output format: text (default) or json
--min-pruning <PCT> Fail if total pruning is below this percentage
--assert-stats Fail if any file is missing statistics
--at-version <N> Analyze the table at this version (time travel)
--profile <NAME> Static AWS credentials from ~/.aws/credentials (S3)
--region <REGION> AWS region (S3 / S3-compatible)
--option <KEY=VALUE> Object store config (repeatable)
--env-creds Read cloud credentials from environment variables
--public Access a public bucket (skip auth)
Local table
delta-explain ./my-table -w "country = 'DE'"
delta-explain ./my-table -w "age > 30 AND country = 'IT'" --verbose
Cloud storage
Credentials. Three ways in, by environment:
- On cloud infrastructure (EC2/ECS, EKS, AKS, GKE): with no explicit credentials the storage layer falls back to the provider's ambient chain (instance profile, Managed Identity, Workload Identity) on its own; add
--env-credswhen the credentials live in environment variables instead (AWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY/AWS_SESSION_TOKEN/AWS_REGION,AZURE_STORAGE_ACCOUNT_NAME/AZURE_STORAGE_ACCOUNT_KEY,GOOGLE_APPLICATION_CREDENTIALS). - On a developer laptop (AWS):
--profile <name>resolves static keys, session token, and region from~/.aws/credentialsand~/.aws/config, the same files the AWS CLI reads (including theAWS_SHARED_CREDENTIALS_FILE/AWS_CONFIG_FILEoverrides). Profiles that rely on SSO,credential_process, or role assumption are not resolved; export them first and use--env-creds:eval $(aws configure export-credentials --profile corp --format env) delta-explain --env-creds s3://bucket/table -w "..."
- Static keys (MinIO, local development): pass them via
--option, expanding from environment variables to keep secrets out of argv. Valid--optionkeys are passed through to theobject_storebuilders; see upstream docs for the per-backend list.
# S3 with credentials from the environment
delta-explain --env-creds s3://bucket/path/to/table -w "date = '2024-01-01'"
# S3 public bucket
delta-explain --region us-east-1 --public s3://my-public-bucket/table -w "id > 100"
# Azure
delta-explain --env-creds az://container/table -w "region = 'eu-west-1'"
# GCS (Workload Identity on GKE, or service account JSON via env)
delta-explain --env-creds gs://bucket/table -w "date = '2024-01-01'"
# S3-compatible (MinIO, Akamai, etc.); endpoint via --option, key/secret expanded from env
delta-explain \
--option AWS_ENDPOINT=https://minio.local:9000 \
--option AWS_ACCESS_KEY_ID="$AWS_ACCESS_KEY_ID" \
--option AWS_SECRET_ACCESS_KEY="$AWS_SECRET_ACCESS_KEY" \
s3://bucket/table -w "col > 5"
CI/CD mode
delta-explain doubles as an assertion tool in pipelines. After your ETL writes a Delta table, verify that the pruning layout is healthy.
--min-pruning, --assert-stats, --format json, and --verbose are independent. Without --verbose the JSON document is summary-only; with it, a per-file files array is included (cap it with --limit on large tables).
GitHub Action
The repo doubles as a composite action, so the gate is one step. Pin the tag: the action downloads a released binary, so the ref you pin is the behavior you get.
- uses: cdelmonte-zg/delta-explain@v0.4.0
with:
table: s3://warehouse/events
where: "country = 'DE' AND age > 40"
min-pruning: "60"
assert-stats: "true"
env-creds: "true"
Inputs mirror the CLI flags (table, where, min-pruning, assert-stats, at-version, env-creds, profile, plus options as one KEY=VALUE per line, and version to pin a release; default latest). The step fails when a gate fails, and exposes pruning-pct, final-files, and result as outputs for later steps:
- name: Comment the pruning percentage
run: echo "Pruning ${{ steps.gate.outputs.pruning-pct }}%"
Assert minimum pruning
Fail the pipeline if a predicate doesn't eliminate enough files:
delta-explain s3://warehouse/events -w "date = '2024-01-15'" --min-pruning 90
Exit code 1 if total pruning is below 90%.
The threshold is per-invocation, applied to the current predicate against the current snapshot. Calibrate it against a baseline pruning percentage in dev (set the gate a few points below it); a flat threshold across heterogeneous partitions will misfire. Note also that 100% pruning can signal a broken or unexpectedly empty predicate, so pair --min-pruning with a sanity check on final_files > 0 when the workload is expected to read data.
Assert statistics coverage
Fail if any file in the table is missing min/max statistics:
delta-explain s3://warehouse/events --assert-stats
Statistics are resolved through the kernel's log replay, checkpoint Parquet included, so a file is flagged only when its add action genuinely carries no statistics. Long-lived tables whose older commits have been consolidated into a checkpoint do not produce false positives.
Predicate parity
The pruning percentage delta-explain reports reflects the predicate you pass to -w. If the runtime query wraps a column in LOWER, CAST, or a UDF, the engine may prune less than the gate suggests. Use a CI predicate that is semantically equivalent to the runtime predicate and explicitly track that equivalence: a gate on country = 'DE' does not automatically validate a production query using LOWER(country) = 'de'.
JSON output for downstream processing
delta-explain ./my-table -w "country = 'DE'" --format json | jq '.total_pruning_pct'
The JSON output is versioned independently from the CLI binary (schema_version: "0.2.0"). The schema is pre-1.0: additive changes bump the minor version, breaking changes bump the major version. Consumers should branch on stable field names (e.g. assertion names), tolerate unknown fields, and check schema_version.
The contract is formal: schemas/report-v0.2.schema.json is a JSON Schema that the integration suite validates every emitted document against, and docs/json-schema.md explains each field, the stable note codes, and the meaning of confidence, kept, and pruned_by.
Exit code is 0 when all assertions pass and 1 if any fails; the JSON result field carries the per-assertion outcome.
See CHANGELOG.md for the full schema notes.
Docker in a pipeline
# GitHub Actions example
- name: Verify pruning after ETL
run: |
docker run --rm \
-e AWS_ACCESS_KEY_ID -e AWS_SECRET_ACCESS_KEY -e AWS_DEFAULT_REGION \
ghcr.io/cdelmonte-zg/delta-explain:0.2.3 \
--env-creds s3://warehouse/events \
-w "date = '2024-01-15'" \
--min-pruning 90 --assert-stats --format json
How it works
delta-explain replays Delta metadata through delta-kernel-rs and runs separate metadata scans (no predicate, partition-safe fragment, full predicate) to isolate each pruning phase's contribution. No query engine is involved, no data files are read: only metadata. The full pipeline, the soundness guarantee, and the attribution rules are in docs/semantics.md.
Predicate syntax
delta-explain accepts standard SQL WHERE-clause syntax, parsed via sqlparser-rs.
-- Comparisons
age > 30
country = 'DE'
score >= 90.5
-- Logical operators
age > 30 AND country = 'DE'
country = 'DE' OR country = 'IT'
NOT country = 'US'
-- IN lists
country IN ('DE', 'IT', 'US')
country NOT IN ('US')
-- BETWEEN
age BETWEEN 20 AND 40
-- NULL checks
name IS NOT NULL
age IS NULL
-- Parentheses
(country = 'DE' OR country = 'IT') AND age > 30
-- Nested columns
payload.age > 30
Also supported: IS [NOT] DISTINCT FROM, DATE '...' / TIMESTAMP '...' literal forms, and schema-driven coercion (a quoted '2026-07-01' against a DATE column just works, including DECIMAL and narrow integers). Subqueries, functions, and LIKE are outside the pruning language: they warn and keep files instead of failing (see Current limitations).
Performance notes
delta-explain reads only the Delta log, never the parquet data files, so its cost scales with the number of add actions, not with data volume. Measured at 200k files on Linux, local disk, in the three log shapes that matter (generate them yourself with cargo run --release --example gen_scale_log):
| Log shape (200k files) | Baseline | With predicate | Peak memory |
|---|---|---|---|
| single JSON commit | ~1.0 s | ~1.3 s | ~280 MB |
| 2000 JSON commits | ~1.4 s | ~2.2 s | ~320 MB |
| 2000 commits + parquet checkpoint | ~0.8 s | ~1.0 s | ~240 MB |
The most production-like shape (checkpointed) is also the fastest: the kernel reads one parquet checkpoint instead of replaying thousands of JSON commits. Scaling is linear at roughly 1.5 KB of resident memory per file, which extrapolates to ~1.5 GB at one million files; that is the current practical ceiling and it is a known limitation, not a hidden one. Predicate complexity is immaterial at this level: an IN list with 500 items over 200k files adds ~0.4 s.
Output is the dimension to manage on large tables: the compact JSON stays summary-only at any size, and per-file detail (--verbose, in both formats) should be capped with --limit.
Current limitations
-
First N indexed leaf columns only. Delta collects min/max statistics only for the first
delta.dataSkippingNumIndexedColsleaf fields (default 32, configurable per-table; nested struct children count separately).Predicates on columns past this index are still classified as
stats-safebut contribute no pruning, because the column's min/max never appears in the log. (stats.modereflects per-table coverage of the indexed columns, not per-predicate reachability, so it can readexacteven when the predicate column is unreachable by stats.) -
No query planner simulation. This tool shows metadata-level file elimination only. It does not predict query execution time or replicate engine-specific optimizer behavior.
-
OR-mixed predicates. Predicate classification operates on top-level AND conjuncts, after normalization: negations push down to the leaves (De Morgan) and conjuncts common to every OR branch factor out of the OR, so
NOT (country = 'DE' OR age > 30)splits into two attributable phases and(country = 'DE' AND x) OR (country = 'DE' AND y)exposescountry = 'DE'as partition-safe. What remains is the irreducibly mixed OR (country = 'DE' OR age > 30): it is flagged asunsplittableper the rule above, never silently downgraded. -
Computed expressions keep all files. Function calls, arithmetic,
LIKE, subqueries, and column-to-column comparisons are outside the pruning language; such fragments are reported with anUNSUPPORTED_EXPRESSIONwarning and conservatively keep every file, while sibling AND conjuncts still prune. Most of these are file-level unskippable for any engine; the exception is prefixLIKE 'abc%', which engines like delta-spark do skip on string min/max and delta-explain does not yet. -
INpruning strength varies by engine. delta-explain expandsINlists into OR-of-equalities, the strongest sound form, with no size cap. Real engines differ: DataFusion-based engines (delta-rs) do the same expansion but stop skipping past 20 list items, and delta-spark evaluates an imprecise range test over the whole list (min(values) <= col <= max(values)), which keeps more files on sparse lists. OnIN-heavy predicates a specific engine may therefore prune less than this report shows; the report reflects what the metadata makes possible, and it is always sound. -
Protocol features are declared, not compensated. Deletion vectors, column mapping, and liquid clustering are detected and reported in
table_featureswith explicit warnings, but the numbers are not adjusted: record counts still include soft-deleted rows on files with deletion vectors, verbose statistics may show physical column names under column mapping, and clustering columns are informational. On a fully checkpointed log (no JSON commits) liquid clustering goes undetected, because delta-kernel exposes no public accessor for system metadata domains.
See VISION.md for planned improvements.
Development
To build and test from a fresh clone:
git clone https://github.com/cdelmonte-zg/delta-explain
cd delta-explain
cargo build
cargo test
The integration tests under tests/ rely on pre-built Delta tables checked into the repo under fixtures/. They are real Delta tables, not synthetic blobs, so the tests exercise the kernel's actual scan planner.
Regenerating the fixtures
The fixtures only need to be regenerated when you change their schema or the data they contain, for ordinary development you can ignore this step entirely.
The generator is a small Python script (fixtures/create_test_table.py) that uses pyarrow and deltalake to write the tables. Set up a virtual environment and install the pinned dependencies:
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r fixtures/requirements.txt
Then run the generator:
python fixtures/create_test_table.py
The script skips any fixture directory that already exists; delete the directory you want to regenerate first, then re-run.
Deep dive
For a detailed walkthrough of the architecture, design decisions, and the reasoning behind the two-phase model, see the companion article: delta-explain: Making Delta Lake Pruning Visible.
License
MIT
Author
delta-explain is built on delta-kernel-rs and focuses on making Delta-level file elimination visible.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 delta_explain-0.4.0-py3-none-win_amd64.whl.
File metadata
- Download URL: delta_explain-0.4.0-py3-none-win_amd64.whl
- Upload date:
- Size: 13.1 MB
- Tags: Python 3, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33647ffaa79e65dae533167202a6e1bbcdd296700fab938f3b91da6e07ad6b2b
|
|
| MD5 |
b973005687cc62fda31abe5a61aab8eb
|
|
| BLAKE2b-256 |
e9c3c9e62ed39e07b721b8ea5727af71a3d1f61062a5fd1ee1422ce20b4f5cf7
|
Provenance
The following attestation bundles were made for delta_explain-0.4.0-py3-none-win_amd64.whl:
Publisher:
release.yml on cdelmonte-zg/delta-explain
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
delta_explain-0.4.0-py3-none-win_amd64.whl -
Subject digest:
33647ffaa79e65dae533167202a6e1bbcdd296700fab938f3b91da6e07ad6b2b - Sigstore transparency entry: 2067034349
- Sigstore integration time:
-
Permalink:
cdelmonte-zg/delta-explain@4c7279615eca37df60025e4bbc5224a746875572 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/cdelmonte-zg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4c7279615eca37df60025e4bbc5224a746875572 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file delta_explain-0.4.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: delta_explain-0.4.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 15.2 MB
- Tags: Python 3, 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 |
86c5b5c0953b2b62524d5bb74655e549399c2aa13c797051f28bd147ef64fa16
|
|
| MD5 |
38c83629df607d7d626478fea1b6e0ee
|
|
| BLAKE2b-256 |
db46a32d804671412f4c613f4db049e4a0ff583b2461bebe86b50adc444b7cea
|
Provenance
The following attestation bundles were made for delta_explain-0.4.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on cdelmonte-zg/delta-explain
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
delta_explain-0.4.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
86c5b5c0953b2b62524d5bb74655e549399c2aa13c797051f28bd147ef64fa16 - Sigstore transparency entry: 2067034740
- Sigstore integration time:
-
Permalink:
cdelmonte-zg/delta-explain@4c7279615eca37df60025e4bbc5224a746875572 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/cdelmonte-zg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4c7279615eca37df60025e4bbc5224a746875572 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file delta_explain-0.4.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: delta_explain-0.4.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 14.8 MB
- Tags: Python 3, 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 |
02a064ffd65688284ae598936c488758d695e70025e6ae1baea52cbbfce7330f
|
|
| MD5 |
c6e47d31778f1857bbebd781d84ec793
|
|
| BLAKE2b-256 |
e7d41001808cfce251903391341b1f81f746b73abd46b4e02d5ba9f711308065
|
Provenance
The following attestation bundles were made for delta_explain-0.4.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on cdelmonte-zg/delta-explain
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
delta_explain-0.4.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
02a064ffd65688284ae598936c488758d695e70025e6ae1baea52cbbfce7330f - Sigstore transparency entry: 2067035161
- Sigstore integration time:
-
Permalink:
cdelmonte-zg/delta-explain@4c7279615eca37df60025e4bbc5224a746875572 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/cdelmonte-zg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4c7279615eca37df60025e4bbc5224a746875572 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file delta_explain-0.4.0-py3-none-macosx_11_0_arm64.whl.
File metadata
- Download URL: delta_explain-0.4.0-py3-none-macosx_11_0_arm64.whl
- Upload date:
- Size: 13.8 MB
- Tags: Python 3, 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 |
aa50220e5821e9b3f00d854b07289c0a91532c65de722d009c3bc087d75e6c15
|
|
| MD5 |
b2b29919c9cc1e1b1e98d1dee3008bb3
|
|
| BLAKE2b-256 |
f727fb3fb0fd3aabe1aca9f060635c06909e9dbaecb1495cf40bf35cf95f628e
|
Provenance
The following attestation bundles were made for delta_explain-0.4.0-py3-none-macosx_11_0_arm64.whl:
Publisher:
release.yml on cdelmonte-zg/delta-explain
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
delta_explain-0.4.0-py3-none-macosx_11_0_arm64.whl -
Subject digest:
aa50220e5821e9b3f00d854b07289c0a91532c65de722d009c3bc087d75e6c15 - Sigstore transparency entry: 2067033904
- Sigstore integration time:
-
Permalink:
cdelmonte-zg/delta-explain@4c7279615eca37df60025e4bbc5224a746875572 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/cdelmonte-zg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4c7279615eca37df60025e4bbc5224a746875572 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file delta_explain-0.4.0-py3-none-macosx_10_12_x86_64.whl.
File metadata
- Download URL: delta_explain-0.4.0-py3-none-macosx_10_12_x86_64.whl
- Upload date:
- Size: 14.5 MB
- Tags: Python 3, 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 |
bb5d715129e3acc2010a0429b861acecf0b03bd6ccd576afdf0dbb328c3c82d3
|
|
| MD5 |
58035bd6878a444ee14ded34f59bf7b8
|
|
| BLAKE2b-256 |
671485f426308d6709552bce0aa2fa6b4e7890e1a67d32782a7084b33cb74e27
|
Provenance
The following attestation bundles were made for delta_explain-0.4.0-py3-none-macosx_10_12_x86_64.whl:
Publisher:
release.yml on cdelmonte-zg/delta-explain
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
delta_explain-0.4.0-py3-none-macosx_10_12_x86_64.whl -
Subject digest:
bb5d715129e3acc2010a0429b861acecf0b03bd6ccd576afdf0dbb328c3c82d3 - Sigstore transparency entry: 2067033392
- Sigstore integration time:
-
Permalink:
cdelmonte-zg/delta-explain@4c7279615eca37df60025e4bbc5224a746875572 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/cdelmonte-zg
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@4c7279615eca37df60025e4bbc5224a746875572 -
Trigger Event:
workflow_dispatch
-
Statement type: