Skip to main content

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

Project description

reru

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

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

🚀 Features

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

📦 Installation

Install reru easily via pip:

pip install reru

🛠 Usage

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

Basic Matching and Searching

import reru

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

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

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

Named Groups and New Methods

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

import reru

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

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

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

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

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

You must use Rust/PCRE syntax for substitutions:

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

  • Use ${name} instead of \g.

import reru
import re

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

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

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

🔍 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.3-cp314-cp314-win_arm64.whl (970.1 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

reru-0.3.3-cp312-cp312-win_arm64.whl (972.2 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

reru-0.3.3-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.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: reru-0.3.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 970.1 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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 00047d0dba0527607cc27c2646a2d47f14bbca6ac127507db3811df25cf725ab
MD5 8d046087b9ebc146b5bce53420979694
BLAKE2b-256 006442c2941e55e037458e429c9de4b821e4456a25a23812734582036cbf8710

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ba6efcd2a160ac4fbede32c286c93b54da1ca4dee0e727349f317f2afe7a5165
MD5 5a1bc24dee306bcc5adeca99f632959d
BLAKE2b-256 9ff00d82c216aec71b10cbeda2df15d7004664e543a46080b12e646f270d401d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adf949191e7da85f5416344a5bc029bde74465426ad74f24a39a1eeba1f896d3
MD5 a8865ffe35a30c37d4e49bcd8fb63e30
BLAKE2b-256 e3e5cfb8fc309f824c1455a0bc4d5658c5ab0682e48ec837d6fcb855c5ffa7dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e08f83b98a5946f7afa7beb39b3203ee6be2e6b08e05465970b73b0084a99a4
MD5 9ad691d7e1b23cf37556d7e74f2767ac
BLAKE2b-256 f6aee7ea8b75d613d4c89f1e557a026840cb4720ac708ca90c098469ea37d64e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41191f7b0b737993f781bc692471348067542d1bea004fa0f1db26dfb7e45274
MD5 83605b935777b31b736ab41b6b71835e
BLAKE2b-256 77f9e3886da9019d167f76a67faf1ed06126f832fff8f2d0b64137e41ca10522

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 662770255da37ed19d1d259af41bea5fdc78803627773a1f4a742749785225c8
MD5 cdace21e948dd8e230629910d354b8de
BLAKE2b-256 4a6f2494cb73aec86d4665a1a7dceaf540b8fe04c403215c4f7915957c5030ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60d735a02d9a153aa6886c8aaa05685653b51beac42f3a79b669c8d9d322c292
MD5 17bcd48821ad3d666d474548f0bcbac3
BLAKE2b-256 80486d92e793a6e336d1398abddfeceb370fe2d117d104dc4b24ff993ffb4db9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac8197846865427399387a94969a7ed1ec687467c5d22eafe6445a83b2d9e302
MD5 ec53896a4e575993be8bd1780574f1d0
BLAKE2b-256 e09e45cebfdd91ff40826da4792b4db7109612b046fb67fc1445e22f8fc3dc8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7d48c7424b4924641ba66e3e14ae5ce9e1e7e117594e13c6b7e8233df91785f1
MD5 5d00561e9a99e309f6d3ea3cec1d2171
BLAKE2b-256 d3d5d77ff952f1294a5696dc13d9d591ac4e09ae5d423ea7bfc799f79ca33ac1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dbc7ac6817d58e2c674f8ba5331811f904f95e36fed041a0d4fc281206e31f60
MD5 a0ec793ee0a37081795426c86ff36478
BLAKE2b-256 28460e9cf646960f6738b9f70f13eddffc2c9d231abdc22da3b0e86b12d2f807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbc70ce4e01017bb47df6e8f67ced652ca037efb21ad4fe97c69e22ef0ff3cd9
MD5 60a5b26bcf5213cc7f2cfbc94009e351
BLAKE2b-256 e7882df67df3f666ca8783027e63190a39d63445577fbc4c286f946ee3fdd815

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fbffcee40941f315f3feccb629ec89cb42c00862577283d8d306931f9527bfa
MD5 c92bbc5cf800b4cda2edbd04bd15f05a
BLAKE2b-256 bba6b0bbfbfd02950ed0bc84422dc71cade2a64a99fd91d969418d518ff5090a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7987a5aeb9085b4d4a1d0064f4b5158c9f7ac54b24f4534af6f7c7cb6c0ecd56
MD5 7dd00af0ea2da59d2be74aa1c57d7412
BLAKE2b-256 aa544e1eb19ffd58933b4adbc1d231a3cd227a4702966397540dad1e6981933d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74782332c2716e9274b2fd202aba7be3018f7ebe4bc9b34565f14f6a24af0484
MD5 b6fc517ccf7cc3817acc83dc11c83878
BLAKE2b-256 15ab4fb46efbffc58edd604adc341a1ed70054042812adb65d635e2d7d81349c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e14bdf2b8b6431d9e51fdab892eff9b7d67af274d84895f4261ab97e4262d2a
MD5 eaaf385ddb2b756f4c7d5a9cba38c373
BLAKE2b-256 ced000d5bc1eff0d13065fac9778bf78c02917ffa6e30d201a5f06ee16d1dd68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ee37456fff98ed69cba20afdb333c8c3f5705355f6a79a22e29e77d25ef0a7e
MD5 82eb48817dd0da2912ccfab07dec969d
BLAKE2b-256 e221638657bab5a9f1ef525e454a31e93587d27cb3c1ae3d25d91f23ebbbdb8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 972.2 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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a50d98df79fb88684f2ec173bc006243bca4fc7df118dba6762201fc16b03e9e
MD5 7c29b9b2858433fe5b3e461ca68252cc
BLAKE2b-256 0442e6f3af68d047c708900b2f25f2974a6004cbfdc5c64bb34cf49501608cc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b75764d904c1609a3d5ad54337cbc90cdc058de2c8f071232c461740df2bb601
MD5 604a26809e56165c815ae30cd4f1e8be
BLAKE2b-256 f6872df4c05324b9443c8507805cccd1df3cdc556ba1eceaa5db5ccb146baa7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19e9e58a95faf9ef7b6772728964855de6613e935efa1267d2f1e38ccad7d9ef
MD5 6b937c16fc486a52d3de2219f330ca73
BLAKE2b-256 6d9772c46ec853ee51ff74bc0969d87581bd914f00da1a010e938fd36ca1255f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1112bd8806acccca747f9d5cc54e352864f6398ec800d0001801edf94a871d6
MD5 a4aec665509e9398ea7d8dd571855b69
BLAKE2b-256 c0a52e997e401e43add00ad5acd5db25d95b9398fd622fdf62221c95d9c65d7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79c04e3f7a782946b35b63a34bf8f421d58727fe4881ea23334f37aecb7d07c5
MD5 46063243a77135aa9fd205151e2bc84a
BLAKE2b-256 8d9c4195fc7e02f2b094c216519862ed6f56ba8b748a5ca1e1b7b739cd0c6af3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdd9a0bb71261196fb2c2061d52c667784c998ae8b7d3f7f35d822b493ed471d
MD5 ce0c0ee6035d04f225fc24683d93f154
BLAKE2b-256 d914b2f549697269edb0e4b77dd9321de85eecc15d792639b66b7cab990c0453

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91708c52e2ed93ca490e9173f5fc25c7516fdb1e4efc261a381a5b67c06c3fbc
MD5 371623d17a9cde8db7592dd4a90c139a
BLAKE2b-256 311ede9aeb5011db6c72ef161a3a4a7f3611702ba6118d60119afc31dbf69a8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 329380e883c5045b2c34ce8109e23dd7e86d043f7049956c01d3551d22591e52
MD5 3da05e226da3b363b541a7e0d610dca4
BLAKE2b-256 88a14e268df82f8f6ee7a84e58164a17b9ba4cdc6a618cc3b85a2da5d307c497

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 93abed4e99f845845a420e37ba35a755201132be7e772e0f5bf4687bb6fe5f6b
MD5 535b1cf11e1e32074717917f10f6f1ef
BLAKE2b-256 141ea77d0bcdaa30687eefd027d6cb2264039dc69d641035bf215f64513924b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2ddb8a9852d91a9ede12f255849cd57b71ece9321ba8b50ebe1ad2137916346e
MD5 d9b1e79e724bff6ce9b5f9ce9a96be28
BLAKE2b-256 18845fae3d444f0ac9cb33dd2ee20ed2bea071b03550c2470e895c80ba39f839

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4444f349042ed3d8ededa76c85ca8e830e3afced89ae78c088a7eb8b7491dec
MD5 9ce75d5fb021545ec6596cf0acf0a62d
BLAKE2b-256 8db861cbb74f0903bfe08718bc56552a886d7ed41ac928c1acbc7a1bc0421d04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 819dfab22e18211631828a29ae1dd11314341282d04052af728a93e90c095e79
MD5 86419e82bf21fa0967a210c9e3547aad
BLAKE2b-256 f86f2a2f87bd597c32c62559767af07320e77f73f9ba672d42c9ae10498fe381

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e20fe10d46a1f6303838860dce5b8ac3a8377ffe061bc6aa00a652cd86220dbf
MD5 d985d9da80ed10e4cf902335c95dd30f
BLAKE2b-256 169018cab23362f31d5ce3929f67e9d91e0e83207ee761633cfaf1f87353db6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 317469d07be6f6896ddbf72929a7df974ff770f9fdfc7baff1201efddd3466cd
MD5 4c51ffa5f3a88f8eec9f427d10137b59
BLAKE2b-256 5e01be9e02253ad72eb07188372119da6be9b3c0814bee4bb640463b8678c7cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3744d8871b78f1d0d75b9a5b7284995d5891b9b8c92223d7a63b97f97837c9ad
MD5 34552402d15e9c7a5ea170d6c7a7e6c5
BLAKE2b-256 fef93c6987be0ca5431d589705457cf853bd7cddbe612e4c96444e3771fb8dd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d6d4f5f430e324737b94e9519bedc2ee05b83b06080d04e0fb052691f37307a
MD5 ba71b04405db137fde73c140908f39e4
BLAKE2b-256 a7189d8e515d3054adc65fd9fdb15de2a9bb9b903a1126e04a9636318dfacb3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a493003fc88d1e340085c6b7a2b67a7520c5bf3697afdf07028922db4278022b
MD5 fa11dd5c096719d6411e0684e4c1016a
BLAKE2b-256 c1d243e6e13f038f3c188fd04e23fcae3d798b34397c8f25a22ff248989ee2dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8c95c6f8ea49ecf3a79d88d6db318099cbe929ff2d111f0ae32c653a5143700f
MD5 b7836651ca88412dd72d79387e39a5d7
BLAKE2b-256 71d82e60e318b3a67a8e222f8cd28960e89a1b357355f873317c8a9846c194d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 651be47441b5ff5bff6884b8aaf0c8eae68b6a0d5d509dfde028fc231dc77f38
MD5 cb00a3f5656cef1a247dfc82d5aa4ecb
BLAKE2b-256 6d1a7a4e2a5c5bbf938c84007de3a6f72985528690aea4c69eaa6235796cddee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3a062ea6fcd2390808712990b7a7489c7d1e044df46517eaf292fbd8609d163
MD5 03c7f2127e9e564d56fa8a2574461270
BLAKE2b-256 fce014a669d5cac18e6e98fecc70e530f30156277c8ecba8e7d983c28605ba7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b678b6f7d54b90a807c5c3c266e343722198e0dc03bf993482b607b36ae2264f
MD5 57f07126ac264f283e52a34915df715c
BLAKE2b-256 0f72c50df7d7115653130d361e1782d2e8f4f1c51999ebeef8027eb10d376686

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94b1f17f6c1f5bce59eb49b33ab9d439d53d0a6468bf041d1bfc1dd3e573be4b
MD5 4c272aeee4ad4cfe57195b21ae6ff666
BLAKE2b-256 5c6809b387041a7fced815904bf7448f439a63748c3d985fd43021cd9027cc78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33ee2cae9de8102f09177bc05c79087526cf2485c9dabc5ad7911d107eeca68a
MD5 f503a6b870fff47e8b2b034acd96c6e2
BLAKE2b-256 992f6329997bd10ef78498862b1bbfa216dda02ea7f9f9535405d78cae1a641d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13f91c45c0185921b6ba341dcf819041bf2b679afa244e08b43ff35559968fc3
MD5 29c25894fcffa095617d975bc56ee502
BLAKE2b-256 f52f3aef7f920a180797fd77cb5d00c2961c01d220e6a3a13e7293c76a59f1b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a20144774a8ca8ddb2961892e40f0740166c57665cd8a2236036a3398f2dfc31
MD5 7af5577dbe7216ca766d4b211d74631d
BLAKE2b-256 94e952f76576300ad29e2a1a36691ad4a377f9a6ff4ef3dd30fd2e046ac9b126

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9df6470b5e7c9e1e360965784b4ab84d85b0d436de9bbb9856e06ff835bf60f7
MD5 77f4e09e8d4ee2e733ee92db2358b333
BLAKE2b-256 9628d2a3750467846937f6e057cf201c6257380719aac4d6e19c9d6c110c77b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33f872f2fbd7075466fd0850c00ebb9698ee9c4ac6b19b7810b1744b628313c7
MD5 89910def915e2acf1c3109340f343b1a
BLAKE2b-256 57d1035e28fa8579b5967ca04841ab01cd200c9ba1a7903822fd84f710b8f341

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc86aeca523a90044fbe76508b2ae6f25bde72762d9b0cdafc6110bf43a0c2bf
MD5 8ce3d9fc5eefe68bad1fd3f33837e7ac
BLAKE2b-256 afa1f396c6d9f4f81ada0ae4d6080c14ecfed20212c48ed12a5335c78214b442

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64eb418ea9751f2c12c27bf55876e41135ac27424f0d68363861899190031b97
MD5 b7ba0661c415b12242b132297f266cee
BLAKE2b-256 7c13f0a643defa982aa44a729d8c86518ab799c913204a5c6d524cb25e3cc62f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74afbb978a194381a1ca101aed57f9f9acbe94abae2976c8e60e8e62fd3529cb
MD5 92fba39768eb1df598a81967209ce2a6
BLAKE2b-256 b83d3d2a6255428034f03011e5e2714a617453d80f56c242644c85ef9e8978dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25e302c25d4f3e38f3e55c797ac6a2759fcaf00940b1ad66146e47ed7126ddcb
MD5 53b5c55a3915a09373677bf7a4d0373f
BLAKE2b-256 b98cc862dd5feaed94f7d491c4778981f0b10bbfd0eece39612defdb7ede269f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: reru-0.3.3-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.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fbcba73d0f7f83ee38add40c82c2699ca2096d57fdfbd57543dd61a96e645b3
MD5 116f0db9369781a2aa767b98ced2753e
BLAKE2b-256 8f22d6775d0294e063583f7366a4fc401ab7387c4719c5c068564384c518bfcd

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