Skip to main content

A high-performance, drop-in replacement for Python's re module, powered by Rust.

Project description

reru

reru is a high-performance, drop-in replacement for Python's re module, powered by Rust.

It combines the raw speed of Rust's linear-time regex engine with the flexibility of backtracking engines when necessary. reru intelligently analyzes your regex pattern and automatically selects the most efficient engine for the job.

🚀 Features

  • Multi-Stage Hybrid Architecture:
    • Tier 1 (Fastest): Uses the regex crate (linear time O(n)) for standard patterns, ensuring protection against ReDoS.
    • Tier 2 (High Performance): Automatically switches to pcre2 (JIT-compiled) for patterns with look-arounds ((?=...)) or backreferences. It is significantly faster than standard backtracking engines.
    • Tier 3 (Fallback): Falls back to fancy-regex only for complex patterns not supported by the previous engines.
  • Global Caching: Compilations are cached efficiently using a thread-safe DashMap, making repeated calls lightning fast across threads.
  • High Performance: Implemented purely in Rust using pyo3 and maturin.
  • Rich API: Supports standard methods like match, search, findall, and sub, plus named capture groups.
  • Type Safe: Includes full type hints (.pyi) for better IDE integration and static analysis.
  • Cross-Platform: Pre-built wheels available for Linux (x86_64, aarch64, armv7, musl), macOS (Intel & Apple Silicon), and Windows (x64, x86, arm64).

📦 Installation

Install reru easily via pip:

pip install reru

🛠 Usage

reru exposes a simple API similar to Python's standard re module. Functions are available directly at the module level for optimized dispatch.

Basic Matching and Searching

import reru

# Check if a pattern matches (returns bool)
if reru.is_match(r"\d+", "The answer is 42"):
    print("It's a match!")

# Search for a pattern (returns a Match object or None)
match = reru.search(r"(\w+) world", "hello world")
if match:
    print(f"Full match: {match.group()}") # "hello world"
    print(f"Start index: {match.start()}") # 0
    print(f"End index: {match.end()}")     # 11

# Optimized usage
RE1 = reru.compile(r"\d+")
RE1.is_match("The answer is 42")
RE2 = reru.compile(r"(\w+) world")
RE2.search("hello world")

Named Groups and New Methods

reru now supports named capture groups, findall, and sub (substitution).

import reru

# Named Groups
match = reru.match(r"(?P<year>\d{4})-(?P<month>\d{2})", "2024-05")
if match:
    print(match.group("year"))  # "2024"
    print(match.group(1))       # "2024"

# Find All Matches
results = reru.findall(r"\d+", "Items: 10, 20, 30")
print(results) # ['10', '20', '30']

# Substitution
text = reru.sub(r"ERROR", "CRITICAL", "System status: ERROR")
print(text) # "System status: CRITICAL"

⚠ Important: Substitution Syntax Difference ($1 vs \1)

Unlike Python's re module which uses \1 or \g for backreferences in substitutions, reru passes the replacement string directly to the underlying Rust engines.

You must use Rust/PCRE syntax for substitutions:

  • Use $1, $2 instead of \1, \2.

  • Use ${name} instead of \g.

import reru
import re

# ❌ Python Standard Syntax (Doesn't work in reru)
# re.sub(r"(\d+)", r"Value: \1", "100") 

# ✅ reru Syntax (Rust Style)
reru.sub(r"(\d+)", r"Value: $1", "100")
# Output: "Value: 100"

# Named Groups
reru.sub(r"(?P<val>\d+)", r"Value: ${val}", "100")

Advanced Configuration

You can fine-tune the regex engine using ReConfig. This allows you to control case sensitivity, multiline modes, whitespace ignoring, and execution limits.

from reru import ReConfig

config = ReConfig(case_insensitive=True, multiline=True)
match = reru.search(r"hello", "HELLO world", config=config)

Engine Selection (Advanced)

If you need to force a specific engine (ignoring the auto-detection), you can use compile_custom:

from reru import SelectEngine, compile_custom

# Force the Standard Rust engine (strictly linear time)
pat = compile_custom(r"\d+", select_engine=SelectEngine.Std)

# Force Fancy engine (for full Python compatibility in substitution)
pat_fancy = compile_custom(r"\d+", select_engine=SelectEngine.Fancy)

⚙️ How It Works

