A collection of reusable, well‑tested regular‑expression patterns for everyday text‑processing tasks.
pip install pyregularexpression
from pyregularexpression import Patterns
email = Patterns.EMAIL.fullmatch("[email protected]")
The Patterns
alias is provided for convenience and mirrors the pyregularexpression.patterns
sub‑module.
.
├── src/
│ └── pyregularexpression/
│ ├── __init__.py
│ ├── patterns.py
│ └── med_cohort.py
└── pyproject.toml
Apache‑2.0 (see LICENSE for details)