Skip to main content

Rensa

High-performance MinHash in Rust with Python bindings. On a reference full benchmark suite, Rensa is 608.52x faster than datasketch and 11.92x faster than FastSketch, with near-identical results.

What is Rensa?

Rensa (Swedish for "clean") computes MinHash signatures for similarity estimation and deduplication. If you need to find near-duplicates in large datasets, Rensa does what datasketch does, much faster.

It ships two MinHash variants:

  • R-MinHash: Rensa's own variant. Very close to datasketch output, fastest option.
  • C-MinHash: Based on the C-MinHash paper. Slightly different results, backed by formal variance proofs.

Open In Colab   Thanks mlabonne for the Colab notebook!

Performance

Numbers below come from a reference full benchmark run (benchmarks/full_benchmark.py) over 7 datasets and 2 thread lanes (threads=1,8), 128 permutations, threshold 0.8, and 8 bands.

Deduplication speed: full benchmark suite

Comparison Average speedup
Rensa vs Datasketch 608.52x faster
Rensa vs FastSketch 11.92x faster
Accuracy vs Datasketch Value
Mean Jaccard of kept sets 0.987219
Mean duplicate-flag mismatch rate 0.010717

These accuracy metrics are from the same full benchmark run as the speed numbers above.

How R-MinHash works

MinHash estimates Jaccard similarity between sets. Apply k random hash functions to a set, keep the minimum value from each. Two sets sharing many elements will produce similar minimums, and the fraction of matching slots estimates the Jaccard index.

Standard implementations generate each permutation as (a * hash(x) + b) mod p, where p is a large prime (typically the Mersenne prime 2^61 - 1). Mathematically clean, but modular reduction is still more expensive than a simple bit shift on modern CPUs.

R-MinHash replaces the modular reduction with multiply-shift hashing:

signature[i] = min { (a[i] * hash(x) + b[i]) >> 32 }  for all x in set

Instead of reducing mod a prime, take the upper 32 bits of the 64-bit multiply-add. This is a proven universal hash family (Dietzfelbinger et al., 1997). In R-MinHash, it is used as a practical approximation that keeps deduplication results very close to datasketch in benchmarks while making the hot path cheaper.

This choice has a useful side effect: since the output is naturally 32 bits, signatures are stored as u32 — 4 bytes per slot instead of 8. For 128 permutations, that's 512 bytes per signature. Half the memory, and twice as many signature slots fit in a cache line.

Performance engineering

On top of the algorithm, Rensa applies several low-level optimizations.

Input elements are hashed with a fast non-cryptographic hash that mirrors rustc_hash::FxHasher semantics while avoiding trait dispatch in the hot path. MinHash needs uniform distribution, not collision resistance, so there's no reason to pay for a cryptographic hash function.

Elements are hashed in groups of 32. Permutations are applied to each batch in chunks of 16, using a fixed-size temporary array ([u32; 16]) that is register-friendly. This gives the compiler room to optimize tight loops and keeps working data cache-local.

The (a, b) permutation pairs are deterministic, derived from a seed via Xoshiro256++. They are initialized at construction and reused across updates to avoid recomputing setup state on every incremental update. Permutation tables are shared process-wide per (num_perm, seed), so constructing or cloning many RMinHash objects with the same parameters costs O(1) in num_perm.

Token extraction reads compact ASCII str data inline (the common case for tokenized text) instead of round-tripping through PyUnicode_AsUTF8AndSize. For batch sketching over lists of ASCII/bytes tokens, worker threads read list items and string payloads directly from CPython object memory (safe because the calling thread holds the GIL and never runs Python during the build), so extraction itself is parallelized instead of bottlenecking on one producer thread; rows containing other token types fall back to the GIL thread. One-shot LSH deduplication groups rows by raw band hashes with intrusive chains (no per-bucket allocations), refines fold windows by exact hash-pair equality, and reuses the same scans' collision counts for its recall-rescue pass, with band scans fanned out across threads when a Rayon pool is available.

The global allocator is MiMalloc, which handles the batch-allocate-then-free pattern better than the system default. Rensa disables MiMalloc's eager arena commit at module load (unless overridden via MIMALLOC_ARENA_EAGER_COMMIT), which keeps peak RSS flat when many threads allocate short-lived sketch buffers.

C-MinHash

Rensa also includes C-MinHash, based on the C-MinHash paper. It uses a two-stage scheme (sigma then pi) that reduces the need for k independent permutations by deriving the k slots from a small parameter set. In this implementation, that means sigma_a/sigma_b and pi_c/pi_d, with precomputed pi terms for speed. The paper proves tighter variance bounds than standard MinHash. In practice, both variants produce similar results and R-MinHash is usually a bit faster. Use R-MinHash unless you have a specific reason not to.

Installation

uv add rensa

Works on Linux, macOS, and Windows. Python >= 3.8.

Usage

Computing similarity

from rensa import RMinHash

m1 = RMinHash(num_perm=128, seed=42)
m1.update("the quick brown fox jumps over the lazy dog".split())

m2 = RMinHash(num_perm=128, seed=42)
m2.update("the quick brown fox jumps over the lazy cat".split())

print(m1.jaccard(m2))  # ~0.78

CMinHash has the same interface. Just swap the class name.

Deduplicating a dataset

from datasets import load_dataset
from rensa import RMinHash, RMinHashLSH

dataset = load_dataset("gretelai/synthetic_text_to_sql")["train"]

# Build MinHash signatures
minhashes = {}
for idx, row in enumerate(dataset):
    m = RMinHash(num_perm=128, seed=42)
    m.update(row["sql"].split())
    minhashes[idx] = m

# Index into LSH
lsh = RMinHashLSH(threshold=0.8, num_perm=128, num_bands=16)
for doc_id, mh in minhashes.items():
    lsh.insert(doc_id, mh)

# Find and remove duplicates
to_remove = set()
for doc_id, mh in minhashes.items():
    if doc_id in to_remove:
        continue
    for candidate in lsh.query(mh):
        if candidate != doc_id and candidate not in to_remove:
            if mh.jaccard(minhashes[candidate]) >= 0.85:
                to_remove.add(max(doc_id, candidate))

print(f"Removed {len(to_remove)} duplicates from {len(dataset)} rows")

Batch APIs

For large batches, build and query in bulk to reduce Python call overhead:

from rensa import RMinHash, RMinHashLSH, RMinHashDeduplicator

token_sets = [
    "select id from users".split(),
    "select name from users".split(),
    "select id from users".split(),
]
keys = [f"doc-{idx}" for idx in range(len(token_sets))]