reru uses a "Try-Fail" fallback strategy to ensure the best balance between performance and compatibility:

  1. Stage 1 (Rust Regex): Attempts to compile with the regex crate. It guarantees linear time execution but doesn't support look-arounds or backreferences.

  2. Stage 2 (PCRE2): If Stage 1 fails, it attempts to compile with pcre2. This is a high-performance JIT-compiled engine that supports most complex features (look-arounds, etc.).

  3. Stage 3 (Fancy Regex): If PCRE2 fails or is unsuitable, it falls back to fancy-regex as a last resort to maintain maximum compatibility.

💻 Development

To build reru from source, you will need Rust and uv (or maturin) installed.

  1. Clone the repository:
git clone https://github.com/berrytern/reru.git
cd reru
  1. Setup environment:
uv venv
source .venv/bin/activate
uv sync
  1. Build and install:
maturin develop --release

📄 License

This project is licensed under the Apache License 2.0. See the LICENSE file for details.

👥 Authors

  • João Pedro Miranda C. Hluchan - Initial work - berrytern

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

reru-0.3.0-cp314-cp314-win_arm64.whl (976.9 kB view details)

Uploaded CPython 3.14Windows ARM64

reru-0.3.0-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

reru-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

reru-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

reru-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

reru-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

reru-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reru-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

reru-0.3.0-cp313-cp313-win_arm64.whl (978.7 kB view details)

Uploaded CPython 3.13Windows ARM64

reru-0.3.0-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

reru-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reru-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

reru-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

reru-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

reru-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reru-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

reru-0.3.0-cp312-cp312-win_arm64.whl (978.9 kB view details)

Uploaded CPython 3.12Windows ARM64

reru-0.3.0-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

reru-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reru-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

reru-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

reru-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

reru-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reru-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

reru-0.3.0-cp311-cp311-win_arm64.whl (976.6 kB view details)

Uploaded CPython 3.11Windows ARM64

reru-0.3.0-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

reru-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reru-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

reru-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

reru-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

reru-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reru-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

reru-0.3.0-cp310-cp310-win_arm64.whl (976.6 kB view details)

Uploaded CPython 3.10Windows ARM64

reru-0.3.0-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

reru-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reru-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

reru-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

reru-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

reru-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reru-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

reru-0.3.0-cp39-cp39-win_arm64.whl (977.4 kB view details)

Uploaded CPython 3.9Windows ARM64

reru-0.3.0-cp39-cp39-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86-64

reru-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

reru-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

reru-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

reru-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

reru-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

