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.

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

Uploaded Source

Built Distributions

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

regex-2020.11.11-cp39-cp39-win_amd64.whl (270.2 kB view details)

Uploaded CPython 3.9Windows x86-64

regex-2020.11.11-cp39-cp39-win32.whl (254.5 kB view details)

Uploaded CPython 3.9Windows x86

regex-2020.11.11-cp39-cp39-manylinux2014_x86_64.whl (732.7 kB view details)

Uploaded CPython 3.9

regex-2020.11.11-cp39-cp39-manylinux2014_i686.whl (720.6 kB view details)

Uploaded CPython 3.9

regex-2020.11.11-cp39-cp39-manylinux2014_aarch64.whl (725.2 kB view details)

Uploaded CPython 3.9

regex-2020.11.11-cp39-cp39-manylinux2010_x86_64.whl (673.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

regex-2020.11.11-cp39-cp39-manylinux2010_i686.whl (655.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

regex-2020.11.11-cp39-cp39-manylinux1_x86_64.whl (673.1 kB view details)

Uploaded CPython 3.9

regex-2020.11.11-cp39-cp39-manylinux1_i686.whl (655.2 kB view details)

Uploaded CPython 3.9

regex-2020.11.11-cp39-cp39-macosx_10_9_x86_64.whl (284.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

regex-2020.11.11-cp38-cp38-win32.whl (254.6 kB view details)

Uploaded CPython 3.8Windows x86

regex-2020.11.11-cp38-cp38-manylinux2014_x86_64.whl (734.6 kB view details)

Uploaded CPython 3.8

regex-2020.11.11-cp38-cp38-manylinux2014_i686.whl (726.4 kB view details)

Uploaded CPython 3.8

regex-2020.11.11-cp38-cp38-manylinux2014_aarch64.whl (730.4 kB view details)

Uploaded CPython 3.8

regex-2020.11.11-cp38-cp38-manylinux2010_x86_64.whl (679.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

regex-2020.11.11-cp38-cp38-manylinux2010_i686.whl (661.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

regex-2020.11.11-cp38-cp38-manylinux1_x86_64.whl (679.9 kB view details)

Uploaded CPython 3.8

regex-2020.11.11-cp38-cp38-manylinux1_i686.whl (661.8 kB view details)

Uploaded CPython 3.8

regex-2020.11.11-cp38-cp38-macosx_10_9_x86_64.whl (284.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

regex-2020.11.11-cp37-cp37m-manylinux2014_x86_64.whl (722.1 kB view details)

Uploaded CPython 3.7m

regex-2020.11.11-cp37-cp37m-manylinux2014_i686.whl (710.8 kB view details)

Uploaded CPython 3.7m

regex-2020.11.11-cp37-cp37m-manylinux2014_aarch64.whl (717.8 kB view details)

Uploaded CPython 3.7m

regex-2020.11.11-cp37-cp37m-manylinux2010_x86_64.whl (666.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

regex-2020.11.11-cp37-cp37m-manylinux2010_i686.whl (648.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

regex-2020.11.11-cp37-cp37m-manylinux1_x86_64.whl (666.8 kB view details)

Uploaded CPython 3.7m

regex-2020.11.11-cp37-cp37m-manylinux1_i686.whl (648.8 kB view details)

Uploaded CPython 3.7m

regex-2020.11.11-cp37-cp37m-macosx_10_9_x86_64.whl (284.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

regex-2020.11.11-cp36-cp36m-manylinux2014_x86_64.whl (723.1 kB view details)

Uploaded CPython 3.6m

regex-2020.11.11-cp36-cp36m-manylinux2014_i686.whl (710.2 kB view details)

Uploaded CPython 3.6m

regex-2020.11.11-cp36-cp36m-manylinux2014_aarch64.whl (716.7 kB view details)

Uploaded CPython 3.6m

regex-2020.11.11-cp36-cp36m-manylinux2010_x86_64.whl (667.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

regex-2020.11.11-cp36-cp36m-manylinux2010_i686.whl (649.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

regex-2020.11.11-cp36-cp36m-manylinux1_x86_64.whl (667.0 kB view details)

Uploaded CPython 3.6m

regex-2020.11.11-cp36-cp36m-manylinux1_i686.whl (649.3 kB view details)

Uploaded CPython 3.6m

regex-2020.11.11-cp36-cp36m-macosx_10_9_x86_64.whl (284.9 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: regex-2020.11.11.tar.gz
  • Upload date:
  • Size: 694.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.8.5

File hashes

Hashes for regex-2020.11.11.tar.gz
Algorithm Hash digest
SHA256 0a235841237d4487329bcabcb5b902858f7967f5e684e08e968367f25b2c3d37
MD5 80a12f8723660f39fb4dbe1e24c1eadb
BLAKE2b-256 675194482db18111af19c8a94cfd198e0d062c57d1df60cf412cb4f748382bd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 270.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for regex-2020.11.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bf02ab95ff5261ba108725dbd795bf6395eaac1b8468b41472d82d35b12b0295
MD5 9cc30bc0a5baff9ad7236d4fa9f40e3b
BLAKE2b-256 2b45cdd2c2b4682b70526f4676c98063ba2ed8d30ac47b54bbd9e3c79737848a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-win32.whl
  • Upload date:
  • Size: 254.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for regex-2020.11.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 32f8714c4bcc4b0d2aa259b1647e3c5b6cfe2e923c6c124234a5e03408224227
MD5 04ba01b71f07053a952fa44d86c64437
BLAKE2b-256 f4d68574eaba4975289b4d07189601bc4a61976998ff07f4f5abadb7264b6ca0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 732.7 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 396411bb5a7849aeda9c49873b8295919fdc118c50b57122b09cb2097047c118
MD5 c7d8b81b915976f1cf189ef07a515651
BLAKE2b-256 f110993ebefac1decf12ecbcd9ab6ea268e7e7344bed03f0f8f3c995383a1aff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 720.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e899b69dd5d26655cb454835ea2fceb18832c9ee9c4fb45dc4cf8a6089d35312
MD5 a51e8491ca420cd57fba59fe8ddfd4ef
BLAKE2b-256 f52d1f53fe479aff685f86c343759365402bd305fb5e931140c03242b599a571

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 725.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68267a7a5fb0bd9676b86f967143b6a6ecefb3eed4042ecc9e7f0e014aef8f74
MD5 1547a94772b191cb527fce6d185430ed
BLAKE2b-256 9e5dd7ba5d8f5d88551a62d2cd1ced202b0cd58d753e519469bc57de3bd16fae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 673.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 267d1b13f863e664150948ce2a9ed4927bf4ac7a068780f1ee8af83352aa17a2
MD5 8a93fc01115d297cc7a6685cc65c3f6e
BLAKE2b-256 60b2d563a5d5abc4034625feb86891c1b0876fad4f70c4005fe77e5920b355a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 655.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3b46a4c73ec1f25361147a7a0fd86084f3627dc78d09bcbe14e70db12683efec
MD5 cc5a807c6b16e9487f860df804fca0b3
BLAKE2b-256 ac3513acf03beac8f1539348ec7d72aeefb18ade467ebe65aedec910deee7c7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 673.1 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 394b5be4fa72354a78763b317f82997ad881896dd4a860e429a6fa74afaacb07
MD5 51323dd0a386b3dbf3f3b27744650c79
BLAKE2b-256 9cf7f07f4a8ffee2d038759c7f28260cee193fb50d145bff4ac29db5b2a77395

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 655.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7cdd5ee8053c82607432b7ebad37e2ece54548fef2b254f7bce6f7831904586
MD5 453393848bb8b38b22b51ba2af7ce6f4
BLAKE2b-256 dcb34cd1f2db7e5c09d092fac0cede8509f060e89077ab549d7e52a10a3095ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 284.1 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for regex-2020.11.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c67fd5f3ad81f8301184354014e8e7510ab77e0c7e450a427d77f28ae8effbef
MD5 a5a33e13800bd02b2a4eed8a6b90edca
BLAKE2b-256 62efe24b317e03a1fea271d8176c1cbb8d5d601fb433e28b961639b53a20ddfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for regex-2020.11.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 48e94218f06317b6d32feb4ecff8b6025695450009bcb3291fb23daf79689431
MD5 d9dd654c54f54e3696fc709749c9f3ae
BLAKE2b-256 25d5833e0c3249486e2649348d2ba296d8aa03ca524ddd0637d1624d65ba806d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp38-cp38-win32.whl
  • Upload date:
  • Size: 254.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for regex-2020.11.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 beae9db1545f8116cfc9301a9601e9c975bb56ca22a38ac0fe06a72c3460f31a
MD5 702aa555da5240a589ba9b0960a27839
BLAKE2b-256 a92748ebc7989c6465b62c71bc1b369a3b7dcfc56a81805a9c3fd7342f093e0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 734.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8b1ad791debd67221fb1266f8d09730ae927acacb32d0dad9fd07a7d341a28f
MD5 3be44c6d0623892975b007b32677a3c0
BLAKE2b-256 1256a91d3572ec7f9cf960d91011eca1fe31afc30091c23003f82266265dd21e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 726.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0951c78fa4cb26d1278a4b3784fcf973fc97ec39c07483328a74b034b0cc569c
MD5 29e12db686ab3d30f2e7723ef7a46a20
BLAKE2b-256 b8280ee836a2bcc9be24a00c80ef0cee08a2275a5736a7cfb1ba05c2099f359c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 730.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11d9100bd874ce8b2a037db9150e732cd768359fc25fe5f77973208aa24eb13e
MD5 28ec696c8bd2b40e9a40ece0c5a5b761
BLAKE2b-256 03158b3a135647c793560ffd1a8f6d93e45bb6a79b3e21e0519146146bd8e672

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 679.9 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cdb98be55db1b94c950822cbc10d3d768f01e184365851ebb42cd377486ced7b
MD5 cf55427b5348babc381cc904c3dc92a7
BLAKE2b-256 4a7e719fcebc662866da064521f96b9f8b01c86985d2971aa4ee2e5979f9c127

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 661.8 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8060be04baec546fe3afa6975d2998e15d1b655d7255f0e6b0ed3f482cccc218
MD5 bfbf333d76ac9bc87e4f664e54e8866d
BLAKE2b-256 2404d8e77eea692ee52a399a7d8ea00d6df750653abf1602319de13f34efb88c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 679.9 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4159ecf20dffea07f4a7241b2a236f90eb622c7e8caab9f43caba5f27ca37284
MD5 66a292fbc8faeb57f6660f8bbf3fe8d7
BLAKE2b-256 fcce6459479fcb0bde34e80f9050deb34e1e5d0175b5a4a1cf8dc0f440101fe5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 661.8 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 84ab584dcb5e81815040d86148805a808acb0bee303d19638fe2f9488d704bc1
MD5 5fd98c62b1b0c5558f12522cbd8f9cf5
BLAKE2b-256 0092f3e2d81399088d9a08f7ec77d7e6a2718a1c6777e1f2900cc8b1a5c20189

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 284.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for regex-2020.11.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19ac2bf0048a2f4d460ee20647e84ca160512a7ee8af844dc9207720778470f1
MD5 0a95a467e2959c5e00f3dd7ea340fb65
BLAKE2b-256 9f5d2853d9d2c79a6a4a9b0114558840434c99a2a35177e6fe4633312b21c376

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 56d1e298bb6482d0466399a6383181bf2627c37ad414e205b3ce0f85aa140be7
MD5 a650cbf65202f29728686271e5561eba
BLAKE2b-256 79bcd9fdc683e22cd56cb5f8a0b935c772c02350be23ade140de3b8bde85d139

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e03867f3baf64ecab47dfc9ddb58afc67acb6a0f80f6cf8ff9fa82962ec4d1cd
MD5 1c881341c9c6c4e8aa3e5973fd7cc0fa
BLAKE2b-256 a208a97f80bcda8e743f1c2a94c7048e3f6177a184a0c04e88bc925ed21a75b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 722.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86ad88c7c2512094a85b0a01ce053bab1e28eafb8f3868bb8c22f4903e33f147
MD5 e707931bb1fda4bddc2f739a935e4a03
BLAKE2b-256 889fbf34d15536f9f8065606a31397f129645a258a26f1c36e26536d425ca18b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 710.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8cc3717146ce4040419639cf45455663a002a554806ddac46304acc5bd41dae2
MD5 302c6a1ff598bec583b55a90e270998c
BLAKE2b-256 2a29f767ef72f44434712ccf08669a7014f3fe418f8d8a4fb78284858b9f137b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 717.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 826d0119f14f9a9ce25999a13ed5922c785b50e469800f6e5a6721318650ef49
MD5 4223e53cdabc67dd184d6180082ad397
BLAKE2b-256 af9c792b8c765512a1e15bdf69905d82e825a275bb7da4730c10a65ed0a2aa8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 666.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bb17a7fe9c47167337009ce18cd6e6b3edf3ca0063bf6bed6ce02515129c016a
MD5 54f1ad583a490976a3411967d5f91da0
BLAKE2b-256 0e3031ba44eab8ae96b2a304a744296b1eefe6fd0c732964568a6e25fe1af118

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 648.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6e50b3b417ab2fd67bfa6235f0df4782fe2ff8be83f0c4435e1dc43d25052ee8
MD5 445947b5a96bb8c3987cbd4b47f3cec4
BLAKE2b-256 3c5e0300896351d22b9d8b695bbaa21a738009134c9b74a7441c0417cefc4c9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 666.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d1e57c16c4840f1c3543507742e99b8398609474a0e6a6925476914479de3488
MD5 2280fc43f436e2dca77e040dc259aa03
BLAKE2b-256 c3a3bb5d02eccb18f2b8a4b6f1d1e4c1a572a6a1fae95a7c95767b7d490f256f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 648.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 df50ba964812606663ca9d23d374036bc5ae3d71e86168409cdd84ca7948d8a3
MD5 2a0412797228ca6366951246ce64b43c
BLAKE2b-256 1bc16c78c7a9460e486ccf90db5da79cfc03f407cce86d769b0506803cb2a2f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 284.8 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for regex-2020.11.11-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d128368def4b0cd95c0fc9d99a89ae73c083b25e67f27a410830e30f9df0edc
MD5 014c7017cade32087f9c83e3508768b2
BLAKE2b-256 1f7c6cfd40c3de64682cf9c7efae04607601db357e1eafbe0b96fbad7f60a505

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a9f76d9122359b09e38f27cd9c41729169171cf0fd73ec5b22cc4628f9e486ca
MD5 3ed210db3be74e4cb5c71eec6b95b981
BLAKE2b-256 3bdbdc72e846360c89b2fbccbfba7ea5af40da3f5ca5a700aab1bbfc9678e22c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-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.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 787e44e5f4fd027dd90b5ee0240b05dc1752cb43c2903617f25baa495fe551e9
MD5 f7ff97bbf67a468d94b92552089ebd88
BLAKE2b-256 abe50c58a5ba12eeed5e8b4c600e44794e9a8be395e4080592f8a4d7acd49a12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 723.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e8b3187f6beea8e56cb4b33c35049cbe376cf69aefaee5bc035309d88c98ca5
MD5 f8c3fc30553b08a0b2d5ee3cb936ed89
BLAKE2b-256 948a65ee2660588d93c16f555ff6479a25a31650a8b4f33dcda4ae34018e7948

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 710.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cefcdb2ac3b67fd9f7244820ce1965c8cf352366199cc1358d67c6cc3c5c8bbc
MD5 3e32cedbf2605e8f54cf697b49194aa7
BLAKE2b-256 abde5b073d61c9f7c69088c1d8af9184c51e1169cc3fe06518520f9d92363e29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 716.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccfea4911ac28a8f744096bce1559e0bd86b09a53c8a9d5856ca8e1f5f4de1f5
MD5 699f86b330228005b84b86966215e689
BLAKE2b-256 746597aaffeecc815a4e55b82fc99f8c490453b90c19b0a6d6ab385ed72637df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 667.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 412969d58ecd4f576510ec88bcb7602e9e582bbef78859ed8c9ca4de4f9e891c
MD5 79549b4452731007cb0dbf58062d34c1
BLAKE2b-256 4fe92e7c41144eab477c90714afe7b5b0ad47db5542f11f2cb481edf68d899be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 649.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83a390a653c13be1ab26287240df1fd9324ca8a0d31b603fa57cd7d9520648fa
MD5 d1758b3fc582dc25c935b0117537dc86
BLAKE2b-256 f7a6ac5f21f37912598fb86f056a4b6d0fc929349313cc0d01962dd45026dd28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 667.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 064d2fc83ab4ee0055fcc1ef38ec60e505742850a40061f854ac64cb3d8d6dd3
MD5 f098038241623bf92b37bffdd732ff07
BLAKE2b-256 49802de40b062e276a81bcf4c00a1ff3f41d5a42a5fa858ff045fee9290e0dc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 649.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.0

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3002ee2d4e8bbe4656237627203d8290a562d1fc1962deee470905ab63570345
MD5 c9e1087f0ad0977d098158f5328e95d0
BLAKE2b-256 de58c94ea5407a8eaa2c433f92a18a95169c0c65127e1e24384af680d2800b15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: regex-2020.11.11-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 284.9 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.9.0

File hashes

Hashes for regex-2020.11.11-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd7bee615680d940dd44ac0a479f2bc5f73d6ca63a5915cd8d30739c14ca522c
MD5 b2afcecc28cb7ffbdcbed1b5229ff594
BLAKE2b-256 163c8a46afe77eb0c04b1d26d5568f4c35d62cf069b49c668b392af013777c90

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