Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 771 Bytes

README.rst

File metadata and controls

28 lines (19 loc) · 771 Bytes

regress

PyPI version Supported Python versions Build status

Python bindings to the Rust regress crate, exposing ECMA regular expressions.

>>> from regress import Regex
>>> regex = Regex(r"\d{4}")
>>> regex.find("2020-20-05") is not None
True