reru-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file reru-0.3.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 976.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e00d84bdd41d526ea828627129715b5b5474eafa69ea642477812ec52bd287b9
MD5 8fe1fa01c562625176c9ce17a3c02e16
BLAKE2b-256 3c2aba196bb5e249d107cf15b6aa7840d17b72d3fbed4b0502a23a219fb34320

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: reru-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 64a50742e635f9a0e2b29ebe42d8a39837806dd9e63165d65c7d07ff256c7fb1
MD5 c1d7a24acefb550846b3598204bd50a7
BLAKE2b-256 80b4b47894f800c755a9166c3902a19d018dc1087cacd6605d4db100a126962b

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f77bd3eed9871f84b483daa9eaa8de1f8037f22667dea35c65fc3b91768af62
MD5 31acbff60d23d6578cdba71105ba69ba
BLAKE2b-256 ebc919df0a1d2a54fa2e29347fd53d9d094f8df01e80e0de65ab8f8c33580918

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 083e444900d123273ca8e9c4a346dc4421a0530b3f9ec6d2cc2376bae4804282
MD5 1385b113813593a8e0a9124278baab94
BLAKE2b-256 0c76f86d93da9c8158c53c8a24919765ffcf0c1597f7c51bb4058b93bfd6a9e2

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95ade2a26d67366a5bd6d23deb937a4e97d039649b69770b5158bb90b734a8b0
MD5 5d2524841a5c0bddea48dd2533d1d1a7
BLAKE2b-256 d06c3c5ff4048de085e4e23b29ff98b6c7da7af1d010c37588cb91747aecb2c4

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5e6a3b834454411b12510f239b13b481911278d96a50bd80d8ca82a4666f8c7
MD5 a9979ff3f206153648b42f1f8e293e78
BLAKE2b-256 9eaa16a5115f67e2f3424247f5a79d7fcb9e431cb5ca86b0eebfe2c08391665a

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a20b1116a9519078590dd0dcd82d99b19763112e93b59525f54d3c4006fe1de
MD5 b898cb98de8f63825246d18bc1600d1e
BLAKE2b-256 53515bf4307d1b8434ddfec8390e7a0b623f348e0f1d347cbd2dc50398805bbe

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68b0a736fed9397016de048a4c09b95744e537598ee8e1fa0dbc36bdea92b4eb
MD5 628a8e5c300b90a4adfd25b7994229ec
BLAKE2b-256 c0a5374375e2d051369b1388f8fcc495d8921933ac55ae68a9b658f87f3ab0c5

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 978.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 13546f98fd285c111433638b1be118bb7b64400184e772e00e03a59732e890f6
MD5 10592e836c1b93d800c9df3ce0d8b16c
BLAKE2b-256 fa99c8a38085308d76ec5499c9c8396b4dcf25dc8a2d80ab5f93f77c9dcc879a

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: reru-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 16884e042e1bf81c6efb0956658178beccb6bfbf43409715c2e987289fef4c27
MD5 e38b0dda1f0f9607751b728060073c71
BLAKE2b-256 77c6e459511e705329c3440903f34ed2ea64ef292cf024accb45a118951747cc

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4467a51351dcf0a1d131e691dd80cb35bc8401889550f23e0d6c393fb2ea31d
MD5 cba5f890902a24d5e315cd022a85ccb2
BLAKE2b-256 28bfa4baba2a98bdfe7f0a65c149c2c9f7dd6c7ec231424da53746b0914a0da5

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73ffc912190b6f10869c4da851806570d9afcf55ce4fd837b3334ccfcfc9effb
MD5 39f2b7ed42b4e3318bfb13add6c56632
BLAKE2b-256 4ca1206c072531adec7bdfd4955d202016f0cc45d0a3b56ec89eb158c10717a9

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80fa5db87bdd203a5dee3e7d611d1b2ffea87ccc3fa31767e7e97cd238910a4c
MD5 0e11069c9c363bebf70422a026f4dcd3
BLAKE2b-256 2bc4812874ab4c792f9827e1c77aab56978936188f5e64ff76d1ab423134c795

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d56aaaeb032e72cb684819c9f1e27b2305558a104abaf499b15dfc4bb35f3ea
MD5 ed11940395c8dcfcd31193840c289aac
BLAKE2b-256 04ae5a435a550858254841aebf132ad30544ed4242206eb9e5190eeb096fc478

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 584ced01dea69c76133d98986edc1c0975c30fa90dcd74edb94009417fa68a98
MD5 9185ffe534b956a3e439e118054bc199
BLAKE2b-256 dfbb111ca7bb36f91221c668a10562f549f77379959c8304839aea27407558c1

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 848c4fb3054442b305dba24055f176c6208a03fb3c1ed792f292ffbed33e14a1
MD5 483ed4f56b4d2fea225b4f2039c786e7
BLAKE2b-256 9e29b8c60b3a0d90eee62f6dc32fcb5a2d6caad44e0410b1a124da4518ac0132

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 978.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 52e02384859288ebf804265127e929339266c3e9acc4f14f714d89e1ec1b5700
MD5 8db397daba6039a8db34e4c81f320b89
BLAKE2b-256 1ed61e2e93b6360f2abdc0581bfd67900cad7980ca0d4b25c26d9fb5bef78595

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: reru-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9127e7fd39e35cf479317ab7bfbbfde0ebba3e1a69e858c2b3728c7dcb63fbcd
MD5 efe339ca707ad380e7651b33a54e2d4b
BLAKE2b-256 009fbb6013de4af51cffb07b889fdcff6cbb47933090af604713c08ef7ac95bb

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cad012555f96f3f98165ed16e3d40378d986c1833c9d07889db954b7349dcac7
MD5 411a85008346aa8fac127f5dd5c2891e
BLAKE2b-256 50ca74ad7b2b2a57f206bb712fba47afe2a077f91758da2ddc29aaddeec34949

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8492f916cd3d7cb2b522f8fdb39d6fea88e2445e6f2c981d2113a9865ddfd4c6
MD5 ca065b455093b8f14d55829b96dea093
BLAKE2b-256 aaa9231d116106e0188580ad534abe0c3da07c53fe878673f68bcc9193ff9709

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4dcd28e6c67ae1b039aa5f13b6fb6cb7ed130b343ce7f65c7c1754c1a55eafc
MD5 b041edf84b26bcffec1e8aed422527b4
BLAKE2b-256 55e44a2294b4dc907cb84e91a4b3c29a81291b34dbd7a00acd5ea70ab3c7e45e

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0dba0b7eee8a9c11002212495cae18926acd081e49788210e015be3ec61e0dd
MD5 e8445386e001df083e9f0a33751c651b
BLAKE2b-256 e8daaf13e2dc0af81715fb9627830dc849562145551d887ac19a64f194d0f987

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77f541a9d73318c1f96edbf37be4cf44f83a0b669eddd8ea99748e108b02c4f7
MD5 316f492f31a9fbf95b0f092e179c4c10
BLAKE2b-256 f2e54ebc37d2fc37f8d644ca1689aa17f2ea275526a492e8a9189393eab27a77

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2717bac1fcbcb23372981bedac123353b114459dc001a05d5bd346614a4bc05c
MD5 e632b3a1a9413d4d977c2d2120f0546b
BLAKE2b-256 71a1bc1a25ed933181560439d1ca5a6f05745c05203d82e09f96a137fb9a2187

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 976.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 78608a95d9833121fc9bd26708e63a67a37063bd232a45bab9f23613ca43eee4
MD5 5c5275c6fbfdb06b7837b2d4bf0d51cf
BLAKE2b-256 efc2f1efdc4b1c730f418e681876763bf728db4fef656490828029e3f4953ca1

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: reru-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8dc1b4d16f54e2540882fbe7bc268a4f5778027c61e1c849e9ff9bcaa9edbe19
MD5 0e4960aa1c6474e6eaa38908acdcc1ea
BLAKE2b-256 c50aa54c2846ab973607071630f1f00b4aa07b22455c31208660b24a9b671f3b

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ee5b243d84f3c787c4319f675985593a2dd56f6c502ab27c2447a1d7fd5b1f4
MD5 5bc763468b1047273b5591301ab8b968
BLAKE2b-256 85422c8ca60fb061bd40fa6f0109124dfd314f2e106edc036429630852e86d52

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7680725058a0ab6aeae6aaf028201455f556c68185012c9e17a3ec538268c973
MD5 bcb8a8badc6f73ae71583cfebff8a76c
BLAKE2b-256 2ce092f066efdd707c6047cacba74d71a2b2618a046380c42f5026c6e4fa3b12

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 686d633e8e0a25af3bc68d9c38592ca2f2a172c5bf7e36e7654cc644246363f3
MD5 3a9eaa106971f1a3202dd401cba4ff1b
BLAKE2b-256 975f38f3217a767a2fbb30cc6b0494590f65c4d5715c6311ac1a2b30aff4ce5c

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9356e18fd02cf39380ee247a32216638826904e504997c4bf39761e61c61a5ca
MD5 8083d3d265509eaa78e2c9031f20d70e
BLAKE2b-256 88bc6eba18a466aad61f4518252cdb5ca7d7d27fb49893ddb8a3cef97b1e4a0c

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 027115539f251079339a9f728a732dd6bf49849a0fb3d0101b5fd7e46cc490d1
MD5 bb09e30b9dd292aebfb27161550a0425
BLAKE2b-256 c3f19c35b85670d31c87cf0ef7be449db4895edf12156126c5c7ce68631a9561

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8079ba46bcbd1e55591bfd93524cba909b647a0249eb155e0bb5751d2205adfc
MD5 40b4b09770a42417025abadea356162f
BLAKE2b-256 33b9f2655eec63a4cb038ed6af93b5d26292e87cc897d87fd2b570468925fd18

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 976.6 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2c4e93e5155ed9af83928df6731b1ccca724cd86972d285e60e17407077a5f3f
MD5 0d39af30dfc701b31832a423efd75c3b
BLAKE2b-256 e8e838ae3fbeb58c8e27868f3781323abc20efad58ad77f1b446f377fd846b85

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: reru-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 defeb08a0e4bf6c565ff7eb7fed0457f3ae2d1d7aa86eac66bbfeb28939f14a1
MD5 46287f98c29ac82e635eb3f432efb08b
BLAKE2b-256 7a8ef2a7be17c4fc5716271c08f11cb6371e00178a1fc6138db8bc1067275dce

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10f435b9f613b64dcd46253425d3dd3e6ecc55f723e784251aa190f03e21ca50
MD5 d58ca19bdcc0c33fc87a530afd0fb386
BLAKE2b-256 ce60a3490af875a1da41070c94b89c33f593264355181d176867b9f60cdf73ca

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c564e2cec916debbcb8d9190361691ac2179523a48d6ada1cc25a50423074076
MD5 7ddb9d316a13685b9caa7066f751f404
BLAKE2b-256 750a1df472ff63a7d3cf47e8b466d853aacd1c1cbe1bfed52c931b42340401ca

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59e70d2840ebb3ad2e593f656480df2739aba8d92dbf723c591db750e540e386
MD5 f2e06b5b9cfe35d1d7f16100dbb371a3
BLAKE2b-256 5224d8d1a280d0b0d3b50b0bcfb89bddd16a53571a9d3f931e5d02786cf5cb8a

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6464c920a1959609f17bc6d48cbfd4d2fe31cc5c49e9f52b1a5e17b369558ad8
MD5 bbe0d719e622c943cf962924053e3dc2
BLAKE2b-256 766a5f13c8449b93401fbdea42a3f7987d313a1955c94e2115a374b51b7fea67

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e473e78b4e1e3f96d3812e092fc32c1f039e1711127fd53d6a806780adb563c
MD5 3ccb2f4dd969617d4bf68a4826f3a61e
BLAKE2b-256 2c7dc332169b1a675d9040107b9ba9c1f3bd05ce59304eedf935c41204c1c222

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50f980a6cb690efae8c64ac0c773b18fd9501123ed807da6a2f4a81a72cb09c4
MD5 bf3465ef6dc456124cc675fb6f0853c5
BLAKE2b-256 57d647b3972737d0b1e833b2cb7c25c29df13ef8a11f65fb894d4bd33e44c78e

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 977.4 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 ed622a0b1a4ef9418c64a6dec31eed68a7e357dd49e1fca0959e3627f3e7202a
MD5 018282343c2c8214ff430d68a4d1b4ed
BLAKE2b-256 988d7c341945d3c8e43d911a94693b12562fe9d25403b74f57a84b2afd01a695

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: reru-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9ca594a5ac471837841050b7e8fffefc717a5c1e62f8f33d983372455e9d1012
MD5 28bfbd64ee70bcdf136ef502024b1e82
BLAKE2b-256 f1170eb779f2b43de160d0e5ad14a53c08ea9015a6f94786ed774f2d171cd4b2

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e890759827830bb2da69fe2ce901a51e9ccc17dcd0ca52194b8fcb1decefc618
MD5 6530051264f2123284f73baf1f7d0d91
BLAKE2b-256 a92850c6e3edb0c90253974ab034b43dd8782602bbfe1b723e4a3a11fda470df

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaaee50e3e4a0d4cfc4c38b766ac61122a04dd3eff735762f4f63dd6bb79e820
MD5 6c56a2ad6884d3077624b3cc102be7ab
BLAKE2b-256 b25306be9d138353bc16a557fb5b25aa89f1bcd7af1a575a6471010a3e9b38f3

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 244f1aab3040df2463aa8cedd230630c4ba4fce266473604a33916829f2a9caa
MD5 7e9972bbdfe1721813790e8fb5ae84d9
BLAKE2b-256 761395a9efa8edfea0e2dc0cb09468d4fa4dba883a92d49cbdf6ccb3c70738b0

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: reru-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b0d2941b504bfb24ab85ff6e20854b1c7d2a62a65de34dd49b5065928a10868
MD5 f46372df1befaccaaffc836fefa4e793
BLAKE2b-256 ff988d4905f7c9cfaf17c80fbd330a5deb9159ab91b08d7f213c9ddb55dd75b0

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: reru-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2969359c113be3a1c7adce1d2362d6e5784eb00ef55d2d51de3d05350a1ad593
MD5 b2964cfed83f2e7e51e7b58e2f765ac3
BLAKE2b-256 d80460c4d524becc21b65ca48b821de6f1de1943bc69df644c475d1fdf7fcf8d

See more details on using hashes here.

File details

Details for the file reru-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: reru-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Pop!_OS","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for reru-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9e2d6297bfd1f7ee595d47b91ab52a3c7edbaf25e3ef535e5fc6fc73446c00f
MD5 09f5b1681fc7254beb4354d082f03bcc
BLAKE2b-256 814a47345439fcd7cd429db9d75aa69b9876ebbfbf6b2a7c948612c8306d6a2c

See more details on using hashes here.

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