Skip to main content

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

Reason this release was yanked:

logic error(literal_scan)

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")

🔍 Known Differences from Python's re

While reru passes the vast majority of Python's standard re test suite, there are a few documented edge-case differences stemming from the underlying PCRE2 and Rust engines:

  1. Permissive Syntax Strictness: Python strictly errors out on mathematically redundant operators (like a** or ^) throwing a "nothing to repeat" syntax error. reru is more permissive and will successfully compile these patterns (often treating them identically to a).

  2. Numeric Backreference Limits: Python caps numeric backreferences at 99. A pattern like \119 in Python is evaluated as group 11 followed by the literal character 9. reru's engines may attempt to parse the entire 119 as the group reference or an octal, causing mismatches in extreme edge cases.

  3. Group Naming Validation: Python is highly strict about group names (e.g., throwing a hard re.error if a group name starts with a number like (?P<1>a)). reru will often return a standard match failure (None) rather than raising a Python syntax error.

  4. Additional PCRE Escapes: reru successfully parses some PCRE escape sequences that standard re does not, such as \z for end-of-string (Python strictly uses \Z).

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.2-cp314-cp314-win_arm64.whl (970.2 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

reru-0.3.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

reru-0.3.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

reru-0.3.2-cp313-cp313-win_arm64.whl (971.6 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

reru-0.3.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

reru-0.3.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

reru-0.3.2-cp312-cp312-win_arm64.whl (972.3 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

reru-0.3.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

reru-0.3.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

reru-0.3.2-cp311-cp311-win_arm64.whl (970.7 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

reru-0.3.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

reru-0.3.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

reru-0.3.2-cp310-cp310-win_arm64.whl (970.8 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

reru-0.3.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

reru-0.3.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

reru-0.3.2-cp39-cp39-win_arm64.whl (971.2 kB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

reru-0.3.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

reru-0.3.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

reru-0.3.2-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.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: reru-0.3.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 970.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bba67ce86b05b65a8273b4d23787b6011f042b2d31b126480f59d97b30a5aa8d
MD5 473eb39e2c587f92a12804ca07ce2889
BLAKE2b-256 9066544ba342013f9db97b87d92845fd48a4be910fd8ba6f4df92fc60de07157

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fafd7b9b818f2370c81c7c8caed957d231d8ea6d297bb6d4f53639c607d9625f
MD5 1c30e9df38eb6097886d2b436aa5529e
BLAKE2b-256 3e88616d269899eb0472dad88621f375cb193f717b56c5d62d1c921cda16d1ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb5dbbc8f54b040515b5b38901e2901dc3905ff82de1b82ca28c49d64b8ad308
MD5 ae952e0ac78c452ff56389c079d03f8b
BLAKE2b-256 b6b73fec5fcf3e89971d2747a23ea32b75c1dd5a3970c3baf9e417a96513ef24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6727a08817a03be56fea7d243abaeb6dc24ba0257dceba79490e883703a6bf39
MD5 674d942b236c30a056b1bb08f56258a8
BLAKE2b-256 f05c21ef5e78627c8dd048dc66bd89665710f9d0ec7680836343ca71fcd4f34d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c82d29b7e058ffdd0c9d0d55a5b1136fca6ed77c47b23d59de9e420e598a9879
MD5 994a3ea18ef1cb3809f76b43812c6430
BLAKE2b-256 3a47a900c04d5ffa20863e8d781076980048a9c5018abf4fcab7c7eaa7c3148d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf826ed0faa99d21215a180342c349374e5b36b2a80e11e77552035142c5a49f
MD5 d6e39ebf29083854e115ab45f8d91b22
BLAKE2b-256 6f4ec446d9b1523fd38219f6d1c8e0b96493d7477ead2bd0a89bcd4a78309ad0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7b56795f0228a6ae2cb55f6e1607766eb6485bc3725233c54f2d39a28252685
MD5 2fc653f6d8e2c1bdad9ae0955864e33b
BLAKE2b-256 08debd0d7ba98f3d3eecfda49f0eadcab922fdf91f60de77bedb7d9cddc739d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24be1f84611902631d33a39e49dd8b48e8fa9199cb1576627a181c723396f32e
MD5 b30efaeec69252f765a35439ced05877
BLAKE2b-256 af1634a37c049acc1470d51aa21d3d87796a703d8c0d2ead24f099dd80a10d8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 971.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b5b4524cad6196a5dc01286d9d768a7d0796b5ff915ebae6f61ea037b68e8917
MD5 2120a4e0a5d094c80e4b0ca9b1b92f87
BLAKE2b-256 22a2e62d80560c6099c564646517dd789cf428c14a55c7329900db5478f5a618

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fcfb766b64e87db9d2fe7ffb7761e02b7365171c928ad9a97548aa5dd4a8ffef
MD5 b41fc96d9c3907ce116b0c32e8839697
BLAKE2b-256 63cb6d3eb1788860279df1603ffaea028b584543b6c8bffc4f6926ca77ccc91a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd52e78cb451c278e2889939472977921298444f509d6bb93bc2dd0b38160b5e
MD5 a427299bb0705c56bfe7a97b54972159
BLAKE2b-256 3880359d06c0285d92e13612333b594508609e06013c1678670e99be4d0172af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26c54f790598eab6073e29e9873ccbea7bda573de4ea5b0e44f504709f595750
MD5 704320889bf01907ff8a6ce13dd46f04
BLAKE2b-256 081683f88219b7a6b3621349132d2a5266b4b20ed4fbce5cfe1f6b11cb26ea95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d50f448675cc429b9b597ae68330406961b88428ac18de00fa83a3c201bd9a32
MD5 20736f5c15bbe53c43f9100a5491934a
BLAKE2b-256 028f253489ae79b40d461372ea503a8d47bf30b483ff7e3a0fa9a2c946b54998

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91f81955317730cfd3edee2cc0bf75f03d2761931d2a4f294ad4bf10f3a9bcd9
MD5 11fc44dd7fb22126ccb091bf3ad286bd
BLAKE2b-256 4f7095f50333c3f7687d1c94f3d19d79c12edb1b662d6651bea6a397bcb4c638

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5ae39aae3bb2ab9f4e94e97ea2f884032acdb2ed2701056c0c99ffa4ad8888f
MD5 4e29512c25b042c733136ca89ca87219
BLAKE2b-256 698da0f0deba9d29fdfd63f19d476a841382c6941d25cc9250f567f933f74799

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14df2d99b26024a54af89569f2b7918114899657259fba51dd7bd36328290c4b
MD5 ef76b1a747f63cdc8631aa7da08ac125
BLAKE2b-256 5945656402a7b82847fb65f54bbb2fc5a8fff71679fa98fa561306928845937b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 972.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2f339d36f1a317ba28e5327ff4c4c2535c4b0003a0a92358f4f296959f5d7ce6
MD5 f8b3a916c488d15f1149e721f9fbbe10
BLAKE2b-256 d102577280c89690df6b9697d02bb43794907b7811f14a9b62e70e9d7fb7e4a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9a1db6a15bd46b1d3898d2c92b79bfe8d229f26c7b3bd0ab01171065fb3a0cb2
MD5 2a6fbb45df0cbb6d2ca50ceeed3d58af
BLAKE2b-256 0e5a476f088f7c03fd2b155f9df2288dc42d671918c67e961437df6ebd407e3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0db42c26a7e6ad3ce3b5056dbf12938e0ca373f2ebf8f1bcf0431793fc66a38
MD5 e3bedb12975efd15026702c501212f74
BLAKE2b-256 18597ca7fd47eb72ef62250acfca2d7e06a49a6c754db545be7b2e4d021c69ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d64ecba5b27cb0936f510abf078dc979d6826f2f89113255b17e71928d111cd
MD5 e22b2711458ff24b8b91d3fe9145e002
BLAKE2b-256 41ebf3ac3fa58f9cf85a20a248b38aaac590af891f6b94d796514a1d6a0dc0bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f2745706d0d01660985d7053287f51d832a6376a6998aaaf2856f1d4ea383b5
MD5 23669055199fb761ad17e4b5950d0b0e
BLAKE2b-256 100b634a20be42ab5afc5e8d26888131437678153a7727b2a20a35b4d430ef92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c27753b73ded46228390bb1bc18ca135e2b264f4019b5338e1f10026b4418ade
MD5 dd8f178901105eef9aee232ff63f0283
BLAKE2b-256 852648c9008d32ceed8fdb879fd6141682d6a306f7144fb6adf6d4d184c7b76d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd6d6a200c72fdcae5e0169b84ddc998748bed7c89e70e543b463672158b5bc2
MD5 94094bd24ddb263c42a10e2e945b86ce
BLAKE2b-256 bd4e65e44a56dc5c35028cf9f1a4ae8e83a061dc4a99e3145f199834b8b3853b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2419a6b6203f1444fa2d332b110b33dd0d5b70b97fbd5e234e1c1e6847f387f6
MD5 51c5d7d34c5d1c6b7a60d5d10665874d
BLAKE2b-256 ca440bf27b9d1c92cecd2d623fc4df4c9b9b229bcf2105b2f24ecf2aee784fe5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 970.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7a72a8f46c3aa52f3313b1da75a8f67b30e0ea7cc720ba0c37273e906f3e700c
MD5 7efd67f000b45177f10f911a091e448f
BLAKE2b-256 76cdda3b9cb91f8897a9b2879dd945ec7a37201235d9adde799b502b7184e4ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c2116378a63b4b3dc27575b3904a8f67790859ccc0edeecaa7c03f4b2508811
MD5 3add921d091456d1fbe5cbd44e814a58
BLAKE2b-256 64d4280d7ae8d2dcf89cff53c90913baf28f087e4f9323c007678edd0096fd72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a963e9217822ba38a6b66c0303ba05164994d2361533a51c5ebe1c774fba16e1
MD5 7e1ef948ee5fbf5887c4e1dd29250208
BLAKE2b-256 304b2a513033ed3639735c5f414044764ee4277f842806c4c70a0b4bc856ac1c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e781d52bf0d0d768a0d4bfa748283cad5ec8ce5baa0532a8ef9559bf76fb1c5
MD5 f5e8eaddb8cf55708fd001f0d1bec955
BLAKE2b-256 4705e50601c23167a2355ee17044d3dbfd0a22db2067511d6b769218df531f3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f2d8d878186024fe7c4daf511a6bd5f05a51156ea1928afca3e17d84d526033
MD5 e5b2ae4296b9b3e0ed6630e56ba710ca
BLAKE2b-256 368074a653ad660a3ac167796e0adef9eedaa88b409a8768e883faab05466eda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c979e2987b07fb661448b9a52b547e34517277a208330e4338af69073c067f9
MD5 5c924550634700ca5101271082539b75
BLAKE2b-256 e335b5e080d43249f8c54d4be0844f9d28055b52ae15770653e9dd9db04f5892

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c9e8939fb248b1f75826b252a06d728eee8a47c3b7df88d3d792f698322b80c
MD5 a413296225e031a084e575d86289bcc5
BLAKE2b-256 580263d9fb956ebd16566c7281e5dcab859299ef0aa4aefdf847b7521ee13740

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1c40b3156390db011406b0383e0d266c3bc4e9e4ed973941ab7573abb5aa360
MD5 7ae6f15fd9082a21453c830f9c49d650
BLAKE2b-256 d8cf55bd6c0397f5451d81c893022368007f30edeea932efd8643b7c10f5e0a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 970.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c161daf7bcb7a9d2f3c4f487b0306a47b41eb39bfe09de87d45dcb04bde90dae
MD5 ff87bd9d6c748b59e5960c74c9f37edc
BLAKE2b-256 0b934211bfdd1143372dbf78061a8ead33fd20f0df0e658c28bff2ed16c4898c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d50ea43fa0d4db5ec505abc6d925ab1574315f74b2c24e9855c1d83745cb119a
MD5 56227dd2e9b49beee129ed58a9573d4a
BLAKE2b-256 3d3b6b904f1281d82cacb5e6bab7104e08725f49b036211b31e930ef45cea383

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6fad892bf8eb0cea3f6a4e83ff514dea69c1642e4959bf8fe57675cc096eb20
MD5 2d6a0657f11d2699a5e395b0b32a1ede
BLAKE2b-256 4099b7ee8722372278895ba9098b49511634b69a4323ff6408a6e5c2f7d0cfbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 970ae5397b6acef9f7273ae25501adf21caf8d26c2876a7cd38767569933ab03
MD5 dbd81889d79e135d0ea5eda31a7d414d
BLAKE2b-256 7dbba354914577ca1c0fe4bc60e4ab6ad8ebdf497313ed97a7f1137a2095d6e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5582e7e7d95802b46d2bbec01c41d5e3da00933dda663d8a82620264c11678bd
MD5 803bd532e1634f0b64ff310545266ea0
BLAKE2b-256 bb41d659c2315232e6e99f73086e14f56f320f34de0638fe81b5a56be4c3f017

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1aa91adbff2649eb2359910202e94e3fd655660b3146191ff28c7e73c45bac6
MD5 7daf21fcbf20ba95552defb790e67fb5
BLAKE2b-256 4242d9ccf428ee1b24ff378b52616c41895f3b5f365cacb64c77b5924e0b8a36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f85d7993403c2f3f461374c9be99d668736d5443da6b8060a6a33a7c45227e6
MD5 538cdf17dcde0cf54c61c5bb5627a57d
BLAKE2b-256 407bf0ca8963c145a1c7815de0472d18d6dd9df188dd683c52d2a1c89bebc70c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61074eb8e56b0ad71d17285da79067c8fe390da5bab0268bc035d4e503dd5b1e
MD5 77fa8296208e90e3c18a21c3a792eec3
BLAKE2b-256 3c9413365d468c23cb75573d1f8689e780d6130fb32568eb9ac7559b7ff06c77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 971.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e61bb01af2e9ffeaa3f35763bd970ce39b2b3aa83af434fa27bf35150fcf5b4c
MD5 d8cef7b7ac81f3e2fc2aad3cd11bd726
BLAKE2b-256 d9305c8865dbf4a93963d37a47b69e4c134b34d36e43d1267febfd7a7ef98a2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b2358027d9f3c6a71d1793ecc621ff2ebd4679bcd5996d66f396cbd6e460939e
MD5 5846e056c314c5d5aee12b60a04be885
BLAKE2b-256 0933886b56e74583549ed6a25cc4e4a07d1f132acb37cb6c3e9ff0e601adb635

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecfc4332a9e0dfbdda2828cf2de8e3677a5c795c38e1eaa5c81f6ec26b9c4a19
MD5 2af0d8652d82db3f896928886b51df9a
BLAKE2b-256 8282ed6bdd036aaedb173f7bc6eebb45dde7efebcbca480883ffd584eb410922

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 880dba9b29cc6f913d35e498ecaea3cdcbab5e47b7fe9411344fc3d4eb4fd4cc
MD5 4b3c30f54728c6550debce596c7f67c2
BLAKE2b-256 d9f28d496aafe9a4fd279ab97d1dc17bb659e7bbfb7be4ce22340aae1f9e891d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e555b836ddb1740c2001bd30c9a5d7ea4bbf61e9898654bd7ab7ee18fadcb84a
MD5 e93dc3306f117cdb5b265d9eb4178fad
BLAKE2b-256 33c0a1480d54030d74ae0742d3002cbd242d6b2de62cf45c3100c6f778b87cad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83d7fa828d3d531b37490a7c2281b495901abcaf4645f122dc373815de20a35f
MD5 470306ae840ad5064e19909d358a9e1f
BLAKE2b-256 8ef6dca0ee6a1ed0c23afe5d19e69f5ac7c2ba6fe30c74af6c00e346ce7cfa11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8093ccfe2e01cc6460981b6fa17b94f332303be4774cc1648169ed443b4f6f22
MD5 08149d9d843422e6768a1505eea35f0c
BLAKE2b-256 c146f3c9c74a1c3d0bc34e737f34f83236287f88426652464c693208b9c04905

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.2-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.10.4 {"installer":{"name":"uv","version":"0.10.4","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.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed73db473ba4b26df31e1ca78315e659c761ebfa24e9e26daf9afb319762d05b
MD5 c13bd2aaf094497b5266a211a1fc3a0b
BLAKE2b-256 56b34ac7590ec51d968780da0c99bbbcc01d0163308b7ef1371bb1149cd42043

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