minhashes = RMinHash.from_token_sets(token_sets, num_perm=128, seed=42)
digests = RMinHash.digests_from_token_sets(token_sets, num_perm=128, seed=42)

lsh = RMinHashLSH(threshold=0.8, num_perm=128, num_bands=8)
lsh.insert_pairs(enumerate(minhashes))
candidates_per_doc = lsh.query_all(minhashes)

dedup = RMinHashDeduplicator(threshold=0.8, num_perm=128, use_lsh=True, num_bands=8)
added_flags = dedup.add_pairs(zip(keys, minhashes))
is_dup_flags = dedup.is_duplicate_pairs(zip(keys, minhashes))
duplicate_sets = dedup.get_duplicate_sets(minhashes)

CMinHash supports the same batch constructors, plus digests64_from_token_sets(...).

For expert throughput paths (when you already have hashed tokens or byte tokens):

from rensa import CMinHash, RMinHash

token_sets = [
    "select id from users".split(),
    "select name from users".split(),
]
token_hash_sets = RMinHash.hash_token_sets(token_sets)

r_matrix = RMinHash.digest_matrix_from_token_hash_sets(
    token_hash_sets, num_perm=128, seed=42
)
byte_matrix = RMinHash.digest_matrix_from_token_byte_sets(
    [[b"alpha", b"beta"], [b"gamma", b"delta"]],
    num_perm=128,
    seed=42,
)
c_digests64 = CMinHash.digests64_from_token_hash_sets(
    token_hash_sets, num_perm=128, seed=42
)

Streaming deduplication

For continuous data streams, use the built-in deduplicator:

from rensa import RMinHash, RMinHashDeduplicator

dedup = RMinHashDeduplicator(threshold=0.8, num_perm=128, use_lsh=True, num_bands=16)

for doc in document_stream:
    mh = RMinHash(num_perm=128, seed=42)
    mh.update(doc["text"].split())

    if not dedup.is_duplicate(doc["id"], mh):
        dedup.add(doc["id"], mh)
        # process unique document

API

RMinHash / CMinHash

Method Description
__init__(num_perm, seed) Create a MinHash with num_perm permutations
update(items) Add items (list of strings, bytes, or iterables)
jaccard(other) Estimate Jaccard similarity (requires matching num_perm)
digest() Return the signature as a list of integers
from_token_sets(...) Build many MinHash objects from token iterables
digests_from_token_sets(...) Compute many digests in one call
hash_token_sets(...) Hash token sets to reusable u64 token hashes
digest_matrix_from_token_sets(...) Build compact row-major digest matrix
digest_matrix_from_token_hash_sets(...) Build compact digest matrix from pre-hashed u64 tokens
digest_matrix_from_token_byte_sets(...) Build compact digest matrix from bytes-like tokens
digests64_from_token_sets(...) CMinHash only, returns u64-precision digests
digests64_from_token_hash_sets(...) CMinHash only, uses pre-hashed u64 tokens

RMinHashLSH

Method Description
__init__(threshold, num_perm, num_bands) Create an LSH index. num_bands must divide num_perm evenly
insert(key, minhash) Add a document to the index
query(minhash) Return candidate similar document keys
remove(key) Remove a document from the index
insert_pairs(entries) Insert many (key, minhash) pairs
insert_many(minhashes, start_key=0) Insert many minhashes with sequential keys
query_all(minhashes) Query many minhashes in one call
query_duplicate_flags(minhashes) Return len(query(minhash)) > 1 flags for many minhashes

RMinHashDeduplicator / CMinHashDeduplicator

Method Description
RMinHashDeduplicator(threshold, num_perm, use_lsh, num_bands=None, seed=42) R-MinHash streaming deduplicator
CMinHashDeduplicator(threshold, num_perm=None, seed=42) C-MinHash streaming deduplicator
add(key, minhash) -> bool Add if unique, returns whether it was added
is_duplicate(key, minhash) -> bool Check without adding
get_duplicates(minhash) -> list[str] Find keys of similar stored items
remove(key) / clear() Manage stored items
add_pairs(entries) -> list[bool] Batch add (key, minhash) or (key, token_set) pairs
is_duplicate_pairs(entries) -> list[bool] Batch duplicate checks for minhash or token-set pairs
get_duplicate_sets(minhashes) -> list[list[str]] Batch duplicate candidate lookup (minhash or token-set inputs)

Running Benchmarks

git clone https://github.com/beowolx/rensa.git && cd rensa
uv venv && uv sync --group bench --no-install-project
uv run maturin develop --release
uv run python benchmarks/simple_benchmark.py

Run the full cross-library benchmark (single-thread + multi-thread lanes):

uv run python benchmarks/full_benchmark.py

benchmarks/ now contains three scripts:

  • benchmarks/simple_benchmark.py: single-thread quick comparison across Datasketch, FastSketch, R-MinHash, and C-MinHash.
  • benchmarks/full_benchmark.py: fair per-run process-isolated benchmark (all engines per subprocess, randomized order) across Datasketch, FastSketch, and Rensa on the full dataset preset suite.
  • benchmarks/perf_memory_benchmark.py: Rensa-only time and peak-memory (VmHWM/VmRSS, Linux) benchmark on a deterministic synthetic corpus with injected duplicates, per thread lane and per phase (sketch / dedup / classic update path), with duplicate-flag precision/recall as an accuracy guardrail. Use --label to tag runs and compare JSON outputs across code changes.

simple_benchmark.py times rensa_c, but excludes it from accuracy comparisons because CMinHashDeduplicator.add_pairs uses streaming add-if-unique semantics rather than batch query-all semantics.

Contributing

