Skip to main content

Alternative regular expression module, to replace re.

Project description

Introduction

This regex implementation is backwards-compatible with the standard ‘re’ module, but offers additional functionality.

Note

The re module’s behaviour with zero-width matches changed in Python 3.7, and this module will follow that behaviour when compiled for Python 3.7.

PyPy

This module is targeted at CPython. It expects that all codepoints are the same width, so it won’t behave properly with PyPy outside U+0000..U+007F because PyPy stores strings as UTF-8.

Old vs new behaviour

In order to be compatible with the re module, this module has 2 behaviours:

  • Version 0 behaviour (old behaviour, compatible with the re module):

    Please note that the re module’s behaviour may change over time, and I’ll endeavour to match that behaviour in version 0.

    • Indicated by the VERSION0 or V0 flag, or (?V0) in the pattern.

    • Zero-width matches are not handled correctly in the re module before Python 3.7. The behaviour in those earlier versions is:

      • .split won’t split a string at a zero-width match.

      • .sub will advance by one character after a zero-width match.

    • Inline flags apply to the entire pattern, and they can’t be turned off.

    • Only simple sets are supported.

    • Case-insensitive matches in Unicode use simple case-folding by default.

  • Version 1 behaviour (new behaviour, possibly different from the re module):

    • Indicated by the VERSION1 or V1 flag, or (?V1) in the pattern.

    • Zero-width matches are handled correctly.

    • Inline flags apply to the end of the group or pattern, and they can be turned off.

    • Nested sets and set operations are supported.

    • Case-insensitive matches in Unicode use full case-folding by default.

If no version is specified, the regex module will default to regex.DEFAULT_VERSION.

Case-insensitive matches in Unicode

The regex module supports both simple and full case-folding for case-insensitive matches in Unicode. Use of full case-folding can be turned on using the FULLCASE or F flag, or (?f) in the pattern. Please note that this flag affects how the IGNORECASE flag works; the FULLCASE flag itself does not turn on case-insensitive matching.

In the version 0 behaviour, the flag is off by default.

In the version 1 behaviour, the flag is on by default.

Nested sets and set operations

It’s not possible to support both simple sets, as used in the re module, and nested sets at the same time because of a difference in the meaning of an unescaped "[" in a set.

For example, the pattern [[a-z]--[aeiou]] is treated in the version 0 behaviour (simple sets, compatible with the re module) as:

  • Set containing “[” and the letters “a” to “z”

  • Literal “–”

  • Set containing letters “a”, “e”, “i”, “o”, “u”

  • Literal “]”

but in the version 1 behaviour (nested sets, enhanced behaviour) as:

  • Set which is:

    • Set containing the letters “a” to “z”

  • but excluding:

    • Set containing the letters “a”, “e”, “i”, “o”, “u”

Version 0 behaviour: only simple sets are supported.

Version 1 behaviour: nested sets and set operations are supported.

Flags

There are 2 kinds of flag: scoped and global. Scoped flags can apply to only part of a pattern and can be turned on or off; global flags apply to the entire pattern and can only be turned on.

The scoped flags are: FULLCASE, IGNORECASE, MULTILINE, DOTALL, VERBOSE, WORD.

The global flags are: ASCII, BESTMATCH, ENHANCEMATCH, LOCALE, POSIX, REVERSE, UNICODE, VERSION0, VERSION1.

If neither the ASCII, LOCALE nor UNICODE flag is specified, it will default to UNICODE if the regex pattern is a Unicode string and ASCII if it’s a bytestring.

The ENHANCEMATCH flag makes fuzzy matching attempt to improve the fit of the next match that it finds.

The BESTMATCH flag makes fuzzy matching search for the best match instead of the next match.

Notes on named capture groups

All capture groups have a group number, starting from 1.

Groups with the same group name will have the same group number, and groups with a different group name will have a different group number.

The same name can be used by more than one group, with later captures ‘overwriting’ earlier captures. All of the captures of the group will be available from the captures method of the match object.

Group numbers will be reused across different branches of a branch reset, eg. (?|(first)|(second)) has only group 1. If capture groups have different group names then they will, of course, have different group numbers, eg. (?|(?P<foo>first)|(?P<bar>second)) has group 1 (“foo”) and group 2 (“bar”).

