Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 566 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 566 Bytes

Build Status Python Versions Licence Format

pip install er

A python micro library that generates data matching a given regular expression.

On the command-line:

# er 'he?llo there{4,5}'

hllo thereeee

or from python:

>>> import er

>>> print er.generate('he?llo there{4,5}')

'hello thereeeee'