Skip to main content

High-performance MinHash implementation in Rust with Python bindings - 40x faster than datasketch

Project description

Rensa: A novel high-performance MinHash Implementation in Rust

Introduction

Rensa (Swedish for "clean") is a high-performance MinHash suite written in Rust with Python bindings. It's designed for efficient similarity estimation and deduplication of large datasets. It's 40x faster than datasketch for MinHash operations while producing the same results and consuming less memory.

Graph with benchmark results that demonstrate that Rensa is 40x faster

Rensa initially implemented a variant of the MinHash algorithm (R-MinHash) that combined ideas from traditional MinHash and the C-MinHash algorithm. It now also offers a more direct C-MinHash implementation.

Rensa is particularly useful in scenarios where you need to:

  • Quickly estimate the similarity between large sets of data
  • Deduplicate large datasets
  • Perform locality-sensitive hashing (LSH) for approximate nearest neighbor search

Use cases include:

  • Content deduplication in large document collections
  • Identifying similar items in recommendation systems
  • Clustering of high-dimensional data
  • Near-duplicate detection in web crawling

Quick Start with Google Colab

Want to try Rensa right away? Check out our interactive Google Colab notebook that demonstrates how to use Rensa to deduplicate a dataset from Hugging Face:

Open In Colab

Thanks mlabonne for the Colab notebook!

Table of Contents

Technical Implementation

Rensa offers two high-performance MinHash variants in Rust: R-MinHash (its original novel approach) and C-MinHash (an implementation closely following the C-MinHash paper). Both are designed for efficient similarity estimation and leverage common strategies for speed and memory efficiency:

  • Fast Hash Functions: Rensa employs fast, non-cryptographic hash functions (based on FxHash or Murmur3) for processing input items.
  • Memory-Efficient Data Structures: Implementations use compact data structures to minimize memory usage while maintaining fast access times.
  • Optimized Routines: Core operations are optimized using techniques like batch processing and vectorized operations where appropriate.

R-MinHash (Original Rensa Variant)

This variant was Rensa's initial novel approach. Key aspects of Rensa's RMinHash implementation include:

  1. Efficient Permutation Generation: Instead of storing full permutations or using k independent hash functions, Rensa's RMinHash uses a unique pair of random numbers (a, b) for each of the num_perm permutations. These are used to generate hash values on-the-fly for each item.

  2. Simplified Approach: While inspired by ideas related to C-MinHash, RMinHash is a distinct, simpler approach.

    • It does not apply an initial global permutation (σ) to the input data's hash in the same way as described in the C-MinHash paper for its primary permutation step.
    • It uses num_perm distinct pairs of random numbers (a, b) to simulate num_perm independent hash functions, rather than deriving them from a smaller set of parameters in a circulant manner.
  3. Trade-off: RMinHash's approach trades some of the potential variance reduction benefits of more complex MinHash schemes (like full C-MinHash) for simplicity and good performance. It still offers better performance than traditional MinHash in many scenarios.

Rensa's Locality-Sensitive Hashing (LSH) implementation, RMinHashLSH, currently utilizes the RMinHash variant for its index.

C-MinHash (Based on the C-MinHash Paper)

Rensa also includes CMinHash, an implementation more directly aligned with the principles of the C-MinHash algorithm from the paper "C-MinHash: Rigorously Reducing K Permutations to Two". Key aspects of this implementation are:

  1. Two-Stage Hashing: It utilizes two sets of universal hash function parameters for its permutation scheme:
    • An initial hash transformation (σ) is applied to the hash of each input item using parameters sigma_a and sigma_b.
    • A second pair of parameters, pi_c and pi_d, are used in combination with the σ-transformed item hash to generate the num_perm values in the MinHash signature. Specifically, for the k-th hash slot (where k is from 0 to num_perm-1), the value is derived from (pi_c * sigma_transformed_hash + (pi_c * k + pi_d)). The (pi_c * k + pi_d) terms are precomputed for each k to enhance efficiency.
  2. Highly Optimized Routines: The update and jaccard methods in CMinHash are heavily optimized. This includes batch processing of input items, structuring calculations to improve cache utilization, and using vectorized operations (e.g., processing data in fixed-size chunks like blocks of 16 or 8) for faster computations.
  3. Performance Focus: This implementation is specifically engineered for maximum single-threaded performance through these aggressive optimizations and careful memory access patterns.

These design choices result in a suite of MinHash implementations that are fast, memory-efficient, and suitable for large-scale similarity estimation and deduplication tasks. Benchmarks show that Rensa's implementations offer significant performance improvements over traditional MinHash libraries like datasketch.

Installation

You can install Rensa using pip. It's available in all platforms:

pip install rensa

Input Validation and Errors

Rensa validates constructor and API invariants up front and raises ValueError for invalid inputs (instead of aborting the Python process).

Key constraints:

  • RMinHash(num_perm=...) and CMinHash(num_perm=...): num_perm must be greater than 0.
  • RMinHashLSH(threshold, num_perm, num_bands):
    • threshold must be finite and in [0.0, 1.0].
    • num_perm must be greater than 0.
    • num_bands must be greater than 0.
    • num_bands <= num_perm.
    • num_perm % num_bands == 0.
  • jaccard comparisons require matching num_perm on both signatures.

Usage Example

Deduplicating with Direct MinHash

Here's an example of how to use Rensa's MinHash implementations (e.g., RMinHash, CMinHash) for direct deduplication:

from datasets import load_dataset
from rensa import RMinHash, CMinHash
from tqdm import tqdm

# Define a function to generate MinHash (works for RMinHash, CMinHash)
def generate_minhash_signature(text, minhash_class, num_perm=128, seed=42):
    m = minhash_class(num_perm=num_perm, seed=seed)
    m.update(text.split())
    return m

def deduplicate_dataset_direct(dataset, text_column="sql", minhash_class=RMinHash, num_perm=128, desc="Deduplicating"):
    unique_hashes = set()
    deduplicated_indices = []
   
    for idx, example in tqdm(enumerate(dataset), total=len(dataset), desc=desc):
        minhash_obj = generate_minhash_signature(example[text_column], minhash_class, num_perm)
        hash_tuple = tuple(minhash_obj.digest())
       
        if hash_tuple not in unique_hashes:
            unique_hashes.add(hash_tuple)
            deduplicated_indices.append(idx)
           
    return deduplicated_indices

def main_direct_deduplication():
    print("Loading dataset...")
    sql_dataset_dict = load_dataset("gretelai/synthetic_text_to_sql")
    sql_dataset = sql_dataset_dict["train"]
   
    print("Deduplicating dataset with R-MinHash...")
    deduplicated_indices_r = deduplicate_dataset_direct(
        sql_dataset,
        text_column="sql",
        minhash_class=RMinHash,
        desc="R-MinHash Deduplication"
    )
    deduplicated_dataset_r = sql_dataset.select(deduplicated_indices_r)
   
    print(f"Original dataset size: {len(sql_dataset)}")
    print(f"Deduplicated dataset size (R-MinHash): {len(deduplicated_dataset_r)}")
    print(f"Rows removed (R-MinHash): {len(sql_dataset) - len(deduplicated_dataset_r)}")

    # Example with C-MinHash
    # print("Deduplicating dataset with C-MinHash...")
    # deduplicated_indices_c = deduplicate_dataset_direct(
    #     sql_dataset,
    #     text_column="sql",
    #     minhash_class=CMinHash,
    #     desc="C-MinHash Deduplication"
    # )
    # deduplicated_dataset_c = sql_dataset.select(deduplicated_indices_c)
    # print(f"Deduplicated dataset size (C-MinHash): {len(deduplicated_dataset_c)}")

if __name__ == "__main__":
    main_direct_deduplication()

Using C-MinHash for Similarity

Here's a more direct example of using CMinHash for calculating Jaccard similarity:

from rensa import CMinHash