In the regex (\s+)(?|(?P<foo>[A-Z]+)|(\w+) (?P<foo>[0-9]+) there are 2 groups:

  • (\s+) is group 1.

  • (?P<foo>[A-Z]+) is group 2, also called “foo”.

  • (\w+) is group 2 because of the branch reset.

  • (?P<foo>[0-9]+) is group 2 because it’s called “foo”.

If you want to prevent (\w+) from being group 2, you need to name it (different name, different group number).

Multithreading

The regex module releases the GIL during matching on instances of the built-in (immutable) string classes, enabling other Python threads to run concurrently. It is also possible to force the regex module to release the GIL during matching by calling the matching methods with the keyword argument concurrent=True. The behaviour is undefined if the string changes during matching, so use it only when it is guaranteed that that won’t happen.

Unicode

This module supports Unicode 13.0.0.

Full Unicode case-folding is supported.

Additional features

The issue numbers relate to the Python bug tracker, except where listed as “Hg issue”.

Added support for lookaround in conditional pattern (Hg issue 163)

The test of a conditional pattern can now be a lookaround.

Examples:

>>> regex.match(r'(?(?=\d)\d+|\w+)', '123abc')
<regex.Match object; span=(0, 3), match='123'>
>>> regex.match(r'(?(?=\d)\d+|\w+)', 'abc123')
<regex.Match object; span=(0, 6), match='abc123'>

This is not quite the same as putting a lookaround in the first branch of a pair of alternatives.

Examples:

>>> print(regex.match(r'(?:(?=\d)\d+\b|\w+)', '123abc'))
<regex.Match object; span=(0, 6), match='123abc'>
>>> print(regex.match(r'(?(?=\d)\d+\b|\w+)', '123abc'))
None

In the first example, the lookaround matched, but the remainder of the first branch failed to match, and so the second branch was attempted, whereas in the second example, the lookaround matched, and the first branch failed to match, but the second branch was not attempted.

Added POSIX matching (leftmost longest) (Hg issue 150)

The POSIX standard for regex is to return the leftmost longest match. This can be turned on using the POSIX flag ((?p)).

Examples:

>>> # Normal matching.
>>> regex.search(r'Mr|Mrs', 'Mrs')
<regex.Match object; span=(0, 2), match='Mr'>
>>> regex.search(r'one(self)?(selfsufficient)?', 'oneselfsufficient')
<regex.Match object; span=(0, 7), match='oneself'>
>>> # POSIX matching.
>>> regex.search(r'(?p)Mr|Mrs', 'Mrs')
<regex.Match object; span=(0, 3), match='Mrs'>
>>> regex.search(r'(?p)one(self)?(selfsufficient)?', 'oneselfsufficient')
<regex.Match object; span=(0, 17), match='oneselfsufficient'>

Note that it will take longer to find matches because when it finds a match at a certain position, it won’t return that immediately, but will keep looking to see if there’s another longer match there.

Added (?(DEFINE)...) (Hg issue 152)

If there’s no group called “DEFINE”, then … will be ignored, but any group definitions within it will be available.

Examples:

>>> regex.search(r'(?(DEFINE)(?P<quant>\d+)(?P<item>\w+))(?&quant) (?&item)', '5 elephants')
<regex.Match object; span=(0, 11), match='5 elephants'>

Added (*PRUNE), (*SKIP) and (*FAIL) (Hg issue 153)

(*PRUNE) discards the backtracking info up to that point. When used in an atomic group or a lookaround, it won’t affect the enclosing pattern.

(*SKIP) is similar to (*PRUNE), except that it also sets where in the text the next attempt to match will start. When used in an atomic group or a lookaround, it won’t affect the enclosing pattern.

(*FAIL) causes immediate backtracking. (*F) is a permitted abbreviation.

Added \K (Hg issue 151)

Keeps the part of the entire match after the position where \K occurred; the part before it is discarded.

It does not affect what capture groups return.

Examples:

>>> m = regex.search(r'(\w\w\K\w\w\w)', 'abcdef')
>>> m[0]
'cde'
>>> m[1]
'abcde'
>>>
>>> m = regex.search(r'(?r)(\w\w\K\w\w\w)', 'abcdef')
>>> m[0]
'bc'
>>> m[1]
'bcdef'

Added capture subscripting for expandf and subf/subfn (Hg issue 133)

You can now use subscripting to get the captures of a repeated capture group.

Examples:

>>> m = regex.match(r"(\w)+", "abc")
>>> m.expandf("{1}")
'c'
>>> m.expandf("{1[0]} {1[1]} {1[2]}")
'a b c'
>>> m.expandf("{1[-1]} {1[-2]} {1[-3]}")
'c b a'
>>>
>>> m = regex.match(r"(?P<letter>\w)+", "abc")
>>> m.expandf("{letter}")
'c'
>>> m.expandf("{letter[0]} {letter[1]} {letter[2]}")
'a b c'
>>> m.expandf("{letter[-1]} {letter[-2]} {letter[-3]}")
'c b a'

Added support for referring to a group by number using (?P=...).

This is in addition to the existing \g<...>.

Fixed the handling of locale-sensitive regexes.

The LOCALE flag is intended for legacy code and has limited support. You’re still recommended to use Unicode instead.

Added partial matches (Hg issue 102)

A partial match is one that matches up to the end of string, but that string has been truncated and you want to know whether a complete match could be possible if the string had not been truncated.

Partial matches are supported by match, search, fullmatch and finditer with the partial keyword argument.

Match objects have a partial attribute, which is True if it’s a partial match.

For example, if you wanted a user to enter a 4-digit number and check it character by character as it was being entered:

>>> pattern = regex.compile(r'\d{4}')

>>> # Initially, nothing has been entered:
>>> print(pattern.fullmatch('', partial=True))
<regex.Match object; span=(0, 0), match='', partial=True>

>>> # An empty string is OK, but it's only a partial match.
>>> # The user enters a letter:
>>> print(pattern.fullmatch('a', partial=True))
None
>>> # It'll never match.

>>> # The user deletes that and enters a digit:
>>> print(pattern.fullmatch('1', partial=True))
<regex.Match object; span=(0, 1), match='1', partial=True>
>>> # It matches this far, but it's only a partial match.

>>> # The user enters 2 more digits:
>>> print(pattern.fullmatch('123', partial=True))
<regex.Match object; span=(0, 3), match='123', partial=True>
>>> # It matches this far, but it's only a partial match.

>>> # The user enters another digit:
>>> print(pattern.fullmatch('1234', partial=True))
<regex.Match object; span=(0, 4), match='1234'>
>>> # It's a complete match.

>>> # If the user enters another digit:
>>> print(pattern.fullmatch('12345', partial=True))
None
>>> # It's no longer a match.

>>> # This is a partial match:
>>> pattern.match('123', partial=True).partial
True

>>> # This is a complete match:
>>> pattern.match('1233', partial=True).partial
False

* operator not working correctly with sub() (Hg issue 106)

Sometimes it’s not clear how zero-width matches should be handled. For example, should .* match 0 characters directly after matching >0 characters?

Examples:

# Python 3.7 and later
>>> regex.sub('.*', 'x', 'test')
'xx'
>>> regex.sub('.*?', '|', 'test')
'|||||||||'

# Python 3.6 and earlier
>>> regex.sub('(?V0).*', 'x', 'test')
'x'
>>> regex.sub('(?V1).*', 'x', 'test')
'xx'
>>> regex.sub('(?V0).*?', '|', 'test')
'|t|e|s|t|'
>>> regex.sub('(?V1).*?', '|', 'test')
'|||||||||'

Added capturesdict (Hg issue 86)

capturesdict is a combination of groupdict and captures:

groupdict returns a dict of the named groups and the last capture of those groups.

captures returns a list of all the captures of a group

capturesdict returns a dict of the named groups and lists of all the captures of those groups.

Examples:

>>> m = regex.match(r"(?:(?P<word>\w+) (?P<digits>\d+)\n)+", "one 1\ntwo 2\nthree 3\n")
>>> m.groupdict()
{'word': 'three', 'digits': '3'}
>>> m.captures("word")
['one', 'two', 'three']
>>> m.captures("digits")
['1', '2', '3']
>>> m.capturesdict()
{'word': ['one', 'two', 'three'], 'digits': ['1', '2', '3']}

Allow duplicate names of groups (Hg issue 87)

Group names can now be duplicated.

Examples:

>>> # With optional groups:
>>>
>>> # Both groups capture, the second capture 'overwriting' the first.
>>> m = regex.match(r"(?P<item>\w+)? or (?P<item>\w+)?", "first or second")
>>> m.group("item")
'second'
>>> m.captures("item")
['first', 'second']
>>> # Only the second group captures.
>>> m = regex.match(r"(?P<item>\w+)? or (?P<item>\w+)?", " or second")
>>> m.group("item")
'second'
>>> m.captures("item")
['second']
>>> # Only the first group captures.
>>> m = regex.match(r"(?P<item>\w+)? or (?P<item>\w+)?", "first or ")
>>> m.group("item")
'first'
>>> m.captures("item")
['first']
>>>
>>> # With mandatory groups:
>>>
>>> # Both groups capture, the second capture 'overwriting' the first.
>>> m = regex.match(r"(?P<item>\w*) or (?P<item>\w*)?", "first or second")
>>> m.group("item")
'second'
>>> m.captures("item")
['first', 'second']
>>> # Again, both groups capture, the second capture 'overwriting' the first.
>>> m = regex.match(r"(?P<item>\w*) or (?P<item>\w*)", " or second")
>>> m.group("item")
'second'
>>> m.captures("item")
['', 'second']
>>> # And yet again, both groups capture, the second capture 'overwriting' the first.
>>> m = regex.match(r"(?P<item>\w*) or (?P<item>\w*)", "first or ")
>>> m.group("item")
''
>>> m.captures("item")
['first', '']

Added fullmatch (issue #16203)

fullmatch behaves like match, except that it must match all of the string.

Examples:

>>> print(regex.fullmatch(r"abc", "abc").span())
(0, 3)
>>> print(regex.fullmatch(r"abc", "abcx"))
None
>>> print(regex.fullmatch(r"abc", "abcx", endpos=3).span())
(0, 3)
>>> print(regex.fullmatch(r"abc", "xabcy", pos=1, endpos=4).span())
(1, 4)
>>>
>>> regex.match(r"a.*?", "abcd").group(0)
'a'
>>> regex.fullmatch(r"a.*?", "abcd").group(0)
'abcd'

Added subf and subfn

subf and subfn are alternatives to sub and subn respectively. When passed a replacement string, they treat it as a format string.

Examples:

>>> regex.subf(r"(\w+) (\w+)", "{0} => {2} {1}", "foo bar")
'foo bar => bar foo'
>>> regex.subf(r"(?P<word1>\w+) (?P<word2>\w+)", "{word2} {word1}", "foo bar")
'bar foo'

Added expandf to match object

expandf is an alternative to expand. When passed a replacement string, it treats it as a format string.

Examples:

>>> m = regex.match(r"(\w+) (\w+)", "foo bar")
>>> m.expandf("{0} => {2} {1}")
'foo bar => bar foo'
>>>
>>> m = regex.match(r"(?P<word1>\w+) (?P<word2>\w+)", "foo bar")
>>> m.expandf("{word2} {word1}")
'bar foo'

Detach searched string

A match object contains a reference to the string that was searched, via its string attribute. The detach_string method will ‘detach’ that string, making it available for garbage collection, which might save valuable memory if that string is very large.

Example:

>>> m = regex.search(r"\w+", "Hello world")
>>> print(m.group())
Hello
>>> print(m.string)
Hello world
>>> m.detach_string()
>>> print(m.group())
Hello
>>> print(m.string)
None

Recursive patterns (Hg issue 27)

Recursive and repeated patterns are supported.

(?R) or (?0) tries to match the entire regex recursively. (?1), (?2), etc, try to match the relevant capture group.

(?&name) tries to match the named capture group.

Examples:

>>> regex.match(r"(Tarzan|Jane) loves (?1)", "Tarzan loves Jane").groups()
('Tarzan',)
>>> regex.match(r"(Tarzan|Jane) loves (?1)", "Jane loves Tarzan").groups()
('Jane',)

>>> m = regex.search(r"(\w)(?:(?R)|(\w?))\1", "kayak")
>>> m.group(0, 1, 2)
('kayak', 'k', None)

The first two examples show how the subpattern within the capture group is reused, but is _not_ itself a capture group. In other words, "(Tarzan|Jane) loves (?1)" is equivalent to "(Tarzan|Jane) loves (?:Tarzan|Jane)".

It’s possible to backtrack into a recursed or repeated group.

You can’t call a group if there is more than one group with that group name or group number ("ambiguous group reference").

The alternative forms (?P>name) and (?P&name) are also supported.

Full Unicode case-folding is supported.

In version 1 behaviour, the regex module uses full case-folding when performing case-insensitive matches in Unicode.

Examples (in Python 3):

>>> regex.match(r"(?iV1)strasse", "stra\N{LATIN SMALL LETTER SHARP S}e").span()
(0, 6)
>>> regex.match(r"(?iV1)stra\N{LATIN SMALL LETTER SHARP S}e", "STRASSE").span()
(0, 7)

In version 0 behaviour, it uses simple case-folding for backward compatibility with the re module.

Approximate “fuzzy” matching (Hg issue 12, Hg issue 41, Hg issue 109)

Regex usually attempts an exact match, but sometimes an approximate, or “fuzzy”, match is needed, for those cases where the text being searched may contain errors in the form of inserted, deleted or substituted characters.

A fuzzy regex specifies which types of errors are permitted, and, optionally, either the minimum and maximum or only the maximum permitted number of each type. (You cannot specify only a minimum.)

The 3 types of error are:

  • Insertion, indicated by “i”

  • Deletion, indicated by “d”

  • Substitution, indicated by “s”

In addition, “e” indicates any type of error.

The fuzziness of a regex item is specified between “{” and “}” after the item.

Examples:

  • foo match “foo” exactly

  • (?:foo){i} match “foo”, permitting insertions

  • (?:foo){d} match “foo”, permitting deletions

  • (?:foo){s} match “foo”, permitting substitutions

  • (?:foo){i,s} match “foo”, permitting insertions and substitutions

  • (?:foo){e} match “foo”, permitting errors

If a certain type of error is specified, then any type not specified will not be permitted.

In the following examples I’ll omit the item and write only the fuzziness:

  • {d<=3} permit at most 3 deletions, but no other types

  • {i<=1,s<=2} permit at most 1 insertion and at most 2 substitutions, but no deletions

  • {1<=e<=3} permit at least 1 and at most 3 errors

  • {i<=2,d<=2,e<=3} permit at most 2 insertions, at most 2 deletions, at most 3 errors in total, but no substitutions

It’s also possible to state the costs of each type of error and the maximum permitted total cost.

Examples:

  • {2i+2d+1s<=4} each insertion costs 2, each deletion costs 2, each substitution costs 1, the total cost must not exceed 4

  • {i<=1,d<=1,s<=1,2i+2d+1s<=4} at most 1 insertion, at most 1 deletion, at most 1 substitution; each insertion costs 2, each deletion costs 2, each substitution costs 1, the total cost must not exceed 4

You can also use “<” instead of “<=” if you want an exclusive minimum or maximum.

You can add a test to perform on a character that’s substituted or inserted.

Examples:

  • {s<=2:[a-z]} at most 2 substitutions, which must be in the character set [a-z].

  • {s<=2,i<=3:\d} at most 2 substitutions, at most 3 insertions, which must be digits.

By default, fuzzy matching searches for the first match that meets the given constraints. The ENHANCEMATCH flag will cause it to attempt to improve the fit (i.e. reduce the number of errors) of the match that it has found.

The BESTMATCH flag will make it search for the best match instead.

Further examples to note:

  • regex.search("(dog){e}", "cat and dog")[1] returns "cat" because that matches "dog" with 3 errors (an unlimited number of errors is permitted).

  • regex.search("(dog){e<=1}", "cat and dog")[1] returns " dog" (with a leading space) because that matches "dog" with 1 error, which is within the limit.

  • regex.search("(?e)(dog){e<=1}", "cat and dog")[1] returns "dog" (without a leading space) because the fuzzy search matches " dog" with 1 error, which is within the limit, and the (?e) then it attempts a better fit.

In the first two examples there are perfect matches later in the string, but in neither case is it the first possible match.

The match object has an attribute fuzzy_counts which gives the total number of substitutions, insertions and deletions.

>>> # A 'raw' fuzzy match:
>>> regex.fullmatch(r"(?:cats|cat){e<=1}", "cat").fuzzy_counts
(0, 0, 1)
>>> # 0 substitutions, 0 insertions, 1 deletion.

>>> # A better match might be possible if the ENHANCEMATCH flag used:
>>> regex.fullmatch(r"(?e)(?:cats|cat){e<=1}", "cat").fuzzy_counts
(0, 0, 0)
>>> # 0 substitutions, 0 insertions, 0 deletions.

The match object also has an attribute fuzzy_changes which gives a tuple of the positions of the substitutions, insertions and deletions.

>>> m = regex.search('(fuu){i<=2,d<=2,e<=5}', 'anaconda foo bar')
>>> m
<regex.Match object; span=(7, 10), match='a f', fuzzy_counts=(0, 2, 2)>
>>> m.fuzzy_changes
([], [7, 8], [10, 11])

What this means is that if the matched part of the string had been:

'anacondfuuoo bar'

it would’ve been an exact match.

However, there were insertions at positions 7 and 8:

'anaconda fuuoo bar'
        ^^

and deletions at positions 10 and 11:

'anaconda f~~oo bar'
           ^^

So the actual string was:

'anaconda foo bar'

Named lists (Hg issue 11)

\L<name>

There are occasions where you may want to include a list (actually, a set) of options in a regex.

One way is to build the pattern like this:

>>> p = regex.compile(r"first|second|third|fourth|fifth")

but if the list is large, parsing the resulting regex can take considerable time, and care must also be taken that the strings are properly escaped and properly ordered, for example, “cats” before “cat”.

The new alternative is to use a named list:

>>> option_set = ["first", "second", "third", "fourth", "fifth"]
>>> p = regex.compile(r"\L<options>", options=option_set)

The order of the items is irrelevant, they are treated as a set. The named lists are available as the .named_lists attribute of the pattern object :

>>> print(p.named_lists)
# Python 3
{'options': frozenset({'fifth', 'first', 'fourth', 'second', 'third'})}
# Python 2
{'options': frozenset(['fifth', 'fourth', 'second', 'third', 'first'])}

If there are any unused keyword arguments, ValueError will be raised unless you tell it otherwise:

>>> option_set = ["first", "second", "third", "fourth", "fifth"]
>>> p = regex.compile(r"\L<options>", options=option_set, other_options=[])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python37\lib\site-packages\regex\regex.py", line 348, in compile
    return _compile(pattern, flags, ignore_unused, kwargs)
  File "C:\Python37\lib\site-packages\regex\regex.py", line 585, in _compile
    raise ValueError('unused keyword argument {!a}'.format(any_one))
ValueError: unused keyword argument 'other_options'
>>> p = regex.compile(r"\L<options>", options=option_set, other_options=[], ignore_unused=True)
>>>

Start and end of word

\m matches at the start of a word.

\M matches at the end of a word.

Compare with \b, which matches at the start or end of a word.

Unicode line separators

Normally the only line separator is \n (\x0A), but if the WORD flag is turned on then the line separators are \x0D\x0A, \x0A, \x0B, \x0C and \x0D, plus \x85, \u2028 and \u2029 when working with Unicode.

This affects the regex dot ".", which, with the DOTALL flag turned off, matches any character except a line separator. It also affects the line anchors ^ and $ (in multiline mode).

Set operators

Version 1 behaviour only

Set operators have been added, and a set [...] can include nested sets.

The operators, in order of increasing precedence, are:

  • || for union (“x||y” means “x or y”)

  • ~~ (double tilde) for symmetric difference (“x~~y” means “x or y, but not both”)

  • && for intersection (“x&&y” means “x and y”)

  • -- (double dash) for difference (“x–y” means “x but not y”)

Implicit union, ie, simple juxtaposition like in [ab], has the highest precedence. Thus, [ab&&cd] is the same as [[a||b]&&[c||d]].

Examples:

  • [ab] # Set containing ‘a’ and ‘b’

  • [a-z] # Set containing ‘a’ .. ‘z’

  • [[a-z]--[qw]] # Set containing ‘a’ .. ‘z’, but not ‘q’ or ‘w’

  • [a-z--qw] # Same as above

  • [\p{L}--QW] # Set containing all letters except ‘Q’ and ‘W’

  • [\p{N}--[0-9]] # Set containing all numbers except ‘0’ .. ‘9’

  • [\p{ASCII}&&\p{Letter}] # Set containing all characters which are ASCII and letter

regex.escape (issue #2650)

regex.escape has an additional keyword parameter special_only. When True, only ‘special’ regex characters, such as ‘?’, are escaped.

Examples:

>>> regex.escape("foo!?", special_only=False)
'foo\\!\\?'
>>> regex.escape("foo!?", special_only=True)
'foo!\\?'

regex.escape (Hg issue 249)

regex.escape has an additional keyword parameter literal_spaces. When True, spaces are not escaped.

Examples:

>>> regex.escape("foo bar!?", literal_spaces=False)
'foo\\ bar!\\?'
>>> regex.escape("foo bar!?", literal_spaces=True)
'foo bar!\\?'

Repeated captures (issue #7132)

A match object has additional methods which return information on all the successful matches of a repeated capture group. These methods are:

  • matchobject.captures([group1, ...])

    • Returns a list of the strings matched in a group or groups. Compare with matchobject.group([group1, ...]).

  • matchobject.starts([group])

    • Returns a list of the start positions. Compare with matchobject.start([group]).

  • matchobject.ends([group])

    • Returns a list of the end positions. Compare with matchobject.end([group]).

  • matchobject.spans([group])

    • Returns a list of the spans. Compare with matchobject.span([group]).

Examples:

>>> m = regex.search(r"(\w{3})+", "123456789")
>>> m.group(1)
'789'
>>> m.captures(1)
['123', '456', '789']
>>> m.start(1)
6
>>> m.starts(1)
[0, 3, 6]
>>> m.end(1)
9
>>> m.ends(1)
[3, 6, 9]
>>> m.span(1)
(6, 9)
>>> m.spans(1)
[(0, 3), (3, 6), (6, 9)]

Atomic grouping (issue #433030)

(?>...)

If the following pattern subsequently fails, then the subpattern as a whole will fail.

Possessive quantifiers.

(?:...)?+ ; (?:...)*+ ; (?:...)++ ; (?:...){min,max}+

The subpattern is matched up to ‘max’ times. If the following pattern subsequently fails, then all of the repeated subpatterns will fail as a whole. For example, (?:...)++ is equivalent to (?>(?:...)+).

Scoped flags (issue #433028)

(?flags-flags:...)

The flags will apply only to the subpattern. Flags can be turned on or off.

Definition of ‘word’ character (issue #1693050)

The definition of a ‘word’ character has been expanded for Unicode. It now conforms to the Unicode specification at http://www.unicode.org/reports/tr29/.

Variable-length lookbehind

A lookbehind can match a variable-length string.

Flags argument for regex.split, regex.sub and regex.subn (issue #3482)

regex.split, regex.sub and regex.subn support a ‘flags’ argument.

Pos and endpos arguments for regex.sub and regex.subn

regex.sub and regex.subn support ‘pos’ and ‘endpos’ arguments.

‘Overlapped’ argument for regex.findall and regex.finditer

regex.findall and regex.finditer support an ‘overlapped’ flag which permits overlapped matches.

Splititer

regex.splititer has been added. It’s a generator equivalent of regex.split.

Subscripting for groups

A match object accepts access to the captured groups via subscripting and slicing:

>>> m = regex.search(r"(?P<before>.*?)(?P<num>\d+)(?P<after>.*)", "pqr123stu")
>>> print(m["before"])
pqr
>>> print(len(m))
4
>>> print(m[:])
('pqr123stu', 'pqr', '123', 'stu')

Named groups

Groups can be named with (?<name>...) as well as the current (?P<name>...).

Group references

Groups can be referenced within a pattern with \g<name>. This also allows there to be more than 99 groups.

Named characters

\N{name}

Named characters are supported. (Note: only those known by Python’s Unicode database are supported.)

Unicode codepoint properties, including scripts and blocks

\p{property=value}; \P{property=value}; \p{value} ; \P{value}

Many Unicode properties are supported, including blocks and scripts. \p{property=value} or \p{property:value} matches a character whose property property has value value. The inverse of \p{property=value} is \P{property=value} or \p{^property=value}.

If the short form \p{value} is used, the properties are checked in the order: General_Category, Script, Block, binary property:

  • Latin, the ‘Latin’ script (Script=Latin).

  • BasicLatin, the ‘BasicLatin’ block (Block=BasicLatin).

  • Alphabetic, the ‘Alphabetic’ binary property (Alphabetic=Yes).

A short form starting with Is indicates a script or binary property:

  • IsLatin, the ‘Latin’ script (Script=Latin).

  • IsAlphabetic, the ‘Alphabetic’ binary property (Alphabetic=Yes).

A short form starting with In indicates a block property:

  • InBasicLatin, the ‘BasicLatin’ block (Block=BasicLatin).

POSIX character classes

[[:alpha:]]; [[:^alpha:]]

POSIX character classes are supported. These are normally treated as an alternative form of \p{...}.

The exceptions are alnum, digit, punct and xdigit, whose definitions are different from those of Unicode.

[[:alnum:]] is equivalent to \p{posix_alnum}.

[[:digit:]] is equivalent to \p{posix_digit}.

[[:punct:]] is equivalent to \p{posix_punct}.

[[:xdigit:]] is equivalent to \p{posix_xdigit}.

Search anchor

\G

A search anchor has been added. It matches at the position where each search started/continued and can be used for contiguous matches or in negative variable-length lookbehinds to limit how far back the lookbehind goes:

>>> regex.findall(r"\w{2}", "abcd ef")
['ab', 'cd', 'ef']
>>> regex.findall(r"\G\w{2}", "abcd ef")
['ab', 'cd']
  • The search starts at position 0 and matches 2 letters ‘ab’.

  • The search continues at position 2 and matches 2 letters ‘cd’.

  • The search continues at position 4 and fails to match any letters.

  • The anchor stops the search start position from being advanced, so there are no more results.

Reverse searching

Searches can now work backwards:

>>> regex.findall(r".", "abc")
['a', 'b', 'c']
>>> regex.findall(r"(?r).", "abc")
['c', 'b', 'a']

Note: the result of a reverse search is not necessarily the reverse of a forward search:

>>> regex.findall(r"..", "abcde")
['ab', 'cd']
>>> regex.findall(r"(?r)..", "abcde")
['de', 'bc']

Matching a single grapheme

\X

The grapheme matcher is supported. It now conforms to the Unicode specification at http://www.unicode.org/reports/tr29/.

Branch reset

(?|...|...)

Capture group numbers will be reused across the alternatives, but groups with different names will have different group numbers.

Examples:

>>> regex.match(r"(?|(first)|(second))", "first").groups()
('first',)
>>> regex.match(r"(?|(first)|(second))", "second").groups()
('second',)

Note that there is only one group.

Default Unicode word boundary

The WORD flag changes the definition of a ‘word boundary’ to that of a default Unicode word boundary. This applies to \b and \B.

Timeout (Python 3)

The matching methods and functions support timeouts. The timeout (in seconds) applies to the entire operation:

>>> from time import sleep
>>>
>>> def fast_replace(m):
...     return 'X'
...
>>> def slow_replace(m):
...     sleep(0.5)
...     return 'X'
...
>>> regex.sub(r'[a-z]', fast_replace, 'abcde', timeout=2)
'XXXXX'
>>> regex.sub(r'[a-z]', slow_replace, 'abcde', timeout=2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python37\lib\site-packages\regex\regex.py", line 276, in sub
    endpos, concurrent, timeout)
TimeoutError: regex timed out

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

regex-2021.7.1.tar.gz (693.5 kB view details)

Uploaded Source

Built Distributions

regex-2021.7.1-cp39-cp39-win_amd64.whl (270.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

regex-2021.7.1-cp39-cp39-win32.whl (254.8 kB view details)

Uploaded CPython 3.9 Windows x86

regex-2021.7.1-cp39-cp39-manylinux2014_x86_64.whl (732.4 kB view details)

Uploaded CPython 3.9

regex-2021.7.1-cp39-cp39-manylinux2014_i686.whl (720.8 kB view details)

Uploaded CPython 3.9

regex-2021.7.1-cp39-cp39-manylinux2010_x86_64.whl (672.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

regex-2021.7.1-cp39-cp39-manylinux2010_i686.whl (655.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

regex-2021.7.1-cp39-cp39-manylinux1_x86_64.whl (672.8 kB view details)

Uploaded CPython 3.9

regex-2021.7.1-cp39-cp39-manylinux1_i686.whl (655.1 kB view details)

Uploaded CPython 3.9

regex-2021.7.1-cp39-cp39-macosx_10_9_x86_64.whl (284.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

regex-2021.7.1-cp38-cp38-win_amd64.whl (270.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

regex-2021.7.1-cp38-cp38-win32.whl (254.8 kB view details)

Uploaded CPython 3.8 Windows x86

regex-2021.7.1-cp38-cp38-manylinux2014_x86_64.whl (735.1 kB view details)

Uploaded CPython 3.8

regex-2021.7.1-cp38-cp38-manylinux2014_i686.whl (726.5 kB view details)

Uploaded CPython 3.8

regex-2021.7.1-cp38-cp38-manylinux2010_x86_64.whl (678.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

regex-2021.7.1-cp38-cp38-manylinux2010_i686.whl (660.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

regex-2021.7.1-cp38-cp38-manylinux1_x86_64.whl (678.5 kB view details)

Uploaded CPython 3.8

regex-2021.7.1-cp38-cp38-manylinux1_i686.whl (660.2 kB view details)

Uploaded CPython 3.8

regex-2021.7.1-cp38-cp38-macosx_10_9_x86_64.whl (285.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

regex-2021.7.1-cp37-cp37m-win_amd64.whl (269.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

regex-2021.7.1-cp37-cp37m-win32.whl (254.4 kB view details)

Uploaded CPython 3.7m Windows x86

regex-2021.7.1-cp37-cp37m-manylinux2014_x86_64.whl (721.2 kB view details)

Uploaded CPython 3.7m

regex-2021.7.1-cp37-cp37m-manylinux2014_i686.whl (712.0 kB view details)

Uploaded CPython 3.7m

regex-2021.7.1-cp37-cp37m-manylinux2010_x86_64.whl (666.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

regex-2021.7.1-cp37-cp37m-manylinux2010_i686.whl (646.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

regex-2021.7.1-cp37-cp37m-manylinux1_x86_64.whl (666.4 kB view details)

Uploaded CPython 3.7m

regex-2021.7.1-cp37-cp37m-manylinux1_i686.whl (646.9 kB view details)

Uploaded CPython 3.7m

regex-2021.7.1-cp37-cp37m-macosx_10_9_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

regex-2021.7.1-cp36-cp36m-win_amd64.whl (270.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

regex-2021.7.1-cp36-cp36m-win32.whl (254.5 kB view details)

Uploaded CPython 3.6m Windows x86

regex-2021.7.1-cp36-cp36m-manylinux2014_x86_64.whl (722.2 kB view details)

Uploaded CPython 3.6m

regex-2021.7.1-cp36-cp36m-manylinux2014_i686.whl (710.5 kB view details)

Uploaded CPython 3.6m

regex-2021.7.1-cp36-cp36m-manylinux2010_x86_64.whl (666.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

regex-2021.7.1-cp36-cp36m-manylinux2010_i686.whl (647.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

regex-2021.7.1-cp36-cp36m-manylinux1_x86_64.whl (666.1 kB view details)

Uploaded CPython 3.6m

regex-2021.7.1-cp36-cp36m-manylinux1_i686.whl (647.9 kB view details)

Uploaded CPython 3.6m

regex-2021.7.1-cp36-cp36m-macosx_10_9_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file regex-2021.7.1.tar.gz.

File metadata

  • Download URL: regex-2021.7.1.tar.gz
  • Upload date:
  • Size: 693.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.6

File hashes

Hashes for regex-2021.7.1.tar.gz
Algorithm Hash digest
SHA256 849802379a660206277675aa5a5c327f5c910c690649535863ddf329b0ba8c87
MD5 ff0c55bd7160a8b9295f43ee830527f7
BLAKE2b-256 0277decf88df0784c71518676f7e50d8f17d8bc2a675d151edfa5fc6a4b32e04

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 270.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5

File hashes

Hashes for regex-2021.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 18040755606b0c21281493ec309214bd61e41a170509e5014f41d6a5a586e161
MD5 baf5f3ab300434aaf96321e0d31f24f6
BLAKE2b-256 55bd14995cd7e5297a49a1fc004ce380070c48f2f3f83620e031af5ef8690dc5

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: regex-2021.7.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 254.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5

File hashes

Hashes for regex-2021.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1ccbd41dbee3a31e18938096510b7d4ee53aa9fce2ee3dcc8ec82ae264f6acfd
MD5 661ff906f0bfae463d0cb8cc3957791b
BLAKE2b-256 977ea703105778e8be95d6909a6bbb7e019e3ed1b8a27e4c3f6a4aa5b57a121c

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 732.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c11f2fca544b5e30a0e813023196a63b1cb9869106ef9a26e9dae28bce3e4e26
MD5 120aa526814b6c439a380ebfb71b2ea7
BLAKE2b-256 cb6daf4590b785144a02ba08dedecdacffdc1daf8a903161f9ee08ad18e9014f

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 720.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce269e903b00d1ab4746793e9c50a57eec5d5388681abef074d7b9a65748fca5
MD5 d898ee59842a4ba213bc60e2f7950e07
BLAKE2b-256 f8d33440720634f492248c90ef814558c6378d33368ca2123ce4db7e69ce9228

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 672.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 59845101de68fd5d3a1145df9ea022e85ecd1b49300ea68307ad4302320f6f61
MD5 d8b7187280532887a8a64951a0c2d0f6
BLAKE2b-256 78dd9c468268480f03c7a254d2b77a4401ebaa97d1e1cb28799228fcbb06d553

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 655.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4fc86b729ab88fe8ac3ec92287df253c64aa71560d76da5acd8a2e245839c629
MD5 24fe2cc34412472965e0ccc076239299
BLAKE2b-256 559c4c5a9425933068823715c71b3a25f1106867e8c83db95602ebe11aa4d1ab

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 672.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3f7a92e60930f8fca2623d9e326c173b7cf2c8b7e4fdcf984b75a1d2fb08114d
MD5 0469e865049ce583a13c7a0e7aa0649f
BLAKE2b-256 4251689f5b7f6ee254e848e31666f97abb03b3f17c258b2ebdc268ee7538be59

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 655.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 78a2a885345a2d60b5e68099e877757d5ed12e46ba1e87507175f14f80892af3
MD5 c082a2025372088a8739a49cddf1bf9b
BLAKE2b-256 3161323e6ec1da645d9f0b0acf14dbaf40433a0722aa1639b9ed19c47e039c60

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 284.8 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for regex-2021.7.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56bef6b414949e2c9acf96cb5d78de8b529c7b99752619494e78dc76f99fd005
MD5 bddf3258d4e207857083a245c0c2a0d6
BLAKE2b-256 1a44fca4171965a0f65e53429592175c4a6a3f7b143823766c987f48ca7d7522

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 270.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5

File hashes

Hashes for regex-2021.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6b8b629f93246e507287ee07e26744beaffb4c56ed520576deac8b615bd76012
MD5 5e9787dcde841ffc727c40a430ec7c23
BLAKE2b-256 3a2f914dcab66622caf7608a5cb5ba3e35265940bc5d35811f5e56a48e0df72e

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: regex-2021.7.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 254.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5

File hashes

Hashes for regex-2021.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e07e92935040c67f49571779d115ecb3e727016d42fb36ee0d8757db4ca12ee0
MD5 6f65dcb6fc6a716894462992ff30350e
BLAKE2b-256 4adcb0c44d21d8f759aa36caf81b43113770eb00314157aee7ac4e05782ca077

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 735.1 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b1999ef60c45357598935c12508abf56edbbb9c380df6f336de38a6c3a294ae
MD5 dc2707eddafc001e1f0b1c74f8b1c39b
BLAKE2b-256 023fdbc0f5d5d23611472e3c68dd1a56ce1142f6d482cb75b3a905e642572c2c

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 726.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fdad3122b69cdabdb3da4c2a4107875913ac78dab0117fc73f988ad589c66b66
MD5 2ab26d4854881fd32dce4578d2fb8686
BLAKE2b-256 68f9f8ecc58fc6ac9ffa7ca3ceb53ca7b60da34fc612787cfab7ab492fe75f10

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 678.5 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 444723ebaeb7fa8125f29c01a31101a3854ac3de293e317944022ae5effa53a4
MD5 35cd05cdb4b9d3e285ba31d7b89553c0
BLAKE2b-256 bf12a84ddff9d637fcde17704f8abbdf2523d2e924db7d0391afa34cf7114378

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 660.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a8a5826d8a1b64e2ff9af488cc179e1a4d0f144d11ce486a9f34ea38ccedf4ef
MD5 64c8d44f867fa35c28ca0f6a21ec2989
BLAKE2b-256 099a5813e747b5cf9fc8bfa32b3468140f40670d7f6605006a15246641670e10

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 678.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b092754c06852e8a8b022004aff56c24b06310189186805800d09313c37ce1f8
MD5 39e5a4633ddc33bcffd06d3a34c7a1e1
BLAKE2b-256 8fa88e500d517909bc5281d11f2fbcb4ce45718fe2757936d464ce2e17eeb16c

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 660.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b024ee43ee6b310fad5acaee23e6485b21468718cb792a9d1693eecacc3f0b7e
MD5 22b5950b23aed0ac3347534bf518f20b
BLAKE2b-256 e481b14b8d384576cb1d0b20291a83d73666c82df31ab6f5385b395f07cec001

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 285.1 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for regex-2021.7.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f32f47fb22c988c0b35756024b61d156e5c4011cb8004aa53d93b03323c45657
MD5 cbae62086f1a665406e4cb266a7901d6
BLAKE2b-256 aa17f90498e57748334da7db1de75a390fccd17304d012392a74d418b1bc6868

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 269.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5

File hashes

Hashes for regex-2021.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 361be4d311ac995a8c7ad577025a3ae3a538531b1f2cf32efd8b7e5d33a13e5a
MD5 495e544813a1638b19407da223306b0f
BLAKE2b-256 79af314b299863e2981f5bfe7b9e562024bbb05ca44618c174b344ebfe21114c

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: regex-2021.7.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 254.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5

File hashes

Hashes for regex-2021.7.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5049d00dbb78f9d166d1c704e93934d42cce0570842bb1a61695123d6b01de09
MD5 ac556a32c74722ce8d53e1108ff18c91
BLAKE2b-256 adb0a5d827f8f8e27252f4185ee3fb99456f2a66e560eda123c52a1197e0864a

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 721.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d386402ae7f3c9b107ae5863f7ecccb0167762c82a687ae6526b040feaa5ac6
MD5 d3815d6ea19f504dd5f6f373531dab73
BLAKE2b-256 f21fd74e0df6e62368b8901d21e02b8ea011e595ca4c63f02f5b305bc1de5106

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 712.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 210c359e6ee5b83f7d8c529ba3c75ba405481d50f35a420609b0db827e2e3bb5
MD5 16789a98d535bef89eb6bad26a58d068
BLAKE2b-256 7ac449d32ddba5d9bac746bbc85112b4ffd792bbc278cd502fae1aeef926ba8e

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 666.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a548bb51c4476332ce4139df8e637386730f79a92652a907d12c696b6252b64d
MD5 009ba2396c42e9059f380d4bf9ad1231
BLAKE2b-256 968708b66779e2af2ee936044d782ad6512847f049b5bb6f4769e52cf5e231b0

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 646.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ed77b97896312bc2deafe137ca2626e8b63808f5bedb944f73665c68093688a7
MD5 68270d8eea736c6ddfde9084b3f3036e
BLAKE2b-256 efe3788e483481b72b31c473fe2f38942a6f71d8b0b9c6d7663d13a323d3f0ee

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 666.4 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a1b6a3f600d6aff97e3f28c34192c9ed93fee293bd96ef327b64adb51a74b2f6
MD5 9c2d55db4605f8d62033d54c453c8de2
BLAKE2b-256 f43677567a7f72c86f9d2af981f09e4a02b588b72f4c5b8c44bc97070f8ef342

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 646.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e80d2851109e56420b71f9702ad1646e2f0364528adbf6af85527bc61e49f394
MD5 e6a776dd99da5c1f766083c858b7ec9d
BLAKE2b-256 cf4baad587d751dcd5eb5d0d46a03d095e804fb866599598a2949a35e699caac

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 285.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for regex-2021.7.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf819c5b77ff44accc9a24e31f1f7ceaaf6c960816913ed3ef8443b9d20d81b6
MD5 331f7f517517883ef5c55c05dc837145
BLAKE2b-256 be84f0cc85904420df27f3df7515edb5d72370285919faf5c008b2915649be18

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 270.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5

File hashes

Hashes for regex-2021.7.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6c72ebb72e64e9bd195cb35a9b9bbfb955fd953b295255b8ae3e4ad4a146b615
MD5 d0914a4ee2bad48a55a63e50a558b51f
BLAKE2b-256 1104d083682e6fbc2fcb5da536a77ac628cd1a96e50ad04237be3b224eefd0c6

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: regex-2021.7.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 254.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.5

File hashes

Hashes for regex-2021.7.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b1dbeef938281f240347d50f28ae53c4b046a23389cd1fc4acec5ea0eae646a1
MD5 43af61c8af2b84c3c17379a65d8eaf68
BLAKE2b-256 cc354810fd8490ea2e518afbad8c00cae56fcd9e7f2416c9cda969cfa9ff29a3

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 722.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e46c1191b2eb293a6912269ed08b4512e7e241bbf591f97e527492e04c77e93
MD5 629dea64459ee36f913e2d2e1c9c1b29
BLAKE2b-256 64a6e26986e198ea7e99ee4b4130fbf195134e04753dae2d9494bb143185735b

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 710.5 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7743798dfb573d006f1143d745bf17efad39775a5190b347da5d83079646be56
MD5 cce59ffe8662469c333c37390fc69a2b
BLAKE2b-256 d6f31e7f2c155338863b03a9e8529a33e1570cd0bceef29a8f6bd667881140df

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 666.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 268fe9dd1deb4a30c8593cabd63f7a241dfdc5bd9dd0233906c718db22cdd49a
MD5 a361d58f17825c239d0ffe9c390cbfd5
BLAKE2b-256 9b02a5a315b7a3f4d6bbc6fb860b9bb1e0de45584ba6e6de6014a9255a930c0d

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 647.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d0cf2651a8804f6325747c7e55e3be0f90ee2848e25d6b817aa2728d263f9abb
MD5 e888128f3fa739ffa334d3b39aa654a8
BLAKE2b-256 465f06534ef36ddd1dd53b4c3ab4f99253c0af7789779726ac05b8861dbfa9f1

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 666.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1806370b2bef4d4193eebe8ee59a9fd7547836a34917b7badbe6561a8594d9cb
MD5 42d39ba079e5004e0b3f385a53365859
BLAKE2b-256 65fa2998a33ca60d66c0df7c2efcba41ea8610aa4a5419406849f2bc95565271

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: regex-2021.7.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 647.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.8.7

File hashes

Hashes for regex-2021.7.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cf6728f89b071bd3ab37cb8a0e306f4de897553a0ed07442015ee65fbf53d62
MD5 13aaa5dbeb04768f2188be0afe4e82b5
BLAKE2b-256 dcfd49f519859d163302ca18fcd206c24fca009b983bbf627396d766e68f6907

See more details on using hashes here.

File details

Details for the file regex-2021.7.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: regex-2021.7.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 285.7 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.9.5

File hashes

Hashes for regex-2021.7.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 494d0172774dc0beeea984b94c95389143db029575f7ca908edd74469321ea99
MD5 38c3deec0fd7f586f5c4f410d0de72c4
BLAKE2b-256 48dca54087be96ce51fe642edeadec92e854a269b689e65d3811f5290e4633bf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page