python-rex
python-rex copied to clipboard
Python Regular Expressions for Humans™.
Additionally to the `match()` and `search()` methods the `re` module also supports `findall()` which allows finding all occurrences of a pattern. It would be nice if rex could support this...
Hello, this is an auto-generated Pull Request. ([Feedback?](mailto:[email protected]?subject=pypip.in%20Badge%20Bot%20Feedback%3A%20python-rex)) Some time ago, [pypip.in](https://web.archive.org/web/20150318013508/https://pypip.in/) shut down. This broke the badges for a bunch of repositories, including `python-rex`. Thankfully, an equivalent service is...
Hi, could you maybe update the package on PyPi so that I can use Rex.EXTRA_FLAGS? I would rather not git clone the package from Github on production servers.
In order to support modifiers like g for findall, eventually class Rex will have to store string flags instead of numeric flags from re module. This PR is a baby...