A fast BPE tokenizer, minbpe with CPython-accelerated core
Project description
turboBPE
A fast, minimal implementation of the Byte Pair Encoding (BPE) algorithm used in LLM tokenization built on top of Andrej Karpathy's minbpe, with a C-accelerated backend that makes training absurdly fast.
The BPE algorithm is "byte-level" because it runs on UTF-8 encoded strings. It was popularized for LLMs by the GPT-2 paper and the associated code release from OpenAI. Today, every major LLM (GPT, Llama, Mistral, etc.) uses some form of this algorithm to train its tokenizer.
turboBPE keeps the same clean, hackable spirit of minbpe while replacing the inner training and encoding loops with a compiled C extension giving you the readability you want and the speed you need.
The core idea: instead of minting one token per iteration and recomputing stats from scratch each time, turbobpe computes stats once, picks the top-N non-overlapping pairs, and merges them all in a single pass. Same correctness guarantees, significantly fewer stat sweeps.
Why turboBPE?
Because training a 10K vocab tokenizer on a 4 MB corpus in ~10 seconds instead of ~6 hours changes what's practical.
Here's what that looks like on real benchmarks (run on my development machine your numbers will vary, but the order of magnitude holds):
Training
| Dataset | Vocab | minbpe | turboBPE | Speedup |
|---|---|---|---|---|
taylorswift.txt (~182 KB) |
10K | ~782 sec | ~1.3 sec | ~600× |
| 4 MB corpus | 10K | ~22,220 sec (~6h 10m) | ~10.5 sec | ~2,100× |
The speedup grows as vocab size increases — the larger the merge table, the more turboBPE pulls ahead.
Tokenization (Encoding)
| Dataset | minbpe | turboBPE | Speedup |
|---|---|---|---|
taylorswift.txt |
~1.07 sec | ~0.085 sec | ~12× |
| 4 MB corpus | ~29 sec | ~1.8 sec | ~16× |
How does it work?
The high-level algorithm is identical to minbpe: repeatedly find the most frequent adjacent token pair across the corpus and merge it into a new token, until you hit your target vocabulary size.
The key innovation in turboBPE is batch merging, controlled by the batch_size parameter. Classical BPE performs exactly one merge per training round find the top pair, merge it everywhere, rescan, repeat. That rescan is expensive. turboBPE instead picks the top-N pairs per round (where N is batch_size) and merges all of them in a single pass, as long as they don't form a chain conflict. A chain conflict is when two pairs share a token boundary for example, merging (A, B) and (B, C) in the same pass is unsafe because the first merge consumes the B that the second merge depends on. turboBPE detects and resolves these conflicts automatically, keeping only the safe subset for each batch.
This means with batch_size=10, you're doing roughly 10× fewer full passes over the corpus, and the C-accelerated backend maintains running pair statistics incrementally so counts stay accurate across the batch without a full rescan.
Fun fact: Theoretically, batch_size can be set to anything. find_overlapping_cases + filter_top_pairs will always carve out a safe subset regardless of how many candidates you throw at it the overlap filter is the safety net, not the batch size.
get_statsis the bottleneck of BPE training. Every merge you squeeze into a single stat sweep is a sweep you don't pay for.
The encoding path uses a linked-list structure under the hood for in-place merges, avoiding the repeated list copies that make naive BPE encoding slow.
The Python-facing API is unchanged from minbpe you don't need to think about any of this to use it. But batch_size is there if you want to tune.
Installation
pip install turbobpe
Quick Start
from turbobpe import RegexTokenizer
tokenizer = RegexTokenizer()
tokenizer.train(very_long_training_string, vocab_size=32768)
tokenizer.encode("hello world") # string -> list of token ids
tokenizer.decode([1000, 2000, 3000]) # list of token ids -> string
tokenizer.save("tok32k") # writes tok32k.model and tok32k.vocab
tokenizer.load("tok32k.model") # load it back later
The .model file is what you need for loading. The .vocab file is a human-readable view of what each token looks like useful for debugging and visualization, not for loading.
Tuning batch_size
batch_size controls how many token pairs are merged per training round. The default is 10, which is a good starting point for most use cases.
tokenizer.train(very_long_training_string, vocab_size=32768, batch_size=10)
A higher batch_size means fewer training rounds and faster wall-clock time, but each batch may be doing slightly more approximate work pairs that appear in the same round aren't strictly ordered against each other the way they would be in classical single-merge BPE. In practice the resulting vocabulary is nearly identical and the tradeoff is almost always worth it. If you need the most conservative, merge-order-faithful behavior possible, set batch_size=1 to fall back to classical one-merge-per-round BPE (and accept the speed penalty).
Special Tokens
Register special tokens after training. If your vocab size is 32768, the last merge token has id 32767, so your first special token should be 32768:
from turbobpe import RegexTokenizer
tokenizer = RegexTokenizer()
tokenizer.train(very_long_training_string, vocab_size=32768)
tokenizer.register_special_tokens({"<|endoftext|>": 32768})
tokenizer.encode("<|endoftext|>hello world", allowed_special="all")
The allowed_special parameter follows tiktoken convention: "all", "none", "none_raise" (default raises if a special token appears in the text), or a custom set. This default is intentional — silently tokenizing special tokens in attacker-controlled input is a footgun.
Comparison with Other Tokenizers
vs. minbpe (Python)
minbpe is the clean, educational reference implementation this project builds on. If you want to understand BPE from scratch, read minbpe first. turboBPE is what you reach for when you actually want to train on non-trivial data. The API is nearly identical, so switching is a one-line import change. The tradeoff: turboBPE requires a compiled C extension, so pip install turbobpe needs a working C compiler at build time (or a compatible pre-built wheel).
vs. tiktoken (OpenAI)
tiktoken is OpenAI's production tokenizer, written in Rust, and it is fast encoding is very competitive. The key difference is that tiktoken does not support training. It ships with pre-trained vocabularies (GPT-2, GPT-4, etc.) and is designed for inference only. turboBPE lets you train your own tokenizer from scratch on your own data, which tiktoken simply doesn't do. If you need GPT-4 compatible tokenization and don't care about training, use tiktoken. If you're building your own model or need a custom vocab, turboBPE is the tool.
vs. Hugging Face Tokenizers
The Hugging Face tokenizers library is a production-grade, Rust-backed tokenizer with broad format support, padding, truncation, and tight integration with the transformers ecosystem. It is fast and full-featured. If you're building a production NLP pipeline on top of HuggingFace models, their tokenizer is probably the right choice it has years of engineering behind it and handles edge cases you haven't thought of yet. turboBPE is leaner and more direct: it does BPE, it does it fast, and it stays out of your way. If you want to understand what's happening, extend the code, or train a tokenizer outside the HuggingFace ecosystem, turboBPE is a much simpler entry point. The HuggingFace library is also not trivially auditable turboBPE's Python layer is a few hundred lines of clean code you can read in an afternoon.
Summary table:
| turboBPE | minbpe | tiktoken | HuggingFace | |
|---|---|---|---|---|
| Training | ✅ Fast | ✅ Slow | ❌ | ✅ Fast |
| Encoding | ✅ Fast | ⚠️ Slow | ✅ Fast | ✅ Fast |
| Custom vocab | ✅ | ✅ | ❌ | ✅ |
| Special tokens | ✅ | ✅ | ✅ | ✅ |
| Readable codebase | ✅ | ✅ | ⚠️ | ⚠️ |
| HF ecosystem | ❌ | ❌ | ❌ | ✅ |
| Requires C build | ✅ | ❌ | ❌ (Rust) | ❌ (Rust) |
Acknowledgements
This project would not exist without Andrej Karpathy's minbpe, which is the clearest exposition of BPE I've come across. The stats idea was shaped in part by the fast_minbpe. Both are worth reading.
License
MIT
Train faster, scale better. Build your own tokenizer.
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 turbobpe-0.1.1.tar.gz.
File metadata
- Download URL: turbobpe-0.1.1.tar.gz
- Upload date:
- Size: 101.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5772649068a8b2ab2f12d1462d63b0f1349b2595ed50ca4925d2e3b70070ee5f
|
|
| MD5 |
6371204b0825f1f7c62ce62a1e415b9d
|
|
| BLAKE2b-256 |
3b6d233f67c9eb75b86498ebd4e4670b43f2e38ae252ea614887a4b13a6d1728
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1.tar.gz:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1.tar.gz -
Subject digest:
5772649068a8b2ab2f12d1462d63b0f1349b2595ed50ca4925d2e3b70070ee5f - Sigstore transparency entry: 1810013216
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 128.7 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
029efe174049c8ef787252f8e34b562847a3da2b849a98d3c1a54ea51edd1a22
|
|
| MD5 |
37a48e96b83f3a29138fc34aa8482a4a
|
|
| BLAKE2b-256 |
576d19b81e1a2486b58c1c727762475573ffe9b28d827342ae9beb3f3fc1db51
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314t-win_amd64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314t-win_amd64.whl -
Subject digest:
029efe174049c8ef787252f8e34b562847a3da2b849a98d3c1a54ea51edd1a22 - Sigstore transparency entry: 1810013753
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 345.0 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4aaebbc4d903ae47a338b4523b18191c0e3b06eea5d0161caeab40e2ea6eec29
|
|
| MD5 |
c6ab257cce4901c32a18f76edc689d79
|
|
| BLAKE2b-256 |
1e7fcda62a5a7282e9aefbb0dd43f7ddd4fe7d5696940e74bf220ad61154fefd
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
4aaebbc4d903ae47a338b4523b18191c0e3b06eea5d0161caeab40e2ea6eec29 - Sigstore transparency entry: 1810013372
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 345.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fbd3caee662bfc5a11fd32d330d9319bf3a70d59e26d3b0bec5fc5b6ad996c8
|
|
| MD5 |
c16b6cf4134f63317cb425e472717335
|
|
| BLAKE2b-256 |
fa54f0dd1732e170252a2ecf0ae572e72d7d524c069d6e24dfb5b9861c4050db
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
1fbd3caee662bfc5a11fd32d330d9319bf3a70d59e26d3b0bec5fc5b6ad996c8 - Sigstore transparency entry: 1810013365
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 345.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
996a6f3b782cebfdfea0204f170ce1e623440c7391624705a086169f3d5f17d1
|
|
| MD5 |
8b4e7ceab563f0d93be25a15c5c1c318
|
|
| BLAKE2b-256 |
39dbbdc02294fe2673bdeb67404afb329503a5bb502590c4d0429f10745f6e88
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
996a6f3b782cebfdfea0204f170ce1e623440c7391624705a086169f3d5f17d1 - Sigstore transparency entry: 1810013398
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 351.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1565e347c7533d4423e6a7a56a097157b4b85855cdec0c0ad452cc081d38d78b
|
|
| MD5 |
94251121f2f9eb99376c7619b532acca
|
|
| BLAKE2b-256 |
ff0296842b98f9a3b60086b5d268a046d4800e1a208e910e4b5dc2a05e591cb6
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
1565e347c7533d4423e6a7a56a097157b4b85855cdec0c0ad452cc081d38d78b - Sigstore transparency entry: 1810013395
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314t-macosx_10_15_universal2.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314t-macosx_10_15_universal2.whl
- Upload date:
- Size: 167.2 kB
- Tags: CPython 3.14t, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
361c6f69d975482a85ce9d433bb98698491bbbc5f9ffa699ad6cdd3bec23b760
|
|
| MD5 |
37edb4daaf7a0d0d2292b0728b181047
|
|
| BLAKE2b-256 |
5a52d1610e0f0f80108aafb38b2de7aede2696ee699e5cb1762057b6c90e04b9
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314t-macosx_10_15_universal2.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314t-macosx_10_15_universal2.whl -
Subject digest:
361c6f69d975482a85ce9d433bb98698491bbbc5f9ffa699ad6cdd3bec23b760 - Sigstore transparency entry: 1810013337
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 126.3 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57faa832608f0f91b0e5c2045fb4186d0bf42396c03eb9b0fc66bfcd5479eab2
|
|
| MD5 |
13d695a34ed72aa6f1d8257798c2d13f
|
|
| BLAKE2b-256 |
05f3029614774be37e7e44dfd5b6c58fd67daf87c811f432acad4ef42d998ab0
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314-win_amd64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314-win_amd64.whl -
Subject digest:
57faa832608f0f91b0e5c2045fb4186d0bf42396c03eb9b0fc66bfcd5479eab2 - Sigstore transparency entry: 1810013422
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 314.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e99b101324744a1deb06d869b473a160586ab1dadcf9c513bd3bb4382616d781
|
|
| MD5 |
e3c18fef2e68a8dd8d611cb859fe0578
|
|
| BLAKE2b-256 |
fbf3f576c3f6e185ec0ec58cc64f9507f50d9985f23993b6fbcd61bb18fc8b49
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
e99b101324744a1deb06d869b473a160586ab1dadcf9c513bd3bb4382616d781 - Sigstore transparency entry: 1810013640
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 309.6 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5172aa6ab24a2681d15dd9fb3d9a298d197f107c4c6c5b1a7b4d8359f590e69
|
|
| MD5 |
fb8c184270e2ff8128b6781e5533a847
|
|
| BLAKE2b-256 |
fe5c0fed8f742a72266bf40b3ae89fc4ef3a9dbcdcde3d93857b923ef08f0af1
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
f5172aa6ab24a2681d15dd9fb3d9a298d197f107c4c6c5b1a7b4d8359f590e69 - Sigstore transparency entry: 1810013320
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 312.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
388add7d6186697d5c4bb131cd3c115e8a6eb84e7cab13a341fcdf3621bf329c
|
|
| MD5 |
616ecfc8088304e5b1463e7e790399d1
|
|
| BLAKE2b-256 |
d6a9be336b926e03d580fedd991f09447fc97c6ee077ae536e408918846a6d07
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
388add7d6186697d5c4bb131cd3c115e8a6eb84e7cab13a341fcdf3621bf329c - Sigstore transparency entry: 1810013417
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 309.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5996c2e5ee9ce91e6d1e8977d63a90c263f4f3aacd972f4f59d52868dc792be
|
|
| MD5 |
2ac4f9f6cb276cfd902a665a4ed6e182
|
|
| BLAKE2b-256 |
112015be79464c17fa4ed6bfa02fa892fe3c9fdd2d85caa0d81f073e8e1ba13f
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
b5996c2e5ee9ce91e6d1e8977d63a90c263f4f3aacd972f4f59d52868dc792be - Sigstore transparency entry: 1810013411
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 160.2 kB
- Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44b2c04e0be0b41d9177404db76962fbb027cf4402b87ded35e3a2e8d862276a
|
|
| MD5 |
b464b4a872f8ec03951c152ca23d6149
|
|
| BLAKE2b-256 |
d6eb340edde2303a9f9c3aec1ee077224f5811bb6cfe85a6b7a45526abfc2574
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp314-cp314-macosx_10_15_universal2.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp314-cp314-macosx_10_15_universal2.whl -
Subject digest:
44b2c04e0be0b41d9177404db76962fbb027cf4402b87ded35e3a2e8d862276a - Sigstore transparency entry: 1810013241
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 125.6 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 |
2df8a920e72f8b98b4e90a8d62efcf80de01b0bbdb4a85d275b203b0a7a4be78
|
|
| MD5 |
45f69bbfaf5997c50da1acf745e1f0e7
|
|
| BLAKE2b-256 |
19ea7215214dd12f17c00597bf0acb8558b615534c2c9a58c07a69a88f47ac5f
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp313-cp313-win_amd64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp313-cp313-win_amd64.whl -
Subject digest:
2df8a920e72f8b98b4e90a8d62efcf80de01b0bbdb4a85d275b203b0a7a4be78 - Sigstore transparency entry: 1810013392
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 314.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33d342e8bfd523aa2a0f5e1ee733b5b657e357e1c321dd6885b1b4b9d00d5181
|
|
| MD5 |
6969f8c053832be387282a02114705f7
|
|
| BLAKE2b-256 |
040e30d5363d70142ff6e9cc0c7fdca29b126c51cc16236d800b1847383f3498
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
33d342e8bfd523aa2a0f5e1ee733b5b657e357e1c321dd6885b1b4b9d00d5181 - Sigstore transparency entry: 1810013593
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 308.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88c7c40cf491ab19a01d0441849333ea52aebcd91fff6c894e16f006c703faf6
|
|
| MD5 |
b12cf2f9638b43b1b554b191ecac258b
|
|
| BLAKE2b-256 |
2c86212fb37e7cea54aebfaa1934ac8347d45177c1373972f9e41e431bf9c7cd
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
88c7c40cf491ab19a01d0441849333ea52aebcd91fff6c894e16f006c703faf6 - Sigstore transparency entry: 1810013415
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 313.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58c135dbafcf2e467cf00a663450cc7fd616ecd0cac6b62fbeb443bc115e7d5a
|
|
| MD5 |
9202a580d75e0394b8736981e3c6ecd0
|
|
| BLAKE2b-256 |
c6298f819e7c89f3f24d79b170e1ffc76a5b7c61d90b477f88085dd475a034de
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
58c135dbafcf2e467cf00a663450cc7fd616ecd0cac6b62fbeb443bc115e7d5a - Sigstore transparency entry: 1810013768
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 309.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0240de2e10fb3f487dd3b59c081a3bfe4406b258811823f3618e7f0d7e4544de
|
|
| MD5 |
3a2e27854e0ffacd5c410158892bd028
|
|
| BLAKE2b-256 |
067c1c436961e3a8a2372bc2957fd33392056d38713e42c707ea9c1a467452e3
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
0240de2e10fb3f487dd3b59c081a3bfe4406b258811823f3618e7f0d7e4544de - Sigstore transparency entry: 1810013289
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 160.0 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
976f824e15e2aff5ea54dbc652bf38055ea75a325129a1042468b16d35bf4d69
|
|
| MD5 |
f519807fd981596543d2cc0e119cf1b8
|
|
| BLAKE2b-256 |
332faac951b60b37be91914931395c7e540ad160762e8224b2d08b0cbb468b95
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp313-cp313-macosx_10_13_universal2.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp313-cp313-macosx_10_13_universal2.whl -
Subject digest:
976f824e15e2aff5ea54dbc652bf38055ea75a325129a1042468b16d35bf4d69 - Sigstore transparency entry: 1810013273
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 126.4 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 |
12a4edca005fb76b8027f1621064dae8e20f9696567e00677c47955e70531aaa
|
|
| MD5 |
d760fe9aad617cc0237a789d3adaea7f
|
|
| BLAKE2b-256 |
e99aaa524bb4ba8715f227dee701e6ee8b8ff4033d47873bfcb8dfd90f125a89
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp312-cp312-win_amd64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp312-cp312-win_amd64.whl -
Subject digest:
12a4edca005fb76b8027f1621064dae8e20f9696567e00677c47955e70531aaa - Sigstore transparency entry: 1810013307
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 318.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f6bf7fe0f3d6fb98aaa729b49b2076e6882723c8a18a4bfdf2ba76693a64b03
|
|
| MD5 |
cc255600eae47f54b209bfac54b2f185
|
|
| BLAKE2b-256 |
a92ec76c093bc012bbf53a831fc219133693c7b06e9b22e8284c5589712cb2f4
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
1f6bf7fe0f3d6fb98aaa729b49b2076e6882723c8a18a4bfdf2ba76693a64b03 - Sigstore transparency entry: 1810013348
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 313.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eff5cfbe875990c90bd093e1e454a3127dbf59f3907abf4414f764f58398e7f4
|
|
| MD5 |
7f3d48d528960001252a07a0504ecbc3
|
|
| BLAKE2b-256 |
2ec1587df545a436845f50985ce475e35141e288eec5aa04861ee8a29c306272
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
eff5cfbe875990c90bd093e1e454a3127dbf59f3907abf4414f764f58398e7f4 - Sigstore transparency entry: 1810013354
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 318.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0373389e846ca83bffd661d7b64aa176182f855f3db4f462224de43758c57608
|
|
| MD5 |
47160a22b8aa3c7a56cb64965e74866c
|
|
| BLAKE2b-256 |
0b65da6fb47450ff68d1026bbe9ea6aefbd08563892ca6f2c4209794a3810e3e
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0373389e846ca83bffd661d7b64aa176182f855f3db4f462224de43758c57608 - Sigstore transparency entry: 1810013614
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 314.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e063690f8302af33c1c6ccb350827d202e5e70ec0c22947f5e99f2eb2be7a06
|
|
| MD5 |
2eb9aa10af0a9ffbaa3939a1e1d81b4a
|
|
| BLAKE2b-256 |
532074f6513beb99f2d1c741bcbe5170f1c981363b2ae22ea6e04070f684bfff
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5e063690f8302af33c1c6ccb350827d202e5e70ec0c22947f5e99f2eb2be7a06 - Sigstore transparency entry: 1810013563
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 161.4 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2952d9f9e997bbf60a6717d596ed52f0d2b3bb89ad8cd10bac63e3328f3304f0
|
|
| MD5 |
4e71fcb00ed6e9eb8bb4cf7e598186ce
|
|
| BLAKE2b-256 |
f165d357996052579c611ebf26be139182de53f54f0e3856d77edf511a18a5f5
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp312-cp312-macosx_10_13_universal2.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp312-cp312-macosx_10_13_universal2.whl -
Subject digest:
2952d9f9e997bbf60a6717d596ed52f0d2b3bb89ad8cd10bac63e3328f3304f0 - Sigstore transparency entry: 1810013297
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 126.2 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 |
a37bd023c60809f9cdf1f97037d5beb097cfcbd6e2b0ab3866d6b742cbfa23b8
|
|
| MD5 |
6548273bdec418522159cb74350155b0
|
|
| BLAKE2b-256 |
ec942228eac51ebc05370b8d854803c2bdcfa6c7e6a5be9f595271579051f9aa
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp311-cp311-win_amd64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp311-cp311-win_amd64.whl -
Subject digest:
a37bd023c60809f9cdf1f97037d5beb097cfcbd6e2b0ab3866d6b742cbfa23b8 - Sigstore transparency entry: 1810013384
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 315.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06851ba33b311d163a4d3034fd073958218969d122ecae8530a0e87e17e54f3a
|
|
| MD5 |
da76fabbb0052fae56a1ec48b013f2a8
|
|
| BLAKE2b-256 |
d35bc77e36f764151005290d53653585d39567362038a7285e610b68ae4fe386
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
06851ba33b311d163a4d3034fd073958218969d122ecae8530a0e87e17e54f3a - Sigstore transparency entry: 1810013714
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 309.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb6cf7b6d9396fd9eefaffba835e5e0bd6d797c246ff6ae76b348699db4d7bd2
|
|
| MD5 |
b628ae266e8fe36da687a100e6220b4f
|
|
| BLAKE2b-256 |
e2f914aa6c3507e4068941c4e445d8c3d1b084085246bda26bc8bc896f428b38
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
cb6cf7b6d9396fd9eefaffba835e5e0bd6d797c246ff6ae76b348699db4d7bd2 - Sigstore transparency entry: 1810013407
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 313.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c67db6891b56f437467224179136dac966119c8640593676462da4c51a43a9c7
|
|
| MD5 |
4d2042f90cc1930c4715f0d17f56fb39
|
|
| BLAKE2b-256 |
d254150b23635463a747acd40207390cfb719ae09086d0c46912ccf799385272
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c67db6891b56f437467224179136dac966119c8640593676462da4c51a43a9c7 - Sigstore transparency entry: 1810013455
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 309.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e73967140b0d24af797a0f44d8ca4671f7ad9854c3ebf356944e45eb80bef9e
|
|
| MD5 |
d90b6b8d1c6dbb4808401209b69204e2
|
|
| BLAKE2b-256 |
3fb4f1c4617739b870f7cfc78cd4e79ed021c6fa573a566a529cebed5ed6281b
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
6e73967140b0d24af797a0f44d8ca4671f7ad9854c3ebf356944e45eb80bef9e - Sigstore transparency entry: 1810013689
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 160.4 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f55243843e4a7281ed4766e92d82a9037e4c0bc31602a6501a121149619a00a9
|
|
| MD5 |
d59c99c181c69bb760ca64c555acf6ef
|
|
| BLAKE2b-256 |
5e9dc918cb411a1b7ab3fc8a0c2152093f3ac3813974613d4853485f7ff0ada6
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp311-cp311-macosx_10_9_universal2.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp311-cp311-macosx_10_9_universal2.whl -
Subject digest:
f55243843e4a7281ed4766e92d82a9037e4c0bc31602a6501a121149619a00a9 - Sigstore transparency entry: 1810013227
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 126.3 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 |
260dcff3727c0b2f59f6a576a412c1350e35bcebf0c87ff392eccc79dd82cac8
|
|
| MD5 |
08dd6df006d6a934fc7b992b74070c1b
|
|
| BLAKE2b-256 |
aa84897607134008caa495298db7640a7a79b908e5bcb67dd4b680ff969f2f0b
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp310-cp310-win_amd64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp310-cp310-win_amd64.whl -
Subject digest:
260dcff3727c0b2f59f6a576a412c1350e35bcebf0c87ff392eccc79dd82cac8 - Sigstore transparency entry: 1810013327
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 301.3 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccc48c857f398130955a0685b614814de60723434ad8baba39e327ee14a117f4
|
|
| MD5 |
ecbc23733f4166a0d8aa17ba3ad1cadd
|
|
| BLAKE2b-256 |
01b43d75e7e93e16514fea79fa91ec5aefb1e38a804cccac3185f75b0a156b81
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
ccc48c857f398130955a0685b614814de60723434ad8baba39e327ee14a117f4 - Sigstore transparency entry: 1810013376
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 295.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
051e2a5231d47fbbe00b29e6aaa8755667ff7b9350387ebc83a610d72b0f08f5
|
|
| MD5 |
895d95315bdc70b5f088c8ea57245290
|
|
| BLAKE2b-256 |
7f0e18f60b9a24a6604ffa585dad0e8b391524becb6330959d023fb6a94cd660
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
051e2a5231d47fbbe00b29e6aaa8755667ff7b9350387ebc83a610d72b0f08f5 - Sigstore transparency entry: 1810013671
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 301.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
feb5c188f6c83339f408f7a4873a2b3dce771ee3660baaee0c4a8d79356d835a
|
|
| MD5 |
1b100d0be0635e6391432221855ae2ca
|
|
| BLAKE2b-256 |
8780e238b4ae7d2a6312cc8ffbb22e9fc353ed342c84f7efec79863c96848b15
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
feb5c188f6c83339f408f7a4873a2b3dce771ee3660baaee0c4a8d79356d835a - Sigstore transparency entry: 1810013388
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 297.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c4de35aa195752ac10ed8680a8d3ddaf36702433576ba7afb84a3abdcc60aa1
|
|
| MD5 |
06f76fa15804b104292935f2aee9b6eb
|
|
| BLAKE2b-256 |
46565254fa23e37f8901e5e60c011bd81d427bae9d662b544c88e970621a2da3
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
9c4de35aa195752ac10ed8680a8d3ddaf36702433576ba7afb84a3abdcc60aa1 - Sigstore transparency entry: 1810013402
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 160.8 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afa4d2e44d9668d0a9e58b336521befdfc18c24ec7613362915039645613a08b
|
|
| MD5 |
da560eead50b66abaaf348c384c201bd
|
|
| BLAKE2b-256 |
84a1b2aa8ff3a188957fb6036c3eccb10f71b1b088553ffe5b8270b3657a3d27
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp310-cp310-macosx_10_9_universal2.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp310-cp310-macosx_10_9_universal2.whl -
Subject digest:
afa4d2e44d9668d0a9e58b336521befdfc18c24ec7613362915039645613a08b - Sigstore transparency entry: 1810013515
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 126.4 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 |
1923b74e7a79c6f44d43ce0873771bdcb1588815c00696b2856945abf8f9920f
|
|
| MD5 |
a61a29cbc7910dbbf2fce786f7c7fbc5
|
|
| BLAKE2b-256 |
ee39ffc23979dc07130c4cdd6df2dc80702894c0781c179041916dee270989a1
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp39-cp39-win_amd64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp39-cp39-win_amd64.whl -
Subject digest:
1923b74e7a79c6f44d43ce0873771bdcb1588815c00696b2856945abf8f9920f - Sigstore transparency entry: 1810013419
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 301.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
730b98000dd4abbf25b6f27982c2d5b9d81f9e648190a6cd961e0490a63dc563
|
|
| MD5 |
be7e5e139b676fa37eb3f4af21767919
|
|
| BLAKE2b-256 |
845a952d0c57529022198dd7caeb6252ae5ec4f9f0a45fb61538e4c0336a93f3
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
730b98000dd4abbf25b6f27982c2d5b9d81f9e648190a6cd961e0490a63dc563 - Sigstore transparency entry: 1810013426
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 295.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0065a805000b6e8f568ec416472cedafea0fbc537408e7df32428ad302fed910
|
|
| MD5 |
f9b2693e68ed3c18c1d3c8de8af9fdbd
|
|
| BLAKE2b-256 |
18f093d6adf12182be654cda0578f9ded8eb2abc717e1b6f2374e067698dcc69
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
0065a805000b6e8f568ec416472cedafea0fbc537408e7df32428ad302fed910 - Sigstore transparency entry: 1810013436
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 301.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7950fc8eb8a598a2c4bf8baab313f57b31ea7b00e3efd8df49441843587acac6
|
|
| MD5 |
42f0c305b495d670107c76bc542671ad
|
|
| BLAKE2b-256 |
ceb7afaee582cf449415bea7ac75ee345020bbcec30043ca5a870787e79d2bf7
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
7950fc8eb8a598a2c4bf8baab313f57b31ea7b00e3efd8df49441843587acac6 - Sigstore transparency entry: 1810013259
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 297.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e2b5cab00853abcd4eeec0cb42d9bda0e75455b70978265dae339f5da1bd8a6
|
|
| MD5 |
b18a2ed25f87a5673a9c6184767525ae
|
|
| BLAKE2b-256 |
870abb5cd20142f85efedcc9f9a005c23a2459884eba1400cf7cfe1fa81e76bd
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
1e2b5cab00853abcd4eeec0cb42d9bda0e75455b70978265dae339f5da1bd8a6 - Sigstore transparency entry: 1810013486
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file turbobpe-0.1.1-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: turbobpe-0.1.1-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 161.1 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f3bcfdd11c66d54c9605d8bb117e7f07855379d81e48741890ec889c2c7bd91
|
|
| MD5 |
67af117295b4c1b4b947efe0cb03daa8
|
|
| BLAKE2b-256 |
f384d0449582d176188a991cb404c5d4ea6bbc1a9f9466f9967f1e7bfcd31fe4
|
Provenance
The following attestation bundles were made for turbobpe-0.1.1-cp39-cp39-macosx_10_9_universal2.whl:
Publisher:
build_wheels.yml on Amrendra-gupta/turbobpe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
turbobpe-0.1.1-cp39-cp39-macosx_10_9_universal2.whl -
Subject digest:
3f3bcfdd11c66d54c9605d8bb117e7f07855379d81e48741890ec889c2c7bd91 - Sigstore transparency entry: 1810013659
- Sigstore integration time:
-
Permalink:
Amrendra-gupta/turbobpe@ef2f752d22097d8db2f0abba9e846818706fce87 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Amrendra-gupta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@ef2f752d22097d8db2f0abba9e846818706fce87 -
Trigger Event:
workflow_dispatch
-
Statement type: