Skip to main content

A ridiculously fast Python BPE (Byte Pair Encoder) implementation written in Rust

Project description

Build   Release

The main purpose of this library is to provide fast and correct token counting for chunking algorithms with a focus on high performance. It implements novel algorithms for BPE tokenization that are both correct and significantly faster than existing solutions.

Installation

Python Package
pip install rs-bpe

rs_bpe consistently outperforms the latest release of both tiktoken and huggingface's tokenizers (March 18, 2025)

rs_bpe throughput

Key Features

  • Efficient token counting with linear time complexity even for adversarial inputs
  • Split text at exact token boundaries while respecting UTF-8 character boundaries
  • Incrementally count tokens while appending text to a chunk
  • Calculate token counts for sub-ranges of text with constant-time complexity
  • Python bindings with OpenAI-compatible interface

These operations are particularly important for LLM applications but are challenging to implement efficiently for BPE tokenization.

Motivation (problems rs-bpe aims to solve)

Existing BPE tokenizers often face performance and correctness issues when used for chunking operations:

Split-at-N-Tokens Problem

Naively splitting text after N tokens by first encoding the entire text and then selecting a boundary often produces suboptimal results:

  • The split point might not align with a UTF-8 character boundary
  • Dropping tokens until a character boundary is reached might result in chunks much shorter than desired
  • The algorithm wastes resources by encoding more text than necessary

Incremental Counting Problem

Incrementally counting tokens as text is appended is challenging with traditional implementations:

  • Recomputing the encoding after every append leads to quadratic complexity
  • Approximating counts by aggregating piece counts leads to incorrect results due to BPE's non-monotonic nature
  • Incorrect counting can cause problems when staying within token limits for LLM APIs

Interval Counting Problem

Counting tokens for arbitrary subranges traditionally requires reprocessing the entire substring:

  • Leads to poor performance for applications that need to count many subranges
  • Makes operations like binary search for token boundaries inefficient

Our library provides novel algorithms to solve these problems with superior performance characteristics.

Implementation

The rs-bpe library is written in Rust with Python bindings, designed for both speed and correctness. It implements several encoding strategies:

Core Algorithm

Our novel algorithm achieves O(n) complexity while preserving the exact output of the original BPE algorithm. The key insight is tracking encodings of all text prefixes efficiently using mathematical properties of valid BPE encodings.

Instead of storing full token sequences for each prefix, we only need to remember the last token of each prefix. This is possible because:

  1. There exists exactly one valid encoding sequence for any input text
  2. Any substring of a valid encoding sequence is itself a valid encoding sequence
  3. Knowing the last token of a valid encoding sequence uniquely determines the full sequence

The algorithm efficiently determines the correct last token for each prefix by checking token compatibility with the preceding token, leading to a linear-time solution.

Backtracking Optimization

For average-case performance improvement, the library implements a backtracking-based algorithm that:

  1. Tries the greedy approach first, using the longest matching token at each step
  2. Backtracks when necessary to ensure valid BPE encoding
  3. Uses a bitfield to make runtime linear in the input length

Special Purpose Encoders

The library provides specialized encoders for specific use cases:

  • AppendableEncoder: Maintains token count state while appending text character by character
  • IntervalEncoding: Preprocesses text once to enable constant-time token counting for any substring
  • BacktrackEncoder: Provides the fastest correct implementation for general encoding
  • OpenAI-compatible Tokenizer: Implements tiktoken-compatible interface with cl100k and o200k models

Performance

Our benchmarks show significant performance improvements over existing implementations:

Note: All benchmark results shown here were achieved using the Python bindings, not the direct Rust implementation. This provides a more realistic representation of the performance users will experience in Python applications. Many libraries release benchmarks based solely on their native implementation, which can be misleading as the language boundary crossing adds overhead.

Single-Text Tokenization

Internal benchmarks show rs-bpe outperforms existing tokenizers across all text sizes:

Text Size rs-bpe_cached vs tiktoken rs-bpe_cached vs HuggingFace
Small 15.1x faster 7.6x faster
Medium 3.7x faster 8.8x faster
Large 2.2x faster 14.0x faster

_Encoding speed (benchmark.py results):

_

SMALL TEXT:
  tiktoken: 0.000605s
  tokenizers: 0.000305s
  rs_bpe_basic: 0.000095s
  rs_bpe_cached: 0.000040s

MEDIUM TEXT:
  tiktoken: 0.000287s
  tokenizers: 0.000677s
  rs_bpe_basic: 0.000096s
  rs_bpe_cached: 0.000077s

LARGE TEXT:
  tiktoken: 0.003613s
  tokenizers: 0.023054s
  rs_bpe_basic: 0.001438s
  rs_bpe_cached: 0.001652s

The rs-bpe library also provides significantly faster decoding and roundtrip operations:

_Decoding speed:

_

LARGE TEXT:
  tiktoken: 0.000257s
  tokenizers: 0.003614s
  rs_bpe_basic: 0.000184s
  rs_bpe_cached: 0.000158s

Batch Processing Performance

rs-bpe provides efficient batch processing that scales better with batch size:

Batch Size Encoding Speedup Decoding Speedup Roundtrip Speedup
1 5.1x faster 2.6x faster 1.7x faster
10 2.8x faster 1.6x faster 2.1x faster
100 3.0x faster 1.3x faster 2.3x faster
1000 3.1x faster 1.8x faster 2.5x faster

_Throughput comparison (tokens per second):

_

BATCH SIZE 1000:
  tiktoken: 0.032521s, 1,970,002 tokens/sec
  rs_bpe_standard_batch: 0.010663s, 6,008,200 tokens/sec

Worst-Case Performance

While tiktoken shows quadratic growth for certain adversarial inputs, rs-bpe maintains linear scaling even in worst-case scenarios. This is critical for production systems that need consistent performance guarantees.

Key Performance Advantages

  1. Memory Efficiency: The implementation uses compact data structures and avoids redundant token storage
  2. Thread Pool Optimization: Batch processing uses an optimized thread pool with smart worker allocation
  3. Caching: The library includes intelligent state caching for repeated operations
  4. No Correctness Trade-offs: Unlike some implementations that sacrifice correctness for speed, rs-bpe is both fast and correct

All benchmarks were run on standard hardware and results may vary based on your specific environment.

Python Usage Examples

Basic Tokenization

from rs_bpe.bpe import openai

# Load OpenAI tokenizers (automatically caches for reuse)
cl100k_tokenizer = openai.cl100k_base()  # GPT-3.5/4 tokenizer
o200k_tokenizer = openai.o200k_base()    # o200k tokenizer

# Basic encoding
text = "Hello, world! This is an example."
tokens = cl100k_tokenizer.encode(text)
print(f"Encoded tokens: {tokens}")

# Basic decoding
decoded_text = cl100k_tokenizer.decode(tokens)
print(f"Decoded text: {decoded_text}")

# Simple token counting
token_count = cl100k_tokenizer.count(text)
print(f"Token count: {token_count}")

Efficient Token Limiting

One of the key features of rs-bpe is the ability to efficiently count tokens up to a limit, which is useful when you need to stay within token constraints:

from rs_bpe.bpe import openai

tokenizer = openai.cl100k_base()
max_tokens = 50

# Count tokens until limit is reached
text = "This is a long text that might exceed our token limit... " * 20
char_position = tokenizer.count_till_limit(text, max_tokens)

if char_position is not None:
    # We reached the limit before the end of the text
    truncated_text = text[:char_position]
    print(f"Truncated to {tokenizer.count(truncated_text)} tokens")
    print(f"Truncated text: {truncated_text}")
else:
    # The entire text is within our token limit
    print(f"Text is within token limit: {tokenizer.count(text)} tokens")

Batch Processing

rs-bpe excels at batch processing with automatic parallelization, which is perfect for processing large datasets:

from rs_bpe.bpe import openai
import time

# Load the tokenizer
tokenizer = openai.cl100k_base()

# Create a batch of texts
texts = [
    "This is the first document to encode.",
    "Here's another one with different content.",
    "A third document with some more text to process.",
    # Add more as needed...
]

# Configure parallel processing options (optional)
parallel_options = openai.ParallelOptions(
    min_batch_size=20,      # Minimum batch size to engage parallel processing
    chunk_size=100,         # Number of texts to process in each thread
    max_threads=0,          # 0 means use optimal thread count (based on CPU cores)
    use_thread_pool=True    # Reuse thread pool for better performance
)

# Encode batch with performance metrics
start_time = time.time()
result = tokenizer.encode_batch(texts, parallel_options)
end_time = time.time()

print(f"Processed {len(texts)} texts in {result.time_taken:.6f}s")
print(f"Total tokens: {result.total_tokens}")
print(f"Throughput: {result.total_tokens / result.time_taken:.1f} tokens/second")

# Access individual token lists
for i, tokens in enumerate(result.tokens):
    print(f"Text {i} has {len(tokens)} tokens")

Advanced Usage: Checking Token Compatibility

For specialized applications, you might need to check if a text can be tokenized within a specific token limit:

from rs_bpe.bpe import openai

tokenizer = openai.cl100k_base()
max_tokens = 4096

def is_compatible(text, max_tokens):
    """Check if text can be tokenized within the token limit."""
    count = tokenizer.count(text)
    compatible = count <= max_tokens
    return compatible, count

# Example usage for verifying text compatibility
texts_to_check = [
    "Short text that's definitely within limits.",
    "A" * 20000  # A very long text that might exceed limits
]

for i, text in enumerate(texts_to_check):
    compatible, count = is_compatible(text, max_tokens)
    status = "compatible" if compatible else "too long"
    print(f"Text {i}: {status} ({count} tokens)")

Text Chunking

You can use rs-bpe to efficiently chunk text based on token counts:

from rs_bpe.bpe import openai

tokenizer = openai.cl100k_base()

def chunk_text(text, max_chunk_tokens=1024, overlap_tokens=50):
    """Split text into chunks of approximately max_chunk_tokens."""
    chunks = []
  
    # Get the full text token count
    total_tokens = tokenizer.count(text)
  
    if total_tokens <= max_chunk_tokens:
        return [text]
  
    # Keep track of where we are in the text
    start_pos = 0
  
    while start_pos < len(text):
        # Find where to end this chunk
        char_position = tokenizer.count_till_limit(text[start_pos:], max_chunk_tokens)
      
        if char_position is None:
            # The rest of the text fits within our limit
            chunks.append(text[start_pos:])
            break
      
        # Add the chunk
        end_pos = start_pos + char_position
        chunks.append(text[start_pos:end_pos])
      
        # Move to the next chunk, considering overlap
        if overlap_tokens > 0 and end_pos < len(text):
            # Move back by overlap tokens
            overlap_char_position = tokenizer.count_till_limit(
                text[start_pos:end_pos], max_chunk_tokens - overlap_tokens
            )
            if overlap_char_position is not None:
                start_pos += overlap_char_position
            else:
                start_pos = end_pos
        else:
            start_pos = end_pos
  
    return chunks

# Example usage
long_text = "This is a long document that needs to be split into chunks. " * 100
chunks = chunk_text(long_text, max_chunk_tokens=100, overlap_tokens=10)

print(f"Split text into {len(chunks)} chunks:")
for i, chunk in enumerate(chunks):
    token_count = tokenizer.count(chunk)
    print(f"Chunk {i}: {token_count} tokens, {len(chunk)} chars")

Thread Pool Configuration

For high-volume applications, you can control how rs-bpe manages thread pools:

from rs_bpe.bpe import openai
import multiprocessing

# Get the number of CPU cores
cpu_cores = multiprocessing.cpu_count()
physical_cores = cpu_cores // 2  # Approximation for physical cores

# Configure parallel options based on workload needs
low_latency_options = openai.ParallelOptions(
    min_batch_size=1,        # Parallelize even small batches
    chunk_size=10,           # Process in smaller chunks
    max_threads=2,           # Use fewer threads to minimize overhead
    use_thread_pool=True
)

high_throughput_options = openai.ParallelOptions(
    min_batch_size=50,                # Only parallelize large batches
    chunk_size=200,                   # Larger chunks for better efficiency
    max_threads=physical_cores - 1,   # Leave one core free for system
    use_thread_pool=True
)

# Process batches with different settings based on priority
tokenizer = openai.cl100k_base()

# For interactive, latency-sensitive operations
small_batch = ["Quick response needed"] * 5
result_small = tokenizer.encode_batch(small_batch, low_latency_options)

# For background processing jobs
large_batch = ["Process in background"] * 1000
result_large = tokenizer.encode_batch(large_batch, high_throughput_options)

Building from Source

git clone https://github.com/gweidart/rs-bpe.git
cd rs-bpe
cd python
maturin develop --release

License

MIT License

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

rs_bpe-0.1.0.tar.gz (2.7 MB view details)

Uploaded Source

Built Distributions

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

rs_bpe-0.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (25.9 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

rs_bpe-0.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (25.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

rs_bpe-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rs_bpe-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rs_bpe-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (25.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

rs_bpe-0.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (25.6 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

rs_bpe-0.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (25.9 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

rs_bpe-0.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (25.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

rs_bpe-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rs_bpe-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rs_bpe-0.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (25.6 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

rs_bpe-0.1.0-cp313-cp313-win_amd64.whl (25.6 MB view details)

Uploaded CPython 3.13Windows x86-64

rs_bpe-0.1.0-cp313-cp313-win32.whl (25.5 MB view details)

Uploaded CPython 3.13Windows x86

rs_bpe-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

rs_bpe-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl (25.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (26.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (25.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rs_bpe-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (25.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rs_bpe-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rs_bpe-0.1.0-cp312-cp312-win_amd64.whl (25.6 MB view details)

Uploaded CPython 3.12Windows x86-64

rs_bpe-0.1.0-cp312-cp312-win32.whl (25.5 MB view details)

Uploaded CPython 3.12Windows x86

rs_bpe-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

rs_bpe-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl (25.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (26.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (25.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rs_bpe-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (25.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rs_bpe-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rs_bpe-0.1.0-cp311-cp311-win_amd64.whl (25.6 MB view details)

Uploaded CPython 3.11Windows x86-64

rs_bpe-0.1.0-cp311-cp311-win32.whl (25.5 MB view details)

Uploaded CPython 3.11Windows x86

rs_bpe-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

rs_bpe-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (25.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (26.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (25.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rs_bpe-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (25.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rs_bpe-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rs_bpe-0.1.0-cp310-cp310-win_amd64.whl (25.6 MB view details)

Uploaded CPython 3.10Windows x86-64

rs_bpe-0.1.0-cp310-cp310-win32.whl (25.5 MB view details)

Uploaded CPython 3.10Windows x86

rs_bpe-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (25.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

rs_bpe-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (25.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (26.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (25.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (25.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (25.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rs_bpe-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (25.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rs_bpe-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file rs_bpe-0.1.0.tar.gz.

File metadata

  • Download URL: rs_bpe-0.1.0.tar.gz
  • Upload date:
  • Size: 2.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rs_bpe-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1875d29abd920581bb418e830cc98c2f71f70a9840c7a8a3c817493a9b506657
MD5 e81150d42915ca9193d58a7d731b12ec
BLAKE2b-256 55d095870a2bfe1d7214509d2f1cc1ab070ee3f2a4389099fb2ad0da303ac021

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0.tar.gz:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 29845ab2ce65c2e10c856ea95bfd188859f53761728a96ed20c6ae4dd6a22872
MD5 8f1a217b3ea438f19d7cc4b0c6ff38cc
BLAKE2b-256 d7c4d237a0fde14a4eb3409b74eaf96bdd370134b841d9a04d5dc5b78df94838

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 272005714efe90210b17c594edf86b57d917ee5b3378576062c53e5d2b4a585b
MD5 7bca82a4356e5cc564100d49d6b5e04e
BLAKE2b-256 007b61217769edf89d8d49d8b1db8583ed7957a67c2ec4855dfc833c24773d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6ea389f5846850049a97e12aef1c7a3542830d477949989cdb3fb5ba613feaf
MD5 109eb7fb7550e031e2bccd4a04d93802
BLAKE2b-256 caad31e3cc9a6cd1d02bdb87d4e88f7ffa14153e43c891e7206bf5a78aa8414c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd0c7fc573837351f81c2275b16b27179ad1c952b72f7590bdb6a0326f832f4a
MD5 e4e6ca38ff5d7a24569008c7cd32c8ba
BLAKE2b-256 23ae2d7b306c5e43d8971ea4f598569e964007cb40ebdf1e9f2dc0dffda797be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 359967930ed9dcc2f426878f1d47485f8c1d8d936a063ffff55704d3d5ad77d0
MD5 4e1622137b0a10fc85d7dec5302f89c6
BLAKE2b-256 200a8a73919814bd70215adf9d013a559cb3d7deedc761c8ec5abd48ae584e1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5262d025fa31dbbe8a6d81d2237fbd0aee259c58f0281f63c59bf86a2b41f5f2
MD5 d02c5abc7117443188c23c966379de69
BLAKE2b-256 0d6acaef31065f9140fa5194707e381874736be42cff5f49b4c023f601270c5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63fffdcd5bdf92dce134a9c5edfe8c013b164e082136591aebb91cc1733cb5df
MD5 194ea5646bd85e096905bef86bce26aa
BLAKE2b-256 1a4802cb3970a5c52d4ae808807f613ba17c9e743656242b122fff15c6eecfcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6a6425ff9f0448e84cdec98873580d12645a33529e274f6ec794463b7497e24f
MD5 765c0262e6a8c435fb3dca30f8ba7ba5
BLAKE2b-256 abed5bcaf07308aab0b36dddd45b19fdb2f2a42dfbcd7fe2dcc2290e41d919c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b8218c77cacbe62329518c7a4c10cbd2547182c4244d7cebc0ce3a078ad440c
MD5 8d8febfa54c25fcb7c319661ebc8f443
BLAKE2b-256 a568c9924f3b950f178858738bda9c21cd55998ac41ec3650a9ab8ea2b7d8daa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 661a525ef72fd371e690328c2f6cad4605970d3bc9612c44908f2efeaac7016c
MD5 4a12df2d7bf217ad0dfd7c3ee909e84f
BLAKE2b-256 7b46c00bafaf85b3c0e5ce65d1f43a8d78fb14c9c8e81a3be1797fe7c1a985ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9458647b3730bc26dfd2aab6c233668acbaae1f795113f6d4c48726500f5105
MD5 93eb3f7c26da6227d3c5433301e13f8d
BLAKE2b-256 cb042b463b86f345ffc32d183137827028b878dc543a0fdbe9ac42691ab0d86e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rs_bpe-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 57ef30b1b202bc5b58afa1400a7a66a15ed0d65e829a548ae62d148a88424715
MD5 60063d1077a5c9871883c8b493560dd7
BLAKE2b-256 58700377ac1228615ad611d832316f473cb42bda89a4211e538da74a68ac6f93

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: rs_bpe-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 aa08619a003bc6a0c93d2cebe56291c8dfa67eb303f387a76e685ef7f60872a2
MD5 4193ba9b4245e65d062225ade8a47a6e
BLAKE2b-256 b7a9c29f4e26a1b25ab42cb16b5741eb68379a2c71e9bd6d3070104c52001ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-win32.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fadbac9ef7ec7fa308b3adb8ab01f50875e6d8b496f8027df38644f08f8c12fa
MD5 595c455fb1b499e01b60f2958caee494
BLAKE2b-256 0f8a3f736a79bf9b5e71b20543ba6de996c7a9b1ff733f7bc7a10e11505c3239

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 90ef0fc408a9f1ef3efe00c842cbc07677fee75309e6013bcdb4a47f6d358fac
MD5 0d8e5eea0847d8e8b71af2b4707e94fe
BLAKE2b-256 f9916f07b24c830a89b8108e3c7e100e78fecc968e0a53b5f36b8b7724bc966d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c96b9033aa3bc300f0985ed54ffa0e72b3e98d7055b5d8de29190ce1fd7336b
MD5 70fcace7a5f1bdc8c71769714923a538
BLAKE2b-256 bec1907c1565d84024da249cfdb54d9f86a6b147fd9dce117b7d65807fb4f875

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dde6a0c46dbf4371dc53f88470a0a86e221bb18e9c2c822335afdc1057109f7b
MD5 50d30c4fff7e07bfdd72ba531dd4ef31
BLAKE2b-256 38db226ad380d5206e9cf3f543f9b942a57470986f2f8fa9a4cf3fb0f509ba06

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37be54240de423364a448970556ae1ecaa49f0ae53a0ba5549239e4dba2e7378
MD5 95eb97bf7435a4a894fa2d9b7220eb24
BLAKE2b-256 430cd9e84bdbd91ae3b4485abbc8d138d007278750da4130877859417bba7eef

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6473122987d94010727225c33786f2fe58359bba7fb1906f6066bffc02694f23
MD5 f52721f33b02a44c17cc1ec37c01917f
BLAKE2b-256 9a33cfbb0d4e698b1513a1c80161cb0bdb49fd702a33d0729f56177241d71075

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d04bf5910b813b5a5f83aeed49a4ed0d86277f9bb085e65cebba117209d2e062
MD5 c92f4304bd2fd50cd1fe0a8349be446d
BLAKE2b-256 36527c6c32ebb04ee88705651007e06ad7244007c9bf18a79dcc23dd5a2c9078

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e28ba22407218127143f77681a4575058a93acea7c8f6c0c2c0581693482b1b
MD5 8fdcd36431fa0e3485d0f4c4ec70d4f9
BLAKE2b-256 6a6fd531ddef34cbcfebbd6125735b8f0ada27da4209e4705fb8735a301d2de0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 710411df6dacbf7bcd03dabcd55dafdb6f31c073fce0495dcd0955e53338af9d
MD5 c0ddeb9ad55611a2db9e8f05e3e3ca1f
BLAKE2b-256 c2caff729ec7c1ac0273153f74f6225d9e4c4908a6c82acff897a3321b1168de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rs_bpe-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4bb02475bef6a12d15f6b67b25c65d3463af397149b03826ac6150a7c46f5765
MD5 6fc69391cf11e7ac94974e813bb46dcf
BLAKE2b-256 6ccd971aafb06b060d95d6c0cd1e9d5c33e17c737fedac35eb7bae78e1ce0e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: rs_bpe-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 260f1a5099ec8e5be5c58bcec0b9c8d11dcdb6dbabbaf39606fd9cf1fb76774c
MD5 c00118ae1dab642236ddb4d2ce96b1b4
BLAKE2b-256 2303b31d9822b6bb3660969c3bea74ba4ee2a8597da50b779b2f58855041d55c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-win32.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3b09fed287a02ff650e8831f232f3ada9d476ac3d0c10ea23c802d19dfdd95be
MD5 85e40837243ef144c4aa5d5f995f78d3
BLAKE2b-256 3ad50a247c5de13b1e0bb94012d6b9043f93b0d6e30c67b866c3d1af09a4c095

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c97ca7eeefd32e67aeb9b06c2311a36098e3e04b145d8623cd92ed06e6cb18b3
MD5 0a1979a04e9a67fd8289b702b82eb3ad
BLAKE2b-256 ab7e0a2d23b7410d5954696fd9a94f71815e75bcb61384c037965cddd1c3d35e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60b32b131ca6cd653b74bf3db709693f66399e0e18aee9e8aacd36790cd71ca5
MD5 bd68e9055bc95725830306cd73922c2b
BLAKE2b-256 545ad77d4abfea3eb4084e73788bdc945c3490c3ba353c4a837ed630b0371a49

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d9c5a823168ca3450dfc8e1b83920aad0ab3e2a1df51783fd2660fcb8744c14
MD5 45b2a23a14c430158570e3fed1b5c50c
BLAKE2b-256 05c346c1d1dd3a502fb563028c6c05a5cd147e04156fd57748a1e74709c2ea3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c4f4ad70fb6cb654d973f4bd0904d7155f45870ff4ffd760c3007c3268e6c70
MD5 2a15a7101d9c1e7d163426af420581c3
BLAKE2b-256 84f139d2e2950c9dd663cd6413b6bb935daf2bfddf3b1b21be1938479e1c9e22

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc5b2c8c56b53eec0dcff9f0020a5bd23cc93a431ac6f386fc9b6ccbb22ff9ad
MD5 6152380278a36f7200fb6f6932311fbc
BLAKE2b-256 2d0c4282ac0649bd71b5de21125b81f6de7a4b264015ab7d487b9c3ed3390ea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 518cf76b1d38b6f63bfe50b6950f602f4e0a2c2f5750c1ea1f782d97b7bce7ff
MD5 94f9a61751498d3fbd5ea2134736d5f1
BLAKE2b-256 84cc0ca0ed14270be70d1b014ed244816cbb3c92428b5da51d97441c0d2fa461

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64a92126523fb994837cd56d1e16d6dc3182afeb649751e987302dc6aecf44f5
MD5 d6948c20d0507ea46051c61725a633dc
BLAKE2b-256 0157028dd787518ec876ef0cafec1e4aff473a8dd30f101d4bde65b6421b7156

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 069a43b87017260fb369f73f070dc2b0e08f05156ed6b9d2a19067f1d94bbe72
MD5 6e28a7201c5ca86f15eeb4d138aa32f3
BLAKE2b-256 d137dc12e446004b6b2527d216a770c0c91c174d7472b9f1210e92a736fd73a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rs_bpe-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 65ed1e35ad440b62363552ecc485df3ac242d7563c671507cdfcbff8858ee670
MD5 29f1abb957e6f3f90c496dc3abcf836d
BLAKE2b-256 03ae82f5f50238fa8fd09360972f77b79a0e7ce218ab54b737f457971f6f65df

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rs_bpe-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e3480f5976994306e5cf5bfad552b75edfeaf3bea2d36f0d96153ae54a0c9347
MD5 374bfc0616f6091079966dba43777782
BLAKE2b-256 4df0d54977d7fa948c49a5c2a3fd645b4d5d563292ad490ccd9bae8d1ee79015

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-win32.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f8fbeccb6986c901821a053fd8ddab732c7f408b56b5f9eb92ec13520775cbe1
MD5 c571b8fe0fc76807daa1ed7a40e22a2a
BLAKE2b-256 cb7d71a1f1ddc351b1fcf6dcca71a9447c77806170d9378e91b0319be2cbb05c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb58e9541f482de3604f31c8e8c0ed33810e1b1a236aa2d4a4bb63e57025f17f
MD5 3dc55664f730069dbe5ee320f2c79f54
BLAKE2b-256 c9101f5ac153a761a9e529da0dcf17736a626b498454978622c1e664f9daacf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 987b6f23e1561eb7895d488b43bdc8ff8f19af9a63985e4e5a44173380cb026d
MD5 066be3352952cf291506b2a305528dfc
BLAKE2b-256 bebad4e304fbe58fafcbad6b92ae335a833f920da10741cfd876c73aac2e1748

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3224add38575f3d1c9b168d2f02b69bcfd9f530418ca5d1144893a908f2a41b0
MD5 b06d3139cb8d518d57201302f7040e5c
BLAKE2b-256 2a6586dc5f8a51d82c79ccbeea135d8017ee6a87d1e614b630a94904da6a6d13

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f882d4e8b879103ad4317317ac3c81fd5c3cc194eedbf044375c02a584e48b0
MD5 1dc58ddd04bdc57e01ee2db9b06ae56c
BLAKE2b-256 49accfde6b39f5453bcec1883ede4e6f3558c0d345ec236d17a6f150e4bf048a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36245fe1e2cb498e7d44b8d85ccc351aeffd6656bfd61e0b653cc6848449cb1e
MD5 4424dbad2c130c3905c9097284ed9cf1
BLAKE2b-256 5ad30ffd2263b43452367e5d444736942c2c65887f3bc0e5539307745af9ded3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d516d19b60f6c07e0612050d82ffb23e27b391c3ebf0dd67ed3009851598505b
MD5 c5b75eb99b1c06f5795b4a416770c085
BLAKE2b-256 297942b13d3684b5be2402f38eff65b213c3226848d859cc0e9632d09da53bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32dbd93fed6ed1fe47bab200fd20efd57280c2326c79501aaaf1758c214552cd
MD5 614e89419e976df6977cc50edc6ece6d
BLAKE2b-256 0a4732c953e466f300f5cb9d5a294cd8b53029909e82fc39c2209fb104a064a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67c80edd403a9c2897e37c8a32594242aeb1ac716a72ce08356b17aadbd53dec
MD5 ce884596f739a401a19c084cc7d74a2d
BLAKE2b-256 39483629284d771731c0673e56b12235a25db3268f8d79611891ea909559edbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rs_bpe-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 25.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6fb8af84ee6568f11b674609e4e6c1645c9b82a5f4a236b37b57e1a496877a45
MD5 8f6460798e9b6eada9955e789748432b
BLAKE2b-256 ac8019f010e2c8e82d0cb6ecba58a9a97b38ca0587a60d59d5a9e4db6645f36b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: rs_bpe-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 25.5 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0808ed4e869446d536d9df04339884f3c2867e11a7e0c6ca77ed5c39c2e1a9a8
MD5 b15c01637519b2bfb1a677501ef4b2ad
BLAKE2b-256 1da72772c4da18911566944658c1b89598829f49356d97c29361b78063f9350d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-win32.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d9fec04ae20b8efa8c8dd55786d92f567085f99a98dbae537c225c19c1490762
MD5 4b7767438d1b076794f8ddf8fea94038
BLAKE2b-256 7de35775dd05d427c41fb8fd90a5e0db8654b416dd6865eca4a325dba2208481

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5aaa51f5448803e172384fec1650233c4797aaf6f3004b51be50244bb08b8b54
MD5 d23f2c5a7658a39b3b110d5485f47d30
BLAKE2b-256 7a9463f9200f3c0c501c78d86a891e7cd2416a132fc751f25e95623ae48b50d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 434a02869922e616a0c5729c512cfa8a1d8516c57d5780d73e957374223662e4
MD5 64629db9b930b1a7409e75d47b08c473
BLAKE2b-256 04b5bc5a4d969c4c7ae7fb622ee70fd3722495567100057ef72c8c832eb572b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 059bed301e6164b483a08a53c31200a0e0e0188cff6ff3958adb4cd36ec2a6c9
MD5 f9765619f594bfa6d8582d8ff8c5eac9
BLAKE2b-256 595e8efc2de389195a4291febf16034c6d6c668dec09c45f9bbe68cfaa913cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3da34bf53ed9771dcb56f60fee228bc101d5eaa943a2ed5fd6a6b7b3d658110
MD5 fd2f55b50ab22aa8b36e70b2cf8dcb85
BLAKE2b-256 94608b6ee3bb034ab8eb67fd0a03f3ecfaf962c69091a5e598f539ff2c923717

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5ed1f4c6d4d27f1cc37e2cb13b8b92f09ed8e615fc63e5a0fb8d910d1463531
MD5 4b658f6d9c0f32ed1d18d04dd868b462
BLAKE2b-256 f1d329fd485b0f5d98454ada7d2c37e91fb7a807ad5bd18b8eced7ecd7a306c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de4548af3dcfb221a5878cbac884f380968d2c3b500aa7a30a475b1c62545edc
MD5 9530844e9805e02c1063d87d25070428
BLAKE2b-256 be4300d209643a375a678b7703defee5936cbe3dd5c918be6ecd190cce24f011

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26633cb384442ffc956a960265cd741c2bcb4ccb503182a00e0d1696fc49b110
MD5 b106bc42af0bedf8663a74f303201373
BLAKE2b-256 db3e53e4646a44de095e323d55ee958191fe62a61758c57e363641dc5f07338d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on gweidart/rs-bpe

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

File details

Details for the file rs_bpe-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rs_bpe-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8eb58de4941de27dbb454dc0ae1f44a2558af209cac85412f2daedb792789b79
MD5 bc9e071e3c07d717082db6bed1d7d9fc
BLAKE2b-256 be4fb0cdaf55588f8d744409fab9eb5fcb1c4cc54c7cf5b8424d468ca6323333

See more details on using hashes here.

Provenance

The following attestation bundles were made for rs_bpe-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on gweidart/rs-bpe

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