asweigart/humre is tracked by TopGit as an open-source project, with 429 stars on GitHub, written primarily in Python. A human-readable regular expression module for Python.
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
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 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 [email protected].
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() (or to pass to humre.compile() which wraps it.)
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)). Note that this will overwrite the (infrequently-used) built-in compile() function with humre.compile(), which is a wrapper for re.compile().
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
Why Is the humre.compile() Function Not Working When I Pass Flags to It?
Most Humre functions combine their arguments into one string for ease of use (that is, group('cat', 'dog') is the same as group('catdog')). The humre.compile() function does this to, so if you want to pass flags such as
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.)
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:
from humre import *
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:
from humre import *
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)'
back_reference(1)
r'\1'
back_ref(1)
r'\1'
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')
group(either('A', 'B', 'C'))
'(A|B|C)'
noncap_group_either('A')
noncap_group(either('A', 'B', 'C'))
'(?:A|B|C)'
group_exactly('A')
group(exactly(3, 'A'))
'(A){3}'
noncap_group_exactly('A')
noncap_group(exactly(3, 'A'))
'(?:A){3}'
group_between('A')
group(between(3, 5, 'A'))
'(A){3,5}'
noncap_group_between('A')
noncap_group(between(3, 5, 'A'))
'(?:A){3,5}'
group_at_least('A')
group(at_least(3, 'A'))
'(A){3,}'
noncap_group_at_least('A')
noncap_group(at_least(3, 'A'))
'(?:A){3,}'
group_at_most('A')
group(at_most(3, 'A'))
'(A){,3}'
noncap_group_at_most('A')
noncap_group(at_most(3, '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)+?'
group_chars('A-Z')
group(chars('A-Z'))
'([A-Z])'
noncap_group_chars('A-Z')
noncap_group(chars('A-Z'))
'(?:[A-Z])'
group_nonchars('A-Z')
group(nonchars('A-Z'))
(['^A-Z])'
noncap_group_nonchars('A-Z')
noncap_group(nonchars('A-Z'))
(?:['^A-Z])'
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_4
r'\4'
BACK_5
r'\5'
BACK_6
r'\6'
BACK_7
r'\7'
BACK_8
r'\8'
BACK_9
r'\9'
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
The most recent commit recorded on asweigart/humre was 3.2 years ago, based on the GitHub push timestamp. The repository has 26 forks — one of the better signals of community interest.
How many stars does asweigart/humre have?
asweigart/humre has 429 GitHub stars — refresh the page for the live number, or check github.com/asweigart/humre. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
Is asweigart/humre open source?
TopGit's metadata for asweigart/humre does not record a license. Most public repositories on GitHub ARE open source, but the exact terms vary — verify by opening the LICENSE file directly.
What is asweigart/humre?
asweigart/humre (asweigart/humre) is a Python project on GitHub. From the project's own README: A human-readable regular expression module for Python.
What language is asweigart/humre written in?
asweigart/humre is written primarily in Python. GitHub's language field is based on the largest share of bytes in the default branch.
Where do I read more about asweigart/humre?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/asweigart/humre is the definitive source.
Read full README in the tab above.
Is humre worth your time?
ChatGPT, Claude and Perplexity can all read this page. Ask one of them what it makes of humre.