regex is an alternative to the re package in the Python standard library. It is
intended to act as a drop in replacement. regex is supported on multiple
versions of Python.

For a full list of features see docs/Features.rst.

To install from PyPI run

    python -m pip install regex

To build and install regex for your default Python run

    python setup.py install

To install regex for a specific version run setup.py with that interpreter, e.g.

    python3.7 setup.py install