# Example texts
text1 = "This is an example sentence for CMinHash."
text2 = "This is another example sentence, slightly different from the first."

# Initialize CMinHash objects
num_permutations = 256
seed = 12345
c_minhash1 = CMinHash(num_perm=num_permutations, seed=seed)
c_minhash2 = CMinHash(num_perm=num_permutations, seed=seed)

# Update with words from each text
c_minhash1.update(text1.split())
c_minhash2.update(text2.split())

# Calculate Jaccard similarity
similarity = c_minhash1.jaccard(c_minhash2)
print(f"Estimated Jaccard similarity (CMinHash, {num_permutations} perm): {similarity:.4f}")

# Get signatures
signature1 = c_minhash1.digest()
# print(f"C-MinHash signature 1: {signature1}")

Deduplicating with RMinHashLSH

Here's an example of how to use RMinHashLSH for deduplicating a dataset. This approach is more efficient for larger datasets. Key LSH parameters are set to example values within the function.

from datasets import load_dataset
from rensa import RMinHash, RMinHashLSH
from tqdm import tqdm

def deduplicate_dataset_with_lsh_simple(dataset, text_column="sql"):
    num_perm = 128
    seed = 42
    lsh_threshold = 0.8
    num_bands = 16 
    final_jaccard_threshold = 0.85

    if num_perm % num_bands != 0:
        raise ValueError(f"num_bands ({num_bands}) must divide num_perm ({num_perm}).")

    minhashes = {} 
   
    for idx, example in tqdm(enumerate(dataset), total=len(dataset), desc="1. Generating RMinHashes"):
        text_content = str(example[text_column])
        tokens = text_content.split()
        m = RMinHash(num_perm=num_perm, seed=seed)
        m.update(tokens)
        minhashes[idx] = m

    lsh_index = RMinHashLSH(threshold=lsh_threshold, num_perm=num_perm, num_bands=num_bands)
    for doc_id, rminhash_obj in tqdm(minhashes.items(), desc="2. Indexing into LSH"):
        lsh_index.insert(doc_id, rminhash_obj)

    to_remove = set()
    sorted_doc_ids = sorted(minhashes.keys())

    for doc_id in tqdm(sorted_doc_ids, desc="3. Querying LSH & Deduplicating"):
        if doc_id in to_remove:
            continue

        query_minhash = minhashes[doc_id]
        candidate_ids = lsh_index.query(query_minhash)

        for candidate_id in candidate_ids:
            if candidate_id == doc_id or candidate_id in to_remove:
                continue
            
            candidate_minhash = minhashes[candidate_id]
            actual_jaccard = query_minhash.jaccard(candidate_minhash)

            if actual_jaccard >= final_jaccard_threshold:
                # Keep the item with the smaller original index
                if doc_id < candidate_id:
                    to_remove.add(candidate_id)
                else:
                    to_remove.add(doc_id)
                    break 
   
    deduplicated_indices = [idx for idx in sorted_doc_ids if idx not in to_remove]
    return deduplicated_indices

def main_lsh_deduplication_simple():
    print("Loading dataset...")
    try:
        sql_dataset_dict = load_dataset("gretelai/synthetic_text_to_sql")
        sql_dataset = sql_dataset_dict["train"]
    except Exception as e:
        print(f"Failed to load dataset: {e}. Ensure 'datasets' is installed or use a local dataset.")
        return

    print("Deduplicating dataset with RMinHashLSH...")
   
    deduplicated_indices_lsh = deduplicate_dataset_with_lsh_simple(
        sql_dataset,
        text_column="sql"
    )
    deduplicated_dataset_lsh = sql_dataset.select(deduplicated_indices_lsh)

    print(f"Original dataset size (train split): {len(sql_dataset)}")
    print(f"Deduplicated dataset size (RMinHashLSH): {len(deduplicated_dataset_lsh)}")
    print(f"Rows removed (RMinHashLSH): {len(sql_dataset) - len(deduplicated_dataset_lsh)}")

if __name__ == "__main__":
    main_lsh_deduplication_simple()

Inline Deduplication for Streaming Data

Rensa now supports inline deduplication, perfect for scenarios where you receive continuous streams of data and need to check each new record against existing ones in real-time.

from rensa import RMinHash, RMinHashDeduplicator


def inline_deduplication_example():
    # Initialize the deduplicator with similarity threshold
    # Adjust LSH parameters for the threshold
    deduplicator = RMinHashDeduplicator(
        threshold=0.7,  # Jaccard similarity threshold
        num_perm=128,  # Number of permutations
        use_lsh=True,  # Use LSH for efficiency
        num_bands=32,  # More bands = more sensitive to lower similarities
    )

    # Simulate streaming data with varying similarities
    document_stream = [
        {"id": "001", "text": "The quick brown fox jumps over the lazy dog"},
        {
            "id": "002",
            "text": "The quick brown fox jumps over the lazy dog today",
        },  # Very similar
        {
            "id": "003",
            "text": "A fast brown fox leaps over a sleepy dog",
        },  # Somewhat similar
        {"id": "004", "text": "Lorem ipsum dolor sit amet consectetur"},
        {
            "id": "005",
            "text": "The quick brown fox jumps over the lazy dog",
        },  # Exact duplicate
        {
            "id": "006",
            "text": "Quick brown foxes jump over lazy dogs",
        },  # Similar paraphrase
        {"id": "007", "text": "Completely different content here"},
    ]

    # Process each document as it arrives
    for doc in document_stream:
        # Create MinHash for the new document
        minhash = RMinHash(num_perm=128, seed=42)
        minhash.update(doc["text"].split())

        # Check if it's a duplicate
        if deduplicator.is_duplicate(doc["id"], minhash):
            # Find which documents it duplicates
            duplicates = deduplicator.get_duplicates(minhash)
            print(f"Document {doc['id']} is a duplicate of: {duplicates}")
        else:
            # Add to the deduplicator if unique
            if deduplicator.add(doc["id"], minhash):
                print(f"Document {doc['id']} added (unique)")

    print(f"\nTotal unique documents: {deduplicator.len()}")


if __name__ == "__main__":
    inline_deduplication_example()

Inline Deduplication API

All deduplicators (RMinHashDeduplicator, CMinHashDeduplicator) support the following methods:

  • add(key: str, minhash) -> bool: Add a new item if it's not a duplicate. Returns True if added.
  • is_duplicate(key: str, minhash) -> bool: Check if an item is a duplicate without adding it.
  • get_duplicates(minhash) -> List[str]: Get list of keys that are duplicates of the given MinHash.
  • remove(key: str) -> bool: Remove an item from the deduplicator.
  • len() -> int: Get the number of unique items stored.
  • clear(): Remove all items from the deduplicator.

Performance Tips for Inline Deduplication:

  1. Use LSH for large datasets: When dealing with thousands of documents, enable LSH (use_lsh=True) for RMinHashDeduplicator.
  2. Adjust threshold: Lower thresholds catch more duplicates but may have false positives.
  3. Batch when possible: If you receive data in small batches, process them together for better performance.
  4. Memory management: For very large datasets, consider implementing a sliding window or periodic cleanup of old entries.

Algorithm Comparison: R-MinHash vs. C-MinHash vs. Datasketch

Rensa offers two MinHash implementations (RMinHash, CMinHash), each with different trade-offs compared to each other and the popular datasketch library.

Based on the latest advanced_benchmark.py results (averaged over 5 runs on the gretelai/synthetic_text_to_sql dataset, 100,000 rows, in a Macbook Pro M2 32GB):

  • Speed (at 256 permutations):

    • CMinHash is consistently the fastest. Average execution time: 5.47 seconds.
    • RMinHash is also very fast. Average execution time: 5.58 seconds.
    • datasketch is considerably slower. Average execution time: 92.45 seconds. This makes CMinHash up to approximately 16.90x faster than datasketch and RMinHash up to approximately 16.57x faster (all at 256 permutations).
  • Accuracy (Jaccard Similarity of Deduplicated Sets vs. Datasketch, 128 permutations):

    • RMinHash produces deduplication results identical to datasketch (Jaccard similarity of 1.0000 between their output sets of unique items, with 99262 common items).
    • CMinHash also yields results very close to datasketch. The Jaccard similarity is 0.9996 (with 99223 common items with Datasketch). This indicates that while both Rensa variants are highly effective for similarity estimation, RMinHash perfectly matches datasketch's deduplication output in this benchmark and CMinHash produces extremely similar results.
  • Recommendation:

    • For most use cases, RMinHash provides an excellent balance of high speed (up to ~16.6x faster than datasketch) and accuracy (matching datasketch's deduplication results). It remains the generally recommended algorithm.
    • If absolute maximum throughput is the primary concern, CMinHash offers the best performance (up to ~16.9x faster than datasketch), with a negligible difference in exact deduplication results compared to datasketch/RMinHash.
    • If you require features beyond core MinHash generation or need to integrate with an existing datasketch ecosystem, datasketch remains a comprehensive option, albeit slower for MinHash operations.

Benchmark Results

Rensa offers significant performance advantages over traditional MinHash libraries like datasketch. Recent benchmarks demonstrate that Rensa's MinHash implementations are particularly powerful on large-scale, high-cardinality datasets.

Large-Scale Benchmark (Salesforce/wikitext, 1.8 Million Rows)

The following benchmark was conducted using the large-scale Salesforce/wikitext dataset containing 1.8 million rows. This benchmark highlights Rensa's remarkable performance advantage:

  • R-MinHash completed deduplication ~39x faster than datasketch.
  • C-MinHash performance was similarly impressive.

Performance comparison:

Algorithm Execution Time (s) Speedup vs Datasketch
Datasketch 1725 -
Rensa R-MinHash 44 ~39x faster
Rensa C-MinHash 42 ~41x faster

This benchmark clearly demonstrates Rensa's capability to handle large, diverse datasets at exceptional speed.

Why Does Speedup Vary?

Benchmark speedups depend on dataset characteristics, including:

  • Cardinality (number of distinct elements)
  • Document length and repetition rate

High cardinality and large-scale datasets (such as Salesforce/wikitext) leverage Rensa's optimizations fully, achieving maximal performance gains.

Previous Benchmarks (gretelai/synthetic_text_to_sql, 100K Rows)

Graph with benchmark results that demonstrate that Rensa is 12x faster

Earlier benchmarks, using the smaller and more repetitive gretelai/synthetic_text_to_sql dataset, indicated approximately a 15x speedup over datasketch. While still impressive, these speedups reflect differences in dataset characteristics:

Algorithm Execution Time (s) Speedup vs Datasketch
Datasketch 92.45 -
Rensa R-MinHash 5.58 ~16.6x faster
Rensa C-MinHash 5.47 ~16.9x faster

This demonstrates that Rensa significantly outperforms datasketch in all scenarios, with even greater gains on larger, high-cardinality datasets.

Recommendation

  • Use RMinHash or CMinHash for general purposes, especially with large-scale datasets, to achieve maximum performance.

Rensa consistently delivers high-performance MinHash implementations that outperform datasketch substantially, making it ideal for real-world, large-scale deduplication and similarity estimation tasks.

Running the Benchmarks

To run the benchmarks yourself, follow these steps:

  1. Clone the repository:
git clone https://github.com/beowolx/rensa.git
cd rensa
  1. Install uv (if not already installed):
curl -LsSf https://astral.sh/uv/install.sh | sh
  1. Create a virtual environment and sync the developer toolchain:
uv venv
uv sync --python .venv/bin/python --group dev --no-install-project
uv pip install --python .venv/bin/python "datasets>=2.20" "datasketch>=1.9" "tqdm>=4.66" "matplotlib>=3.9"

Benchmark dependencies are intentionally installed ad hoc for benchmark runs, they are not part of the package dependency manifest.

  1. Build the Rust extension in the environment:
uv run --python .venv/bin/python maturin develop --release
  1. Run the simple benchmark (core MinHash deduplication on gretelai/synthetic_text_to_sql):
uv run --python .venv/bin/python python benchmarks/simple_benchmark.py

You can also configure benchmark input and emit CI-compatible JSON output:

uv run --python .venv/bin/python python benchmarks/simple_benchmark.py \
  --dataset gretelai/synthetic_text_to_sql \
  --split train \
  --revision 740ab236e64503fba51be1101df7a1be83bf455d \
  --num-perm 128 \
  --warmup-runs 1 \
  --measured-runs 5 \
  --disable-progress \
  --output-json benchmark.json

Supported simple_benchmark.py flags:

  • --dataset (default: gretelai/synthetic_text_to_sql)
  • --split (default: train)
  • --revision (default: 740ab236e64503fba51be1101df7a1be83bf455d)
  • --num-perm (default: 128)
  • --warmup-runs (default: 0)
  • --measured-runs (default: 1)
  • --output-json (optional path)
  • --disable-progress (enabled by default on CI)
  1. Validate benchmark gates (absolute smoke checks or base-vs-head comparison checks):
# Absolute mode (single benchmark JSON)
uv run --python .venv/bin/python python benchmarks/validate_benchmark.py \
  --mode absolute \
  --head-json benchmark.json \
  --min-speedup 10.0 \
  --min-jaccard-ds-r 1.0 \
  --min-jaccard-ds-c 0.999 \
  --min-jaccard-r-c 0.999
# Compare mode (PR regression gate)
uv run --python .venv/bin/python python benchmarks/validate_benchmark.py \
  --mode compare \
  --head-json head.json \
  --base-json base.json \
  --min-speedup 10.0 \
  --max-slowdown-fraction 0.10 \
  --min-jaccard-ds-r 1.0 \
  --min-jaccard-ds-c 0.999 \
  --min-jaccard-r-c 0.999
  1. Run the advanced benchmark (detailed comparison of RMinHash, CMinHash and Datasketch, uses the dataset gretelai/synthetic_text_to_sql with 100K rows):
uv run --python .venv/bin/python python benchmarks/advanced_benchmark.py
  1. Run the wiki benchmark (compares deduplication performance on the Salesforce/wikitext dataset with 1.8M rows):
uv run --python .venv/bin/python python benchmarks/wiki_benchmark.py

Limitations and Future Work

While Rensa offers significant performance improvements, it has some limitations compared to datasketch:

  • Feature set: Rensa currently implements core MinHash (RMinHash, CMinHash) and LSH (for RMinHash via RMinHashLSH) functionality. It doesn't include some of the advanced features found in datasketch like HyperLogLog, etc.

  • Customization: datasketch offers more options for customizing the hash functions and other parameters. Rensa's implementations are more fixed for performance but offer seed and num_perm customization.

  • Theoretical guarantees:

    • RMinHash, due to its simplified permutation generation, may not provide the same level of variance reduction as theoretically optimal MinHash or the full C-MinHash algorithm in all scenarios.
    • CMinHash is designed to be a more faithful implementation of the C-MinHash paper's principles, aiming for stronger theoretical backing regarding its reduction of k permutations to two.

Future work on Rensa may include:

  • Adding more advanced features and customization options
  • Further optimizing performance for specific use cases and data types
  • Potentially extending LSH support to other MinHash variants if beneficial.

Despite these limitations, Rensa's performance benefits make it an excellent choice for applications where speed and efficiency are critical, especially when working with large datasets.

Contributing

Contributions to Rensa are welcome! Please feel free to submit pull requests, report bugs, or suggest features through the GitHub issue tracker.

License

Rensa is released under the MIT License. See the LICENSE file for details.

Project details


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.3.0.tar.gz (391.7 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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (523.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rensa-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (558.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rensa-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (576.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rensa-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (480.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (311.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (352.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (346.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (300.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (294.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (338.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

rensa-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (523.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rensa-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (556.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rensa-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (574.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rensa-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (477.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rensa-0.3.0-cp314-cp314t-manylinux_2_28_s390x.whl (351.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

rensa-0.3.0-cp314-cp314t-manylinux_2_28_ppc64le.whl (343.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

rensa-0.3.0-cp314-cp314t-manylinux_2_28_armv7l.whl (297.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl (291.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

rensa-0.3.0-cp314-cp314-win_amd64.whl (209.5 kB view details)

Uploaded CPython 3.14Windows x86-64

rensa-0.3.0-cp314-cp314-win32.whl (198.8 kB view details)

Uploaded CPython 3.14Windows x86

rensa-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (524.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rensa-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (557.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rensa-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (576.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rensa-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (478.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rensa-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl (313.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

rensa-0.3.0-cp314-cp314-manylinux_2_28_s390x.whl (352.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

rensa-0.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl (345.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

rensa-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl (299.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl (293.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

rensa-0.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (336.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

rensa-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (278.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rensa-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (295.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rensa-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (526.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rensa-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (556.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rensa-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (574.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rensa-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (479.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rensa-0.3.0-cp313-cp313t-manylinux_2_28_s390x.whl (352.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

rensa-0.3.0-cp313-cp313t-manylinux_2_28_ppc64le.whl (344.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

rensa-0.3.0-cp313-cp313t-manylinux_2_28_armv7l.whl (297.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl (293.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

rensa-0.3.0-cp313-cp313-win_amd64.whl (211.7 kB view details)

Uploaded CPython 3.13Windows x86-64

rensa-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (526.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rensa-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (557.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rensa-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (575.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rensa-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (480.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rensa-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl (315.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

rensa-0.3.0-cp313-cp313-manylinux_2_28_s390x.whl (354.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

rensa-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl (346.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

rensa-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl (298.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl (295.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

rensa-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (336.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

rensa-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (278.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rensa-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (296.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rensa-0.3.0-cp312-cp312-win_amd64.whl (212.0 kB view details)

Uploaded CPython 3.12Windows x86-64

rensa-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (527.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rensa-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (557.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rensa-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (576.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rensa-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (481.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rensa-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl (316.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

rensa-0.3.0-cp312-cp312-manylinux_2_28_s390x.whl (354.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

rensa-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl (346.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

rensa-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl (299.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl (295.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

rensa-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (337.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

rensa-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (278.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rensa-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (296.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rensa-0.3.0-cp311-cp311-win_amd64.whl (208.1 kB view details)

Uploaded CPython 3.11Windows x86-64

rensa-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (522.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rensa-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (557.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rensa-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (576.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rensa-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (479.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rensa-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (311.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

rensa-0.3.0-cp311-cp311-manylinux_2_28_s390x.whl (352.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

rensa-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl (345.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

rensa-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl (299.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl (293.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

rensa-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (337.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

rensa-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (279.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rensa-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (298.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rensa-0.3.0-cp310-cp310-win_amd64.whl (208.1 kB view details)

Uploaded CPython 3.10Windows x86-64

rensa-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (522.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rensa-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (557.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rensa-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (576.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rensa-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (479.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rensa-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl (311.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

rensa-0.3.0-cp310-cp310-manylinux_2_28_s390x.whl (352.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

rensa-0.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl (345.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

rensa-0.3.0-cp310-cp310-manylinux_2_28_armv7l.whl (299.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl (294.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

rensa-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (337.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

rensa-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (523.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rensa-0.3.0-cp39-cp39-musllinux_1_2_i686.whl (558.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rensa-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl (577.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rensa-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (480.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rensa-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl (312.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

rensa-0.3.0-cp39-cp39-manylinux_2_28_s390x.whl (352.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ s390x

rensa-0.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl (346.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ppc64le

rensa-0.3.0-cp39-cp39-manylinux_2_28_armv7l.whl (300.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-cp39-cp39-manylinux_2_28_aarch64.whl (294.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

rensa-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (338.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

rensa-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (523.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rensa-0.3.0-cp38-cp38-musllinux_1_2_i686.whl (558.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rensa-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl (577.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rensa-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (480.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rensa-0.3.0-cp38-cp38-manylinux_2_28_x86_64.whl (312.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

rensa-0.3.0-cp38-cp38-manylinux_2_28_s390x.whl (353.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ s390x

rensa-0.3.0-cp38-cp38-manylinux_2_28_ppc64le.whl (346.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ppc64le

rensa-0.3.0-cp38-cp38-manylinux_2_28_armv7l.whl (300.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARMv7l

rensa-0.3.0-cp38-cp38-manylinux_2_28_aarch64.whl (295.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

rensa-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (339.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

File details

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

File metadata

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

File hashes

Hashes for rensa-0.3.0.tar.gz
Algorithm Hash digest
SHA256 40d79251c0a1a27ff8171043c38db41dc03890ad503e6c244f3001947f8497c9
MD5 fc72b91d73f10e022c1e027791722cd8
BLAKE2b-256 e423ae5c2eea2dabe55275525b9100a333ebfcb6aa779bc12701c949be3a8198

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0.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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b11603b6dd0d054cd527dd86e0cbfa52a786bbca4a0aabffa4eb76271036ff5f
MD5 ead3ecbffb41c87355856276e21cac0c
BLAKE2b-256 d038a933b657770e8465230b3aec2bfeb187e0b4018aa2de704f8af9bc8172d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4338f10d8e51cf3e4906e2312d4f5ef9172ded23a578d1f9e2e8695bdc207dc
MD5 bd30d0dd73b59e3e947f20c965a2c902
BLAKE2b-256 bf5d3b277bb9ae32d1f6b992e42c29dffe133cd806ed9f1ba14116dd15e9da71

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3bdf511dd50c57a68748117024f84b84a0106db98dde71c08c5c876b92286670
MD5 71e923397390a476df7e9c6221d34bf7
BLAKE2b-256 88c7e2766fdf36ba6cb5ecf685be29fcf58ff3f910e5cf1fabb7bc70eebff2a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15c0e18eb8157443d491c33e2ac722d53a341a2848a7c8ba0963134933fbf6a7
MD5 337012601ba8acbca02e2c2bd06e6b1a
BLAKE2b-256 cc95d7a68c6f905a87aa3995d4f34592472206cc98bd0175b55e02eb51fb0c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f4cb59b8bcddbec911046fdaf398a32ae97e9ec01f3b85e9cd71b3d814d5959
MD5 2b7232a64423ae8122189a7956b6c3f5
BLAKE2b-256 67f7cee3e22470ce4afacd14511b334a3096793cfaa198bdf0158685835b0062

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1895fbc7d8db5f657dc29790f497d9e5fda06efc6dfd54339b67e4cb72bea0e5
MD5 8ab09114f299d14b0461f0213838cb31
BLAKE2b-256 c4dbc8d49a6e4eb4c3f1799d554a6c0b68ac02af00816848d1328259176d5a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 444bc94b14f2ce2fb385107241622edd7fe1ffc0ef6f1bb420e7edb3da488790
MD5 ab967d8e3786dcabb5c49e2dd653040d
BLAKE2b-256 c9b3ea36ac47cffc9a63d6d03ee727bdd25fd14617494b604ea00bcecf2ab5a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 06261462408f225b3c8c8f192ee916013ca0eb36f102f9dfbbba7211a5b151f7
MD5 3d18d212a9faf8b2d6fd230a29ba03be
BLAKE2b-256 44044a1d566e26a3ab4085cf103cadd665c9c0eaf89447aed4c3e4864c3de989

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9c646656eb4e31d06fe84511ef535b2cc81a0e01c960defe2a370278c59c549
MD5 fdde02a4345dc4905083af5ae7143f93
BLAKE2b-256 212eb02383b50f2d3e8e5ea300016d015b283b38ea2779ad5e5e082cad2420cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d0708cbcb5ba0200306665f8b344219a2af39c0768e98d5d9aa69a2e859b5f2
MD5 a52e6bc40cd32927e16ffebf18866551
BLAKE2b-256 435de4315e8d77f8545820c4e5a7f43b642ffe367f60dc83d424f3a21fd81df7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d21ba75b82b4cac1f398520650024dbd5ceacde416cc93016f498b97ac27605
MD5 d321e719c3bcd7c808e166588e408555
BLAKE2b-256 fbce70f91b5064d0f0e06a84cffc8b7889114b9f169d50f32deffeed51b1f4de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d3fb8faf96ec566c65fd10d7970f35475ff07915dcc4c8b14adde31157bcda9
MD5 f2b90316b5ef74f389ae9d4a88b0788c
BLAKE2b-256 c93d48abafd5f7380ba7db3c190536c961ce9b89d7adc2bdd4151aa659d64924

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05adf72268eb239bc5d2ca8958d84cf8f54b6a588d028a0acb95c3a7b7fed8f5
MD5 3c4a4b376e0d71cc00cef3a1eb5f1592
BLAKE2b-256 7726505e01291c0c9ebf6a170e455b2f5f20bf369d41f878da82cb1e86251b52

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4325948085a9a3d748c43b111ac0e5b4a3dfa28dc5d387c31c0c5fa29fa45eab
MD5 fd61f34cb14283ef6722e7dd969811b1
BLAKE2b-256 54be922a874c6ed339aae13216e19b68539f4b1fe50b70e4e69a5ff742559e70

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 72e9e359a6f047ca3808efc5d80bee70ca9b2676a216659028f45d57f6872ca6
MD5 3d0c4a2fa1cadc77022732d66006c0b1
BLAKE2b-256 9680c96c3be3951221c7082dc2f7476a2681dca758cac1289f87de1f76f8fefe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2119f2f01aaf485e896a9a8c988eff45192a660c160ff4becfd4df29ec39181b
MD5 b9d654060d918bc34886143d425d4d7f
BLAKE2b-256 72c0879ddb86a776ca9e76d942dae9878655170e1771b39a0298ce5c4dadf217

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5c0d71fa1a32814fafcda8628459ac13d5dbccea144b78475da7891b977ed53b
MD5 651e703ddc626a236c589ddfe5656ac4
BLAKE2b-256 fe40259646a30d25a2cef4b69abf1f2d5e984801b854a551948caa8de2b50727

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d4acb473e693b0802fc18daa5e50609445ec26089a7820e4726d300d2e282e1
MD5 a8e18bbc45ee155ecc15d0368e083072
BLAKE2b-256 df01d11bbe3b09bf579409e0e5083f18aa7faabcb5a3f313f0c098cf1caf5a49

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rensa-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 209.5 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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 527b6eb63ef299fa4196d9f451a47ac23303a6a9201a702335dc37a3551a31a6
MD5 0bb5c6cf63f0e269ee8ec9deedebdb65
BLAKE2b-256 c6ce02d43f8de374bd5bc4f20f526c0d47970f1c12a5af7414b9d3e65596584e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: rensa-0.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 198.8 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.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 669269423e0ab12edf25db07e726b8d14ddd733b131fb730b7b64a68cabb0f8d
MD5 54b845aa97f79b9fa157051da1576407
BLAKE2b-256 aea2550d084943faf00c921526a9ad2e71cb9ae3d3cd7805c4ce9b1b697ef0e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 826f81d6787067d77eae16b89b97c793c5a46ba988a8fdacd5536ae8a6c6f216
MD5 9a395b42784eba1686a576c30423b7ca
BLAKE2b-256 a12567d4162a376203277531326faa4b765dc50a910af7a3e21344e9d974b247

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2df1888ae0d632aa06ab3b384732b945e02ec41cc012d711955cc7a85869ca5c
MD5 b6d0c8101dc482aaa8b6cde99f903873
BLAKE2b-256 c235e714a83f934e2982561a2c01cf1c4cb10a8c17ef442d19a7c4724abe084b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42beb009f0aa79a4eb13b975c1b6d9482edaee244969911fe99daf24f9f685a4
MD5 def0bbf7ec8af85d194cf385c4052408
BLAKE2b-256 a7bcba49936faa65353369c3a00bf264fc93b4b1b527ae2a0b2106f4cac6ced4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db3e250c4f789133c755dc796423dc8e9f7fc7d9e841ea518b32c8679b52b21c
MD5 370fdc259c8eb16f6c9380f3c4a0403c
BLAKE2b-256 7c482fba25fb865a9654e6b2031e1bf3802df7ef6158dac98391de46a66de4ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 558442219d06169a53f9a6810bff0eddce7fc5727ffc54e1746a2269acd8bc43
MD5 560e2a2464a1b73da6181249fd73a416
BLAKE2b-256 b6d4a7460bed7f033e1fe4861d3384cc7aae0ccc4b5672558670b03e104d11a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7ef15aa98a253e59fc8d9523e31a7d9d1c0c051c7f80b643e781fa48239464e4
MD5 e173c790fa204a15586e36b0469107a7
BLAKE2b-256 9abc6141377a44729fc75baf6b2e9537e28c882dcb7b63059ceb67213e4eb766

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ac4b42962a5ff8acc192f5c24830c00033cffbca994ffb2d5f81528bfa247c0a
MD5 5efefbba20b988716882a36cabc6802d
BLAKE2b-256 dc1302e58c93edbb920a8bf2eb005238bc9a9fc64a9a89eef31520aa7fb1bc62

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5132bca3a4912c596fc8a76aca1bbd50ae3bf6341958aae9738b0bff96e8c48d
MD5 9a61be6fa75dd1814f2cf7bcf8056621
BLAKE2b-256 9582a5e35db73827eb69145f6715f9d3939aae8c248b5341d2c06b2bcbc7baad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09327f3391845bf9adcb5aae43c250148b624c593f9618eb072b0959cab04e69
MD5 6f766f35ac6575010124a3c325fa8498
BLAKE2b-256 8644b29151c6697d0d79d4497b09310b850b439732d425441e0e3e7096a20acd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d94a1abfbec0832f24f1606a455fcabeb9a3291029088a32eeefca3b4d063593
MD5 a1197ad2e2f4a56341f523a53fa3ef85
BLAKE2b-256 140a2319df734ecc9767a6e7a86978a42f04dc0cc6d9114af97dfeb13d0b252a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39ce702e8137d2cede3af27da9573f2063dbb024e55d3de49ab0617f3b277380
MD5 a860f0c35f0f8b5c939a8fc67856645b
BLAKE2b-256 6205a86e33c88daac302cd45319ed7157e3675692f0bfef92928a0f658ff3c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ec42232a0f4641cb5080cba5f6b379bd0e107ec3401858c2f88c02021fd9e16
MD5 c9759c4f9eb060be6ca6420cc23e47c3
BLAKE2b-256 67677040deefd31211a7418a49bc84a71ff1378b933b23931b2c38ec6d118d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59ab4097b3d3e7ab2494eef0758d4251308fd6ccd7f8efd6e71a8547bd3e1b44
MD5 aa0946309738a3521e9679eedba64c27
BLAKE2b-256 0b435381a5d97587c1bb90fc116c344c9baff93e5b930ce34e8c0106c20392d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp313-cp313t-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.3.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f95a25481ae2fe366a51279cf00946fb85b98f53cbf63c7ab4347d2e9a84c8cc
MD5 63606d572654e3ab55ecf0256c4cec32
BLAKE2b-256 6a53ce08b64ec0ed11768eab8621762d31f0a97ba8ffbc543211e7a3fc7c32f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp313-cp313t-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.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ddae766c800f69f5df0e17b4dd4aa2e1411e7d9fbfc69fc3f4b87d86401f932
MD5 29ea0ee5bd225dff231babf39a9a868e
BLAKE2b-256 03b669a6af155a1fa1bd298f27f9d547309ed4a24ac12cce92a66d693521abd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp313-cp313t-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.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b25a81d5be0807408306d166035c637f6d592875183894dbb6f54778048cb557
MD5 5cb9b390f27057c1317fd804c03cef2c
BLAKE2b-256 47358e0c6248199115fc791ed796e4203fa3b70d2e4f55a25ea8bec31546a742

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp313-cp313t-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.3.0-cp313-cp313t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7141b5b2462d13fca031c9a9dfed287aa9f67ef8d93f780201f4db3236c6336a
MD5 e8d8925981acbac282f244e16750f56e
BLAKE2b-256 4991f52fec6591539eb99c69116b9dfc2bf2f877ff3ba17f9ca0d9283dd38ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp313-cp313t-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.3.0-cp313-cp313t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4e7ea8d653530fe56d93d5885ad839f43ff5568fd0b0e97eaa1fb1be1793dc20
MD5 b9e5d7794787536414dde2661e3acd9b
BLAKE2b-256 87bb31204f41508dbe545f4b1a38f28bbe496368f66bc2d5c1645fed9296e59a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp313-cp313t-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.3.0-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6b72514295d6e814636a276a9576e5548b66e5ff877e0af9e55c7b853992f78a
MD5 00428241e937f018642089be726d768f
BLAKE2b-256 0337ed23865757803cd6897b37b2942df5d08df5f09b9f0218a0e16c7f770b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp313-cp313t-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.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a75ba44403eb217e788ebfec76fcc812bdc4974cb2fafe4389409b2200649190
MD5 714de3c5302bdfe0fb42171b0a77cd18
BLAKE2b-256 acc290ed903e2fc370b322dac6b5ecbf88d9639d45e9ee610903a7f8578f454f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp313-cp313t-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.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rensa-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 211.7 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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc0e1c2bc2d93e725541ff1981e704acfdbfe1278731c04058f57f8326959b36
MD5 caa6aaed2c32f85702aa502338f41614
BLAKE2b-256 17189fb5eae8b25e5ccc61006102e5ab6e7fda5303a5321b195adb09399184b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb9003fa8905cb9adaee39402a4e7e975c082a5d64cc0dcd4daa50fa023a40dc
MD5 6d307f283bf2821f5aae61d66aefb3e4
BLAKE2b-256 2974598e404f368ee9902a37458ebf9ff64c22636139e82fdc4539fbf6eb72dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0860c8dd2e8a6c409e558a1427d1deaa8ec8cc69c455b362507d1a23b6456dec
MD5 ef6e6b588c7758295ecab9abebb4d88e
BLAKE2b-256 598113b99274288de04d52c5f7cb3c92f7e60574f46255085f80ec6b675db7e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aaddc9309ce3c64b3311d7cae3e4f8582fb0395462587c0465b31ebe37dc78c8
MD5 45157147890ad772c777746976ca714b
BLAKE2b-256 07656e96f2fcdbc9210f18a56f8e3f0e01a1bfd268097e700c079bc320c61bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6096203ca9d2f817b04c085499403fb734efed18b21602be3eb68e450980a03a
MD5 6939242608dcff53bd74bb91d61a0af7
BLAKE2b-256 dedabe09aa620adde159709a686c2d8a342e3f04282d7056153f9a82986f6f53

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6f4938917abd8f0227a8881ed738af4504d79ac58fc23dae16e9ff297b3591e
MD5 3e448160fb9941c0d4d6cccacd5a5af9
BLAKE2b-256 cbc7e18cc68e558e14900dd9c57af994fbb6208aaa813984d1ca866edaa5fe1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a2147145b2ca66c9bd90393d54e6901b592a09d559ed04ecc8a3b163f7e6ea94
MD5 55bf119fc2e23416fef597f2dd6cfee7
BLAKE2b-256 fd6054d779e3bae7af1c0049d74eaea2cb0782e4f708e798cf695f13acf69052

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fb3f28d9d7bf1ac76778a1849db3c20380d90d75f5974fa5acf6a8507bfffe35
MD5 7a13a3cc89a4bf7d3113d38e12e3b8e3
BLAKE2b-256 b7d8358867cc751680b9f1588daba6c005408ce2ac9fef478440b273cfac6382

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 266de4c94c0c0b69765b19b068c5e0128397180f79e69f8f52fe1a83deedd3d3
MD5 968e8bdbc8ee89850cce22aef6e3be07
BLAKE2b-256 5cd982a9d007897fc5e68da6b28427e639f75ea54e1c15c4b7063f7434927caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40f88577ad1c97e2a1b282c42d32228b51756da5ed3947b0d3abddadedd0d387
MD5 716029afd943f681119a6bdfc32bd9e7
BLAKE2b-256 df29dd437fea11a84287af7b33815f4f9f322733deefa707253909a9dc12b4db

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5def01ac68e0861ca037ee599f6bfcd2452ffceceb11e61f027f5b7040d8d8d
MD5 31152fc379bce30e4e271ae79a377626
BLAKE2b-256 b7aefa3a497cda9d805fbb948cd89256dd0e8b15806786e43666772f0718b1b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d784900c4b5ec47073d6c25458fa114c505884e916d8b618b140cf068255f919
MD5 3cd532d54f176e802420858372528f3f
BLAKE2b-256 2f0c91e12e86987fe5cc1eb5eaf24b92343aa11aa3160d08f7c36e1836982d39

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8645f22074d907563ef292ecf2d7a81ba70d940d3cc92d7d44faa007c5f77d83
MD5 1dc8d2b44c5a49c5ef25ae931a462266
BLAKE2b-256 d646541744a099567386baf30a2f48914a8ec23950af84e4d57cd2979bc41c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rensa-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 212.0 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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bce8d1a44ad5e7897fb0c861c5dca1039a19f708a793ef16bf5374c23a191117
MD5 207d12a6618e957d9cfa839435942fc3
BLAKE2b-256 4a08c4ec4cd3dd62fb5f71da40e3355827486932693a0d072b1b10ef9e6b708a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19a42c2312599cfce23a7f99a061df1e9e5d9886c9ddb6f13c75fa666541b062
MD5 d1122e480d1ce98d261c2bae90ff78b5
BLAKE2b-256 3cbc0435889d7590140bc31af68ee5ed73c4b309bf07e1113adab9d7cf3cf53c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdd8af625e1455d35174ada17f4d6806c824419ebfc31a95bfe042ad10b133a3
MD5 4e11407ab46de500866ad9fb69ad16d3
BLAKE2b-256 d16d39ff201e4588f1a967ef5b539ccabf290407949b4e39f4a3387146f04e4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3327c9ceab77e2b6e1a52162192b8645a4b4189006e3c24f728ee6394fbc3e18
MD5 fbcc12e96860a55561391efa5703ae3e
BLAKE2b-256 f38e2b85f13986a4567ffb1d1b67ff71f7ea8c1b3065c562073daa73da4f4c79

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f159c86ecb25010d03548f1e8158c842d0c6cebf066630f31c8d96c6a206a308
MD5 189cb8339de7554c5fa347f061829521
BLAKE2b-256 623e89fdd87056ea2a9ae68da35d9105e8d2b2ee288b11af6ca068341203d165

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c85d8edb379672c0c37ba4b9654bd0afbcfabd65f7c8bae0e81c50c098f4ccb
MD5 2d000951596fef09b5666f07a08ae5dc
BLAKE2b-256 e892d7f08610b2b37f04504dd4656452436e4f989f4a142b0c8008f6dc233f45

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 13e4ce8ba9a4991148088b1f72279f7c1ebe5bde8dbcb970230d368b53586cde
MD5 a2bd00f41a93c47c49048393d560658e
BLAKE2b-256 ad232f9c48ad46ca92c21af832d50db1c01d200b54b7278a832835609be7020c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d27afdae22323cccab6ad9ce7d63e570d81be0ae32e6c1d13a8eb0098b35771e
MD5 e56abdfb878c4495dc0b8f170b0d9ab1
BLAKE2b-256 df3126ad99380a6b6d8a6690e9ac8b7d8c4d7f8193e8fd66c4d4168ce6ba7030

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 37120837e2bea322a1ba0ac6bf26eafa5e0dd79f6de78f2370c79847695cea15
MD5 04aff05e73b78c0521901818aa55cad6
BLAKE2b-256 d739472ac474479d68a7bb45e8fdcda453a98696ffb9f5a5c4907e39e5e95a2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 488cc58291f265bef1debb2beb6a979acf0f6dcd1b965f1882419c7659e3b786
MD5 5a4bc2c61065d15be2b9b67b95fe8717
BLAKE2b-256 76d93e64267b0314aed12fd489cabc97c67c767c4890a992799ee9cc7180d656

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f96b2fe2979cb3c799a6cefc29d4687571beea99519304a50ac02e81ccd2986
MD5 273622b4db79ac30bf34c9e99ca22ec4
BLAKE2b-256 6199515727f2810d7def94ff2c02a8adfab6d331f565ce96a3c54c30438d4168

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d7ab6ad0fc0634ad0a2de44959081cb5d0abe702d2f1e85c1732e80b071e307
MD5 0318d6530e4ec5443a5d2408464fbcbe
BLAKE2b-256 ad8b298298a7d2f0878d5ef8e64231f9db277c194128fd2d0a7033747e881c1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03f3d9f5d4130231c9a2616bfa73abaa431d6c6ac1fa80cb618c79510d181ebd
MD5 c88ab439610408cc46e5a98615dcda55
BLAKE2b-256 e6db514a49642bf0b9868b45f237577fcc97063092e4e87de0654d0bf897e965

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rensa-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 208.1 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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 14dd108b06fd659f3a6f94465318d6978e59ee115609f01983e88a13c4a0ea0c
MD5 09385d59ce5fcab42a0afbf44d4b61cb
BLAKE2b-256 2710791b1e3907cb3a341581cb0318c842af5b306fbaa769670e5be45e052867

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41e46e82d62748d74b508c48d76c8127fb6dd1a88892e71cd190b3c68dff3a18
MD5 061c280afe20c618413e758682c1ad7b
BLAKE2b-256 aca3e79db2fa91c4b71b4792494deb2e065de710562f15eeeb1984b784104bc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4cc88797b4754a600201f96016f7dccecd4004df542e06fb97abe3c0f08b8f3
MD5 070fe645f461e1fb00c8cfa72a15c04b
BLAKE2b-256 4f647c31562f7332a4cba6aaf510d6de4296ddedf4a1bf1a5b8e5afdc721b5e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbddf4fc2cec33b4bc7aadfb5655270d10e3efa0476aed05b281db0fcce208d5
MD5 485e6d32218367cea836a1942290c6dc
BLAKE2b-256 63006e8c3a08aa639d239b1fd005cb5fb0360fbe2b0adca1f71ed469a233b942

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4096c4083431c4f5384384af1f9a8cc09a813190aca0055806d166d8ced9aeda
MD5 b045f57d11a917debb801923f3768cdc
BLAKE2b-256 d46ef832e45ff0dea751be735c7049d26d614d260e53aee61b907fd6e054e087

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e2854ff99055b7944ccb3685fa53b98698ea9ca18d093d4973e5fe2df2676be
MD5 87ce00372b393e65ff093c877ddbc96f
BLAKE2b-256 37d1e11e944a1a583ba6986872db9d62356214e18496bc32d139fd9d742c65d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 11ca21da8abd3e5f0c801ab31f405264166f93dfa6078a0e260cab263579318d
MD5 10a4684b602fbd3d98d7aa2448025836
BLAKE2b-256 cb66d3a8d43763ec1360114cf83181855ffe43c99f6f89d6cb266ad6689541b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6c037aa64817f5669187c9558d12e7650806e6a4592ac8e86c637ea9c58a82a7
MD5 3c32b6ce577f5e0ca3f7626ba2cd8cf5
BLAKE2b-256 1dc8b53d870193f4afc6f41505c2313ae7e671967f6f4d90c937774d6975c256

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b660cb324e7e4f4049611b78ba6df792ddb19481e0eb281d55410e97fde20fbe
MD5 d1e42141de01f1f9e915e8c314ad7472
BLAKE2b-256 98f36583f360f30568563b1369a64288ab9a24f03d37c97c166025b2cea0d54d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26c8f316b7349d265510b21fa4092d376339e0cbf5f424fc400c764164c84b57
MD5 27c71e1ac34ec71a15891b439ea2a7cd
BLAKE2b-256 d4c10517b48de2b7a4c7dc9c3bbe8438f4ff1b868f3cb67d6267d3af8f03e97b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9de4c411478a2a890a79e9829632fcada0b956b3f0d566623bbf26322ce98d8
MD5 9c34e817676a25c18defa77492bb22c6
BLAKE2b-256 cd06947f1be0af8fb1bc36bc72f4c35d82452fb2340d2087b5155d5e39bd47df

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 146af61fda441d3cc6c8860b324e25c4720f24b73e35fd7b2311490578f45882
MD5 8e6795c193b2b5c498b0039723501321
BLAKE2b-256 8bb15add5d28c3fe5c9da0112f91e33c5e78ed280d71aae18a232a7b93d4a945

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6962b294eed0bcb86182ce7dc126f67cbfaa80c9ad9ca5251e0a63911d0e46c3
MD5 5712b63caebfd7742d4d4de5320679bf
BLAKE2b-256 5eb104416de63826d40d98eb21050f988447f8fedf6f9587ccf3f4a970a19b6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rensa-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 208.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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77cbd23c5ed18719c4c19e02dfb792bae5440c9b48e5eefb9198018612445dfc
MD5 13870cb8d94852eaba3c13cf823194a1
BLAKE2b-256 12b2909b2d0f041ecacf3af9fb1853262bd0f6f73e863e16a2677dd2f588b576

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dba9eb3c817b4abe77699461ae5a0b4bf3f5186454423dcb899e66df89f53f99
MD5 4a8ba5f5998374d8dc126defc5f1d54d
BLAKE2b-256 39c66daf2f1f36278604e4a7ac41e35411a597893fbd40ca85fab569b8a14146

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bdd77050c5804bde31fb5756703d0ea107e2bd9770510299841c5dfbf193e5e6
MD5 5d3c3797246ebc54e214a63ae37a9569
BLAKE2b-256 770605ad81c83c3ccb1dc783ecb6e869a19eff007df75365f5671ed180f7604f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61916f57083c905313565de4b0a3549ed54790ec5d67f44e2cc44136455a51ba
MD5 86c83299c6085d25ff5261eeae055cd4
BLAKE2b-256 900890b2ca5e6b299b0e3048ae20a7bf051cd2db78f43f2301256425deccf2ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 669f4f11d1f2742ab1a6e5513f1aea35cfc191a7bca5e1bf088e260cd20d8732
MD5 0b66b7d58fc1a50f86ce7dbfae8baf73
BLAKE2b-256 404c3ecfbfefdf92dfad97c8d633f2a416f3b76acf3388bc6e8e76cef8013761

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c6d93a22c91f0e94a9bb022b7959acdcaa60d3cb7f10165457a38f47403a20d
MD5 42ab4f1cbfa0b8a93f5ea13ea33d28e5
BLAKE2b-256 51a0fc51b464851cae5ebf920ac7d26f8860ec50687d19b9c5a73f19364c601a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 92316e0a7bd90a8c2a4691b9e00da90b537a74db83324e152a8bc122c6d65ac6
MD5 6435f1ad6d603c8abdfe37b54b0ec9f5
BLAKE2b-256 a27fc9cafdad8c25aac5aaed6026dc8f7375c4e73e8c4435429df98a1fcd916c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f4ba98ff9d2fdf7eccf2b795e978980475c47f9c424914ac12ab0cc0d50900f8
MD5 c1f0c16e1d7c770690f08733169e96db
BLAKE2b-256 8f2215c83f7d35d5b851ef0efb8d21c7d9736761e3368f110f2aeb7cbc2008c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4c2a6185d98405121653b88e457e25f7afdd3c3ab4a63c56977741aaa6b3001a
MD5 7dd473de81730c1c5a9de1ddf876fe9e
BLAKE2b-256 015d5aaba8f660a383676dd24375f6c0a578efb20950cd7ecc415b5b950cd5a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7bce225c2ccb1da8e9bfe7319ddfea0c220ec6533734cace1c9394645b5bde5
MD5 1e4c9c1198cc132e8c9ce12c0fdf4391
BLAKE2b-256 efa0da535e045cb56f6851a42c02fd654d85e625e160f6a8deeb6761c7ec2dde

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe8734154569c81ebf882045ac9657d8d184294ab1e6a1f4aafe1c466b4e24b3
MD5 0f43e4b5e3cd18500894cefd1115f584
BLAKE2b-256 6e0c687e490be0d2a06df042274692f682ccac650248520561bd0151964b7115

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5989436f676a236c2e9b981674c1ac414a9fa50fd70eaec20799073b6708aff8
MD5 a51e8c997c57f0dbf38efa1cd39c75e6
BLAKE2b-256 75fe9f16b6146f884251f482082e7e6d652d4871b458fe7723995ee863ecfa58

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rensa-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 558.4 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.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ac03c5d55a0b87fad4c11b1f36ddcae163a5c9d8429ab51394a0c2db173f155
MD5 3b112db1cd0fad65c4da790b3e207344
BLAKE2b-256 752c93fe5fa9220ef6003d1242b4a847fb44262c9c26a0adf84877c84951f5f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 01ddd707bd38705f3c7b2a402e5ae74db67e6198a20dd6563d8586ac63d9fdae
MD5 486e8ece44967253a3bce4ab6dd88e36
BLAKE2b-256 e490f7d681d6d7368195d85bb4fa0bb6730c447da58dfc7ec242b563e8c9bc42

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2794e5a84ba19bb84fa6d43b4b39a3c9bd11336f36bd7c25083c55276e78805
MD5 8cf036e4af1e5d4159084233882658d2
BLAKE2b-256 1735241d4d82ac611c214fa35839613db117e52b361f380e9c4c3a40120f3daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af86c8bd5b1b96e2e1decf95f4d5233915039e8668d34368d409babbbe13fd8e
MD5 a966f58ead6d2eab76e94cba8e9be290
BLAKE2b-256 721f7a75b76352619beda026f9edd284d751639da159bdf2082ef5d9e53a6628

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rensa-0.3.0-cp39-cp39-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 352.8 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.3.0-cp39-cp39-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e9b09d0094374cb1390099f7fd143385a59a2ead35546093dcb68595e37e5d6b
MD5 f730cbf7e112f713e104ae41aa6c9dbe
BLAKE2b-256 3fcd750f65aa4b13bf74aab53023473242caa30cc0c0e10ced4fa42ab3845133

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e824bcfb27f88263dc6c86525aa10235b52a5bc19cd6ace865c1a625b3f83b31
MD5 e327d3e8818376b0daf7825a2512863e
BLAKE2b-256 16e4dc5cedfdc4a8aa6d5861cd00a4aec9792acf504a5d075cfe8e4f27d142a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp39-cp39-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 557e8e1322021f81f50b987989747c053095650dfd0685b9ae644ea242ea8307
MD5 55e0107da1158c4b120f2fdf8c903744
BLAKE2b-256 ec23c004f0a2ac1f49d1d009b2226e5fa57c801bd75c139c17af69bb5fa8da1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af6df71129d6ccabeb49af89b3df4602fcfab7fa2b8addd255965d0da31c2ab9
MD5 74c9c68d1c745c192fb9a0fcf291f09f
BLAKE2b-256 f3db39480d0e4e628f3ec4a9b0ffff29ee18c6616e67fb043f6ae8d7798e20de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0977f1616349c7111a764399c9e155af49be6f3ee4cc7596f87b11b34f0d03a5
MD5 a0af90f735bc33e755ac29b9aaec2785
BLAKE2b-256 317a37343282efb162c2c76a1cf2f947612999b8a619ca196301a5c0c0f4d8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81846b81021fea8fd8697286344c7801471fd2c29dc95453786e0a9f474bfed1
MD5 9061ed80d70f2a8bf8ab770db2949731
BLAKE2b-256 4365b63ee3df37517290d8bca8a19849e4558284db0b6c55c450d0f08e2964eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: rensa-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 558.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.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 367677cd6b831a34e76fec9ba6a6f99194136259aef1deafecad2024517fb889
MD5 89cba10fd1f2660139aeb74cbba6b5ee
BLAKE2b-256 a3edef2358df4e2b3e30a3610d46d6ff2ae71eead2c7d3d6b7130c8c1ae73242

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eef4787007e13cc0001690b598a22ae640d2bf34598ac0c27d7050701798bbf7
MD5 5bc901bccedfa099b00cb6066b1fba35
BLAKE2b-256 6224a75e8cf7ba78028cec14831b0f37fe189e02a6caf2eb1a0c223424e69ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60c0ef2ce3cedda939a01c4f76ea284272fbfd332a31085c51941d408f6c9a9e
MD5 8ca4e1705669a97b94c1a0cdc26ce352
BLAKE2b-256 b548c4ce99ccebc8af4276e1d85fabaf4a2b23cbd5dc2d7e7f39e2092edc66b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 647e4ac5f7a9abeb3fef65c18b49b52d9971845db109add532af74e54c28279c
MD5 0ba4ca5f7fd4a34a0db45547833b0f4b
BLAKE2b-256 779e4092a2208b0e0fa3a6f02e8304c6a03a1472420ab5b8d209707bf0afb1c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp38-cp38-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.3.0-cp38-cp38-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: rensa-0.3.0-cp38-cp38-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 353.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.3.0-cp38-cp38-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b402e4242f5a2805debede72cca8e67da1b834a13c4287ae67616eb0c9f0f083
MD5 866e982918f8ee845bd2673d01331b20
BLAKE2b-256 4cd03c91425445026abe50d6c0f14006d8182b072601cf7c676006eac1d1b1e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp38-cp38-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp38-cp38-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2cbe9d24f59ff3a803f22a1fbc2098133c470811aadc0878d79ec4e9ae3099d0
MD5 42fceba76a3321fdb452bf5542e7648a
BLAKE2b-256 80053b99eb409384d525fff8ce68f810df0883126a1b943091fcc637e5161058

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp38-cp38-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp38-cp38-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7e9c5aacd5a5c50ecf4437be90cb94e9bb53f79a8adcef8cf0158412448f29f3
MD5 6858143c3f7cdcaba08d4c07a28cfb04
BLAKE2b-256 3d377c354d3119d30d852bdd668510036b3be49ffc34e0c621ad41120f862d1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.3.0-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee216b4d7a59d3a3102f2a85ca38e65243a200cae90be95c03f10770f2b3e438
MD5 aa52905e68377b0a3b621d61fc1d905c
BLAKE2b-256 f5100807784ec40e7a735fc5363b81123d28fa18ac53d93901f174dc0c1dc70f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-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.

File details

Details for the file rensa-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rensa-0.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 22e6387fb45b820832f032a2bfcd8fba03ef9ca6390f0f3f79bc86ad570eb5f3
MD5 1251eb0655934981ccc28110351e5136
BLAKE2b-256 060c6e08b57387a289b956136dc687a64d2ada714867e07505866212523aa5d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rensa-0.3.0-cp38-cp38-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.

Supported by

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