Regexable

Latest version: v0.1.1

Safety actively analyzes 722460 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

0.1.1

**Full Changelog**: https://github.com/Orion-F/regexable/compare/v0.1.0...v0.1.1

0.1.0

This is the initial release of `regexable`, a more readable alternative to regular expressions in Python.

**Features:**
- Fluent interface for building regular expressions.
- Supports basic regex constructs like start/end of line, matching text, optional text, digits, whitespace, and more.
- Readable and chainable method calls to simplify the creation of complex regular expressions.

**Installation:**
bash
pip install regexable


**Usage Example:**
python
from regexable import Regexable

regex = Regexable().start_of_line().then("start").maybe("middle").end_of_line().build()
if regex.match("startmiddle"):
print("Matched!")

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.