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

  • Hybrid Engine Architecture:

  • Fast Path: Uses the regex crate (linear time O(n)) for standard patterns, ensuring protection against ReDoS (Regular Expression Denial of Service).

  • Feature Path: Automatically switches to fancy-regex for patterns requiring look-arounds ((?=...), (?<=...)) or backreferences (\1), maintaining compatibility with Python's standard regex features.

  • High Performance: Implemented purely in Rust using pyo3 and maturin.

  • Built-in Caching: Compilations are cached efficiently using a concurrent DashMap implementation, making repeated calls lightning fast.

  • 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 but encapsulates methods within the ReRu class for optimized dispatch.

Basic Matching and Searching

from reru 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

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 ReRu, ReConfig

# Configure the regex engine
config = ReConfig(
    case_insensitive=True,
    ignore_whitespace=False,
    multiline=True,
    unicode_mode=True,
    size_limit=10 * (1 << 20),  # 10 MB size limit
    dfa_size_limit=2 * (1 << 20), # 2 MB DFA limit
    backtrack_limit=1_000_000     # Limit for backtracking engine
)

# Perform search with config
match = ReRu.search(r"ERROR", "Critical error occurred", config=config)
if match:
    print("Found error!")

⚙️ How It Works

Under the hood, reru inspects the byte-code of your pattern before compilation:

  1. Inspection: It checks for "expensive" features like look-aheads, look-behinds, and backreferences.
  2. Selection:
  • If expensive features are absent, it uses Rust's regex crate. This guarantees linear time execution and is generally faster.
  • If expensive features are present, it falls back to fancy-regex. This supports the complex features Python developers expect while still benefiting from Rust's optimizations where possible.

💻 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.1.1-cp314-cp314-win_arm64.whl (843.7 kB view details)

Uploaded CPython 3.14Windows ARM64

reru-0.1.1-cp314-cp314-win_amd64.whl (908.8 kB view details)

Uploaded CPython 3.14Windows x86-64

reru-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

