Skip to main content

High-performance MinHash implementation in Rust with Python bindings for efficient similarity estimation and deduplication of large datasets

Project description

Rensa: A novel high-performance MinHash Implementation in Rust

Introduction

Rensa (Swedish for "clean") is a high-performance MinHash implementation written in Rust with Python bindings. It's designed for efficient similarity estimation and deduplication of large datasets.

Rensa implements a variant of the MinHash algorithm that combines ideas from traditional MinHash and the C-MinHash algorithm proposed in the paper C-MinHash: Rigorously Reducing K Permutations to Two to create a novel MinHash implementation that I call R-MinHash.

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

Technical Implementation

Key aspects of Rensa's implementation include:

  1. Efficient permutation generation: Instead of storing full permutations or using k independent hash functions, Rensa uses a pair of random numbers (a, b) to generate permutations on-the-fly. This approach significantly reduces memory usage while maintaining the algorithm's effectiveness.

  2. Simplified C-MinHash: While inspired by C-MinHash, Rensa's implementation differs in a few key ways:

    • It does not apply an initial independent permutation (σ) to the input data.
    • Instead of using circulant permutations (π_k) for each hash value, Rensa uses the same pair of random numbers (a, b) for all permutations.
  3. Trade-off between memory and variance reduction: Rensa's approach trades some of the variance reduction benefits of full C-MinHash for improved memory efficiency and simplicity. While it may not achieve the same level of variance reduction as C-MinHash, it still offers better performance than traditional MinHash in many scenarios.

  4. Fast hash function: Rensa uses the rustc-hash crate which implements the FxHash algorithm, a fast, non-cryptographic hash function, to further optimize performance.

  5. Vectorized operations: The R-MinHash computation is optimized using vector operations, allowing for efficient parallel processing of multiple hash values.

  6. Memory-efficient data structures: The implementation uses compact data structures to minimize memory usage while maintaining fast access times.

  7. Efficient LSH implementation: The LSH index uses a band-based approach with optimized data structures for fast insertion and query operations.

These design choices result in a MinHash implementation that is fast, memory-efficient, and suitable for large-scale similarity estimation and deduplication tasks. While Rensa may not provide the same theoretical guarantees as full C-MinHash, our benchmarks show that it offers significant performance improvements over traditional MinHash implementations like datasketch.

Installation

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

pip install rensa

Usage Example

Here's an example of how to use Rensa to deduplicate a dataset:

from datasets import load_dataset
from rensa import RMinHash
from tqdm import tqdm

def rensa_minhash(text, num_perm=128):
    m = RMinHash(num_perm=num_perm, seed=42)
    m.update(text.split())
    return m

def deduplicate_dataset(dataset, num_perm=128):
    unique_hashes = set()
    deduplicated_indices = []
    
    for idx, example in tqdm(enumerate(dataset), total=len(dataset), desc="Deduplicating"):
        minhash = rensa_minhash(example["sql"], num_perm)
        hash_tuple = tuple(minhash.digest())
        
        if hash_tuple not in unique_hashes:
            unique_hashes.add(hash_tuple)
            deduplicated_indices.append(idx)
    
    return deduplicated_indices

def main():
    print("Loading dataset...")
    sql_dataset = load_dataset("gretelai/synthetic_text_to_sql", split="train")
    
    print("Deduplicating dataset...")
    deduplicated_indices = deduplicate_dataset(sql_dataset)
    
    deduplicated_dataset = sql_dataset.select(deduplicated_indices)
    
    print("\nDeduplication Results:")
    print(f"Original dataset size: {len(sql_dataset)}")
    print(f"Deduplicated dataset size: {len(deduplicated_dataset)}")
    print(f"Rows removed: {len(sql_dataset) - len(deduplicated_dataset)}")
    
if __name__ == "__main__":
    main()

Benchmark Results

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

Speed

Rensa significantly outperforms datasketch in terms of speed. The table below provides a detailed comparison of execution times for different numbers of permutations:

Permutations Datasketch Time (s) Rensa Time (s) Speedup
64 34.48 4.89 7.05x faster
128 49.62 5.21 9.52x faster
256 84.76 6.39 13.26x faster

Memory Usage

Memory usage is comparable between Rensa and datasketch, with Rensa showing slightly better performance for smaller numbers of permutations. The table below provides the details:

Permutations Datasketch Memory (MB) Rensa Memory (MB) Difference (MB)
64 265.75 242.36 23.39 less
128 487.02 472.97 14.05 less
256 811.64 774.49 37.15 less

Accuracy

Despite the simplified implementation, Rensa achieves the same deduplication results as datasketch. The Jaccard similarity between the deduplicated sets produced by both libraries is 1.0000, indicating identical results.

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
    
  2. Create a virtual environment:

    python3 -m venv venv
    source venv/bin/activate
    
  3. Install the required dependencies:

    pip install -r requirements.txt
    
  4. Run the simple benchmark:

    python benchmarks/simple_benchmark.py
    
  5. Run the advanced benchmark:

    python benchmarks/advanced_benchmark.py
    

The simple_benchmark.py script provides a basic comparison of deduplication performance between Rensa and datasketch. The advanced_benchmark.py script offers a more comprehensive analysis, including multiple runs with different numbers of permutations, memory usage tracking, and detailed profiling information.

Limitations and Future Work

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

  1. Feature set: Rensa currently implements only the core MinHash and LSH functionality. It doesn't include some of the advanced features found in datasketch.

  2. Customization: datasketch offers more options for customizing the hash functions and other parameters, while Rensa currently has a more fixed implementation.

  3. Theoretical guarantees: Due to the simplified C-MinHash implementation, Rensa may not provide the same level of variance reduction as the full C-MinHash algorithm in all scenarios.

Future work on Rensa may include:

  • Adding more advanced features and customization options
  • Further optimizing performance for specific use cases and data types

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.1.6.tar.gz (60.9 kB view hashes)

Uploaded Source

Built Distributions

rensa-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (452.6 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rensa-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (470.3 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ i686

rensa-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (546.9 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

rensa-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (466.0 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rensa-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.0 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rensa-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (338.1 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rensa-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (320.9 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rensa-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (284.8 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rensa-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (286.9 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rensa-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (292.4 kB view hashes)

Uploaded PyPy manylinux: glibc 2.5+ i686

rensa-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (452.7 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rensa-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (470.6 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ i686

rensa-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (546.4 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

rensa-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (466.3 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rensa-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.2 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rensa-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (338.4 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rensa-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (321.6 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rensa-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (284.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rensa-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (287.1 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rensa-0.1.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (291.9 kB view hashes)

Uploaded PyPy manylinux: glibc 2.5+ i686

rensa-0.1.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (452.9 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ x86-64

rensa-0.1.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl (470.6 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ i686

rensa-0.1.6-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (546.4 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

rensa-0.1.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (466.1 kB view hashes)

Uploaded PyPy musllinux: musl 1.2+ ARM64

rensa-0.1.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.2 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rensa-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (338.4 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rensa-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (321.6 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rensa-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (284.6 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rensa-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (286.9 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rensa-0.1.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (293.0 kB view hashes)

Uploaded PyPy manylinux: glibc 2.5+ i686

rensa-0.1.6-cp312-none-win_amd64.whl (151.1 kB view hashes)

Uploaded CPython 3.12 Windows x86-64

rensa-0.1.6-cp312-none-win32.whl (143.3 kB view hashes)

Uploaded CPython 3.12 Windows x86

rensa-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (452.3 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rensa-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (470.9 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rensa-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl (546.6 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

rensa-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (465.5 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rensa-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.3 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rensa-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.5 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rensa-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (321.4 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rensa-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.6 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rensa-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (286.6 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rensa-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (291.3 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rensa-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (243.9 kB view hashes)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rensa-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (246.5 kB view hashes)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rensa-0.1.6-cp311-none-win_amd64.whl (152.0 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

rensa-0.1.6-cp311-none-win32.whl (143.9 kB view hashes)

Uploaded CPython 3.11 Windows x86

rensa-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (452.5 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rensa-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (470.3 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rensa-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl (547.8 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

rensa-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (466.3 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rensa-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.6 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rensa-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (335.7 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rensa-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (321.6 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rensa-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.4 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rensa-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (287.1 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rensa-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (291.1 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rensa-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (244.8 kB view hashes)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rensa-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (247.2 kB view hashes)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rensa-0.1.6-cp310-none-win_amd64.whl (152.2 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

rensa-0.1.6-cp310-none-win32.whl (143.8 kB view hashes)

Uploaded CPython 3.10 Windows x86

rensa-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (452.2 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rensa-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (470.6 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rensa-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl (547.6 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

rensa-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (466.3 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rensa-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.3 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rensa-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.1 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rensa-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (321.8 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rensa-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.6 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rensa-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (287.3 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rensa-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (291.3 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rensa-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (244.9 kB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rensa-0.1.6-cp39-none-win_amd64.whl (152.4 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

rensa-0.1.6-cp39-none-win32.whl (144.0 kB view hashes)

Uploaded CPython 3.9 Windows x86

rensa-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl (452.8 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rensa-0.1.6-cp39-cp39-musllinux_1_2_i686.whl (473.1 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rensa-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl (548.6 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

rensa-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl (466.5 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rensa-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.5 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rensa-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.6 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rensa-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (322.4 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rensa-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.2 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rensa-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (287.5 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rensa-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (292.8 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rensa-0.1.6-cp39-cp39-macosx_11_0_arm64.whl (244.8 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rensa-0.1.6-cp38-none-win_amd64.whl (151.5 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

rensa-0.1.6-cp38-none-win32.whl (143.8 kB view hashes)

Uploaded CPython 3.8 Windows x86

rensa-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl (452.6 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

rensa-0.1.6-cp38-cp38-musllinux_1_2_i686.whl (471.6 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rensa-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl (547.7 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

rensa-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl (466.8 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rensa-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.3 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rensa-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (339.0 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rensa-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (321.6 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rensa-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.6 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rensa-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (287.7 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rensa-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (292.0 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

Supported by

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