Metadata-Version: 2.3
Name: iregexp-check
Version: 0.1.2
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Author-email: James Prior <jamesgr.prior@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Change Log, https://github.com/jg-rp/rust-iregexp/blob/main/CHANGES.md
Project-URL: Homepage, https://github.com/jg-rp/rust-iregexp
Project-URL: Issue Tracker, https://github.com/jg-rp/rust-iregexp/issues
Project-URL: Source Code, https://github.com/jg-rp/rust-iregexp

# I-Regexp checker

Check regular expressions for compliance with [RFC 9485](https://datatracker.ietf.org/doc/html/rfc9485).

## Install

```
pip install iregexp_check
```

## Usage

```python
from iregexp_check import check

check(r"[ab]{3}")  # True
check(r"[0-9]*?")  # False
```

