Humre


NameHumre JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/asweigart/humre
SummaryA human-readable regular expression module for Python. Humre handles regex syntax for you and creates regex strings to pass to Python's re.compile(). Pronounced "hum, ree".
upload_time2023-06-18 01:52:12
maintainer
docs_urlNone
authorAl Sweigart
requires_python>=3.5
licenseCopyright (c) 2022 Al Sweigart This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
keywords regex re regular expression
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # Humre

A human-readable regular expression module for Python. Humre handles regex syntax for you and creates regex strings to pass to Python's re.compile(). Pronounced "hum, ree".

It is similar to [Swift's regex DSL](https://swiftregex.com/) or an advanced form of Python regex's `re.VERBOSE` mode. Code is read far more often than it is written, so the verbose Humre code may take a few seconds longer to write but pays for itself by being much easier to read and understand.

Note that until version 1.0 is released, the API for this module could change. Please send suggestions and feedback to [al@inventwithpython.com](mailto://al@inventwithpython.com).

Quickstart
----------

    >>> import re
    >>> from humre import *
    >>> regexStr = either(OPEN_PAREN + exactly(3, DIGIT) + CLOSE_PAREN, exactly(3, DIGIT)) + '-' + exactly(3, DIGIT) + '-' + exactly(4, DIGIT)
    >>> regexStr
    '\\(\\d{3}\\)|\\d{3}-\\d{3}-\\d{4}'
    >>> patternObj = re.compile(regexStr)
    >>> matchObj = patternObj.search('Call 415-555-1234 today!')
    >>> matchObj
    <re.Match object; span=(5, 17), match='415-555-1234'>
    >>> matchObj.group()
    '415-555-1234'


Frequently Asked Questions
--------------------------

**What Does Humre Provide?**

Humre provides a collection of functions and constants to create regex strings without having to know the specific regex symbols. These offer more structure and readability than regex strings.

**Do I Need to Know Regular Expressions to Use Humre?**

Yes and no. You still need to know what regular expressions are and how they're used. But instead of memorizing the punctuation marks for each regex feature you want to use, you can use the easier-to-remember Humre functions and constants. For example, `zero_or_more(chars('a-z'))` is easier to remember than `[a-z]*` if you are inexperienced with regex. But I recommend reading a general regex tutorial before using Humre.

**What's Wrong with Python's re Module?**

It's more what's wrong with regular expression syntax. Regex strings can look like a cryptic mess of punctuation marks, and even if you're an experienced software engineer, complex regex strings can be hard to read and debug.

**Doesn't Verbose Mode Fix That Problem?**

A little. But because verbose mode still has the regex string as a string value, dev tools such as linters, syntax highlighting, and matching parentheses highlighting can't be employed. Also, dealing with escape characters can still be a pain.

**Is Humre a New Reimplementation of Python's re Module?**

No. Humre only creates the regex strings to pass to `re.compile()`.

**What Are Benefits of Using Humre Instead of Writing My Own Regex Strings?**

* Your editor's parentheses matching works.
* Your editor's syntax highlight works.
* Your editor's linter and type hints tool picks up typos.
* Your editor's autocomplete works.
* Auto-formatter tools like Black can automatically format your regex code.
* Humre handles raw strings/string escaping for you.
* You can put actual Python comments alongside your Humre code.
* Better error messages for invalid regexes.

**Is It A Good Idea To Use The `from humre import *` Importing Syntax?**

In this case, sure. Generally this form importing is frowned on, but it'll keep your `optional(group('cat' + DIGIT))` code from becoming `humre.optional(humre.group('cat' + humre.DIGIT))`.

**How Do I Combine Humre's Functions and Constants Together?**

Every Humre function returns a regex string and every Humre constant is a string, so you can use f-strings and string concatenation to combine them:

    >>> from humre import *

    >>> exactly(5, DIGIT) + optional(WHITESPACE) + one_or_more(NONWHITESPACE)
    '\\d{5}\\s?\\S+'

    >>> 'I am looking for %s grapes.' % (exactly(2, DIGIT))
    'I am looking for \\d{2} grapes.'

    >>> f'I am looking for {exactly(2, DIGIT)} grapes.''
    'I am looking for \\d{2} grapes.'


**Humre Seems Nice for Beginners, But Why Would Experienced Devs Want to Use It?**

TODO

**Isn't Using Humre a Performance Hit Compared to Using re?**

No. Humre functions are simple functions that do basic string manipulation. You only need to call them once when you create the regex pattern object. Your program, whether large or small, will spend far more time doing the actual pattern matching than creating the regex string.

**Most Regexes Are Short Enough That the Syntax Doesn't Get In the Way. Why Use Humre for These?**

Sure, the phone number example is simple enough that anyone who knows regex syntax can understand it.

Humre vs re Comparison
----------------------

Here's a comparison of the code for Python's `re` module versus the equivalent code with Humre (formatted with the Black code-formatting tool.)

American Phone Number with re:

    import re
    re.compile('\d{3}-\d{3}-\d{4}')

American Phone Number with Humre:

    import re
    from humre import *
    re.compile(exactly(3, DIGIT), "-", exactly(3, DIGIT), "-", exactly(4, DIGIT))

Hexadecimal Number with Optional Leading `0x` or `0X` and Consistent Casing with re:

    import re
    re.compile('(?:(?:0x|0X)[0-9a-f]+)|(?:(?:0x|0X)[0-9A-F]+)|(?:[0-9a-f]+)|(?:[0-9A-F]+)')

Hexadecimal Number with Optional Leading `0x` or `0X` and Consistent Casing with re:

    import re
    from humre import *
    re.compile(
        either(
            noncap_group(noncap_group(either('0x', '0X')), one_or_more(chars('0-9a-f'))),
            noncap_group(noncap_group(either('0x', '0X')), one_or_more(chars('0-9A-F'))),
            noncap_group(one_or_more(chars('0-9a-f'))),
            noncap_group(one_or_more(chars('0-9A-F')))
        )
    )

Number with or without comma-formatting including decimal point with re:

    import re
    re.compile(r'(?:\+|-)?(?:(?:\d{1,3}(?:,\d{3})+)|\d+)(?:\.\d+)?')

Number with or without comma-formatting including decimal point with Humre:

    import re
    from humre import *
    re.compile(
        # optional negative or positive sign:
        optional(noncap_group(either(PLUS_SIGN, '-'))),
        # whole number section:
        noncap_group(either(
            # number with commas:
            noncap_group(between(1, 3, DIGIT), one_or_more(noncap_group(',', exactly(3, DIGIT)))),
            # number without commas:
            one_or_more(DIGIT)
        )),
        # fractional number section (optional)
        optional(noncap_group(PERIOD, one_or_more(DIGIT)))
        )

Or you can use Humre's included `NUMBER` pattern:

    import re
    from humre import *
    re.compile(NUMBER)




Quick Reference
----------------

Here's a quick list of all of Humre's functions and constants, and the regex strings that they produce:

| Function | Regex Equivalent |
|----------------|------------------|
| `group('A')` | `'(A)'` |
| `optional('A')` | `'A?'` |
| `either('A', 'B', 'C')` | `'A\|B\|C'` |
| `exactly(3, 'A')` | `'A{3}'` |
| `between(3, 5, 'A')` | `'A{3:5}'` |
| `at_least(3, 'A')` | `'A{3,}'` |
| `at_most(3, 'A')` | `'A{,3}'` |
| `chars('A-Z')` | `'[A-Z]'` |
| `nonchars('A-Z')` | `'[^A-Z]'` |
| `zero_or_more('A')` | `'A*'` |
| `zero_or_more_lazy('A')` | `'A*?'` |
| `one_or_more('A')` | `'A+'` |
| `one_or_more_lazy('A')` | `'A+?'` |
| `starts_with('A')` | `'^A'` |
| `ends_with('A')` | `'A$'` |
| `starts_and_ends_with('A')` | `'^A$'` |
| `named_group('group_name', 'A')` | `'(?P<group_name>A)'` |
| `noncap_group('A')` | `'(?:A)'` |
| `positive_lookahead('A')` | `'(?=A)'` |
| `negative_lookahead('A')` | `'(?!A)'` |
| `positive_lookbehind('A')` | `'(?<=A)'` |
| `negative_lookbehind('A')` | `'(?<!A)'` |
| `atomic_group('A')` | `'(?>A)'` |
| `zero_or_more_possessive('A')` | `'A*+'` |
| `one_or_more_possessive('A')` | `'A++'` |
| `optional_possessive('A')` | `'A?+'` |


The convenience group functions combine a Humre function with the `group()` (or `noncap_group()`) function since putting regexes in groups is so common, such as with `([A-Z])+` putting the character class

| Convenience Function | Function Equivalent | Regex Equivalent |
|----------------------------|---------------------|------------------|
| `optional_group('A')` | `optional(group('A'))` | `'(A)?'` |
| `optional_noncap_group('A')` | `optional(noncap_group('A'))` | `'(?:A)?'` |
| `group_either('A', 'B', 'C')` | `group(either('A', 'B', 'C'))` | `'(A\|B\|C)'` |
| `noncap_group_either('A')` | `noncap_group(either('A', 'B', 'C'))` | `'(?:A\|B\|C)'` |
| `exactly_group(3, 'A')` | `exactly(3, group('A'))` | `'(A){3}'` |
| `noncap_exactly_group(3, 'A')` | `exactly(3, noncap_group('A'))` | `'(?:A){3}'` |
| `between_group(3, 5, 'A')` | `between(3, 5, group('A'))` | `'(A){3,5}'` |
| `between_noncap_group(3, 5, 'A')` | `between(3, 5, noncap_group('A'))` | `'(?:A){3,5}'` |
| `at_least_group(3, 'A')` | `at_least(3, group('A'))` | `'(A){3,}'` |
| `at_least_noncap_group(3, 'A')` | `at_least(3, noncap_group('A'))` | `'(?:A){3,}'` |
| `at_most_group(5, 'A')` | `at_most(3, group('A'))` | `'(A){,3}'` |
| `at_most_noncap_group(5, 'A')` | `at_most(3, noncap_group('A'))` | `'(?:A){,3}'` |
| `zero_or_more_group('A')` | `zero_or_more(group('A'))` | `'(A)*'` |
| `zero_or_more_noncap_group('A')` | `zero_or_more(noncap_group('A'))` | `'(?:A)*'` |
| `zero_or_more_lazy_group('A')` | `zero_or_more_lazy(group('A'))` | `'(A)*?'` |
| `zero_or_more_lazy_noncap_group('A')` | `zero_or_more_lazy(noncap_group('A'))` | `'(?:A)*?'` |
| `one_or_more_group('A')` | `one_or_more(group('A'))` | `'(A)+'` |
| `one_or_more_noncap_group('A')` | `one_or_more(noncap_group('A'))` | `'(?:A)+'` |
| `one_or_more_lazy_group('A')` | `one_or_more_lazy(group('A'))` | `'(A)+?'` |
| `one_or_more_lazy_noncap_group('A')` | `one_or_more_lazy(noncap_group('A'))` | `'(?:A)+?'` |

Humre provides constants for the `\d`, `\w`, and `\s` character classes as well several other characters that need to be escaped:

| Constant | Regex Equivalent |
|----------------|------------------|
| `DIGIT` | `r'\d'` |
| `WORD` | `r'\w'` |
| `WHITESPACE` | `r'\s'` |
| `NONDIGIT` | `r'\D'` |
| `NONWORD` | `r'\W'` |
| `NONWHITESPACE` | `r'\S'` |
| `BOUNDARY` | `r'\b'` |
| `NEWLINE` | `r'\n'` |
| `TAB` | `r'\t'` |
| `QUOTE` | `r"\'"` |
| `DOUBLE_QUOTE` | `r'\"'` |
| `PERIOD` | `r'\.'` |
| `CARET` | `r'\^'` |
| `DOLLAR_SIGN` | `r'\$'` |
| `ASTERISK` | `r'\*'` |
| `PLUS_SIGN` | `r'\+'` |
| `QUESTION_MARK` | `r'\?'` |
| `OPEN_PARENTHESIS` | `r'\('` |
| `OPEN_PAREN` | `r'\('` |
| `CLOSE_PARENTHESIS` | `r'\)'` |
| `CLOSE_PAREN` | `r'\)'` |
| `OPEN_BRACE` | `r'\{'` |
| `CLOSE_BRACE` | `r'\}'` |
| `OPEN_BRACKET` | `r'\['` |
| `CLOSE_BRACKET` | `r'\]'` |
| `BACKSLASH` | `r'\\'` |
| `PIPE` | `r'\|'` |
| `BACK_1` | `r'\1'` |
| `BACK_2` | `r'\2'` |
| `BACK_3` | `r'\3'` |
| ... | ... |
| `BACK_99` | `r'\99'` |

Humre also provides constants for commonly used patterns:

| Humre Pattern Constants | Regex Equivalent | Note |
|----------------------------------|------------------|------|
| `ANYTHING` | `'.*?'` | lazy "zero or more of anything" match |
| `EVERYTHING` | `'.*'` | greedy "zero or more of anything" match, aka dot star |
| `SOMETHING` | `'.+?'` | lazy "one or more of anything" match |
| `ANYCHAR` | `'.'` | |
| `LETTER` | (too big to display) | Matches `isalpha()` |
| `NONLETTER` | (too big to display) | Matches `not isalpha()` |
| `UPPERCASE` | (too big to display) | Matches `isupper()` |
| `NONUPPERCASE` | (too big to display) | Matches `not isupper()` |
| `LOWERCASE` | (too big to display) | Matches `islower()` |
| `NONLOWERCASE` | (too big to display) | Matches `not islower()` |
| `ALPHANUMERIC` | (too big to display) | Matches `isalnum()` |
| `NONALPHANUMERIC` | (too big to display) | Matches `not isalnum()` |
| `HEXADECIMAL` | `'[0-9A-Fa-f]'` | |
| `NONHEXADECIMAL` | `'[^0-9A-Fa-f]'` | |
| `NUMBER` | `r'(?:\+&#124;-)?(?:(?:\d{1,3}(?:,\d{3})+)&#124;\d+)(?:\.\d+)?'` | Comma-formatted numbers |
| `EURO_NUMBER` | `r'(?:\+&#124;-)?(?:(?:\d{1,3}(?:\.\d{3})+)&#124;\d+)(?:,\d+)?'` | Period-formatted numbers |
| `HEXADECIMAL_NUMBER` | `'(?:(?:0x&#124;0X)[0-9a-f]+)&#124;(?:(?:0x&#124;0X)[0-9A-F]+)&#124;(?:[0-9a-f]+)&#124;(?:[0-9A-F]+)'` | Can have leading `0x` or `0X`. |




            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/asweigart/humre",
    "name": "Humre",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "regex,re,regular expression",
    "author": "Al Sweigart",
    "author_email": "Al Sweigart <al@inventwithpython.com>",
    "download_url": "https://files.pythonhosted.org/packages/10/eb/8189421df8b7eded688409bfd5561964abaed60dd4e49c5505fe24eb6fa2/Humre-1.0.0.tar.gz",
    "platform": null,
    "description": "# Humre\r\n\r\nA human-readable regular expression module for Python. Humre handles regex syntax for you and creates regex strings to pass to Python's re.compile(). Pronounced \"hum, ree\".\r\n\r\nIt is similar to [Swift's regex DSL](https://swiftregex.com/) or an advanced form of Python regex's `re.VERBOSE` mode. Code is read far more often than it is written, so the verbose Humre code may take a few seconds longer to write but pays for itself by being much easier to read and understand.\r\n\r\nNote that until version 1.0 is released, the API for this module could change. Please send suggestions and feedback to [al@inventwithpython.com](mailto://al@inventwithpython.com).\r\n\r\nQuickstart\r\n----------\r\n\r\n    >>> import re\r\n    >>> from humre import *\r\n    >>> regexStr = either(OPEN_PAREN + exactly(3, DIGIT) + CLOSE_PAREN, exactly(3, DIGIT)) + '-' + exactly(3, DIGIT) + '-' + exactly(4, DIGIT)\r\n    >>> regexStr\r\n    '\\\\(\\\\d{3}\\\\)|\\\\d{3}-\\\\d{3}-\\\\d{4}'\r\n    >>> patternObj = re.compile(regexStr)\r\n    >>> matchObj = patternObj.search('Call 415-555-1234 today!')\r\n    >>> matchObj\r\n    <re.Match object; span=(5, 17), match='415-555-1234'>\r\n    >>> matchObj.group()\r\n    '415-555-1234'\r\n\r\n\r\nFrequently Asked Questions\r\n--------------------------\r\n\r\n**What Does Humre Provide?**\r\n\r\nHumre provides a collection of functions and constants to create regex strings without having to know the specific regex symbols. These offer more structure and readability than regex strings.\r\n\r\n**Do I Need to Know Regular Expressions to Use Humre?**\r\n\r\nYes and no. You still need to know what regular expressions are and how they're used. But instead of memorizing the punctuation marks for each regex feature you want to use, you can use the easier-to-remember Humre functions and constants. For example, `zero_or_more(chars('a-z'))` is easier to remember than `[a-z]*` if you are inexperienced with regex. But I recommend reading a general regex tutorial before using Humre.\r\n\r\n**What's Wrong with Python's re Module?**\r\n\r\nIt's more what's wrong with regular expression syntax. Regex strings can look like a cryptic mess of punctuation marks, and even if you're an experienced software engineer, complex regex strings can be hard to read and debug.\r\n\r\n**Doesn't Verbose Mode Fix That Problem?**\r\n\r\nA little. But because verbose mode still has the regex string as a string value, dev tools such as linters, syntax highlighting, and matching parentheses highlighting can't be employed. Also, dealing with escape characters can still be a pain.\r\n\r\n**Is Humre a New Reimplementation of Python's re Module?**\r\n\r\nNo. Humre only creates the regex strings to pass to `re.compile()`.\r\n\r\n**What Are Benefits of Using Humre Instead of Writing My Own Regex Strings?**\r\n\r\n* Your editor's parentheses matching works.\r\n* Your editor's syntax highlight works.\r\n* Your editor's linter and type hints tool picks up typos.\r\n* Your editor's autocomplete works.\r\n* Auto-formatter tools like Black can automatically format your regex code.\r\n* Humre handles raw strings/string escaping for you.\r\n* You can put actual Python comments alongside your Humre code.\r\n* Better error messages for invalid regexes.\r\n\r\n**Is It A Good Idea To Use The `from humre import *` Importing Syntax?**\r\n\r\nIn this case, sure. Generally this form importing is frowned on, but it'll keep your `optional(group('cat' + DIGIT))` code from becoming `humre.optional(humre.group('cat' + humre.DIGIT))`.\r\n\r\n**How Do I Combine Humre's Functions and Constants Together?**\r\n\r\nEvery Humre function returns a regex string and every Humre constant is a string, so you can use f-strings and string concatenation to combine them:\r\n\r\n    >>> from humre import *\r\n\r\n    >>> exactly(5, DIGIT) + optional(WHITESPACE) + one_or_more(NONWHITESPACE)\r\n    '\\\\d{5}\\\\s?\\\\S+'\r\n\r\n    >>> 'I am looking for %s grapes.' % (exactly(2, DIGIT))\r\n    'I am looking for \\\\d{2} grapes.'\r\n\r\n    >>> f'I am looking for {exactly(2, DIGIT)} grapes.''\r\n    'I am looking for \\\\d{2} grapes.'\r\n\r\n\r\n**Humre Seems Nice for Beginners, But Why Would Experienced Devs Want to Use It?**\r\n\r\nTODO\r\n\r\n**Isn't Using Humre a Performance Hit Compared to Using re?**\r\n\r\nNo. Humre functions are simple functions that do basic string manipulation. You only need to call them once when you create the regex pattern object. Your program, whether large or small, will spend far more time doing the actual pattern matching than creating the regex string.\r\n\r\n**Most Regexes Are Short Enough That the Syntax Doesn't Get In the Way. Why Use Humre for These?**\r\n\r\nSure, the phone number example is simple enough that anyone who knows regex syntax can understand it.\r\n\r\nHumre vs re Comparison\r\n----------------------\r\n\r\nHere's a comparison of the code for Python's `re` module versus the equivalent code with Humre (formatted with the Black code-formatting tool.)\r\n\r\nAmerican Phone Number with re:\r\n\r\n    import re\r\n    re.compile('\\d{3}-\\d{3}-\\d{4}')\r\n\r\nAmerican Phone Number with Humre:\r\n\r\n    import re\r\n    from humre import *\r\n    re.compile(exactly(3, DIGIT), \"-\", exactly(3, DIGIT), \"-\", exactly(4, DIGIT))\r\n\r\nHexadecimal Number with Optional Leading `0x` or `0X` and Consistent Casing with re:\r\n\r\n    import re\r\n    re.compile('(?:(?:0x|0X)[0-9a-f]+)|(?:(?:0x|0X)[0-9A-F]+)|(?:[0-9a-f]+)|(?:[0-9A-F]+)')\r\n\r\nHexadecimal Number with Optional Leading `0x` or `0X` and Consistent Casing with re:\r\n\r\n    import re\r\n    from humre import *\r\n    re.compile(\r\n        either(\r\n            noncap_group(noncap_group(either('0x', '0X')), one_or_more(chars('0-9a-f'))),\r\n            noncap_group(noncap_group(either('0x', '0X')), one_or_more(chars('0-9A-F'))),\r\n            noncap_group(one_or_more(chars('0-9a-f'))),\r\n            noncap_group(one_or_more(chars('0-9A-F')))\r\n        )\r\n    )\r\n\r\nNumber with or without comma-formatting including decimal point with re:\r\n\r\n    import re\r\n    re.compile(r'(?:\\+|-)?(?:(?:\\d{1,3}(?:,\\d{3})+)|\\d+)(?:\\.\\d+)?')\r\n\r\nNumber with or without comma-formatting including decimal point with Humre:\r\n\r\n    import re\r\n    from humre import *\r\n    re.compile(\r\n        # optional negative or positive sign:\r\n        optional(noncap_group(either(PLUS_SIGN, '-'))),\r\n        # whole number section:\r\n        noncap_group(either(\r\n            # number with commas:\r\n            noncap_group(between(1, 3, DIGIT), one_or_more(noncap_group(',', exactly(3, DIGIT)))),\r\n            # number without commas:\r\n            one_or_more(DIGIT)\r\n        )),\r\n        # fractional number section (optional)\r\n        optional(noncap_group(PERIOD, one_or_more(DIGIT)))\r\n        )\r\n\r\nOr you can use Humre's included `NUMBER` pattern:\r\n\r\n    import re\r\n    from humre import *\r\n    re.compile(NUMBER)\r\n\r\n\r\n\r\n\r\nQuick Reference\r\n----------------\r\n\r\nHere's a quick list of all of Humre's functions and constants, and the regex strings that they produce:\r\n\r\n| Function | Regex Equivalent |\r\n|----------------|------------------|\r\n| `group('A')` | `'(A)'` |\r\n| `optional('A')` | `'A?'` |\r\n| `either('A', 'B', 'C')` | `'A\\|B\\|C'` |\r\n| `exactly(3, 'A')` | `'A{3}'` |\r\n| `between(3, 5, 'A')` | `'A{3:5}'` |\r\n| `at_least(3, 'A')` | `'A{3,}'` |\r\n| `at_most(3, 'A')` | `'A{,3}'` |\r\n| `chars('A-Z')` | `'[A-Z]'` |\r\n| `nonchars('A-Z')` | `'[^A-Z]'` |\r\n| `zero_or_more('A')` | `'A*'` |\r\n| `zero_or_more_lazy('A')` | `'A*?'` |\r\n| `one_or_more('A')` | `'A+'` |\r\n| `one_or_more_lazy('A')` | `'A+?'` |\r\n| `starts_with('A')` | `'^A'` |\r\n| `ends_with('A')` | `'A$'` |\r\n| `starts_and_ends_with('A')` | `'^A$'` |\r\n| `named_group('group_name', 'A')` | `'(?P<group_name>A)'` |\r\n| `noncap_group('A')` | `'(?:A)'` |\r\n| `positive_lookahead('A')` | `'(?=A)'` |\r\n| `negative_lookahead('A')` | `'(?!A)'` |\r\n| `positive_lookbehind('A')` | `'(?<=A)'` |\r\n| `negative_lookbehind('A')` | `'(?<!A)'` |\r\n| `atomic_group('A')` | `'(?>A)'` |\r\n| `zero_or_more_possessive('A')` | `'A*+'` |\r\n| `one_or_more_possessive('A')` | `'A++'` |\r\n| `optional_possessive('A')` | `'A?+'` |\r\n\r\n\r\nThe convenience group functions combine a Humre function with the `group()` (or `noncap_group()`) function since putting regexes in groups is so common, such as with `([A-Z])+` putting the character class\r\n\r\n| Convenience Function | Function Equivalent | Regex Equivalent |\r\n|----------------------------|---------------------|------------------|\r\n| `optional_group('A')` | `optional(group('A'))` | `'(A)?'` |\r\n| `optional_noncap_group('A')` | `optional(noncap_group('A'))` | `'(?:A)?'` |\r\n| `group_either('A', 'B', 'C')` | `group(either('A', 'B', 'C'))` | `'(A\\|B\\|C)'` |\r\n| `noncap_group_either('A')` | `noncap_group(either('A', 'B', 'C'))` | `'(?:A\\|B\\|C)'` |\r\n| `exactly_group(3, 'A')` | `exactly(3, group('A'))` | `'(A){3}'` |\r\n| `noncap_exactly_group(3, 'A')` | `exactly(3, noncap_group('A'))` | `'(?:A){3}'` |\r\n| `between_group(3, 5, 'A')` | `between(3, 5, group('A'))` | `'(A){3,5}'` |\r\n| `between_noncap_group(3, 5, 'A')` | `between(3, 5, noncap_group('A'))` | `'(?:A){3,5}'` |\r\n| `at_least_group(3, 'A')` | `at_least(3, group('A'))` | `'(A){3,}'` |\r\n| `at_least_noncap_group(3, 'A')` | `at_least(3, noncap_group('A'))` | `'(?:A){3,}'` |\r\n| `at_most_group(5, 'A')` | `at_most(3, group('A'))` | `'(A){,3}'` |\r\n| `at_most_noncap_group(5, 'A')` | `at_most(3, noncap_group('A'))` | `'(?:A){,3}'` |\r\n| `zero_or_more_group('A')` | `zero_or_more(group('A'))` | `'(A)*'` |\r\n| `zero_or_more_noncap_group('A')` | `zero_or_more(noncap_group('A'))` | `'(?:A)*'` |\r\n| `zero_or_more_lazy_group('A')` | `zero_or_more_lazy(group('A'))` | `'(A)*?'` |\r\n| `zero_or_more_lazy_noncap_group('A')` | `zero_or_more_lazy(noncap_group('A'))` | `'(?:A)*?'` |\r\n| `one_or_more_group('A')` | `one_or_more(group('A'))` | `'(A)+'` |\r\n| `one_or_more_noncap_group('A')` | `one_or_more(noncap_group('A'))` | `'(?:A)+'` |\r\n| `one_or_more_lazy_group('A')` | `one_or_more_lazy(group('A'))` | `'(A)+?'` |\r\n| `one_or_more_lazy_noncap_group('A')` | `one_or_more_lazy(noncap_group('A'))` | `'(?:A)+?'` |\r\n\r\nHumre provides constants for the `\\d`, `\\w`, and `\\s` character classes as well several other characters that need to be escaped:\r\n\r\n| Constant | Regex Equivalent |\r\n|----------------|------------------|\r\n| `DIGIT` | `r'\\d'` |\r\n| `WORD` | `r'\\w'` |\r\n| `WHITESPACE` | `r'\\s'` |\r\n| `NONDIGIT` | `r'\\D'` |\r\n| `NONWORD` | `r'\\W'` |\r\n| `NONWHITESPACE` | `r'\\S'` |\r\n| `BOUNDARY` | `r'\\b'` |\r\n| `NEWLINE` | `r'\\n'` |\r\n| `TAB` | `r'\\t'` |\r\n| `QUOTE` | `r\"\\'\"` |\r\n| `DOUBLE_QUOTE` | `r'\\\"'` |\r\n| `PERIOD` | `r'\\.'` |\r\n| `CARET` | `r'\\^'` |\r\n| `DOLLAR_SIGN` | `r'\\$'` |\r\n| `ASTERISK` | `r'\\*'` |\r\n| `PLUS_SIGN` | `r'\\+'` |\r\n| `QUESTION_MARK` | `r'\\?'` |\r\n| `OPEN_PARENTHESIS` | `r'\\('` |\r\n| `OPEN_PAREN` | `r'\\('` |\r\n| `CLOSE_PARENTHESIS` | `r'\\)'` |\r\n| `CLOSE_PAREN` | `r'\\)'` |\r\n| `OPEN_BRACE` | `r'\\{'` |\r\n| `CLOSE_BRACE` | `r'\\}'` |\r\n| `OPEN_BRACKET` | `r'\\['` |\r\n| `CLOSE_BRACKET` | `r'\\]'` |\r\n| `BACKSLASH` | `r'\\\\'` |\r\n| `PIPE` | `r'\\|'` |\r\n| `BACK_1` | `r'\\1'` |\r\n| `BACK_2` | `r'\\2'` |\r\n| `BACK_3` | `r'\\3'` |\r\n| ... | ... |\r\n| `BACK_99` | `r'\\99'` |\r\n\r\nHumre also provides constants for commonly used patterns:\r\n\r\n| Humre Pattern Constants | Regex Equivalent | Note |\r\n|----------------------------------|------------------|------|\r\n| `ANYTHING` | `'.*?'` | lazy \"zero or more of anything\" match |\r\n| `EVERYTHING` | `'.*'` | greedy \"zero or more of anything\" match, aka dot star |\r\n| `SOMETHING` | `'.+?'` | lazy \"one or more of anything\" match |\r\n| `ANYCHAR` | `'.'` | |\r\n| `LETTER` | (too big to display) | Matches `isalpha()` |\r\n| `NONLETTER` | (too big to display) | Matches `not isalpha()` |\r\n| `UPPERCASE` | (too big to display) | Matches `isupper()` |\r\n| `NONUPPERCASE` | (too big to display) | Matches `not isupper()` |\r\n| `LOWERCASE` | (too big to display) | Matches `islower()` |\r\n| `NONLOWERCASE` | (too big to display) | Matches `not islower()` |\r\n| `ALPHANUMERIC` | (too big to display) | Matches `isalnum()` |\r\n| `NONALPHANUMERIC` | (too big to display) | Matches `not isalnum()` |\r\n| `HEXADECIMAL` | `'[0-9A-Fa-f]'` | |\r\n| `NONHEXADECIMAL` | `'[^0-9A-Fa-f]'` | |\r\n| `NUMBER` | `r'(?:\\+&#124;-)?(?:(?:\\d{1,3}(?:,\\d{3})+)&#124;\\d+)(?:\\.\\d+)?'` | Comma-formatted numbers |\r\n| `EURO_NUMBER` | `r'(?:\\+&#124;-)?(?:(?:\\d{1,3}(?:\\.\\d{3})+)&#124;\\d+)(?:,\\d+)?'` | Period-formatted numbers |\r\n| `HEXADECIMAL_NUMBER` | `'(?:(?:0x&#124;0X)[0-9a-f]+)&#124;(?:(?:0x&#124;0X)[0-9A-F]+)&#124;(?:[0-9a-f]+)&#124;(?:[0-9A-F]+)'` | Can have leading `0x` or `0X`. |\r\n\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": "Copyright (c) 2022 Al Sweigart  This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.  You should have received a copy of the GNU General Public License along with this program.  If not, see <https://www.gnu.org/licenses/>.",
    "summary": "A human-readable regular expression module for Python. Humre handles regex syntax for you and creates regex strings to pass to Python's re.compile(). Pronounced \"hum, ree\".",
    "version": "1.0.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/asweigart/humre/issues",
        "Homepage": "https://github.com/asweigart/humre"
    },
    "split_keywords": [
        "regex",
        "re",
        "regular expression"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10eb8189421df8b7eded688409bfd5561964abaed60dd4e49c5505fe24eb6fa2",
                "md5": "10c62ef4f8ad1a2c0c9ffa33a80e9369",
                "sha256": "469ae0831969e01726049dc463cdba23a571c8d9fa0ecee49ac2d36f5a3290fa"
            },
            "downloads": -1,
            "filename": "Humre-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "10c62ef4f8ad1a2c0c9ffa33a80e9369",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 26453,
            "upload_time": "2023-06-18T01:52:12",
            "upload_time_iso_8601": "2023-06-18T01:52:12.431694Z",
            "url": "https://files.pythonhosted.org/packages/10/eb/8189421df8b7eded688409bfd5561964abaed60dd4e49c5505fe24eb6fa2/Humre-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-18 01:52:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "asweigart",
    "github_project": "humre",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": false,
    "tox": true,
    "lcname": "humre"
}
        
Elapsed time: 0.07879s