Rust-backed econometrics models with a scikit-adjacent Python API.
Project description
crabbymetrics
Rust-backed econometrics 🦀🔢 models with a scikit-adjacent Python API. Focus: extremely low runtime dependency footprint, simple NumPy-facing estimators, robust standard errors, and bootstrap support where it fits the estimator.
Features
- Linear, IV, and panel causal estimators: OLS, Ridge, FixedEffectsOLS, TwoSLS, HorizontalPanelRidge, SyntheticControl, SyntheticDID, MatrixCompletion, InteractiveFixedEffects
- Common panel causal API:
HorizontalPanelRidge,SyntheticDID, andMatrixCompletionusefit(Y, W)with balanced outcome and absorbing treatment matrices, then expose ATT, counterfactuals, treatment effects, event-study summaries, and group means throughsummary() - Regularized and likelihood estimators: ElasticNet, Logit, Multinomial Logit, Poisson, FTRL
- Moment and semiparametric estimators: GMM, BalancingWeights, EPLM, AverageDerivative, PartiallyLinearDML, AIPW
- Shared robust covariance options for the main linear estimators: vanilla, HC1, Newey-West, and cluster
- Weighted fits for OLS, Ridge, FixedEffectsOLS, and TwoSLS
ElasticNetspans the ridge and lasso corners: usel1_ratio=0.0for ridge-style shrinkage andl1_ratio=1.0for lasso-style shrinkage- PCA and KernelBasis for feature engineering before regression-style estimation
Optimizersnamespace exposing LBFGS, BFGS, NonlinearConjugateGradient, Gauss-Newton least squares, and SimulatedAnnealingfit,predict,summary, andbootstrapwhere meaningful for the estimator
Install
This package is built with pyo3/maturin and ships as native wheels.
PyPI: https://pypi.org/project/crabbymetrics/
uv pip install crabbymetrics
Example
import numpy as np
from crabbymetrics import OLS
x = np.random.randn(200, 3)
beta = np.array([1.0, -2.0, 0.5])
y = 0.3 + x @ beta + np.random.randn(200) * 0.1
model = OLS()
model.fit(x, y)
print(model.summary())
Panel causal estimators take matrices directly rather than long data frames:
import numpy as np
import crabbymetrics as cm
Y = np.random.randn(20, 12)
W = np.zeros_like(Y)
W[15:, 8:] = 1.0 # absorbing treatment matrix
model = cm.SyntheticDID()
model.fit(Y, W)
out = model.summary()
print(out["att"], out["event_study"].keys(), out["group_means"].keys())
BalancingWeights remains available as the lower-level calibration/reweighting API, but the paved panel path is estimator-first.
The direct optimizer wrappers live under Optimizers and follow a lightweight scipy-style interface:
import numpy as np
from crabbymetrics import Optimizers
def objective(theta):
return float((theta[0] - 1.0) ** 2 + 2.0 * (theta[1] + 2.0) ** 2)
def gradient(theta):
return np.array([2.0 * (theta[0] - 1.0), 4.0 * (theta[1] + 2.0)])
result = Optimizers.minimize_lbfgs(objective, np.array([4.0, 3.0]), gradient)
print(result["x"], result["fun"])
Benchmarks
The latest cross-library runtime snapshot is checked in as benchmarks/runtime_comparison.png.
This benchmark used synthetic problems with p=5, sample sizes from 10^3 to 10^6, fit-only timing, and a 45-second per-fit timeout.
OLSis competitive already and was faster than both scikit-learn and statsmodels atn=10^6.Poissonbeats statsmodels comfortably but still trails scikit-learn at largern.Logitand especiallyMultinomialLogitare the main performance gaps to close before adding more iterative GLM-style estimators.
Development
Create and populate the project virtual environment, then build the extension into that venv.
uv sync
uv run maturin develop
uv run maturin develop is sufficient for rebuilding and reinstalling the package in .venv once the environment exists. If you change Python dependencies or the pyproject.toml metadata, run uv sync again first.
Package versioning is sourced from Cargo.toml; the Python package metadata is dynamic.
To release to PyPI, use the Build wheels GitHub Actions workflow manually from master and enter the next version without the leading v (for example 0.6.1). The workflow bumps Cargo.toml, commits to master, creates the vX.Y.Z tag, runs tests, builds wheels and an sdist, publishes the GitHub Release, and publishes to PyPI. The older commit_tag_release.sh script remains as a local fallback for manually tagging the current Cargo.toml version.
Rendered examples and API docs live under docs/. Rebuild the site with uv run quarto render docs.
For docs work, install the docs extra first: uv sync --extra docs.
Wheels
Wheels are platform-specific and included in GitHub releases. See the releases tab.
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 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 crabbymetrics-0.6.1.tar.gz.
File metadata
- Download URL: crabbymetrics-0.6.1.tar.gz
- Upload date:
- Size: 97.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faa63d52d1cc84b9732a89f91d9ce10e5dd43ae263b84f170e6719f0d803c275
|
|
| MD5 |
de222f125dcedae9fdcd3063d80572b5
|
|
| BLAKE2b-256 |
f0fbfc777a3556977c31a538f07b3cd70e49673a771e82833d259f74cebc36fe
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1.tar.gz:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1.tar.gz -
Subject digest:
faa63d52d1cc84b9732a89f91d9ce10e5dd43ae263b84f170e6719f0d803c275 - Sigstore transparency entry: 1452400255
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.14, 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 |
83d2ca076bfe47dce60f190fa2dceb590244ee9b4f05ddb9e18bbc1fc249f541
|
|
| MD5 |
2455c648a309093bf00b441bb545f0b1
|
|
| BLAKE2b-256 |
36844b49e3c7b82b6a385f4628d59645b851def396bcff26f614601c21e6c503
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
83d2ca076bfe47dce60f190fa2dceb590244ee9b4f05ddb9e18bbc1fc249f541 - Sigstore transparency entry: 1452400848
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14, 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 |
3b76511ac82b9d009a25a63996b1a3b9ca6d7deabf928be3049b53bde8da827b
|
|
| MD5 |
bd7fdf462486879d4729366b31c6eaec
|
|
| BLAKE2b-256 |
655c577290eb417c6c539bdbf1a32e632d18ebe0f02819b332bbfc84b9bd6fbf
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
3b76511ac82b9d009a25a63996b1a3b9ca6d7deabf928be3049b53bde8da827b - Sigstore transparency entry: 1452400722
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, 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 |
a705665acf61f03d3af9181e9f94629e26344d233c4780b8127596a9dcec8848
|
|
| MD5 |
0d9c125bee2c67b1a818571f8effaccf
|
|
| BLAKE2b-256 |
53753419c35d76ddce7703197849e90a7930ef2f19c3dca82753530838f0bc34
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
a705665acf61f03d3af9181e9f94629e26344d233c4780b8127596a9dcec8848 - Sigstore transparency entry: 1452400521
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, 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 |
2bc5cc2c938b153f62bde7eb915247cb1541f6dafba877e7121b992bf51c0b38
|
|
| MD5 |
c8a8dd8a261add36b5cc74eddfe3ee49
|
|
| BLAKE2b-256 |
6b73aad1d10a50ad90dd4e8de6b366cc259a0a52554c409ab019ff1a91a61f33
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
2bc5cc2c938b153f62bde7eb915247cb1541f6dafba877e7121b992bf51c0b38 - Sigstore transparency entry: 1452400574
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, 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 |
6566a56bf27e319a5b278cf0f499ed822a89d6d2abbcaf98b9857fd5d97f6bf5
|
|
| MD5 |
8d664e5171089792dda342749b8f1c01
|
|
| BLAKE2b-256 |
9d26b4ac46f55497b1b45b09334dc319315dcb273675c9fb2d0c424f5c28202d
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
6566a56bf27e319a5b278cf0f499ed822a89d6d2abbcaf98b9857fd5d97f6bf5 - Sigstore transparency entry: 1452400315
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, 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 |
94aac3f50534ed328cc6adb03e72607f1cf4a8b255650db7355f9c24416360c8
|
|
| MD5 |
076720fe4199d9dd397dafe0b273e7d1
|
|
| BLAKE2b-256 |
bd0a3dd21e591a0121cce96422b92d0fa07477bc99a748f3a3b63a9a3cedac8c
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
94aac3f50534ed328cc6adb03e72607f1cf4a8b255650db7355f9c24416360c8 - Sigstore transparency entry: 1452400419
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, 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 |
450932f427a60f324c7240a15caa115912eefb790612275503aa67ee4966949d
|
|
| MD5 |
0164cff79cb4e7fa80072b239e67b3a7
|
|
| BLAKE2b-256 |
fc55483bf0650d817ff2ae8243d0db5202c47131915f60089502a64e105cc368
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
450932f427a60f324c7240a15caa115912eefb790612275503aa67ee4966949d - Sigstore transparency entry: 1452400379
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, 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 |
de5a9f111434f5d00a3d0225960aba8355bb5a8aff0309611b6efcf8460022ea
|
|
| MD5 |
7e9cc4b85ddd5d07fca3b9624b557afe
|
|
| BLAKE2b-256 |
3588a4f13f7c2376f408395aecc8c3bbed6a0c150c4107cff7c12f217febb6e5
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
de5a9f111434f5d00a3d0225960aba8355bb5a8aff0309611b6efcf8460022ea - Sigstore transparency entry: 1452400474
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, 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 |
db48361455b2bdf5e21165af853e7853e77a8ef281c5cb7304859865d2768468
|
|
| MD5 |
de8097ee5e73a05e275bdadff7c6df5a
|
|
| BLAKE2b-256 |
5311add1faa6de31304130c61f887119613dddca1e2ac6639ec9de541a2eaf52
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
db48361455b2bdf5e21165af853e7853e77a8ef281c5cb7304859865d2768468 - Sigstore transparency entry: 1452400651
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file crabbymetrics-0.6.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: crabbymetrics-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, 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 |
61aa493b168de8a56779d1c473b41efb6901915b521f939219da8fb93a1cd1c3
|
|
| MD5 |
d664ada1c9b32178489e5e56e0e0e930
|
|
| BLAKE2b-256 |
1dd62e9dc7b33021d5a9cbe87b7b7b01de2918b3ccbf77e9d8b2a2a04576d42f
|
Provenance
The following attestation bundles were made for crabbymetrics-0.6.1-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on apoorvalal/crabbymetrics
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
crabbymetrics-0.6.1-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
61aa493b168de8a56779d1c473b41efb6901915b521f939219da8fb93a1cd1c3 - Sigstore transparency entry: 1452400773
- Sigstore integration time:
-
Permalink:
apoorvalal/crabbymetrics@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/apoorvalal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@757e8bf1a3cf3692a036f0183014283dbb0c956f -
Trigger Event:
workflow_dispatch
-
Statement type: