Fast association analysis at low support
Project description
fastapriori
Fast association rule mining — even at very low support thresholds.
Built on a compiled Rust engine with an inverted-index architecture. fastapriori counts pair co-occurrences exhaustively at k=2 and uses an anchor-and-extend strategy with Apriori pruning at k>=3. Across eight real-world datasets (BMS-WebView-1/2, Chainstore, Groceries, Instacart, Kosarak, Online Retail, Retail Belgian — 9.8K to 3.2M transactions, 169 to 49K items), algo="fast" wins 100% of k=2 configurations vs efficient-apriori (median 61x, up to 969x on Retail Belgian) and 100% vs the like-for-like compiled Apriori baseline at k=2 (median 3.9x, up to 92.8x). At k>=3 it wins 91–97% of configurations vs the same compiled-Apriori baseline (best 27–36x).
Installation
pip install fastapriori
The Rust extension is included in the wheel. To build from source, you need the Rust toolchain (rustup.rs):
pip install -e .
Quick Start
import pandas as pd
from fastapriori import find_associations
# Transactional data: one row per (transaction, item) pair
df = pd.DataFrame({
"txn_id": [1, 1, 1, 2, 2, 3, 3, 3],
"item": ["A", "B", "C", "A", "B", "B", "C", "D"],
})
# k=2 (default): pairwise associations with 7 metrics
pairs = find_associations(
df,
transaction_col="txn_id",
item_col="item",
min_support=0.01,
min_confidence=0.1,
)
# k=3: triplet associations
triplets = find_associations(
df,
transaction_col="txn_id",
item_col="item",
k=3,
min_support=0.01,
)
k=2 Output Columns
| Column | Description |
|---|---|
item_A |
Reference item |
item_B |
Co-occurring item |
instances |
Transactions containing both A and B |
support |
instances / total_transactions |
confidence |
P(B|A) = instances / transactions_containing_A |
lift |
confidence / support(B) |
conviction |
(1 - support(B)) / (1 - confidence) |
leverage |
support(A,B) - support(A) * support(B) |
cosine |
support(A,B) / sqrt(support(A) * support(B)) |
jaccard |
support(A,B) / (support(A) + support(B) - support(A,B)) |
k>=3 Output Columns
| Column | Description |
|---|---|
antecedent_1 .. antecedent_{k-1} |
Items in the antecedent |
consequent |
Predicted item |
instances |
Transactions containing all k items |
support |
instances / total_transactions |
confidence |
P(consequent | antecedents) |
lift |
confidence / support(consequent) |
Why Low Support Matters
Classical Apriori relies on a high min_support to prune candidates. But the most valuable discoveries — long-tail specialty products, seasonal items, rare industrial part pairings, B2B bundles with 50,000-part catalogs — live exactly where support is low. On a 3.2M-transaction Instacart dataset at s = 0.0001, Apriori spends minutes pruning candidates that fastapriori never has to generate.
fastapriori sidesteps this entirely at k=2: compute every pair in a single pass, then filter on any metric afterward. No support threshold required.
Algorithm
fastapriori uses a "count everything, filter later" architecture:
-
k=2: Builds an inverted index (item -> transaction set), then for each item counts ALL co-occurring items in a single pass using a flat array buffer. Runtime is constant with respect to min_support — the threshold is applied as a post-hoc filter on precomputed counts.
-
k>=3: Extends the same inverted index with anchor-and-extend: each frequent (k-1)-set serves as an anchor, and candidate k-th items are counted by scanning only the anchor's transactions. Apriori's downward-closure property prunes items that cannot participate in frequent k-sets.
This "best of both worlds" design applies brute-force counting where pruning cannot help (k=2) and principled pruning where it genuinely reduces work (k>=3).
Three Algorithms
| Algorithm | Description | When to use |
|---|---|---|
algo="fast" (default) |
Inverted-index count-all | Best in the overwhelming majority of cases, especially at low support |
algo="classic" |
Rust port of Apriori (join + prune + short-circuit) | Dense, correlated data where k>=4 and the transaction-size tail is heavy |
algo="auto" |
Routes to "fast" |
Safe default |
Performance
Benchmarked on eight real-world datasets at k=2, sweeping min_support from 0.0001 to 0.01, with three repeats per method. Five methods are compared: efficient_apriori (Python Apriori), classic (compiled Rust Apriori — like-for-like control), fast_1T (single-threaded fastapriori), fast (parallel fastapriori), and pyfim (native-C reference baseline, median across its three algorithms). See the project page on GitHub for the per-dataset plot.
fastapriori's runtime is flat at k=2 across all support levels — for every real dataset, the fast line varies by under 7% across the full support sweep (Chainstore: 0.82→0.83s; Instacart: 3.65→3.74s; Retail Belgian: 0.07→0.09s). efficient_apriori slows by 1–2 orders of magnitude as support drops; the classic line tracks fast at high support and diverges at low support — the textbook Apriori crossover, without the Python tax.
The risk profile is asymmetric. When fast is suboptimal (very high support, small data), the penalty is milliseconds. When Apriori is suboptimal (low support, large data), the penalty is minutes. Choosing fast by default costs you nothing in the worst case and saves everything in the common case.
| Real-world result (k=2, 8 datasets, 5 supports) | Wins | Median speedup | Best |
|---|---|---|---|
fast vs efficient_apriori |
39 / 39 (100%) | 61x | 969x (Retail Belgian, s=10⁻⁴) |
fast vs compiled Rust Apriori (classic) |
40 / 40 (100%) | 3.9x | 92.8x (Retail Belgian, s=10⁻⁴) |
fast vs pyfim (native C; median of apriori, eclat, fpgrowth) |
26 / 40 (65%) | 1.3x | 4.8x (Kosarak, s=10⁻⁴) |
At k>=3 (same eight real datasets, k=3..9), fast beats the like-for-like compiled Apriori on 91–97% of configurations with peak speedups of 27–36x.
fastapriori gives competitive performance wrt pyfim (median) on k>=3 for wide, sparse, big data. For narrow, dense data prefer pyfim.
Decision Rule
Is k = 2?
Yes -> use algo="fast" (100% real-world win rate; constant runtime in min_support)
Is k >= 3? Compute two one-pass stats:
d_per_txn = df.groupby(transaction_col)[item_col].nunique()
tau = d_per_txn.max() / d_per_txn.mean() # tail ratio
d_cv = d_per_txn.std() / d_per_txn.mean() # CV of basket size
d_avg = d_per_txn.mean()
Tame data (tau < 25 AND d_cv < 1.25 AND d_avg < 15)
-> use algo="fast"
e.g. Groceries (tau=7.3, cv=0.81, d_avg=4.4),
Instacart (tau=14.4, cv=0.75, d_avg=10.1),
Retail Belgian (tau=7.4, cv=0.79, d_avg=10.3),
Chainstore (tau=23.5, cv=1.23, d_avg=7.2)
Heavy outlier tail (tau >= 25 or d_cv >= 1.25), e.g. BMS-WebView-1/2, Kosarak
-> k = 3: use algo="fast"
k >= 4: use algo="fast" with max_items_per_txn=50
(caps the C(d_max, k-1) blow-up; counts become lower bounds)
Dense baskets (d_avg >= 15), e.g. Online Retail (d_avg=18.2)
-> consider algo="classic" with a real min_support;
or algo="fast" with max_items_per_txn=50
If you don't want to think about it, algo="fast" is the right answer everywhere except the dense-and-high-k corner — and even there the penalty is bounded by max_items_per_txn.
Handling Dense / Outlier Transactions: max_items_per_txn
When a few transactions are huge — think Online Retail with d_max = 539, or Kosarak with d_max = 2,498 — the per-transaction enumeration cost at k>=3 is dominated by those outliers (you enumerate C(d, k-1) items per transaction). fastapriori supports an opt-in cap that truncates each transaction to its top-N items by weight:
result = find_associations(
df, "txn_id", "item",
k=4,
min_support=0.001,
max_items_per_txn=50, # cap outliers: 539 -> 50 items for the largest basket
item_weights=None, # default: rank by global item frequency (keeps frequent items)
)
- What it does. Transactions with more than N items are reduced to their top-N by weight. Others are left untouched.
- Counts are lower bounds. A capped itemset's count is never higher than the true count; some genuinely frequent itemsets may be missed if their count drops below
min_supportafter capping. Use it when you prefer a fast, conservative answer to a slow, exact one. - Custom weights. Pass an
item_weights={item: score}dict to prioritize high-revenue / high-margin / business-critical items regardless of frequency. - Only applies at k>=3. Pairs are always counted exactly. Supported by both
algo="fast"andalgo="classic". - When it pays off. Reported impact from the paper: on Online Retail at k=4 with cap=50, per-anchor enumeration cost drops by ~1,300x; on Kosarak, ~133,000x.
Low-Memory Mode
The pair counter scales as O(m^2) in the unique-item count. Instacart (~50k items) uses ~30 GB at s = 0.0001. low_memory=True pre-filters items below min_support before building the index — typically a 5–10x memory reduction on large catalogs:
find_associations(df, "txn_id", "item", min_support=0.001, low_memory=True)
Requires min_support. Results are exact because the dropped items could not have met the threshold in the first place.
Verbose Mode
Use verbose=True to inspect dataset characteristics before a long run:
find_associations(df, "txn_id", "item", k=4, min_support=0.001, verbose=True)
[fastapriori] Dataset: 28,816 txns x 4,632 items | 525,476 rows
[fastapriori] d_avg=18.2 d_max=539 d_median=11.0 d_std=16.3
[fastapriori] k=4 min_support=0.001 algo=fast
[fastapriori] WARNING: C(539, 3) x 28,816 = 752M combinations -- may be slow
A warning fires when C(d_max, k-1) * n_transactions exceeds 10^8 — a good cue to consider max_items_per_txn.
Metric Interpretation Guide
| Metric | Range | What it tells you | When to use |
|---|---|---|---|
| support | 0 — 1 | How frequently the pair appears across all transactions. | Filter out noise — set a floor to focus on pairs that occur often enough to matter. |
| confidence | 0 — 1 | P(B|A) — given item A was purchased, how likely is B? Directional. | Product recommendations — "customers who bought A also bought B". |
| lift | 0 — inf | How much more likely A and B co-occur than if independent. >1 = positive association, <1 = substitutes. | Best general-purpose metric. Filter with lift > 1. |
| conviction | 0.5 — inf | How much the rule A->B would be wrong if A and B were independent. inf = always correct. | Preferred over confidence for strong directional rules. |
| leverage | -0.25 — 0.25 | Absolute deviation from independence. 0 = independent. | When you want absolute (not relative) association strength. |
| cosine | 0 — 1 | Symmetric similarity, not inflated by rare items like lift can be. | Clustering, similarity matrices. |
| jaccard | 0 — 1 | Overlap coefficient — fraction of transactions with A or B that contain both. | How "interchangeable" two items are. |
Quick decision guide:
- Bundling / cross-sell -> filter by
lift > 1andconfidence > 0.1 - Substitute detection -> look for
lift < 1 - Symmetric similarity -> use
cosineorjaccard - Directional rules (A implies B) -> use
confidenceorconviction
Practical Workflow: Run Once, Filter Many Times
Because fast k=2 runtime is constant in min_support, you can compute the full co-occurrence table once with min_support=None and then filter interactively. Each threshold change is a pandas filter, not a recompute:
full = find_associations(df, "txn_id", "item") # computes everything
strong = full[(full["lift"] > 2) & (full["confidence"] > 0.3)]
rare = full[full["instances"] == 1] # anomaly / error detection
substitutes = full[full["lift"] < 1]
min_support=None also surfaces pairs that never co-occur (zero support) and cold-start items with few transactions — both often filtered away by traditional Apriori before you ever see them.
API Reference
find_associations()
find_associations(
df,
transaction_col,
item_col,
k=2, # itemset size (2-50)
min_support=None, # minimum pair support (float or None)
min_confidence=0.0, # minimum P(B|A)
min_lift=0.0, # minimum lift (k=2 only)
min_conviction=0.0, # minimum conviction (k=2 only)
min_leverage=None, # minimum leverage (k=2 only)
min_cosine=0.0, # minimum cosine similarity (k=2 only)
min_jaccard=0.0, # minimum Jaccard similarity (k=2 only)
max_items_per_txn=None, # cap outlier transactions (k>=3, fast + classic)
item_weights=None, # dict for custom ranking used by max_items_per_txn
low_memory="auto", # pre-filter infrequent items to reduce memory
show_progress=False, # tqdm progress bar
backend="auto", # "auto", "rust", "python", "polars", "pandas"
algo="fast", # "fast", "classic", or "auto"
sorted_by="support", # sort column (or None to skip)
verbose=False, # print dataset stats and density warnings
)
Algorithm choice:
"fast"(default) — inverted-index count-all. Constant runtime at k=2 (100% real-world wins); 91–97% wins vs the compiled Apriori control across k=3..9 on real datasets."classic"— Rust port of Apriori with join+prune+short-circuit. Requiresmin_support. Potentially useful for dense, correlated data at k>=4 where the transaction-size tail violates thetau < 25 and d_cv < 1.25heuristic above."auto"— routes to"fast"(the safe default in all but edge cases).
Backend choice:
"auto"(default) — uses Rust if the compiled extension is available, otherwise falls back to Python."python"— polars for k=2 (falling back to pandas), counter_chain for k>=3.- Individual backends:
"rust","pandas","polars","counter_chain".
get_top_associations()
from fastapriori import get_top_associations
# Top 10 items associated with "widget-A" by lift
top = get_top_associations(result, item="widget-A", metric="lift", n=10, role="any")
role controls direction: "antecedent" (item as item_A), "consequent" (item as item_B), or "any" (both).
filter_associations()
from fastapriori import filter_associations
# All associations involving one or more items
filtered = filter_associations(result, items=["widget-A", "widget-B"], role="any")
to_heatmap()
from fastapriori import to_heatmap
pivot = to_heatmap(result, metric="lift") # returns a pivot table (item_A x item_B)
plot_heatmap()
from fastapriori import plot_heatmap
fig = plot_heatmap(result, metric="lift", cmap="RdYlGn", annot=True)
Requires matplotlib.
to_graph()
from fastapriori import to_graph
G = to_graph(result, metric="lift", min_value=1.5) # returns networkx.DiGraph
Requires networkx (pip install fastapriori[graph]).
Limitations
- Memory at low s, large m: the pair counter scales O(m^2); on Instacart (~50k items) expect ~30 GB at
s = 10^-4. Uselow_memory=Truewhen you have amin_support. - Dense data at high k: the combinatorial C(d_max, k-1) term is fundamental.
max_items_per_txnbounds it at the cost of lower-bound counts. - Single-machine: no distributed (Spark / Dask) version is provided.
License
MIT
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 fastapriori-0.1.0.tar.gz.
File metadata
- Download URL: fastapriori-0.1.0.tar.gz
- Upload date:
- Size: 387.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 |
c5f5894e1566f05d6a31bf6e4ad86e3bcf37877b51987ba337a30bedd6444db1
|
|
| MD5 |
ec112ec4a609af70e065691181705d2b
|
|
| BLAKE2b-256 |
e97a3f72428d663d31f32fd8fdd289e69a7147eb1cc5827a478da195c70e2a01
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0.tar.gz:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0.tar.gz -
Subject digest:
c5f5894e1566f05d6a31bf6e4ad86e3bcf37877b51987ba337a30bedd6444db1 - Sigstore transparency entry: 1417542514
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 441.1 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49f286a92a6250547cc970d65f7eb0e77f74db1cb04e4923fd9ad0f60a5e797e
|
|
| MD5 |
67a1130cfa863365d452b74c93d4ffb6
|
|
| BLAKE2b-256 |
f8f6d6d44abb96b387da79384bbedd69d8cff70c34e35494185df01e7e96603a
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
49f286a92a6250547cc970d65f7eb0e77f74db1cb04e4923fd9ad0f60a5e797e - Sigstore transparency entry: 1417542590
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 613.1 kB
- 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 |
27bc9fcf97876306c2c48e1d52205a10c9529c6be55f8e795ccbf12780ed89bf
|
|
| MD5 |
fd84ea0750d2335bff0ed060306036f3
|
|
| BLAKE2b-256 |
4550b19b52824b43fd1126fc0473b4808a6e08314928f9afe27e73e310010e73
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
27bc9fcf97876306c2c48e1d52205a10c9529c6be55f8e795ccbf12780ed89bf - Sigstore transparency entry: 1417542595
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 590.7 kB
- Tags: CPython 3.13, 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 |
96c1fa98ef888d74d5c2160bc5fd7800781f31c8e285715f3475e6d0c0378f67
|
|
| MD5 |
a4c2ac8fc35544e1ef603c5b3f9052e0
|
|
| BLAKE2b-256 |
6fe64f51349833ff4b50052a71bff25ff8afc0d923e5a93990a3e4a9388fbec5
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
96c1fa98ef888d74d5c2160bc5fd7800781f31c8e285715f3475e6d0c0378f67 - Sigstore transparency entry: 1417542534
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 533.7 kB
- 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 |
5db3c4a0c6f14319264308175da6aa3d94a5cf45dfa7bec0a49ae241c96b8f79
|
|
| MD5 |
d27c5dd8e9c2365fafcad314351c6372
|
|
| BLAKE2b-256 |
7f396326cd87c49364917437c83a7dde060520e69fa174cdbbfdd5189db6a8bc
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
5db3c4a0c6f14319264308175da6aa3d94a5cf45dfa7bec0a49ae241c96b8f79 - Sigstore transparency entry: 1417542554
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 441.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8324319e787ed27d45829147598fe92a1f8608aeb83730aa8e8a6e63b6532c9a
|
|
| MD5 |
7e0010dcc8513ce0b01e592391a213b9
|
|
| BLAKE2b-256 |
583146ec9cde84fa678ecb5177792096d4cb6d5fce5fc5124c09f392891946e5
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
8324319e787ed27d45829147598fe92a1f8608aeb83730aa8e8a6e63b6532c9a - Sigstore transparency entry: 1417542531
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 613.7 kB
- 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 |
5cf6047d1022999a518cf611832f05914e82e9bcb58f6f3ea51b3f1ff93828a1
|
|
| MD5 |
26c5bdfc64417a1ab01037af38661046
|
|
| BLAKE2b-256 |
9a73c74e39b7aa34a1b6cf025d3dd79d06a41bb1ec0f6f7353bb68310aeddfdc
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
5cf6047d1022999a518cf611832f05914e82e9bcb58f6f3ea51b3f1ff93828a1 - Sigstore transparency entry: 1417542599
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 590.3 kB
- Tags: CPython 3.12, 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 |
3f6d8c9e7dcad6f08e0dc6029ab0afc553616e6f1f4e8fea3b342f47d21aa1e2
|
|
| MD5 |
e81d4f329f0b699270633e6ac9384e44
|
|
| BLAKE2b-256 |
225c8bef642a4eb26c4b95aaba87bec65fa08f6b8ca6bc0007c93281337c6076
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
3f6d8c9e7dcad6f08e0dc6029ab0afc553616e6f1f4e8fea3b342f47d21aa1e2 - Sigstore transparency entry: 1417542572
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 533.9 kB
- 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 |
8f203bbf8cb1d1597d3cfbbc2dbe1b323201b2d12b67455359940890b74b4e03
|
|
| MD5 |
3d43b61e3f2c814fbdbbbbf5d08941fc
|
|
| BLAKE2b-256 |
c533b1c61362db58a53ad02fe2875d3c984fe00531cb2157ed43beef6dfdf39b
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
8f203bbf8cb1d1597d3cfbbc2dbe1b323201b2d12b67455359940890b74b4e03 - Sigstore transparency entry: 1417542558
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 441.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1038c48caecd67f51b90f11bfb9ae86bd52693d51cc15d4641f453b79ab221be
|
|
| MD5 |
1dad9714f5bebefc1697ee254bd2db9a
|
|
| BLAKE2b-256 |
e0337cc95444c8db1c365ca34002f3b13009bae036866c80de5ee18264dfb3bc
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
1038c48caecd67f51b90f11bfb9ae86bd52693d51cc15d4641f453b79ab221be - Sigstore transparency entry: 1417542605
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 613.6 kB
- 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 |
2ae3e6b2da3c0ed8241b295997f0fb78a64c1a6055f1bd91e2881d85341ea738
|
|
| MD5 |
127d1cb6aaae27ad2c6210d96a69caa4
|
|
| BLAKE2b-256 |
6a60bb4bc6043ce1168a5e2e77b7f2c04d422b28e61e01aebe8ae1a279f37761
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
2ae3e6b2da3c0ed8241b295997f0fb78a64c1a6055f1bd91e2881d85341ea738 - Sigstore transparency entry: 1417542527
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 590.7 kB
- Tags: CPython 3.11, 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 |
c751b8be7ad265d3d846467355ee3649a2f1950ee0a5d041aa8b2bcc2632a2c0
|
|
| MD5 |
436cf8f55a250aa12560a2255fa02b75
|
|
| BLAKE2b-256 |
b99dc9fa04ba5c2e2e2cea575e79e8d59e9bdaa87e7fc9fa603ab1b25ee269f2
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
c751b8be7ad265d3d846467355ee3649a2f1950ee0a5d041aa8b2bcc2632a2c0 - Sigstore transparency entry: 1417542523
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 537.4 kB
- 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 |
1a4e777552dd518d4bb7d13f438584d0f5f2e8f76a33f14727dfdbec270f287e
|
|
| MD5 |
02392cd7d3a9ee1924ba3d739d96be81
|
|
| BLAKE2b-256 |
71ff88f7de3efe1943996e0ec121b72fcd8a76f0056cdb294c1a0ab8d3af4086
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
1a4e777552dd518d4bb7d13f438584d0f5f2e8f76a33f14727dfdbec270f287e - Sigstore transparency entry: 1417542545
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 441.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74fa776375adbef419b1b20236a3047616d5df778440aca16b2ca5d79878a92d
|
|
| MD5 |
14f30ea6812ad562ccfac2fd190ad5f7
|
|
| BLAKE2b-256 |
0c2464400e04ee6c9c7514b710ff01c3ef8a0a3699c3515fb5e1aea6e01b6473
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
74fa776375adbef419b1b20236a3047616d5df778440aca16b2ca5d79878a92d - Sigstore transparency entry: 1417542517
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 613.5 kB
- 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 |
2e7de37fd735d06be53bd85d1cf1ac6ef15b86862f4a2572978b5b0b5a7d9ff2
|
|
| MD5 |
ec10a134fba6eefbe615e821217c4dbf
|
|
| BLAKE2b-256 |
740f560809a47a00ca3a42c92a4131a878f134c654d6e5b71ac9e86c3fde52cc
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
2e7de37fd735d06be53bd85d1cf1ac6ef15b86862f4a2572978b5b0b5a7d9ff2 - Sigstore transparency entry: 1417542548
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 591.0 kB
- Tags: CPython 3.10, 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 |
74a6954aac2b7adf6b13476da95ee5b2f4c25149cf7137d9fdf1a462b7ebc8ba
|
|
| MD5 |
97cd5deb4cb01c67048a01b3c7b1e07b
|
|
| BLAKE2b-256 |
3d20c27121f8735d1b7f8e07d80a7d3372fd2ca4f834f3a6f07c11c0b77b4720
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
74a6954aac2b7adf6b13476da95ee5b2f4c25149cf7137d9fdf1a462b7ebc8ba - Sigstore transparency entry: 1417542576
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 537.2 kB
- 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 |
c66f11a9397250b131acf0d183d487e53927d9fc3123b1249df6a0a6c9777e6d
|
|
| MD5 |
4cbc757338ddd6dfb53abf65a0b15cb2
|
|
| BLAKE2b-256 |
daf2f07cc86c129194edc7476f129d109b5a8c5ef58d7c73c9e8d641b9d17542
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
c66f11a9397250b131acf0d183d487e53927d9fc3123b1249df6a0a6c9777e6d - Sigstore transparency entry: 1417542568
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 441.7 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 |
715825f60eb7ecfb8bd6f2e85272c216a76646ce6d6f98f214add4bc5b3a94ce
|
|
| MD5 |
3e0196a3757b6a2856ce39ce303f1ba9
|
|
| BLAKE2b-256 |
b464c693d86ae9db40a0488b0d38cacf294574cc953c887be78bfc040f366dba
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp39-cp39-win_amd64.whl -
Subject digest:
715825f60eb7ecfb8bd6f2e85272c216a76646ce6d6f98f214add4bc5b3a94ce - Sigstore transparency entry: 1417542538
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapriori-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fastapriori-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 613.7 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 |
fb9b326bb551f3fef6a2becd34d6d7532107bde414c3149114b28f64797f7045
|
|
| MD5 |
cb0e7166cd6ec91f57d4298cb59d5a47
|
|
| BLAKE2b-256 |
fff65d41dc8b2179d0d4ffd6538cc740fb002fb92f17ccb571d55015b6ef858f
|
Provenance
The following attestation bundles were made for fastapriori-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on swetmr/fastapriori
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapriori-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
fb9b326bb551f3fef6a2becd34d6d7532107bde414c3149114b28f64797f7045 - Sigstore transparency entry: 1417542584
- Sigstore integration time:
-
Permalink:
swetmr/fastapriori@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/swetmr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@59582bf2d088f5de5b7762a1901ddbe3d4b32744 -
Trigger Event:
release
-
Statement type: