riftco-transformer Python distribution
This package is the typed, runtime-dependency-free ctypes interface to
libriftco_transformer_c, plus explicit data preparation, pretraining,
post-training, experiment, artifact, generation, and local-serving modules.
A platform wheel carries both the Python modules and its native C ABI library;
users do not install the native framework separately.
Install
After a release has been published to PyPI:
python3 -m pip install riftco-transformer
python3 -c "from riftco_transformer import Context; print(Context().backend)"
riftco-transformer is the installable distribution name; Python code imports
the stable riftco_transformer package.
The wheel stores libriftco_transformer_c.so,
libriftco_transformer_c.dylib, or riftco_transformer_c.dll under
riftco_transformer/.libs. It has no third-party runtime dependencies and needs
no compiler or environment variable after installation. Initial binary wheels
cover Linux x86_64 and aarch64 for both glibc (manylinux) and musl
(musllinux), macOS x86_64 and arm64, and Windows AMD64. CPU is
available on every supported platform; the macOS wheels also include Metal.
From a source checkout, install at the repository root with:
python3 -m pip install .
That source build compiles the C++20 implementation, so it needs a supported
native compiler and platform SDK. RIFTCO_TRANSFORMER_LIBRARY remains an advanced
development override for selecting a particular local native build; released
wheels do not require it.
The Python package follows the framework release version (0.2.0 here), while
the native C ABI has its own compatibility version (2.0). The client accepts
the same ABI major and an equal or newer additive minor, and rejects older or
breaking ABIs before use.
Release automation
.github/workflows/release.yml builds and verifies the source distribution and
self-contained platform wheels. workflow_dispatch is verification-only.
Pushing a v<version> tag creates a GitHub Release after the artifacts pass.
It also publishes to PyPI only when the repository variable
PUBLISH_TO_PYPI is true.
PyPI publication uses Trusted Publishing rather than a stored API token. The
publisher configuration is project riftco-transformer, owner quangng2000,
repository riftco-transformer, workflow release.yml, and environment pypi.
The project is licensed under Apache-2.0. Do not enable publication until the
Trusted Publisher is configured.
Selectable tokenizers
Tokenizer offers interchangeable byte and byte-pair-encoding strategies:
from riftco_transformer import Tokenizer
with Tokenizer(
"Hello, café 🙂 Hello again.",
method="bpe",
vocabulary_size=272,
minimum_pair_frequency=2,
) as tokenizer:
token_ids = tokenizer.encode("café 🙂")
assert tokenizer.decode(token_ids) == "café 🙂"
print(tokenizer.method, tokenizer.vocab_size)
print(tokenizer.vocabulary)
The BPE vocabulary begins with all 256 single-byte tokens and appends learned
pair pieces, so unseen bytes remain encodable. vocabulary_size is a maximum:
learning can stop earlier when no pair reaches minimum_pair_frequency.
Repeated pair counts are resolved deterministically.
For backward compatibility, Tokenizer(corpus) selects the corpus-derived
byte method. It assigns IDs by sorted unsigned byte value:
with Tokenizer(b"cab\ncab") as tokenizer:
assert tokenizer.method == "byte"
assert tokenizer.vocabulary_bytes == b"\nabc"
Tokenizer accepts a str corpus, encoded as UTF-8, or a
bytes/bytearray/memoryview corpus. encode() and decode() are strict
UTF-8 conveniences. Use encode_bytes() and decode_bytes() for arbitrary
binary data, including embedded NUL bytes. vocabulary returns a tuple of
byte pieces for either method; vocabulary_bytes is the byte-only
compatibility property.
End-to-end training
An end-to-end BPE training step uses only public Python objects:
from riftco_transformer import (
Adam,
DecoderOnlyTransformer,
Tokenizer,
TransformerConfig,
cross_entropy,
)
corpus = "hello hello hello"
with Tokenizer(
corpus,
method="bpe",
vocabulary_size=272,
) as tokenizer:
encoded = tokenizer.encode(corpus)
tokens = [encoded[:-1]]
targets = [encoded[1:]]
config = TransformerConfig(
vocabulary_size=tokenizer.vocab_size,
maximum_context=len(tokens[0]),
model_width=16,
head_count=4,
block_count=1,
feed_forward_width=32,
)
with DecoderOnlyTransformer(
config,
attention="flash",
activation_checkpointing="block",
).to("cpu") as model:
with model.parameters() as parameters:
with Adam(parameters) as optimizer:
with cross_entropy(model(tokens), targets) as loss:
loss_value = loss.item()
loss.backward()
stats = optimizer.step()
print(loss_value, stats.gradient_norm)
Change .to("cpu") to .to("metal") on systems with the Metal backend.
Computation graphs are single-use: build a fresh forward/loss graph for each
training step. attention="flash" selects the dependency-free exact tile-8
full-sequence forward/backward implementation; omit it to keep the
"materialized" default. The Flash path saves [batch, heads, time] row
maxima and exponential sums and reconstructs probabilities during backward,
rather than saving [batch, heads, time, time] probabilities. The explicit
probability-returning diagnostic remains materialized. This selector does not
change incremental serving, and no speedup is assumed without measuring the
target workload.
activation_checkpointing="block" retains only transformer-block boundaries
and replays each block during backward. Omit it for the "disabled" default.
This reduces retained activation graph state at the cost of another block
forward calculation during backward. It composes with FlashAttention and
LoRA, but does not affect model artifacts or incremental decode.
On Metal, Flash working storage is proportional to the per-head width and
must fit the device's threadgroup-memory limit. The native runtime preflights
the complete forward/backward path before starting the forward pass. If the
device rejects a very wide head, use more heads or select
attention="materialized".
Hugging Face data and rank experiments
The riftco_transformer.data package is also dependency-free. Its default
transport uses urllib to read bounded pages from the official Hugging Face
Dataset Viewer API, while adapters convert TinyStories, Dolly 15K, and
HH-RLHF into stage-specific files. Preparation removes exact duplicates,
assigns records to deterministic content-hash splits, and writes an atomic
directory with a provenance manifest and SHA-256 file digests.
From the framework directory:
PYTHONPATH="$PWD/python" \
python3 examples/python/prepare_huggingface_data.py \
--preset dolly \
--output data/external/huggingface/dolly-lora-v1 \
--limit 2000 \
--seed lora-v1
HF_TOKEN is an optional environment variable, never a CLI argument.
Prepared downloads under data/external/ are ignored by Git. The Dolly
adapter maps instruction plus optional context into prompt, preserves
response, and retains category. TinyStories becomes plain text. HH-RLHF
remains chosen/rejected preference data and is not accepted by the current SFT
pipeline.
The riftco_transformer.experiments package compares LoRA ranks from the same
immutable base:
from riftco_transformer.artifacts import ModelBundle
from riftco_transformer.experiments import (
LoraRankExperimentConfig,
compare_lora_ranks,
load_prepared_instruction_splits,
)
base = ModelBundle.load("results/stages/tinystories_pretrained.rift")
splits = load_prepared_instruction_splits(
"data/external/huggingface/dolly-lora-v1"
)
comparison = compare_lora_ranks(
base,
splits,
LoraRankExperimentConfig(
ranks=(1, 2, 4, 8),
alpha_over_rank=2.0,
steps=20,
backend="cpu",
),
)
print(comparison.best_rank, comparison.selected_test.loss)
Every rank shares data fingerprints, seeds, sampler, optimizer controls,
LoRA targets, and alpha / rank. Validation selects the winner; held-out test
evaluation begins only after selection. The objective is still
full-sequence causal SFT, not response-only loss. All adapters are merged
before persistence, so ranks have the same serving topology and inference
timings are only smoke measurements. The CLI atomically publishes a new,
complete output directory and embeds the verified prepared-data manifest plus
its SHA-256 in comparison.json.
See
docs/DATASETS_AND_LORA_EXPERIMENTS.md in the framework repository for
license links, exact TinyStories train/validation commands, sample-size
guidance, provenance details, and the CLI rank workflow.
Staged pipeline
The high-level modules make the stage boundaries explicit:
from riftco_transformer.artifacts import ModelBundle
from riftco_transformer import LoraConfig
from riftco_transformer.post_training import (
PostTrainingConfig,
post_train_jsonl,
)
from riftco_transformer.pretraining import PretrainingConfig, pretrain_file
from riftco_transformer.serving import ServingConfig, serve_model
base = pretrain_file(
"data/pretraining/tiny_corpus.txt",
PretrainingConfig(
steps=20,
backend="cpu",
attention="flash",
activation_checkpointing="block",
),
)
base.bundle.save("results/stages/tiny_pretrained.rift")
restored = ModelBundle.load("results/stages/tiny_pretrained.rift")
assistant = post_train_jsonl(
restored,
"data/post_training/tiny_instructions.jsonl",
PostTrainingConfig(
steps=10,
backend="cpu",
attention="flash",
activation_checkpointing="block",
fine_tuning_method="lora",
lora=LoraConfig(rank=4, alpha=8.0),
),
)
assistant.bundle.save("results/stages/tiny_post_trained.rift")
serve_model(
"results/stages/tiny_post_trained.rift",
host="127.0.0.1",
port=8000,
config=ServingConfig(
backend="cpu",
kv_cache="paged",
kv_cache_block_size=16,
),
)
The HTTP adapter serves a dependency-free browser chat at / and keeps
POST /v1/generate as the stable JSON generation endpoint. Each chat message
is formatted with PlainChatFormatter as one independent single-turn SFT
prompt; the visual transcript is not added to the model context. Custom
formatter templates are not persisted in the current artifact format.
GET /health reports the selected backend, context and vocabulary sizes, and
active KV-cache strategy.
ModelBundle persists the exact byte/BPE tokenizer definition, model
configuration, named parameter shapes, float32 weights, checksums, stage
metadata, and parent artifact ID. It is an immutable inference or warm-start
artifact, not a resumable training checkpoint: Adam moments, optimizer step,
data position, and random-generator state are deliberately not included yet.
LoRA post-training optimizes only adapter factors, then merges them before
capturing this ordinary serving-ready bundle. Full-parameter post-training
remains the default; adapter-only persistence is not part of ModelBundle.
The first post-training objective is explicitly
full_sequence_causal_sft: it applies causal cross-entropy to the complete
formatted prompt/response sequence. Response-only loss masking is a future
extension.
Incremental generation
Native models use the current ABI 2.0 DecodeSession surface instead of
rerunning the full-sequence training forward for every generated token.
TextGenerator creates a request-local session, prefills the
prompt one token at a time, and then performs one-token decode:
from riftco_transformer.artifacts import ModelBundle
from riftco_transformer.serving import TextGenerator
bundle = ModelBundle.load("results/stages/tiny_post_trained.rift")
with bundle.instantiate("cpu") as runtime:
result = TextGenerator(
runtime.model,
runtime.tokenizer,
kv_cache="paged",
kv_cache_block_size=16,
).generate("Tensor:", max_new_tokens=32)
print(result.text)
Paged caching is the default; use kv_cache="contiguous" for the reference
strategy. Both run direct CPU or Metal paged decode attention. When the learned
absolute-position context fills, TextGenerator resets the cache and replays
the retained suffix from position zero. A raw session exposes the lower-level
step/reset contract:
with bundle.instantiate("cpu") as runtime:
with runtime.model.decode_session(
cache="paged",
block_size=16,
) as session:
for token in runtime.tokenizer.encode("Tensor:"):
logits = session.step(token)
The raw session does not tokenize, sample, or implement rollover. Paged
storage also does not yet imply continuous batching, a request scheduler, or
prefix sharing. Full-sequence attention="flash" does not alter this path:
serving prefill is still token-at-a-time and decode remains paged.
See docs/PIPELINE.md, docs/SERVING.md, docs/TOKENIZATION.md, and
docs/BACKENDS_AND_PYTHON.md in the framework repository for the complete
workflow, lifecycle, backend, and error-handling contracts.
Package layout
The physical package mirrors the runtime boundaries:
riftco_transformer/
├── native/ # stable C ABI bindings
├── artifacts/ # ModelBundle persistence
├── data/ # external dataset adapters and preparation
├── experiments/ # controlled LoRA-rank comparisons
├── training/ # shared batches, metrics, and trainer
├── pretraining/ # next-token pretraining stage
├── post_training/ # supervised continuation stage
└── serving/ # generation, model service, and HTTP
The package root re-exports the public low-level API. The breaking rename
installs only riftco_transformer; no legacy package-name alias is provided.
License
Copyright 2026 Quang T Nguyen. Licensed under the Apache License 2.0. The full license text is included in the source distribution and every wheel.
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 riftco_transformer-0.2.0.tar.gz.
File metadata
- Download URL: riftco_transformer-0.2.0.tar.gz
- Upload date:
- Size: 455.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd6e964098ba637320c8a6a6a4d42d5dcd60ecf1b8460fc79d047fb4cd7fb453
|
|
| MD5 |
b73b86bd12bc7a58d138d9f95debcd80
|
|
| BLAKE2b-256 |
aec5aa20cf4b209cabef6dd1e598b09a7f5c4a13ca0836a97f07777379123509
|
Provenance
The following attestation bundles were made for riftco_transformer-0.2.0.tar.gz:
Publisher:
release.yml on quangng2000/riftco-transformer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
riftco_transformer-0.2.0.tar.gz -
Subject digest:
cd6e964098ba637320c8a6a6a4d42d5dcd60ecf1b8460fc79d047fb4cd7fb453 - Sigstore transparency entry: 2306865788
- Sigstore integration time:
-
Permalink:
quangng2000/riftco-transformer@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/quangng2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Trigger Event:
push
-
Statement type:
File details
Details for the file riftco_transformer-0.2.0-py3-none-win_amd64.whl.
File metadata
- Download URL: riftco_transformer-0.2.0-py3-none-win_amd64.whl
- Upload date:
- Size: 249.0 kB
- Tags: Python 3, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b935690500fede29e419e343ee528ee2c355a5cff4ddc33eaeb93dbdb8fc824
|
|
| MD5 |
2d041361a5d3cebb78eee73e1c24bd94
|
|
| BLAKE2b-256 |
d30f998e69f2b56b189d5d137ec4cafea43afc045586b8f74aa27c2e136dfa8e
|
Provenance
The following attestation bundles were made for riftco_transformer-0.2.0-py3-none-win_amd64.whl:
Publisher:
release.yml on quangng2000/riftco-transformer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
riftco_transformer-0.2.0-py3-none-win_amd64.whl -
Subject digest:
0b935690500fede29e419e343ee528ee2c355a5cff4ddc33eaeb93dbdb8fc824 - Sigstore transparency entry: 2306865956
- Sigstore integration time:
-
Permalink:
quangng2000/riftco-transformer@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/quangng2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Trigger Event:
push
-
Statement type:
File details
Details for the file riftco_transformer-0.2.0-py3-none-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: riftco_transformer-0.2.0-py3-none-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 3, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
090ca8aadb6bd16c022156015d4ef13a1e851402baae098308eb64377343a782
|
|
| MD5 |
2e6135dab31f6264331fdd46821aee2b
|
|
| BLAKE2b-256 |
157c29f31de3251298c164244903bfaf39aad12352cefc00d19cfe67681ad1eb
|
Provenance
The following attestation bundles were made for riftco_transformer-0.2.0-py3-none-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on quangng2000/riftco-transformer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
riftco_transformer-0.2.0-py3-none-musllinux_1_2_x86_64.whl -
Subject digest:
090ca8aadb6bd16c022156015d4ef13a1e851402baae098308eb64377343a782 - Sigstore transparency entry: 2306865990
- Sigstore integration time:
-
Permalink:
quangng2000/riftco-transformer@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/quangng2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Trigger Event:
push
-
Statement type:
File details
Details for the file riftco_transformer-0.2.0-py3-none-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: riftco_transformer-0.2.0-py3-none-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cfb31235ff7b173a992eb8402f5dd1b1efab066503a764721a07548037d48c0
|
|
| MD5 |
42c525ab1634ec27bdbca0b63318a74c
|
|
| BLAKE2b-256 |
e892938cdaabff010444098773b6b26466f585977a010253c7425d663702e6cc
|
Provenance
The following attestation bundles were made for riftco_transformer-0.2.0-py3-none-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on quangng2000/riftco-transformer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
riftco_transformer-0.2.0-py3-none-musllinux_1_2_aarch64.whl -
Subject digest:
3cfb31235ff7b173a992eb8402f5dd1b1efab066503a764721a07548037d48c0 - Sigstore transparency entry: 2306865902
- Sigstore integration time:
-
Permalink:
quangng2000/riftco-transformer@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/quangng2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Trigger Event:
push
-
Statement type:
File details
Details for the file riftco_transformer-0.2.0-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: riftco_transformer-0.2.0-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 423.6 kB
- Tags: Python 3, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4fae53e1fe1fa4032afe219300b9de68ac1f895c56eb44be237146caf2a5e28
|
|
| MD5 |
9e4d525eeb45cad7910da5631403fee7
|
|
| BLAKE2b-256 |
aea759899b3c4f24ed5e8905cc6958f995ac3116b7786263179a4295c8809731
|
Provenance
The following attestation bundles were made for riftco_transformer-0.2.0-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on quangng2000/riftco-transformer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
riftco_transformer-0.2.0-py3-none-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
e4fae53e1fe1fa4032afe219300b9de68ac1f895c56eb44be237146caf2a5e28 - Sigstore transparency entry: 2306865974
- Sigstore integration time:
-
Permalink:
quangng2000/riftco-transformer@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/quangng2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Trigger Event:
push
-
Statement type:
File details
Details for the file riftco_transformer-0.2.0-py3-none-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: riftco_transformer-0.2.0-py3-none-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 378.4 kB
- Tags: Python 3, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ea965223e9347427b7d45a42e223760ef528f43783fded6d119d6aaa0874ff9
|
|
| MD5 |
55d42e63a911d805b70e188ba922e8bc
|
|
| BLAKE2b-256 |
5d3b3588bbeebbadc6119a2e080aa5bb7780ef432618c396e3918d1479b32229
|
Provenance
The following attestation bundles were made for riftco_transformer-0.2.0-py3-none-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on quangng2000/riftco-transformer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
riftco_transformer-0.2.0-py3-none-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
2ea965223e9347427b7d45a42e223760ef528f43783fded6d119d6aaa0874ff9 - Sigstore transparency entry: 2306865931
- Sigstore integration time:
-
Permalink:
quangng2000/riftco-transformer@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/quangng2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Trigger Event:
push
-
Statement type:
File details
Details for the file riftco_transformer-0.2.0-py3-none-macosx_13_0_x86_64.whl.
File metadata
- Download URL: riftco_transformer-0.2.0-py3-none-macosx_13_0_x86_64.whl
- Upload date:
- Size: 329.4 kB
- Tags: Python 3, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0d09e6ddd18769338a90ddeaea1fe500a6fdb6e799eacf55a91ce4c4a37acbc
|
|
| MD5 |
75665ab7d9cc55243232c8344d48b492
|
|
| BLAKE2b-256 |
26fc0a80970ed9bf05c9b2b72d2f87b333bdcf821e4325c4212bc6da779b7643
|
Provenance
The following attestation bundles were made for riftco_transformer-0.2.0-py3-none-macosx_13_0_x86_64.whl:
Publisher:
release.yml on quangng2000/riftco-transformer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
riftco_transformer-0.2.0-py3-none-macosx_13_0_x86_64.whl -
Subject digest:
c0d09e6ddd18769338a90ddeaea1fe500a6fdb6e799eacf55a91ce4c4a37acbc - Sigstore transparency entry: 2306865833
- Sigstore integration time:
-
Permalink:
quangng2000/riftco-transformer@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/quangng2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Trigger Event:
push
-
Statement type:
File details
Details for the file riftco_transformer-0.2.0-py3-none-macosx_13_0_arm64.whl.
File metadata
- Download URL: riftco_transformer-0.2.0-py3-none-macosx_13_0_arm64.whl
- Upload date:
- Size: 309.1 kB
- Tags: Python 3, macOS 13.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d6cfc245eb917437a71b7d3cc4a237ceeeb8eb72e74023693f8f8e536937cd9
|
|
| MD5 |
ff43d581bdd966ac514f9ffccdb339d0
|
|
| BLAKE2b-256 |
cf9958c4d9cd0a6840e99160fec6cf3a2dd7ff3bec9306f7e8ddce899b014c84
|
Provenance
The following attestation bundles were made for riftco_transformer-0.2.0-py3-none-macosx_13_0_arm64.whl:
Publisher:
release.yml on quangng2000/riftco-transformer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
riftco_transformer-0.2.0-py3-none-macosx_13_0_arm64.whl -
Subject digest:
4d6cfc245eb917437a71b7d3cc4a237ceeeb8eb72e74023693f8f8e536937cd9 - Sigstore transparency entry: 2306865870
- Sigstore integration time:
-
Permalink:
quangng2000/riftco-transformer@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/quangng2000
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9f3dbbe78c15fb16c86c849fbeb261ca73e63dbd -
Trigger Event:
push
-
Statement type: