iregexp-check
What it is and what it does
iregexp_check is a Python binding to a Rust implementation that validates whether a regular expression conforms to RFC 9485 I-Regexp, a standardized regex format intended to be portable across different systems and programming languages. It provides a single function, `check()`, that takes a regex pattern string and returns True if the pattern is valid I-Regexp, False otherwise.
The package targets developers who need to ensure regex patterns will work consistently across interoperable systems or who are building tools that must enforce I-Regexp compliance. It has no runtime dependencies and is distributed as compiled wheels for most common platforms, though it carries medium install friction due to its compiled nature.
Use it for:
- Validate user-supplied regex patterns in web applications before storing or executing them against I-Regexp compliance rules.
- Enforce regex portability in code review or CI/CD pipelines by checking patterns conform to RFC 9485.
- Build regex linters or validation tools that need to reject non-portable regex syntax early.
- Test regex patterns intended for use in systems or languages that only support I-Regexp format.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Validates regular expressions against RFC 9485 I-Regexp, an interoperable regex format designed for portability across systems and languages.
Yes, if you need RFC 9485 I-Regexp validation and can tolerate aging maintenance. The package is permissively licensed, has no dependencies, and covers current Python versions. However, the 689-day gap since release and lack of recent commits suggest limited active development; verify that the package still meets your compliance needs before relying on it in production.
Install
iregexp-check on PyPI
pip
pip install iregexp-checkuv
uv add iregexp-checkpoetry
poetry add iregexp-checkInstalling iregexp-check
Before you install
Medium install friction due to compiled wheels; the package is aging (689 days since release, last commit 2025-08-24) with no active development signals, though the repository remains unarchived and the codebase supports current Python versions (3.8–3.13).
License in practice
Licensed under MIT (permissive), so you can use, modify, and distribute the package freely with minimal restrictions.
Quickstart
pip install iregexp_check
from iregexp_check import check
print(check(r"[ab]{3}")) # True
print(check(r"[0-9]*?")) # False
Requires Python 3.8 or later; compiled wheels are provided for common platforms but may require a build step on unsupported architectures.
Verify before relying
- Whether the package is actively maintained or if the 689-day gap since last release indicates abandonment.
- Real-world coverage of I-Regexp edge cases and how strictly it enforces RFC 9485 compliance.
- Performance characteristics when validating large or complex regex patterns.
Package facts
| License | not declared (permissive) |
| Python support | supports the current Python release (>=3.8) |
| Install friction | medium — platform-specific wheel |
| Runtime dependencies | none |
| Maintenance | aging — 689 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 492,387/month — #6,360 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: iregexp_check-0.1.4-cp38-abi3-macosx_10_12_x86_64.whl; iregexp_check-0.1.4-cp38-abi3-macosx_11_0_arm64.whl; iregexp_check-0.1.4-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl; iregexp_check-0.1.4-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl; iregexp_check-0.1.4-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl; iregexp_check-0.1.4-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl; iregexp_check-0.1.4-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl; iregexp_check-0.1.4-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl; iregexp_check-0.1.4-cp38-abi3-musllinux_1_2_aarch64.whl; iregexp_check-0.1.4-cp38-abi3-musllinux_1_2_armv7l.whl; iregexp_check-0.1.4-cp38-abi3-musllinux_1_2_i686.whl; iregexp_check-0.1.4-cp38-abi3-musllinux_1_2_x86_64.whl; iregexp_check-0.1.4-cp38-abi3-win32.whl; iregexp_check-0.1.4-cp38-abi3-win_amd64.whl
Tags
More Text Processing packages
A drop-in replacement for Python's standard…
permissive · top 100 on PyPI
pyparsingpyparsing provides a library for building text…
permissive · top 1,000 on PyPI
docutilsDocutils converts plaintext documentation in…
unclear · top 1,000 on PyPI
RapidFuzzRapidFuzz provides fast fuzzy string matching…
permissive · top 1,000 on PyPI
tinycss2tinycss2 parses CSS strings into token and…
permissive · top 1,000 on PyPI
llama-parseLlamaParse parses complex documents (PDFs,…
permissive · top 1,000 on PyPI
regexploitRegexploit analyzes regular expressions to…
permissive · top 15,000 on PyPI
flpcflpc wraps the Rust regex crate to provide…
permissive · top 5,000 on PyPI
regressProvides Python bindings to the Rust regress…
permissive · top 5,000 on PyPI
exrexExrex generates all or random strings matching…
agpl · top 15,000 on PyPI
pytest-regexA pytest plugin that selects tests to run using…
permissive · top 15,000 on PyPI
rfc3339-validatorValidates whether a string conforms to the…
permissive · top 1,000 on PyPI
greeneryParses and manipulates regular expressions by…
permissive · top 15,000 on PyPI
emvalValidates email addresses according to RFC 5322…
permissive · top 15,000 on PyPI
mailcheckerValidates email addresses against format rules…
permissive · top 15,000 on PyPI
rule-engineRule Engine provides a lightweight, custom…
permissive · top 15,000 on PyPI