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.4.4.tar.gz (693.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

regex-2021.4.4-cp39-cp39-win_amd64.whl (270.3 kB view details)

Uploaded CPython 3.9Windows x86-64

regex-2021.4.4-cp39-cp39-win32.whl (254.6 kB view details)

Uploaded CPython 3.9Windows x86

regex-2021.4.4-cp39-cp39-manylinux2014_x86_64.whl (730.7 kB view details)

Uploaded CPython 3.9

regex-2021.4.4-cp39-cp39-manylinux2014_i686.whl (720.3 kB view details)

Uploaded CPython 3.9

regex-2021.4.4-cp39-cp39-manylinux2014_aarch64.whl (723.8 kB view details)

Uploaded CPython 3.9

regex-2021.4.4-cp39-cp39-manylinux2010_x86_64.whl (671.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

regex-2021.4.4-cp39-cp39-manylinux2010_i686.whl (653.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

regex-2021.4.4-cp39-cp39-manylinux1_x86_64.whl (671.1 kB view details)

Uploaded CPython 3.9

regex-2021.4.4-cp39-cp39-manylinux1_i686.whl (653.2 kB view details)

Uploaded CPython 3.9

regex-2021.4.4-cp39-cp39-macosx_10_9_x86_64.whl (284.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

regex-2021.4.4-cp38-cp38-win_amd64.whl (270.3 kB view details)

Uploaded CPython 3.8Windows x86-64

regex-2021.4.4-cp38-cp38-win32.whl (254.7 kB view details)

Uploaded CPython 3.8Windows x86

regex-2021.4.4-cp38-cp38-manylinux2014_x86_64.whl (733.4 kB view details)

Uploaded CPython 3.8

regex-2021.4.4-cp38-cp38-manylinux2014_i686.whl (725.5 kB view details)

Uploaded CPython 3.8

regex-2021.4.4-cp38-cp38-manylinux2014_aarch64.whl (729.6 kB view details)

Uploaded CPython 3.8

regex-2021.4.4-cp38-cp38-manylinux2010_x86_64.whl (677.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

regex-2021.4.4-cp38-cp38-manylinux2010_i686.whl (659.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

regex-2021.4.4-cp38-cp38-manylinux1_x86_64.whl (677.6 kB view details)

Uploaded CPython 3.8

regex-2021.4.4-cp38-cp38-manylinux1_i686.whl (659.4 kB view details)

Uploaded CPython 3.8

regex-2021.4.4-cp38-cp38-macosx_10_9_x86_64.whl (284.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

regex-2021.4.4-cp37-cp37m-win_amd64.whl (269.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

regex-2021.4.4-cp37-cp37m-win32.whl (254.2 kB view details)

Uploaded CPython 3.7mWindows x86

regex-2021.4.4-cp37-cp37m-manylinux2014_x86_64.whl (720.2 kB view details)

Uploaded CPython 3.7m

regex-2021.4.4-cp37-cp37m-manylinux2014_i686.whl (711.1 kB view details)

Uploaded CPython 3.7m

regex-2021.4.4-cp37-cp37m-manylinux2014_aarch64.whl (716.0 kB view details)

Uploaded CPython 3.7m

regex-2021.4.4-cp37-cp37m-manylinux2010_x86_64.whl (665.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

regex-2021.4.4-cp37-cp37m-manylinux2010_i686.whl (646.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

regex-2021.4.4-cp37-cp37m-manylinux1_x86_64.whl (665.2 kB view details)

Uploaded CPython 3.7m

regex-2021.4.4-cp37-cp37m-manylinux1_i686.whl (646.4 kB view details)

Uploaded CPython 3.7m

regex-2021.4.4-cp37-cp37m-macosx_10_9_x86_64.whl (285.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

regex-2021.4.4-cp36-cp36m-win_amd64.whl (269.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

regex-2021.4.4-cp36-cp36m-win32.whl (254.3 kB view details)

Uploaded CPython 3.6mWindows x86

regex-2021.4.4-cp36-cp36m-manylinux2014_x86_64.whl (722.1 kB view details)

Uploaded CPython 3.6m

regex-2021.4.4-cp36-cp36m-manylinux2014_i686.whl (709.6 kB view details)

Uploaded CPython 3.6m

regex-2021.4.4-cp36-cp36m-manylinux2014_aarch64.whl (715.9 kB view details)

Uploaded CPython 3.6m

regex-2021.4.4-cp36-cp36m-manylinux2010_x86_64.whl (664.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

regex-2021.4.4-cp36-cp36m-manylinux2010_i686.whl (646.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

regex-2021.4.4-cp36-cp36m-manylinux1_x86_64.whl (664.5 kB view details)

Uploaded CPython 3.6m

regex-2021.4.4-cp36-cp36m-manylinux1_i686.whl (646.9 kB view details)

Uploaded CPython 3.6m

regex-2021.4.4-cp36-cp36m-macosx_10_9_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: regex-2021.4.4.tar.gz
  • Upload date:
  • Size: 693.2 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.3

File hashes

Hashes for regex-2021.4.4.tar.gz
Algorithm Hash digest
SHA256 52ba3d3f9b942c49d7e4bc105bb28551c44065f139a65062ab7912bef10c9afb
MD5 cd206281327b4c087bb20bf93cee4ab9
BLAKE2b-256 383f4c42a98c9ad7d08c16e7d23b2194a0e4f3b2914662da8bc88986e4e6de1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 270.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • 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.8.5

File hashes

Hashes for regex-2021.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 97f29f57d5b84e73fbaf99ab3e26134e6687348e95ef6b48cfd2c06807005a07
MD5 8dbc30690f70ed74e1a72839e27447b3
BLAKE2b-256 96b2569cb354cfbb5bff2f63d2dbf39779affa76db0338f7c132dcc340e5db96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 254.6 kB
  • Tags: CPython 3.9, Windows x86
  • 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.8.5

File hashes

Hashes for regex-2021.4.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fa4537fb4a98fe8fde99626e4681cc644bdcf2a795038533f9f711513a862ae6
MD5 2b493e3510376f5f364df1814dcac7cc
BLAKE2b-256 5f52460097a6344f65c3da4cd39faf0349e961473479942acdd85a4a59a593be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 730.7 kB
  • Tags: CPython 3.9
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd45ff9293d9274c5008a2054ecef86a9bfe819a67c7be1afb65e69b405b3042
MD5 a6e436f9f46c372112a63b2e03b286a8
BLAKE2b-256 3df72ab6bda223a9609d8f519854bdc035325bad2f7595e18cf1fed545ef0908

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 720.3 kB
  • Tags: CPython 3.9
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3916d08be28a1149fb97f7728fca1f7c15d309a9f9682d89d79db75d5e52091c
MD5 fce6d6c1594d6b6adc343b3fa175de8a
BLAKE2b-256 5c344991994ebd132003e6f29e57751de137c1f804900e308367d92d6741c929

See more details on using hashes here.

File details

Details for the file regex-2021.4.4-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 723.8 kB
  • Tags: CPython 3.9
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9c3db21af35e3b3c05764461b262d6f05bbca08a71a7849fd79d47ba7bc33ed
MD5 7ceed67285721ea18dbd09ca78fabef4
BLAKE2b-256 349796a1f714987845eb9080b0a24bc7e28687855a4cb3df4fd29e4d09b37db2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 671.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 563085e55b0d4fb8f746f6a335893bda5c2cef43b2f0258fe1020ab1dd874df8
MD5 68c794dae6d24206047608c5f87302fd
BLAKE2b-256 b7d361323c3b25ccea9847f6ef3c62174cb4bc9ee03fbbb09a6a5abac10cd019

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 653.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf5824bfac591ddb2c1f0a5f4ab72da28994548c708d2191e3b87dd207eb3ad7
MD5 122c499b348179f7d41d6cdd5e4bfb74
BLAKE2b-256 ed61bfe6643179b66eaac85fb796822f908fdaab174ea73be5fcef3470ebb9fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 671.1 kB
  • Tags: CPython 3.9
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7d9884d86dd4dd489e981d94a65cd30d6f07203d90e98f6f657f05170f6324c9
MD5 c203a82c2031165bec43172fc2694287
BLAKE2b-256 c5eae747c67eb790c592eaa680640c844912059f50e77321bdd3f8c958e7ea6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 653.2 kB
  • Tags: CPython 3.9
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ee54ff27bf0afaf4c3b3a62bcd016c12c3fdb4ec4f413391a90bd38bc3624605
MD5 3691c89c8f2f3cf8eb337a4d3a478f5e
BLAKE2b-256 4cae58694bc1b2152e99240b0397400b6459bf26bbef8ea9ae04d5c2fd8a80fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 284.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • 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.2

File hashes

Hashes for regex-2021.4.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 598585c9f0af8374c28edd609eb291b5726d7cbce16be6a8b95aa074d252ee17
MD5 857214f0c84ff1ac0d0e719dd227324d
BLAKE2b-256 62d44509e7169137e73f97600de3110de6f60aa05bf4fbba0066dac11b5edaee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 270.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • 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.8.5

File hashes

Hashes for regex-2021.4.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c0502c0fadef0d23b128605d69b58edb2c681c25d44574fc673b0e52dce71ee2
MD5 317715f91edb79dfbfe8c0b83a0862fb
BLAKE2b-256 4321647ebf2b367060d3f91c18881f1879287870a40ca1f58b9bff147b9be3b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 254.7 kB
  • Tags: CPython 3.8, Windows x86
  • 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.8.5

File hashes

Hashes for regex-2021.4.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a91aa8619b23b79bcbeb37abe286f2f408d2f2d6f29a17237afda55bb54e7aac
MD5 a89da32e8dd94327f48d66f1acacfe23
BLAKE2b-256 21cc747d433e431b721d10b52612f392cd47175779b6a44dd029572e60aa2d43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 733.4 kB
  • Tags: CPython 3.8
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce15b6d103daff8e9fee13cf7f0add05245a05d866e73926c358e871221eae87
MD5 6f7a2123cd4583fd7272e369e91d499b
BLAKE2b-256 ffe6bdc72d3c1e3440b5ba201c6c0184c33234cf0506fa049dff7dbe09bf6602

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 725.5 kB
  • Tags: CPython 3.8
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 980d7be47c84979d9136328d882f67ec5e50008681d94ecc8afa8a65ed1f4a6f
MD5 cc25f8d793b566dc788c81e75f38ba93
BLAKE2b-256 d193ec6a56718cd9dabc35605ffae9c655dbc7f5abe60fab56490f44ffeccbed

See more details on using hashes here.

File details

Details for the file regex-2021.4.4-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 729.6 kB
  • Tags: CPython 3.8
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e512d8ef5ad7b898cdb2d8ee1cb09a8339e4f8be706d27eaa180c2f177248a10
MD5 21b98e1d468a80ad7aad12c36088df48
BLAKE2b-256 997a3e7ec50177af515bfc857c74ebceb59f524dfc268d96bb3300055e3a9c9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 677.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4c46e22a0933dd783467cf32b3516299fb98cfebd895817d685130cc50cd1093
MD5 a3d0d3e4e1e2541579a1d7d527cf3e11
BLAKE2b-256 a405afaf1e106627d53b64289d12a7e76176dd4990ac04d8bf51df904350f107

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 659.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 741a9647fcf2e45f3a1cf0e24f5e17febf3efe8d4ba1281dcc3aa0459ef424dc
MD5 94616118056a4b7bdc1961415092da4c
BLAKE2b-256 e8d3e52bd535dc2c622297eec1f8a8a77a267d6458588d26021a7594cb5e0c72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 677.6 kB
  • Tags: CPython 3.8
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6d1b01031dedf2503631d0903cb563743f397ccaf6607a5e3b19a3d76fc10480
MD5 5df9e08924c5fdb8a5f24c8d4148d18f
BLAKE2b-256 115e5161f169f31691527cb629644e6e5919a33abe49ad86446c8e2441c1d16a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 659.4 kB
  • Tags: CPython 3.8
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 314d66636c494ed9c148a42731b3834496cc9a2c4251b1661e40936814542b14
MD5 d5a813434beec22dcc6ec47c44cb5530
BLAKE2b-256 6feac13e00fa179e54c79d2bade3b4752208fde4a44f5e122771397c1488aa42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 284.7 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • 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.2

File hashes

Hashes for regex-2021.4.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e1c20e29358165242928c2de1482fb2cf4ea54a6a6dea2bd7a0e0d8ee321500
MD5 0352104a66646baba4b01fe5f7310055
BLAKE2b-256 c4e9e62b22a4165b4cf34bd62d706e25be9fb1d03246a7f8db25795b9332d909

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 269.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • 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.8.5

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 32e65442138b7b76dd8173ffa2cf67356b7bc1768851dded39a7a13bf9223da3
MD5 862e669afee041ff1c4a90f1ff037a88
BLAKE2b-256 4be748f17fdc978231766d5b24cc6582645536ddb0e4314ef9e612eadf910f63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 254.2 kB
  • Tags: CPython 3.7m, Windows x86
  • 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.8.5

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 67bdb9702427ceddc6ef3dc382455e90f785af4c13d495f9626861763ee13f9d
MD5 a4ad3671774072cde59b8a986fdbec74
BLAKE2b-256 5000e61447ff1b8d137d2e43ab6a4500dc28cf1265e6a155d87cfad0c23728b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 720.2 kB
  • Tags: CPython 3.7m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 339456e7d8c06dd36a22e451d58ef72cef293112b559010db3d054d5560ef439
MD5 78353a86ddb8865cca34ba887e44297e
BLAKE2b-256 c4285f08d8841013ccf72cd95dfff2500fe7fb39467af12c5e7b802d8381d811

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 711.1 kB
  • Tags: CPython 3.7m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 919859aa909429fb5aa9cf8807f6045592c85ef56fdd30a9a3747e513db2536e
MD5 ba928ebf0e6f387de11098cbcf2fb048
BLAKE2b-256 1c7c73fa454656d1e55d81bb9ae8e0bcb0b86138263c5b50514e0ce89d4e2890

See more details on using hashes here.

File details

Details for the file regex-2021.4.4-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 716.0 kB
  • Tags: CPython 3.7m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90f11ff637fe8798933fb29f5ae1148c978cccb0452005bf4c69e13db951e765
MD5 be9c98d11805a7a5d1b749bb25c9ff82
BLAKE2b-256 d7f231099552f48af5457801532627cf92423a95ef8db737132b9d4770c27a4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 665.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3a9cd17e6e5c7eb328517969e0cb0c3d31fd329298dd0c04af99ebf42e904f82
MD5 5aeb1977a3525917f69dab50ebe50b91
BLAKE2b-256 b575fdbf7f0156d8d6181e316cd7d2da7bdeebd66858cc6663c751c41dd99d64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 646.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 01afaf2ec48e196ba91b37451aa353cb7eda77efe518e481707e0515025f0cd5
MD5 f5d7f5611362e7892fd84ede27d949bf
BLAKE2b-256 9d332521111f01f20ee3ed9c0436e4198883ab672c635746d37e96680163dd03

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 665.2 kB
  • Tags: CPython 3.7m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4c557a7b470908b1712fe27fb1ef20772b78079808c87d20a90d051660b1d69a
MD5 6f71655c157738d4d813ddce4ba5550b
BLAKE2b-256 1fb24e09b720a0aff75da7edf369641ae505c3ad8c1b4265a7e56320ab71ecd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 646.4 kB
  • Tags: CPython 3.7m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 18c071c3eb09c30a264879f0d310d37fe5d3a3111662438889ae2eb6fc570c31
MD5 f3f0bbdd5acc3ea56ece798117a03d10
BLAKE2b-256 bb2ca9c2c3becac4a01ee51fcb3ffad3dc8750c4d6c569e5300673f2063553bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 285.3 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • 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.2

File hashes

Hashes for regex-2021.4.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3029c340cfbb3ac0a71798100ccc13b97dddf373a4ae56b6a72cf70dfd53bc8
MD5 0c7dd85b2a6a2323f735f976700f7efb
BLAKE2b-256 6b025d8634b1848274caa6e25d69d83ca37668b4d718ed9a11bb2aa0c63af665

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 269.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • 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.8.5

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 11d773d75fa650cd36f68d7ca936e3c7afaae41b863b8c387a22aaa78d3c5c79
MD5 f52f747460ec2a14176cd75654f6dd41
BLAKE2b-256 0ec9ba4a0ef1bec2040a8426336cdebd2fc12ae771232022cb6f56cf512e58d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 254.3 kB
  • Tags: CPython 3.6m, Windows x86
  • 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.8.5

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e8e5b509d5c2ff12f8418006d5a90e9436766133b564db0abaec92fd27fcee29
MD5 99abdee2b8893178b4dcc12636f7475f
BLAKE2b-256 ee644aab7455a8243e3a8ea6c8d3722d62e30ee7ab023e4720d44a7c3a7bd32a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 722.1 kB
  • Tags: CPython 3.6m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ade17eb5d643b7fead300a1641e9f45401c98eee23763e9ed66a43f92f20b4a7
MD5 15259eaca5a92b60c3ef819d91bd5582
BLAKE2b-256 6b380ed2670578d803cb14350c54adb2a79835870aa9e3ad2e732be7359cb0e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 709.6 kB
  • Tags: CPython 3.6m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96fcd1888ab4d03adfc9303a7b3c0bd78c5412b2bfbe76db5b56d9eae004907a
MD5 49bf56312ae0b80a88ce7dbaa9c726f1
BLAKE2b-256 be5c232683c9f0dff6a58fd5288577ee040aa1e2f6077f926d8342e753fb580b

See more details on using hashes here.

File details

Details for the file regex-2021.4.4-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 715.9 kB
  • Tags: CPython 3.6m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c38c71df845e2aabb7fb0b920d11a1b5ac8526005e533a8920aea97efb8ec6a4
MD5 36ec3ed8572a6ca557701e97fbea0f74
BLAKE2b-256 f8209f2149d7ac000318343e8871ce2a6e98c785a345a5af3d686448ed55a527

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 664.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7c2a1af393fcc09e898beba5dd59196edaa3116191cc7257f9224beaed3e1aa0
MD5 8e455cce35da691528541322e8ce93cd
BLAKE2b-256 5899a669375a54c0e447382dcde615ab8db8895df89a35ec391f31a7bedae641

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 646.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bd28bc2e3a772acbb07787c6308e00d9626ff89e3bfcdebe87fa5afbfdedf968
MD5 4b14ddfcad39309826eb864dbd0a5000
BLAKE2b-256 2bc363afc6b0d90e443fefa3d2a384ce68eec78159e5d34a9497713149346c88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 664.5 kB
  • Tags: CPython 3.6m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 281d2fd05555079448537fe108d79eb031b403dac622621c78944c235f3fcf11
MD5 d2b7a445fd010fc2f306a14ecb02d7fc
BLAKE2b-256 122956cc6b5fa9abe7431b1c39c84dd57ebee42b2e2c1cb784219288d9636ffe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 646.9 kB
  • Tags: CPython 3.6m
  • 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.8.7

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 47bf5bf60cf04d72bf6055ae5927a0bd9016096bf3d742fa50d9bf9f45aa0711
MD5 9936d95bd7e5fe20fe38916a3eb8925b
BLAKE2b-256 aec601cd12f3021b0d5089f8eeb27d5d0f8fb266b42cca20856352e56722da0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2021.4.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 285.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • 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.2

File hashes

Hashes for regex-2021.4.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 619d71c59a78b84d7f18891fe914446d07edd48dc8328c8e149cbe0929b4e000
MD5 c36d162f2707f6620270c292398b92c9
BLAKE2b-256 a0bf75584fbc47a32a778e25ab74f0e5db9f8c3c8ac6978d25f952fd9ee134f0

See more details on using hashes here.

Supported by

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