reru-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (969.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

reru-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

reru-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

reru-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

reru-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

reru-0.1.1-cp313-cp313-win_arm64.whl (843.7 kB view details)

Uploaded CPython 3.13Windows ARM64

reru-0.1.1-cp313-cp313-win_amd64.whl (908.3 kB view details)

Uploaded CPython 3.13Windows x86-64

reru-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

reru-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (969.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

reru-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

reru-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (969.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

reru-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

reru-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

reru-0.1.1-cp312-cp312-win_arm64.whl (844.2 kB view details)

Uploaded CPython 3.12Windows ARM64

reru-0.1.1-cp312-cp312-win_amd64.whl (908.8 kB view details)

Uploaded CPython 3.12Windows x86-64

reru-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

reru-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (969.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

reru-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

reru-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

reru-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

reru-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

reru-0.1.1-cp311-cp311-win_arm64.whl (846.3 kB view details)

Uploaded CPython 3.11Windows ARM64

reru-0.1.1-cp311-cp311-win_amd64.whl (909.7 kB view details)

Uploaded CPython 3.11Windows x86-64

reru-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

reru-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (971.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

reru-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

reru-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (972.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

reru-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

reru-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

reru-0.1.1-cp310-cp310-win_arm64.whl (846.0 kB view details)

Uploaded CPython 3.10Windows ARM64

reru-0.1.1-cp310-cp310-win_amd64.whl (909.6 kB view details)

Uploaded CPython 3.10Windows x86-64

reru-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

reru-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (971.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

reru-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

reru-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (971.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

reru-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

reru-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

reru-0.1.1-cp39-cp39-win_arm64.whl (847.7 kB view details)

Uploaded CPython 3.9Windows ARM64

reru-0.1.1-cp39-cp39-win_amd64.whl (910.8 kB view details)

Uploaded CPython 3.9Windows x86-64

reru-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

reru-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (972.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

reru-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

reru-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (972.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

reru-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

reru-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: reru-0.1.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 843.7 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.1.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6801b3746e7d6ce1c4c69f988acf9df2679f11d38c2ea2a3a3f6d734928a91d4
MD5 7364bca74519019881cf7c52aa54b940
BLAKE2b-256 72a446fcdd336c55374f9c6def0e76734e88b2e991118e16a20dab87e6441489

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 908.8 kB
  • 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.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b7d6562a5c55573e461dc748341a94175a1d63df7ccfb2938b6d93f6765043ad
MD5 577729f521ff73b7257152e23321a740
BLAKE2b-256 ae2d4feb561d724174ada59c1f2c6a250175005b1fb204a179a454c53b355bf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd7fe30fa0d1dd7545e21fd147bc5d0f86d18b1b3013854c9d97e11940c058c5
MD5 dd00da429e6e93ec8d236e6b894059d1
BLAKE2b-256 6be79f67cece5a149c7214290e588410fc3c9035bb67e1bafb9e2dc9c526ca26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 969.5 kB
  • 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.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7a9b4384f397df45f6778f0d88a641acb26048232a89855182d2bb8de92ddf9
MD5 34c403790c8036ebf44383335f73a8b2
BLAKE2b-256 9972c5cfb01634a82a19b288563604b103bd4163ce49d661f96d4d09564aeaa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2208ca2e21e40b89cf033da45f1c805bbac8a4be9001790db0f5a2ac30b1037e
MD5 42e84b913343a05cff706e6df8080f91
BLAKE2b-256 e7f26fd0437e2e60af876dd40c9ddf42601d5b1049c89fc3d9f7e792fe90334e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 969.8 kB
  • 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.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d375e65e1d2d48f951a1bd330ad5f77fb258f0f7c9e47780de8ca18afddd73f3
MD5 0dec05e3f0017065e20884a0d07d2cf8
BLAKE2b-256 c915ec99038a339cde60d307739bb1006e15a3084ef9cc0e7d0330713c8193b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3422a3726e3b58796a9143cca5fe56c8dce7a7618008a61717b576c13c942c1
MD5 85ea4a349e0fb469b0e0857b78167b10
BLAKE2b-256 5d6859f38680547631b3807853648f03f8deaa6f9278610187cfa4fa19f43a14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc640ddc2b2f5526ca3631052dcdbd97f07f88c8474e9d88d729c328ef434e16
MD5 593aaedb30f9fc8f547ba3355f2b9c21
BLAKE2b-256 64fd2a3ad42f2bef705bd1d86e15f70f6d1851f8b5759eca52ccefd67dbaaa37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 843.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.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 bc98f96565882c01f7eb05074d269ce70fc9f2244de490da931b305a4558e1a0
MD5 aa13b03195854293fda542deefb6200f
BLAKE2b-256 32b791ca34bc950584589d2c03565d1e3c6ec6036ec42980c9679e60306b2e66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 908.3 kB
  • 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.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 206abd36515bf5477d8550d68572c108cc59352b60f09762d90d1f326a397d44
MD5 906a1c48199c750aec5440a3f5a2b821
BLAKE2b-256 25ffd1d7c64123037aab8c16383901d214bf03bc54068f674620ddb96dd02439

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55178336da1da06d4a97c4b40e1d092c2b2717091d0796fb6762116194790f03
MD5 100fc74646a5df69c6425ea4a8c5f9d6
BLAKE2b-256 acc0f589f25ea8f2fa911d3b934beed5dcaa71d9b44f5fb9a7513d59b42e4d89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 969.1 kB
  • 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.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4935c5ed79fc23be4f44ddb35dde3bb3ecfcd05e24ebbbe9c69a1dbb668043ff
MD5 85549102b31ab7c2858da465028f18c4
BLAKE2b-256 dc6404598932009743c136f17eba8367cc2cfce001d550fdb95e75b50abeb364

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 025695404d4837c1f8cd8f295123716c4bbf6911e275527025078ca14f751a1d
MD5 74870a6ffbdce1d7c9882043abe7cea9
BLAKE2b-256 196a278684c6892e07107723b21633e555cf3c76540b342f88d2f42f6a110143

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 969.8 kB
  • 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.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee1a7fe6e6d052c1b996c00af296f66c1c1217bb4912ebbfacf89aa6c214103d
MD5 a9a082383f5c575d4e172f83a8fbd669
BLAKE2b-256 d68808a3d6076e3fd8d0bbfce3be771e7d1c56d6c8680caaf1aa8d9a87856abe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01be0bdb7bb6dfbf737240110c1cae428b26ef59c65f576cae2d71e3ada77ab1
MD5 2bb11cce52944035dcf664b2ea27b057
BLAKE2b-256 7ec974dbf34246e503da765ece969ab3c147b2f0a4f10560df012811ff8909a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 083f45f56dbb520d8c69a7950bca7e870fd5ae2c175d203e8970d00cd334d521
MD5 c4c79e10c194163d83c94f7d0931c77d
BLAKE2b-256 ee921d607adb644789d703b7766182b19e473e019510684dd98046aabe41b26b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 844.2 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.1.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b286d1acb44813ec829c409e691c2d5986a29a7bddd9b655ede6420efbc23fe4
MD5 c689e22de43be26d65b18f2791e283a7
BLAKE2b-256 61d6432345e15bb3e52f7cc78b5ce8cbd33d3b9879c576fb00cf4c5e3ba8f592

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 908.8 kB
  • 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.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7652ef6cceb973f1f5151d9ddbdf2a8a5d779b790a34bb1f0d6b3508d8427bd
MD5 caf4a0048697aa3acdd3357c619673fb
BLAKE2b-256 478b223c1cb4c72a88a8322d5fc216de4482fb448f933b94f9464592a2a367c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbed781ff5b0e192a57285c165c6fe0d33efc15d4892362e6121cb455ca9320f
MD5 f4d1dddb23244983fa44e3a3e7272a80
BLAKE2b-256 6305c8c360cc4e9be09b38cd5259a2a57fde6248ab60d6d448b73c60d07e3379

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 969.5 kB
  • 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.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55486fa4439e8afcb91cd3f2fa2264c9847534add89f5ea727c6a06a9799d9fd
MD5 c0a10bc41cb53d84bf6c948a82356309
BLAKE2b-256 3447a5b0a7ed299f9535f5c7c75dbcee45ccc29afdae6aeaf5b37976e14c0d70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06a9c9fc812fdc7c1bcbcba0877efa16648233ea94860cdb69a196f2bcfd54ab
MD5 117f23694edd64cb53e1b5707b903bd0
BLAKE2b-256 d59bee90ed7afae7de4c85c1abc322c08702e923a6bbf5490d79eda30af9d75b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 970.0 kB
  • 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.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b196c9f9127a25a897bb88b3ab0ebe3b4469d3c024ae5af6b1ec6e5105cfef8a
MD5 9a6465182bbba7968acab7982fb3d9f5
BLAKE2b-256 5adb7292e22f0bfc5c4461a4395a9e6af33115babed010a3c06c26bcebde1362

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39909b0fcf1e980bc0f131591a0903f196d5374b607394518758e7111e6834c0
MD5 83704b07ad7df13cedc349fe9aa9f0fc
BLAKE2b-256 7b58f3dfbca341b4d6fcd86c26758b746ebb217cbc8cfb1da0a61177806b3d97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7fa4373c1d924630617e2225ed1dfc21f5135f89da2881f17cf31ad0cc00ab9
MD5 6382609b8ba0582eb656365631d70eaa
BLAKE2b-256 d356a1a352f047d4d56dab6452e71cbd12e61d2675f987133b30f8305f707252

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 846.3 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.1.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e7102a42da881e65eb3dc25aafd91ef489fe535a4aac53981018f290eb4fa7db
MD5 c12a5a18972434dd3b62753680b295aa
BLAKE2b-256 f2c6f7886830e52e1e0ec9cab6f8df44497a5320350b052825cd14727fcb0ac6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 909.7 kB
  • 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.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fc11e1680cfcefb986e4832460d3e894aa41f508db3eabc94f3864d3de153b89
MD5 ae41f41a2ce12480883e3afc14f1303b
BLAKE2b-256 5ceb76fb3f9cb196b6bc7e9e6184c9132475ab3ba4d6ec44cda65df079cadf4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59d4539e264aedd15280d9e1cc7c722de01606ca3f5050030ff6a344020500fb
MD5 3740c43f69657ef4412e7b7091c5902e
BLAKE2b-256 d185c4280f91c8eb62b5e857891c7e70219f464e0c6d447a5264bd45a5de9de5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 971.7 kB
  • 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.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 943c2b9144eaa154ee77e0a0fb1a4fc1e118340fe769969af950abbe5b175177
MD5 32ab300659268ebb71dcd102744bb007
BLAKE2b-256 f4a4b7bbbe5e51b6e7a2141629e60a4615a6756e3851ff420c71d4038cc2a199

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fc1617291438e2c381a2eb486cdf11c8c6dde52f2062e21903bcb814d3e416f
MD5 16c9ea9d24353bed97ff86378f89e084
BLAKE2b-256 a7823baabce39b70d2bc18646f50a2fbdaeffd64db2b77aa668466e76a4442d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 972.2 kB
  • 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.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a025d3d6a812e7d18239b3e473e9eacfb5be1c8f439b034bec342fa3b999b742
MD5 a88866524fbcf12caa00edbc5554ae2b
BLAKE2b-256 b58bfa0eb54711aa66641025cce490ff06a76073dadf5d7548f7a6037c092deb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b8e26b75402de6c62102eb2350b203510853260e2a269ab8c32cdbcd4d22e1c
MD5 daa0bda5161592eed955116e1929bea1
BLAKE2b-256 fe1147977b6838aad48a1e3c887897151af3dc7f553b38c39b34b2e2891d6da0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d12975a87028a77aa2944a8451eee005e04d973bea6d94f3e47f3162767296c
MD5 1924f77c357889cf53b1ae0d7ea1950b
BLAKE2b-256 e7c6a514bbb8183b40cb33600e78eafd31f246350b63c1ff5c87533e3dbc3d84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 846.0 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.1.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7ae20cbf00748890fd6ccc440ec29255026d8563b831979960978de37312558d
MD5 45ed7e01ef1825c2ddc23c5e6a2f9160
BLAKE2b-256 d0a44784b956ad3f86f72e450bde934b270934535d5b4836365d24ea0ac785f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 909.6 kB
  • 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.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0257a645cffc63a123c75f0608817c0f7bb6f67f68052fec69a132eae21c95ec
MD5 26ea7a57ac0429d486a2882c2bfe95cf
BLAKE2b-256 0aa95d2268652d9f128bf56907cb43dd300b6a930fa1c5a767bc628695e3b62c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edaacd9eb0059e8dd2beb21f6c47ca6f21adda304025e6cf334149191f5fe8cb
MD5 c11ca767a46a4b2a109cbe0c8fb81d24
BLAKE2b-256 79a0927529530946242001a440ff0769f9949e1f8c5a974de889c7c252b9083a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 971.3 kB
  • 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.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca7182960d58a7af4686b82c7f2c8934159db1ccc813f8ef887cef97c227e020
MD5 bd8139a18f1111d7dbfcd4e71ebfbc93
BLAKE2b-256 7ee2933b548b8ed50cf5f3b9929e1ab4aa21637a3f643eeee5a0252f6faac2c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 170a83f2514444e86fcc1714ed7cfd873f54416a35ccc97e9838bc9c078966ba
MD5 9cab2892a7fe55f733a610aaa2ca208b
BLAKE2b-256 03cf7dbf3d233bc269aaf93382b48b506e105d9c0bff0f8f23fddbad5932c909

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 971.8 kB
  • 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.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87db04753048af6d3ae97bd8c48d977f484525ff65932289bcc31adafd26c78c
MD5 db06ac5685a0041e41c4b19142ccfdf9
BLAKE2b-256 7d17d0828096c9efcb435149ed3b8c6f155ccff3dee18c659507b471328e05b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22d786b2bccb08c3a6ad237a015dcea8b83597f570c3267f80b3f7f8a7a5eb71
MD5 4f9330044328a105f85234fb84261861
BLAKE2b-256 d498e2c93b38c7716e86076a0828d6e300563f1a2b051f325040664d652694c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd4d138b27c021f08301a2ede7e207deb29aa4255cd2a4a63a7bd04aa5ec47a0
MD5 640482c434d4aec9b69525d061766644
BLAKE2b-256 882ca9758a99204d3aee0a22d801f416dbd8cec6f02d0c8775e3155970bd76cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 847.7 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.1.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 100161a8f1801723f21f2dbe4a6147b1bd58e5bb2c2005a150a5328d4457b0eb
MD5 fc7ba5f012f4c6c83435a3a6e95a374a
BLAKE2b-256 fc57ad6d5b5513a48ec85131c925b466a30a0d49748e42bd1cdadf4adcb0fcbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 910.8 kB
  • 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.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1dbc42308fd37b5ac222d545d79735472d91ed7acda230ae95f902133e956a57
MD5 1b018eb70dacda6129d0734868797e6d
BLAKE2b-256 533858cd04dfa9e272abf2a9b1e19143592a4e4d2d83bd59321bd1201804b3d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4c8402622ed2d7dedf6ab8c993a5bf5b7fc0fbc531dfdb3c79eb98fd0168310
MD5 fbd09c3688a3b4a736e5ec7c02592da4
BLAKE2b-256 55b9840d496a785fc882a1681628915f9a4f78a9e6ffdcab9cf30b3e51c425ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 972.5 kB
  • 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.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c253bc9898d9dcd311d54e673d3634abf6706fa1f7bb44f59b3e872829e0e55f
MD5 5c28c013976b5bbc4dcaa5020c76223f
BLAKE2b-256 ba437b2e091c2e00f34dae51fab32ab552911b0ec863d884383ac612081c8a42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.0 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.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52cc9c4e1425d357a0730326778f84667990fa26503b83d8dbab6a6dc425d2df
MD5 9ee96eb01de46f5233df850017e8f420
BLAKE2b-256 7d03673de11877fa16ab2082fd2c5030d67ad31b4c7bce5305ba99d8d36690d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 972.9 kB
  • 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.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78d3e330d7048bbc0eea4f5302c39da7945d5ee5055ba99ed476f8757f22873a
MD5 23224629ee877a9b575a059225251e2d
BLAKE2b-256 f1f8bfc8c3caa622e5071a6a83833d5e738b51e8714777cdd15f7f268cf670d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1b09b9baccb94145bdb6fbf387859e23818c019398887176d17c1cc85588e71
MD5 9af8979550b4fe1f401da7d08c31412d
BLAKE2b-256 78da5b00f435543a506f5e4929bae82adefce07ecd644c7ff665adccba4c1c26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 1.6 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.1.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b7d4cf08af42747e32e49e8b0272b881baf104a365b70eacb91781fd37361486
MD5 02fbc3c4f06d9528d3a897c2ecbf50d9
BLAKE2b-256 6e99b566760a8a8e0dfe27d8ccdcfe8e353ef54b303e7edc0362457119484d9e

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