Contributions welcome, just open a PR or issue.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rensa-0.4.1.tar.gz (340.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (717.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (756.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (773.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (663.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (504.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (562.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (560.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (492.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (477.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (544.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

rensa-0.4.1-cp315-cp315t-manylinux_2_28_x86_64.whl (508.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

rensa-0.4.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (538.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

rensa-0.4.1-cp315-cp315-manylinux_2_28_x86_64.whl (510.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

rensa-0.4.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (542.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

rensa-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl (721.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rensa-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl (751.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rensa-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl (766.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rensa-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl (665.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rensa-0.4.1-cp314-cp314t-manylinux_2_28_x86_64.whl (508.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

rensa-0.4.1-cp314-cp314t-manylinux_2_28_s390x.whl (566.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

rensa-0.4.1-cp314-cp314t-manylinux_2_28_ppc64le.whl (562.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

rensa-0.4.1-cp314-cp314t-manylinux_2_28_armv7l.whl (485.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

rensa-0.4.1-cp314-cp314t-manylinux_2_28_aarch64.whl (479.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

rensa-0.4.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (538.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

rensa-0.4.1-cp314-cp314-win_amd64.whl (393.6 kB view details)

Uploaded CPython 3.14Windows x86-64

rensa-0.4.1-cp314-cp314-win32.whl (373.3 kB view details)

Uploaded CPython 3.14Windows x86

rensa-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (723.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rensa-0.4.1-cp314-cp314-musllinux_1_2_i686.whl (754.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rensa-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl (769.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rensa-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (669.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rensa-0.4.1-cp314-cp314-manylinux_2_28_x86_64.whl (511.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

rensa-0.4.1-cp314-cp314-manylinux_2_28_s390x.whl (570.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

rensa-0.4.1-cp314-cp314-manylinux_2_28_ppc64le.whl (564.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

rensa-0.4.1-cp314-cp314-manylinux_2_28_armv7l.whl (488.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

rensa-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl (483.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

rensa-0.4.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (541.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

rensa-0.4.1-cp314-cp314-macosx_11_0_arm64.whl (446.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rensa-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl (480.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rensa-0.4.1-cp313-cp313-win_amd64.whl (396.3 kB view details)

Uploaded CPython 3.13Windows x86-64

rensa-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (726.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rensa-0.4.1-cp313-cp313-musllinux_1_2_i686.whl (753.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rensa-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl (769.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rensa-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (670.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rensa-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rensa-0.4.1-cp313-cp313-manylinux_2_28_s390x.whl (573.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

rensa-0.4.1-cp313-cp313-manylinux_2_28_ppc64le.whl (565.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

rensa-0.4.1-cp313-cp313-manylinux_2_28_armv7l.whl (487.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

rensa-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl (484.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rensa-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (542.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

rensa-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (445.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rensa-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl (479.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rensa-0.4.1-cp312-cp312-win_amd64.whl (395.3 kB view details)

Uploaded CPython 3.12Windows x86-64

rensa-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (724.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rensa-0.4.1-cp312-cp312-musllinux_1_2_i686.whl (753.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rensa-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl (769.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rensa-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (669.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rensa-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl (511.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rensa-0.4.1-cp312-cp312-manylinux_2_28_s390x.whl (571.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

rensa-0.4.1-cp312-cp312-manylinux_2_28_ppc64le.whl (564.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

rensa-0.4.1-cp312-cp312-manylinux_2_28_armv7l.whl (488.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

rensa-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl (483.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rensa-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (542.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

rensa-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (444.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rensa-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl (478.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rensa-0.4.1-cp311-cp311-win_amd64.whl (394.9 kB view details)

Uploaded CPython 3.11Windows x86-64

rensa-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (724.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rensa-0.4.1-cp311-cp311-musllinux_1_2_i686.whl (763.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rensa-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl (780.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rensa-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (670.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rensa-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl (511.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rensa-0.4.1-cp311-cp311-manylinux_2_28_s390x.whl (573.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

rensa-0.4.1-cp311-cp311-manylinux_2_28_ppc64le.whl (570.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

rensa-0.4.1-cp311-cp311-manylinux_2_28_armv7l.whl (499.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

rensa-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl (484.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rensa-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (552.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

rensa-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (453.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rensa-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl (478.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rensa-0.4.1-cp310-cp310-win_amd64.whl (395.1 kB view details)

Uploaded CPython 3.10Windows x86-64

rensa-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (724.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rensa-0.4.1-cp310-cp310-musllinux_1_2_i686.whl (763.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rensa-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl (781.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rensa-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (670.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rensa-0.4.1-cp310-cp310-manylinux_2_28_x86_64.whl (512.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rensa-0.4.1-cp310-cp310-manylinux_2_28_s390x.whl (573.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

rensa-0.4.1-cp310-cp310-manylinux_2_28_ppc64le.whl (570.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

rensa-0.4.1-cp310-cp310-manylinux_2_28_armv7l.whl (499.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

rensa-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl (484.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rensa-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (552.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

rensa-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (725.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rensa-0.4.1-cp39-cp39-musllinux_1_2_i686.whl (764.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rensa-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl (782.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rensa-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (671.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rensa-0.4.1-cp39-cp39-manylinux_2_28_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

rensa-0.4.1-cp39-cp39-manylinux_2_28_s390x.whl (574.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ s390x

rensa-0.4.1-cp39-cp39-manylinux_2_28_ppc64le.whl (571.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

rensa-0.4.1-cp39-cp39-manylinux_2_28_armv7l.whl (501.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

rensa-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl (485.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rensa-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (553.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

rensa-0.4.1-cp38-cp38-musllinux_1_2_x86_64.whl (725.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rensa-0.4.1-cp38-cp38-musllinux_1_2_i686.whl (764.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rensa-0.4.1-cp38-cp38-musllinux_1_2_armv7l.whl (782.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rensa-0.4.1-cp38-cp38-musllinux_1_2_aarch64.whl (671.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rensa-0.4.1-cp38-cp38-manylinux_2_28_s390x.whl (575.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ s390x

rensa-0.4.1-cp38-cp38-manylinux_2_28_ppc64le.whl (571.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ppc64le

rensa-0.4.1-cp38-cp38-manylinux_2_28_armv7l.whl (501.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

rensa-0.4.1-cp38-cp38-manylinux_2_28_aarch64.whl (486.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

File details

Details for the file rensa-0.4.1.tar.gz.

File metadata

  • Download URL: rensa-0.4.1.tar.gz
  • Upload date:
  • Size: 340.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1.tar.gz
Algorithm Hash digest
SHA256 9a5bec72f8cc89db290ab8f3027302b263f19008f8d7a50022c6c252f746bee4
MD5 a83b5fb87e28b4de29a533f8ebe4f1ce
BLAKE2b-256 dff7b754d846e4ed025b8177954a3a64467601ab7d2b176b59c00de24224f9b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1.tar.gz:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3af0506c8b1a1952a3a18d391db744466bed14292d0905210029ed42c9864c4
MD5 50a1cfd1f17e031bd6534af7eeee5961
BLAKE2b-256 a7fc47a81189622b160bdf49b4911c2df50aaa6a3dd5ca07825389a15e0cb23d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13eb5cf74d98b37eeda94a7c422be66ce06ee1e3b997cd7b611b4db19aa5befe
MD5 50674ba4398eb62dd4d5385a55b88c47
BLAKE2b-256 08f7a7a0fcd4da20ff858091afcb0e4feacd81d2cb348d1b70b0f8626510eb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8090a1457c76c1c2d393a3c6bbf7ab8217d46857b048728e4c534479078741f7
MD5 dbe46ae61aae31ef781c7522a4450f36
BLAKE2b-256 95317a757aa5f3e35ba76cc5f6b4a92f5a57bb5ca688cae6eddfb2643b8bc1d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b42f5a5c95a757d23b1d1353b4f82f6d32b5870be11e67143e630d55a9247cfc
MD5 1c99fc429cdd2295470f8f342ddc0555
BLAKE2b-256 b92281700ee2c351c98e09b3b1008eaea3dc82caeed4d38a4ebd5fcc90f13b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45317461a8800b31bec769987d11eedec70c87abb8057b6cfa64a874ddadf1ac
MD5 b31c8135ad2c24e24ea48988c79cc4be
BLAKE2b-256 4b267e384ef86c6d202791fd4afcdcffb53f464d05d0b80aa398db8f02b172e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a017881c8b4c25107596a90f845d6e023db56d837e72bd800bbb491652cb2275
MD5 ce193badc7bd26fadc266976df16caaa
BLAKE2b-256 4abc4510b6d8ae25779ac2b15b8ed5b9ebfb79ed6bb5908920bdb2306216c56e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fbd4e841cf7dde35914a839279c0d37664caef74e2c5f68cca223992dc26d387
MD5 9bd3fed5f3cefc9a5b41de9b711fa1eb
BLAKE2b-256 6fdf217b36f74fd9b055bbcd7326ca43d83b5198ccf918c580685da6d5dc8621

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 658acfb3e07bcaf9ffe9a13d90bb6645bc9aad4d6425c26be7172964f14cf01f
MD5 76e78cef9bc05d1b5a0fa91ec0b81464
BLAKE2b-256 b4ee0dd6777c30e20ad81dd6355d46c52f70019e170c0c8bf04e432fee791f57

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c39c396ec3326edb563d7295e954270af973bf34c87f8e55e8c3b73fb17399f
MD5 d82bfef998be7da92ed50d20e9f4542f
BLAKE2b-256 d84402879eea9e3372edd4317c8180ed8ba2e39b371b7f5d75a9fb1e7c844def

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60b0f2bcb1e56ec9ab1d3fb5f9aed140fcceefae8af0b3f549d800cf619ad918
MD5 321481714adb73b2c1531cfd13c1e952
BLAKE2b-256 38bd5e08a77406150ca413b3d9fa5e481738419fd176b29bbe288e28b6c8d640

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a3f2913cd29dda9fe53cf932e80920a4f7398e2dbe9058e7ad6f9905d039cb8
MD5 821cabbb1348e8fcf9b6d153b7e33439
BLAKE2b-256 5dcb84c1a1c73b3b7f826632c13eb9f32ca0ba5fb829c02c400710f6f36c7e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7ea7253551e26ad722bfbaff14836cc2a70c5edff2b254c2042ace92ecf0747
MD5 75b88ba5c3eaf630d4fe2b2910d1b122
BLAKE2b-256 02bc53cf979e2243c2c904efb31c20e4bab16b5190553bc175b2a1b9b95300bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d0c2291390ab9db86a9e87295b6a282ce7a3c2613271d523e0ef2bf1f8be944
MD5 967228d5950e56b790bdb367425d6037
BLAKE2b-256 61696de135f06c7ec8a53a48a15caa7de3d66741aded5184d6ed6ca395760469

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 343007d18e04d5ef50afe5946920e2ac6e0a2d670ecd6e7d337e3f56d141ec75
MD5 99009ff1b142ad1de9745d03291055c3
BLAKE2b-256 da26d473b3fb8288b0546c294ae4b8f627a37bcb2a7ca3ec2811f468ed556320

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d083885773648eeeb870caeead516a513f4937ea185934184b7cc59617456eab
MD5 b92ebde52914593a6d93337c8c561ff7
BLAKE2b-256 c40d6bb96ef2f6d47c9e1a065560edeb50ce8d317fff9fc1faff37d97e24476f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bddac83da22647b0756a1474921a3a09f9dac8ff179c03fddbc6ffdf10ed2bc0
MD5 125bbdbdac22c00952ed9d2fd236142e
BLAKE2b-256 9fb42edf7f9d096ebeba347b3c1ed7aac622117b9d1608bff5c166eb6f419254

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8879680ed73e2177e06d80647cc2fbd5ecd316b55da577c1c741afabac867ac0
MD5 ca6e6cccf552fa118570f3b892c6decd
BLAKE2b-256 1751158322dd830b1029234595fd74c979d70b449d08253ecd9ee94fa94eb5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b099874eeba25c823bc382a1244fec6cd99fb434f2b7ee97a698ea6b73821ded
MD5 259d2b5f6a62fcf42af38a2973646dec
BLAKE2b-256 910e2aa03850ebe8ecfdcadbeec89689951ad71eb5b160c2fc34f329bba2fbb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49b7cb968b2cb5ded7704cf34fa6927f3babf866f6c36ea91c943443a3044f4d
MD5 1590e68b0c94463a267d24f5aa7e7c4c
BLAKE2b-256 3120872ee391ff2bca590f9907b2d4733fd47efab174f2d579193fdf043742d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1da2dc162010db87a6b1ea36eb1c5699cbee41920e3611cb6456c73423e02180
MD5 612db84bbfe08e4045ea9a9c4f5dadca
BLAKE2b-256 6c4f2045266efcb4f2b870ff033c6090d55d23f3270b0f8642387f8ba6f957a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-manylinux_2_28_s390x.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d387ad29484dfbeeb4864a3b82742e04f70f18954711cfe0e2328ea984f1c6ab
MD5 9a14ea6c7f21ceef9147c59b95b26507
BLAKE2b-256 b7e058e8f3b8c7c9b7ac5023c95f623dcf008a5573fc995acc9a94a357bde528

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dd5a88e83532292e00477e1c37e16369f2946d7ab43a5085532cafc00e59c1e0
MD5 6cc22d5f1c2950bdce8c08fcf528ba5e
BLAKE2b-256 50bfc2149169b3cd1c62280e29e86549ade088833f04111d39550dd1c434c060

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99ac8fa02d9d00b576f987d610ea815af21e472f7191096a2bdf8a522290f398
MD5 3e1d397ed1bd3904c4636340516a0a49
BLAKE2b-256 0473480d97d6f4575c2b8effc37a6fec98d7739531bab52209bb09bd6cf83a2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 957b7ad2e2167a740ea4f004d7916648e5b8dcd69a09cf8e4065febfb2438999
MD5 f395f2d1d2aa4e78ba96ac55f2eb98ff
BLAKE2b-256 552adacd1079e6e5cba9cf23eff63d399f6996c75aacb4972e852142b5aa84f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rensa-0.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 393.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 802de7fe2e006620448d8cb76c7b09cd52363adc4d943c807080892ff27b47ca
MD5 91478d8cc932914a2a497073e7f4edb7
BLAKE2b-256 42c6843014c1689e891689cef57a7ccc8e5fe77b9f78cc989bed009903ca1bf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: rensa-0.4.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 373.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b9f8bfe4d98a7f9a6a2b9cf57bb19429b44fa7acd36aaf368f07d5b7b27d9a78
MD5 affee67050cde396982f5a6c0b796dd5
BLAKE2b-256 a5a68d52923bcf2af55852b3001bdc4f670348fbb0e0713d948cdf4b23793b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-win32.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb72b9fed51be44268e9fa5bed2841ed5de7032fafc2c11566a6b340f60d4498
MD5 f4527cb7df14284b1f7bd7bfede9110d
BLAKE2b-256 0b1c8ebe13ffcfdab83f19635f18278b31aecdd8bf6e02d28324c36171d24b2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ff12e5a2eb18096d2e8d9deb46f85479eedf4450f3a9dc0e6c09a4cade39442
MD5 010014c18d2b221e65fd970d7692ba53
BLAKE2b-256 426939c3df9148099a2dcc148b3a7c7115eb69dd1fa25326cbbfb45d72419585

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8347a2ff3c5cea361153815b232fa56e7ce9a3e8d8e598db528dff77a758c4b
MD5 416de4ddb1a652bfdf6b8b86d2659577
BLAKE2b-256 2eb8e9891f8e5ea3aa4100a58ee2809f554eb9471a177c0ae1e6bc514a04cc8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 988f1a89ba769d7f97f6f13b29993a0146d4e1f3360d6bb67e92475961447cf8
MD5 1f2731093cf53c1348c26d72be7366cd
BLAKE2b-256 c9a4f406d4e0db2ec949e00c87c643b175e92374d0852778c9fb883ae4226c9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53330cba1c674c4b06c841efd28832205398167d2d61d17a0c23c9ffa9f5b7e3
MD5 ebe9753b705ed324b17b289427b215b7
BLAKE2b-256 46a3bd66dad40f66a25e522f1069daf7cf4026ae21a3f174ee56f6a263d53b21

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6f20071318479cd881eb575fc0b50997fd60e42a803952eb1bc92d46dfede249
MD5 d82bb2ccedeff058f3f65f495c7b26c5
BLAKE2b-256 5c760d1ee26822823e7d75025d670e00c649301e5b8537fc35e3a0860d54caa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-manylinux_2_28_s390x.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4091f9e1ab1b7c149c5efb5998f564aa513c26b3f40db4cecd3b98d826ce741b
MD5 baad6a5f10fcc88aae7cbec50101a899
BLAKE2b-256 0eb247e14900a0f4a9e8a554fbbd703a77a7e890abe6dda85120ca96b817ef60

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 44f59f56b0fd8d34c17edd02e768e1369d326b3ff6a71c24c848ef864c3c96e4
MD5 90ce01d828dba01087155718756b1109
BLAKE2b-256 47354818a5abceec6f856273e632a05d0d7ee52b468b9b160790b720c475d7f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92c1f6071d6cc89c824e7b23148a461c5cb0970351ab2a15fe7669e1b39e523f
MD5 cb06356dc434b456f3ed6e5d2f723f23
BLAKE2b-256 57e0d2f709ebc2341bd59bb1df1f5e31ed477a5824836932fa163e7b787048f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7260d3923ed52cc69490b497a83f355f4c4b054f8ce66f027b79d05157249b78
MD5 754b37aad32067087e10bf48af277852
BLAKE2b-256 1f0a2150f82febbc709baa4098368516fbbf159bbd7899545266aacd92dc096d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b4c94f9b7303ca739ab2b196ef42e68f969e27a6948b171328b7d0ff72cd58b
MD5 b26922c75cc18b2126eb300f3da404f8
BLAKE2b-256 d03181df96645f76e9c5fba602665fe3aa6ea0c6261ed691918a9d8bd8b33976

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0794bb817e918b15dbd74d87aaa71a93eafd04fee55e1929b17a218c7ce6eefe
MD5 659d628975c12bad001c4dad8d3bef0a
BLAKE2b-256 f60fec3d7dce5602e4cebe73ee9ecc1eb56682b5de61758d5de5d5ad93b71f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rensa-0.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 396.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f5bf53cd490ba7e88b4d80cb6d4b3a03b1fe4d5111afe457e06dce5038bf965b
MD5 8520147d165e473c716373625c151ebf
BLAKE2b-256 856623a6672726123230c9df587d057fa9536b00de4b441b502bb927b520d378

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96755df451506a3fee4ff2896778afd0d2a5b46132dd1ab563695272c8a444c4
MD5 ce0afc152e423faa37100407d0618904
BLAKE2b-256 bfa4fb62db3e86f4847ce29b5ed3288c17e44f9c93d8ba822cea02de247efb5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7793faea9cd9ce1b93b68b4c601fce1ddee314a5c547bf7063f22d4758d42569
MD5 5220508f13f5df8ca9aeda16a7034c08
BLAKE2b-256 7396d6b8593c296aef8f64f2ca3c4b0ad13f1d4620b119695f6c890b96af127d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 484dbb5e8f31b523b9a1f87bb2fc2667ac6f2b6344290b54b38ac356607fbf99
MD5 268fbf363166571fd9508a78f0101ef1
BLAKE2b-256 b48e1d0a35c28f682712f849bfa8728f4057ed30954ae23bf90a53059b35f514

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4af0060018735bd85eb349a8f12f89fb3d981b2ab3f558defc658078eb2866e6
MD5 c463083a35da8960a73ff658bb36fe11
BLAKE2b-256 b6e0401d56828c35790910a885e66d14c373c0c3a9f01e78380fb258fd99bac3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b4c0f4973ededfdaa4ff86eb4e56ee1a401e41cf67b3bb8cdddbc303e911d7c
MD5 a6f13afb8c439714ad03df3c589d1b2b
BLAKE2b-256 7c2104d820389bf9e6585efd0e96045fdf3fc0cb543a4491aefa9e5dbde27785

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 049c43e2373ac3cc37d8ebf58c87458b9f7da81139e0acfeffe30a1d8fd92c39
MD5 068a701863b91743a090f304e6b6b917
BLAKE2b-256 4016908f0dfda6db1a214493b686ebb5d777f8584dc7acb1c5feb480c932f1f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-manylinux_2_28_s390x.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6e6421783c52ad94c4878f1a762d5d79a2fde94283f21301d6a6d3457a50c895
MD5 1c9d6731ca2bee1d6bb8ddf88392f7e5
BLAKE2b-256 1f8c8eb5f64ce2e2921e633ca0f668af058077a5d4660455bb92d93746f9b730

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d16704da4bfb78718da2ac7f6cc067ac27c4fd41c6fa286f876574a2514a6e80
MD5 9d0ed14f9273e5b306278930b5563fa4
BLAKE2b-256 cb3fb6a40c3d4ea079f0c99c487818e031917239f623bbf9db05606a7dfe0e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5accf1e72fb3d12e99dbeea4120ada6fa5c1819ebe5c2e83f109ed7257e1a485
MD5 de78626111102cafd87b0266e8ac139b
BLAKE2b-256 e85a3d672aa115d2bf916f77a8d353f4e607c5c3b2ee09c0ed9381e49ef9eb30

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39fee02ae1a1dd88a0f979280b6671ba25f2413b6102258d80cd2c11a7101fb7
MD5 15378faddc7cb06ae18fefd3e45d9e00
BLAKE2b-256 c2746f67b0949f0b7701706849f8e8e0669b7b74b15b1e6dc4ebacb1e72a73d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d259a6bb8ec3b0a5419aae3ba632a2a60d7bb28f48836352d9b3004120b09d7
MD5 055dc597963e6e7cf52fd68b3c6fb5b5
BLAKE2b-256 320f267b06aad2ef93c12eb637cd31216b2bb5edea282ee69454ff569dd4a118

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf47147d41de19002b531046653a5626bef9b34417d2f0150d9119abaf796259
MD5 e8d10fc8587a039a41536c7a26deb6ff
BLAKE2b-256 67332ee0bee4b890113882dcf3448c81b46b7aa494b1f5360db7a6c86d4f7408

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rensa-0.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 395.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a6fc583c9e66aa0aef21c10d16d189e045be5bf4a3510a83a9a98b8060bb6197
MD5 ed916ea1f045731cb6d48e4e31b6a4d9
BLAKE2b-256 b9d9289192c193bd2f289a51d75a394ddfd059d27f8b160fcbc9ea96dd36a84d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff936f738ac3a5b1e4b2066bc2f2745f5e377382cf3402af98a89f50019b247e
MD5 d50bbe162c9534a974f9f3137f1c768c
BLAKE2b-256 963f485ea17aea2f72493882f1a277217539b1df2192cdba05137b8139a8b9e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25cc5773c93b77ad96cf7706c1d5e20290ffff239415284f1c460f77c8866b16
MD5 a14cc36a9d4d19cd546e3a988f060e10
BLAKE2b-256 d0d2aa6d2a47b5045d4412a1525fa98a7fa382eaccdc6c7a8ad1f9b5777769d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eecd38d41bc79c0c5f108b784210192be0b0bbbf7ab503bc76ba237cd900ec22
MD5 136482a1875d786bc3026744dc9c309b
BLAKE2b-256 1239a8cbb3ab878acc58138d05c005a79927a269b1eb52a47512fd4fe679f274

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcc6fc9be95dcb359332da8068b1f30c3c72c0c4370e78ba42dbf85faa2e3896
MD5 4404b3f99ebf2ea04f8c2eb594bc7203
BLAKE2b-256 57a7593670d1d4647f6af98cdfdad7b9ecbb8fde5dbef2041772da7d4e72b004

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 217d8c24419652d8223420192dd2575fc42379eb0853935398434dec05be6bd3
MD5 681acc53ada2215d9de847f0651748df
BLAKE2b-256 1c437de5546a9dbe0e960a2d83ef360b06d4debd45d3942017d0acde218e4fcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e3caac7e87d600b4e4185c5ae9e04e83f15bac92c10a1d855d2fb50bcf39b560
MD5 8a2b10573bb8245f20631198d1a29472
BLAKE2b-256 1a2bad1c4f5d034baf53e8bdb56de896e9fd6c9122f033e9c956e8ec4356ca95

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-manylinux_2_28_s390x.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1c9a9a9a56f23492958b6369d2d51fb7b6b57bf15c867f09fe529398ff43186f
MD5 50ba006845cfcacbb21a39c52f796d82
BLAKE2b-256 4cc55af50fde281ca40ae39ce6e07ed9bcfa3f3f733b636ee652c447d386d326

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 838f36e6ed792190a43ef81fa4714cf1eb983ef3fdec4984f43710cc804633a6
MD5 6ccfc6e26cbd4bc3fc26b045f07b0716
BLAKE2b-256 52337baf40a4d70801ac3f240e9d88184128b758e7842261268c137a32487e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e79adaa691a7104e067d142b7e5328b45079395d9f8ffa5803f67298226aaaf0
MD5 0a4fc29dd25ab7c759cd2ff1a87e46e4
BLAKE2b-256 d341c709c1430664b644839eae0043b4426e2e5ae20c45bec453f9b154ed0193

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4814a432e977286951ac44675fea19fd69453f04def84d5e75af8407b660c8b3
MD5 c2a4b7c4326a5089ad0b00de35b420b5
BLAKE2b-256 b6b41a52263536704c527639a237dc69ff97e9fd6c446653f2d94d377dabae9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 752bc9dceac028aa4543a3f20f23de5f2e660f7fc2995233c948877b74b10081
MD5 2bead4fb8ed9891027efb887f0260ade
BLAKE2b-256 58dd7034221093c0e39b75dcc27a88a3a6a8774d2965f1aac4c3dc2c976ecb5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 892fa9bef63fe83d26e5c05f600770257367a4acf0713f85380f05a3624e79ea
MD5 84900b7673d0b45a9319e99e52fca902
BLAKE2b-256 a4420ccfca9edb55e505af807fe253ee105d7d84fb77ac72a37342fd73af1a7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rensa-0.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 394.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c6906a30edcadaa4360b584ef683ea9292294915fa9ab0d593446739704d7b1
MD5 75fb8102ac3baaa3decbc741916827c8
BLAKE2b-256 09930f0d4faf6b4508d47b55f6bf1d2caa1246bf32597270dff93049e54c907d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8516acbbe05ebffb462ee12c54086d766a2ca4c3b61f71a710ff0404c40b8e8
MD5 d88c1c63ba0f98741639a0ad052e05a0
BLAKE2b-256 5f08fd8515b18fdf3160386d68f55615a7e4e94dff1b63c7675c564b658e724e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 903e74adcbacf0663265b64718d120a3f7f3d98b67de4ab3a7aad7938c476ac1
MD5 045ca41c9269e54a684173e63c209416
BLAKE2b-256 b6ac9fea743f9734857e44efbc7ce3363f25c4d1df247287a93bbffcc902679b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb98e134e742e7b2434dbfd59d3c3b4eefd3b40adfb13497fd926d9c088c0375
MD5 e147f6eed815a7f188d269dc68eba876
BLAKE2b-256 7bcc941aa3480cd4f8c710b68f73fd7868b73e968a7ff55a66b8e5aa4cdcf7d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c59ff077272cf17d0b63148789deae056eed17b8d6240ab0e94495d1d9a63bdd
MD5 9422fc0cdf704b78e07623df661d777b
BLAKE2b-256 1e0dc6aa647dbf7cb452961025d92a1d7b9f196d558f85524aa6d86387ede9fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9b10f29c16cff3717f1a8804098e056132f8f34b0f18c8078bd833903f97f8f
MD5 adea2969d02ac11493107d6554a6ef70
BLAKE2b-256 24be5f184e6d04f4c81f6d76157ee5e5637fbf3a752ba8806e6eebd5f5f2f2fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e5aa6b4342c86e1c4a89019c2f05ea9bc5384d4f794b6f1269403510a171e111
MD5 42832b400b8dbabf4511c78dc0016c85
BLAKE2b-256 19340f685abd1e0f8955d94c958a518d1c14e2d7664013db758c6db8c0898b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-manylinux_2_28_s390x.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3af7280e7c228c1650e36fb16538d7596209e7bcffe754caa94cf3b8f84873a2
MD5 d4e7dd487198f0679c4e6c74cea60261
BLAKE2b-256 177107430461ed208f6e61acaa87c6dd6698367e6b8c4a769fbaaac22e724165

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7d210c0ae207941695868ea0bf4e93af6ee8ec11ead770fef791fa4ab955811b
MD5 2657007ed250e4c76502607b1b1645a3
BLAKE2b-256 9e09b8e29e206d7173de4ef73b1329a061c84d844ede927c62caf9eed80ccebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be757e50a9c51d9f4ef8c34a1f3fc7baa9291a8d6e2b034c43fc9fa3f49f90e9
MD5 58f29d45b6e4db0314846f095207f3df
BLAKE2b-256 5d1b6235e55cd32d475d7650419492bd889f104529068dcf908896780bb967c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8976a54fa9d10ae80894b40a5ecbb3156a2c08acefba4c81d2ceb64179e4c9be
MD5 a8df7fdc009dd35bc14a83921f7add49
BLAKE2b-256 3b4205808b72f1d64635d35539ae13002a69898492bf96e98a63789ad7419e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65cb59cf560152160460759e194258a8f470f177b8567df63e40a101393d058e
MD5 ca48e781dacdc5012b703bc5df833371
BLAKE2b-256 21f0f6a13a48f78d8946bd2f6e1be997cf871aa23f5cb4e4ed1733d9d3770541

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b85176d6d83037f9f7cd299ebcba9121fab500b478f025ad51b4b9b85e07f61a
MD5 7edf4b4b9842889e9ac8b81ff2c5ccc4
BLAKE2b-256 ade58da0cbdbad4acb623843fce4456642d760acaca4f04b4deb84c2c4a825dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rensa-0.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 395.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 61fb6c526c93f054cbc005698cc03f0d940a390ea6b004550a7b1868c2dc8168
MD5 e372ba0dd512113a5dbaa2a5754d3b4e
BLAKE2b-256 567f37f4a0ba9b992d88bcefda19f8d4e9a4301b3d94f7265742c2fac9034c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fbc164752b74628edbf31a7e1003f06197b6ccdd01533811764b446fe5ec900
MD5 321debb1adda73eb63ff05222d06f203
BLAKE2b-256 c658f03596689faae2f2e25bb337998d2de3af55078000c9c889e493e583316c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f91fbe234c7ea329a7821fac9454ff9d91647b9818292dc81be748a9ac79c8d
MD5 b6fa9985710493914ad6599e13ce5b1c
BLAKE2b-256 31fb1d7bc2e93c228225c949eae26867e0763a85692d2503d5ca50cc1e8e9d0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3198209adfb3cf02c5d4a844bd92711d1d014507e22aea09f96e85de316c9068
MD5 ab5380c747407fdd329ba6622df85d16
BLAKE2b-256 22aeda94caefbeefb9f765c35783b955127d65c2ce02f10af6261a33bce88cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e56bf4cb0c6890c162de9e493b988a36303d6b6e704661a5b9bf6b007a18e9a1
MD5 3799e22e6420caf50d5a8424a5891ca4
BLAKE2b-256 5dbbab8b880896101262a26fd1e970dd3a85b18d4bed3eb80c33ef1152a14449

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9339dce816552cb44398900395ee9f19bf409a9883208e5ca913723ef6fd57d
MD5 8c53c4df76f077888d82121d9f879643
BLAKE2b-256 0ce485fe392feaf5d311b74840c0401c7e2ed9c0033c93f79fa97e9634dccf03

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3500c4582dab600583563737ed98c3f39aff7cb22fd7bde56d6cddce26e295fd
MD5 81c1ff53d593fa531961398c4b1d630c
BLAKE2b-256 2240d6718a7b378a395ceb8aecdb321aa018acdbe34b05f96260ff6039bb89fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-manylinux_2_28_s390x.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7cb8c0238e3a096f6d85d8afe86bcfcc9874ff5476c4d5fd85d5f8adceaebcbe
MD5 a7e6339e6bb0fcf4d345b652f0dfec4f
BLAKE2b-256 4b3c7e12c46ec727475072eca0c2b833ef64f60cbad6daaf5f39580ca02e63e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f4c153f51884be7fdfc38ad17dad3bcd1ef5f6f925885497c7cc93f8a549e63b
MD5 14be464dc88104df4f24df7c79107ae7
BLAKE2b-256 830701ba456ce0149fd38eeda952e59ed6b55338c0a6cd98f407a6e2f882660c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7f8b677d719c37b90fca10031f063ef4c9fdf2da93a76abf5872db4b37f761f
MD5 ed9d6401fc27c2d24b8e6f04c3d4e50e
BLAKE2b-256 34094fe9b2228b04c32c89bb011a04b9917ea7f1d719d4f542fd7664d8b3167e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81e018e4fa27174bd2b309909a9d685706956ea3ece8f557de2403582e0559ff
MD5 ec3bc543da1fe6d76c8a7f7f1a9c7770
BLAKE2b-256 17db8f774c8ec3d1f26fe8771e73ab6294906ca61fee7cca097e34bd6319e339

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rensa-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 725.6 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.7

File hashes

Hashes for rensa-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 deaea83a48acebcdf9d61b903a8acfa09fd677c5dfd02080b935a0384c61a652
MD5 c490c1d577d7b9321834f642f0ea7737
BLAKE2b-256 45cc6587a719f60ee1102c6e0318fa2f36d39bf274a7e9b2514396440485f8c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rensa-0.4.1-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 764.3 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f896c912642187ef7308bb4d803f975b4668a16d6846ff480af4d70e4dbf6a9
MD5 be1d0dacfbb9d09d0a84a93ee21590b4
BLAKE2b-256 19335564acf2b352d4bcc62040ada46b7e8b6f4387061dbd226531c66d7ae891

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rensa-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 782.6 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f40ee95232aa9e92f7a6571b5fcbbd9a179e7016c22ff98242122e8a42a71849
MD5 3ab7faf8fef9a358c866a480e1c90e74
BLAKE2b-256 37f0356fe26a1aa4a5935df6a0bda39b3a585d55c8ab1be13091f94c03de2742

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34dfe6a2e401fe0f917afe9ac34203c81b5fa532ce9af111f9bf48cbea8d01c5
MD5 5b322fc62fb793abb778fe1f5d7b9ea4
BLAKE2b-256 8313aa5657deb903c4cff6b8977b9c00cbd03d1fb2ad626415820b1a7c0f23af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43c86683f6be411574053663267f533cca17c081fafc01eb84746e6dbf2e0fe4
MD5 f1b936f5a70e66516105b0e06dfb0a7a
BLAKE2b-256 f3100d9b49a75e312f4c679211b4a70abbd5f78f4c4fd6b73714101963142980

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rensa-0.4.1-cp39-cp39-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 574.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp39-cp39-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a13013c4fcc7c8054738d49dd309ec3bf4ea5faed9ad2605cafed72fd3d9b6f5
MD5 ffc200709af19109923009ec6518245f
BLAKE2b-256 d2ae1178ea26799cbbb937aa94e78f448cd34bc4c898d4f6f146ac2a9acf8e04

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-manylinux_2_28_s390x.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1c7ea2eec60c380daf56f7daf4dc31f2c2d2cc51d2e3d4846a5bd7b8dfb0c7d7
MD5 cc5ebd08049e2ca9d5ef11c5f203b2ce
BLAKE2b-256 cfec1d4baa1cf69969824462c1bc2eedd2428c3ea68be63b2e4ae73957822ee2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7ea7bd87e6e2bc88da8d608c05a6486414e60aa53d35ec783fc260e8196a5f50
MD5 5aa2c6040ef6b0aa5de70ee2631388f5
BLAKE2b-256 8059d7c2b129c4144611a0ebed47a2ee31dd81827ab67cb63e4ee5c42e76a4ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8efaa78bca08fa9d3cdee976daee91b3551d8c6555bed89755ff2409e0c1515
MD5 0ec06962cf4de555d7a728669f0aa495
BLAKE2b-256 4a326d2f8882b94029b243e6992c87a7e4aad33b8fb2709f48c33503b98c390c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5321c5919c1d17a3eb3101a0332a43b4649f9511882ce6c93da21f78deb8333
MD5 0a1cd8b9c892001eda08050bcd14689d
BLAKE2b-256 a4756d2e7cf7c6de7c5a8416db3ad7b1322df811fa67de0e0b8685c7ad75add2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rensa-0.4.1-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 725.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fda57fd3e3b140081faba194926820525687de39e49161bff98e24d27f7f2e5d
MD5 e9f4059208a2bca32192f8f9056844e8
BLAKE2b-256 bf3e43d002bd234d9d71b7b6a953e700c38f848b3441d7d6afe94bdf677ed7e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rensa-0.4.1-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 764.7 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 112feebcd0da52f74ff5d86ea2430c14b0e7439c728f2b3548832cdda9257693
MD5 be57fc02f1a4332fe3ceedada251b909
BLAKE2b-256 70be24b9282b00a70f815c0c5dfc59e45599e573cf3099c3e41804d897af9475

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: rensa-0.4.1-cp38-cp38-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 782.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12caf4608e082a10ede80584e85fb6092dcf2e06df34143cc4cb48b6574c1c9e
MD5 416751b672efe3725f955b914a4ccdf9
BLAKE2b-256 04906c7e53261aad558be1b4d5e2f94870e8e9722d2d33a403f797e0057ebebb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 845fe8662e20748289c0a751d5ac9bb930e0fc12f92d877d2c3618bc19b5343f
MD5 c235df425040f0fe5f773851daab81fd
BLAKE2b-256 ebc4b50aa63efa41fe03b46c770f65f8da89cb1543531a8259c28e089244001b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp38-cp38-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rensa-0.4.1-cp38-cp38-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 575.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rensa-0.4.1-cp38-cp38-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2f1718bc3bd38a2940b26887779c8b53c42e49390f92b7af1033f4d42ce5ad18
MD5 05b609cad8d327e1324047e890c4488a
BLAKE2b-256 07d8394b721de561bc64acd6cfc4817ee2e6e941f93105c52d40fcf21afbcaab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp38-cp38-manylinux_2_28_s390x.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp38-cp38-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp38-cp38-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 36849a2381facf2a97509158668a80e7ebf585f9ec063cafb90f934efce82e3c
MD5 024d3b3901c0718a0249a68ad7bd949c
BLAKE2b-256 c118258d3af68b5a7cd47d89f0733b30edbfba4e1bec3eefc10d977e498861be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp38-cp38-manylinux_2_28_ppc64le.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp38-cp38-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 42fd909e7079fa7da6c507aafbfc56b5a2b665facba965fb686d1443ab7dc2b2
MD5 5ff8f3d779a0c28dfe316f8189f7eb2e
BLAKE2b-256 b15b3e554b32d851f4472a49bfc7aca1a851233d3499395c9e3a52ce3041c455

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp38-cp38-manylinux_2_28_armv7l.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rensa-0.4.1-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.4.1-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cff650e3697340bf0c06fbee3ca6419eb21736e110c25d1160dd863c735e78e1
MD5 30be324bf3b41fc10423ca570f54600c
BLAKE2b-256 8b7ef55fdcc6d4911d23e680214a956cc0a673fcc016fec65282f62734dea14a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.4.1-cp38-cp38-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on beowolx/rensa

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page