regex


Nameregex JSON
Version 2023.12.25 PyPI version JSON
download
home_pagehttps://github.com/mrabarnett/mrab-regex
SummaryAlternative regular expression module, to replace re.
upload_time2023-12-24 02:48:23
maintainer
docs_urlNone
authorMatthew Barnett
requires_python>=3.7
licenseApache Software License
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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 follows that behaviour when compiled for Python 3.7.

Python 2
--------

Python 2 is no longer supported. The last release that supported Python 2 was 2021.11.10.

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.

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 15.1.0. Full Unicode case-folding is 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: ``ASCII (?a)``, ``FULLCASE (?f)``, ``IGNORECASE (?i)``, ``LOCALE (?L)``, ``MULTILINE (?m)``, ``DOTALL (?s)``, ``UNICODE (?u)``, ``VERBOSE (?x)``, ``WORD (?w)``.

The global flags are: ``BESTMATCH (?b)``, ``ENHANCEMATCH (?e)``, ``POSIX (?p)``, ``REVERSE (?r)``, ``VERSION0 (?V0)``, ``VERSION1 (?V1)``.

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.

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`` flag.

  * 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`` flag.

  * 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`` flag. Please note that this flag affects how the ``IGNORECASE`` flag works; the ``FULLCASE`` flag itself does not turn on case-insensitive matching.

Version 0 behaviour: the flag is off by default.

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.

Notes on named groups
---------------------

All 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 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 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).

Additional features
-------------------

The issue numbers relate to the Python bug tracker, except where listed otherwise.

Added ``\p{Horiz_Space}`` and ``\p{Vert_Space}`` (`GitHub issue 477 <https://github.com/mrabarnett/mrab-regex/issues/477#issuecomment-1216779547>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

``\p{Horiz_Space}`` or ``\p{H}`` matches horizontal whitespace and ``\p{Vert_Space}`` or ``\p{V}`` matches vertical whitespace.

Added support for lookaround in conditional pattern (`Hg issue 163 <https://github.com/mrabarnett/mrab-regex/issues/163>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The test of a conditional pattern can be a lookaround.

.. sourcecode:: python

  >>> 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.

.. sourcecode:: python

  >>> 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 <https://github.com/mrabarnett/mrab-regex/issues/150>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

.. sourcecode:: python

  >>> # 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 <https://github.com/mrabarnett/mrab-regex/issues/152>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

If there's no group called "DEFINE", then ... will be ignored except that any groups defined within it can be called and that the normal rules for numbering groups still apply.

.. sourcecode:: python

  >>> 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 <https://github.com/mrabarnett/mrab-regex/issues/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 <https://github.com/mrabarnett/mrab-regex/issues/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 groups return.

.. sourcecode:: python

  >>> 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 <https://github.com/mrabarnett/mrab-regex/issues/133>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

.. sourcecode:: python

  >>> 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 <https://github.com/mrabarnett/mrab-regex/issues/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:

.. sourcecode:: python

  >>> 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 <https://github.com/mrabarnett/mrab-regex/issues/106>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

.. sourcecode:: python

  # 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 <https://github.com/mrabarnett/mrab-regex/issues/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.

.. sourcecode:: python

  >>> 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']}

Added ``allcaptures`` and ``allspans`` (`Git issue 474 <https://github.com/mrabarnett/mrab-regex/issues/474>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

``allcaptures`` returns a list of all the captures of all the groups.

``allspans`` returns a list of all the spans of the all captures of all the groups.

.. sourcecode:: python

  >>> m = regex.match(r"(?:(?P<word>\w+) (?P<digits>\d+)\n)+", "one 1\ntwo 2\nthree 3\n")
  >>> m.allcaptures()
  (['one 1\ntwo 2\nthree 3\n'], ['one', 'two', 'three'], ['1', '2', '3'])
  >>> m.allspans()
  ([(0, 20)], [(0, 3), (6, 9), (12, 17)], [(4, 5), (10, 11), (18, 19)])

Allow duplicate names of groups (`Hg issue 87 <https://github.com/mrabarnett/mrab-regex/issues/87>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Group names can be duplicated.

.. sourcecode:: python

  >>> # 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 <https://bugs.python.org/issue16203>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

.. sourcecode:: python

  >>> 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.

.. sourcecode:: python

  >>> 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.

.. sourcecode:: python

  >>> 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.

.. sourcecode:: python

  >>> 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 <https://github.com/mrabarnett/mrab-regex/issues/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 group.

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

.. sourcecode:: python

  >>> 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 group is reused, but is _not_ itself a 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.

.. sourcecode:: python

  >>> 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 <https://github.com/mrabarnett/mrab-regex/issues/12>`_, `Hg issue 41 <https://github.com/mrabarnett/mrab-regex/issues/41>`_, `Hg issue 109 <https://github.com/mrabarnett/mrab-regex/issues/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.

.. sourcecode:: python

  >>> # 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.

.. sourcecode:: python

  >>> 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:

.. sourcecode:: python

  'anacondfuuoo bar'

it would've been an exact match.

However, there were insertions at positions 7 and 8:

.. sourcecode:: python

  'anaconda fuuoo bar'
          ^^

and deletions at positions 10 and 11:

.. sourcecode:: python

  'anaconda f~~oo bar'
             ^^

So the actual string was:

.. sourcecode:: python

  'anaconda foo bar'

Named lists ``\L<name>`` (`Hg issue 11 <https://github.com/mrabarnett/mrab-regex/issues/11>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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:

.. sourcecode:: python

  >>> 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:

.. sourcecode:: python

  >>> 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 :

.. sourcecode:: python

  >>> print(p.named_lists)
  {'options': frozenset({'third', 'first', 'fifth', 'fourth', 'second'})}

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

.. sourcecode:: python

  >>> 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:\Python310\lib\site-packages\regex\regex.py", line 353, in compile
      return _compile(pattern, flags, ignore_unused, kwargs, cache_pattern)
    File "C:\Python310\lib\site-packages\regex\regex.py", line 500, in _compile
      complain_unused_args()
    File "C:\Python310\lib\site-packages\regex\regex.py", line 483, in complain_unused_args
      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)
  >>> p = regex.compile(r"\L<options>", options=option_set, other_options=[], ignore_unused=False)
  Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    File "C:\Python310\lib\site-packages\regex\regex.py", line 353, in compile
      return _compile(pattern, flags, ignore_unused, kwargs, cache_pattern)
    File "C:\Python310\lib\site-packages\regex\regex.py", line 500, in _compile
      complain_unused_args()
    File "C:\Python310\lib\site-packages\regex\regex.py", line 483, in complain_unused_args
      raise ValueError('unused keyword argument {!a}'.format(any_one))
  ValueError: unused keyword argument 'other_options'
  >>>

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 <https://bugs.python.org/issue2650>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

.. sourcecode:: python

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

regex.escape (`Hg issue 249 <https://github.com/mrabarnett/mrab-regex/issues/249>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

.. sourcecode:: python

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

Repeated captures (`issue #7132 <https://bugs.python.org/issue7132>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

A match object has additional methods which return information on all the successful matches of a repeated 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])``.

.. sourcecode:: python

  >>> 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 <https://bugs.python.org/issue433030>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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 the repeated subpatterns will fail as a whole. For example, ``(?:...)++`` is equivalent to ``(?>(?:...)+)``.

Scoped flags (`issue #433028 <https://bugs.python.org/issue433028>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

``(?flags-flags:...)``

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

Definition of 'word' character (`issue #1693050 <https://bugs.python.org/issue1693050>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The definition of a 'word' character has been expanded for Unicode. It 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 <https://bugs.python.org/issue3482>`_)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

``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 match objects for groups
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

.. sourcecode:: python

  >>> 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 existing ``(?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 that only those known by Python's Unicode database will be recognised.

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:

.. sourcecode:: python

  >>> 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 'ab'.

* The search continues at position 2 and matches '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 also work backwards:

.. sourcecode:: python

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

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

.. sourcecode:: python

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

Matching a single grapheme ``\X``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

Branch reset ``(?|...|...)``
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

.. sourcecode:: python

  >>> 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
^^^^^^^

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

.. sourcecode:: python

  >>> 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:\Python310\lib\site-packages\regex\regex.py", line 278, in sub
      return pat.sub(repl, string, count, pos, endpos, concurrent, timeout)
  TimeoutError: regex timed out

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mrabarnett/mrab-regex",
    "name": "regex",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Matthew Barnett",
    "author_email": "regex@mrabarnett.plus.com",
    "download_url": "https://files.pythonhosted.org/packages/b5/39/31626e7e75b187fae7f121af3c538a991e725c744ac893cc2cfd70ce2853/regex-2023.12.25.tar.gz",
    "platform": null,
    "description": "Introduction\n------------\n\nThis regex implementation is backwards-compatible with the standard 're' module, but offers additional functionality.\n\nNote\n----\n\nThe re module's behaviour with zero-width matches changed in Python 3.7, and this module follows that behaviour when compiled for Python 3.7.\n\nPython 2\n--------\n\nPython 2 is no longer supported. The last release that supported Python 2 was 2021.11.10.\n\nPyPy\n----\n\nThis 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.\n\nMultithreading\n--------------\n\nThe 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.\n\nUnicode\n-------\n\nThis module supports Unicode 15.1.0. Full Unicode case-folding is supported.\n\nFlags\n-----\n\nThere 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.\n\nThe scoped flags are: ``ASCII (?a)``, ``FULLCASE (?f)``, ``IGNORECASE (?i)``, ``LOCALE (?L)``, ``MULTILINE (?m)``, ``DOTALL (?s)``, ``UNICODE (?u)``, ``VERBOSE (?x)``, ``WORD (?w)``.\n\nThe global flags are: ``BESTMATCH (?b)``, ``ENHANCEMATCH (?e)``, ``POSIX (?p)``, ``REVERSE (?r)``, ``VERSION0 (?V0)``, ``VERSION1 (?V1)``.\n\nIf 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.\n\nThe ``ENHANCEMATCH`` flag makes fuzzy matching attempt to improve the fit of the next match that it finds.\n\nThe ``BESTMATCH`` flag makes fuzzy matching search for the best match instead of the next match.\n\nOld vs new behaviour\n--------------------\n\nIn order to be compatible with the re module, this module has 2 behaviours:\n\n* **Version 0** behaviour (old behaviour, compatible with the re module):\n\n  Please note that the re module's behaviour may change over time, and I'll endeavour to match that behaviour in version 0.\n\n  * Indicated by the ``VERSION0`` flag.\n\n  * Zero-width matches are not handled correctly in the re module before Python 3.7. The behaviour in those earlier versions is:\n\n    * ``.split`` won't split a string at a zero-width match.\n\n    * ``.sub`` will advance by one character after a zero-width match.\n\n  * Inline flags apply to the entire pattern, and they can't be turned off.\n\n  * Only simple sets are supported.\n\n  * Case-insensitive matches in Unicode use simple case-folding by default.\n\n* **Version 1** behaviour (new behaviour, possibly different from the re module):\n\n  * Indicated by the ``VERSION1`` flag.\n\n  * Zero-width matches are handled correctly.\n\n  * Inline flags apply to the end of the group or pattern, and they can be turned off.\n\n  * Nested sets and set operations are supported.\n\n  * Case-insensitive matches in Unicode use full case-folding by default.\n\nIf no version is specified, the regex module will default to ``regex.DEFAULT_VERSION``.\n\nCase-insensitive matches in Unicode\n-----------------------------------\n\nThe 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`` flag. Please note that this flag affects how the ``IGNORECASE`` flag works; the ``FULLCASE`` flag itself does not turn on case-insensitive matching.\n\nVersion 0 behaviour: the flag is off by default.\n\nVersion 1 behaviour: the flag is on by default.\n\nNested sets and set operations\n------------------------------\n\nIt'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.\n\nFor example, the pattern ``[[a-z]--[aeiou]]`` is treated in the version 0 behaviour (simple sets, compatible with the re module) as:\n\n* Set containing \"[\" and the letters \"a\" to \"z\"\n\n* Literal \"--\"\n\n* Set containing letters \"a\", \"e\", \"i\", \"o\", \"u\"\n\n* Literal \"]\"\n\nbut in the version 1 behaviour (nested sets, enhanced behaviour) as:\n\n* Set which is:\n\n  * Set containing the letters \"a\" to \"z\"\n\n* but excluding:\n\n  * Set containing the letters \"a\", \"e\", \"i\", \"o\", \"u\"\n\nVersion 0 behaviour: only simple sets are supported.\n\nVersion 1 behaviour: nested sets and set operations are supported.\n\nNotes on named groups\n---------------------\n\nAll groups have a group number, starting from 1.\n\nGroups with the same group name will have the same group number, and groups with a different group name will have a different group number.\n\nThe same name can be used by more than one group, with later captures 'overwriting' earlier captures. All the captures of the group will be available from the ``captures`` method of the match object.\n\nGroup numbers will be reused across different branches of a branch reset, eg. ``(?|(first)|(second))`` has only group 1. If 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\").\n\nIn the regex ``(\\s+)(?|(?P<foo>[A-Z]+)|(\\w+) (?P<foo>[0-9]+)`` there are 2 groups:\n\n* ``(\\s+)`` is group 1.\n\n* ``(?P<foo>[A-Z]+)`` is group 2, also called \"foo\".\n\n* ``(\\w+)`` is group 2 because of the branch reset.\n\n* ``(?P<foo>[0-9]+)`` is group 2 because it's called \"foo\".\n\nIf you want to prevent ``(\\w+)`` from being group 2, you need to name it (different name, different group number).\n\nAdditional features\n-------------------\n\nThe issue numbers relate to the Python bug tracker, except where listed otherwise.\n\nAdded ``\\p{Horiz_Space}`` and ``\\p{Vert_Space}`` (`GitHub issue 477 <https://github.com/mrabarnett/mrab-regex/issues/477#issuecomment-1216779547>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``\\p{Horiz_Space}`` or ``\\p{H}`` matches horizontal whitespace and ``\\p{Vert_Space}`` or ``\\p{V}`` matches vertical whitespace.\n\nAdded support for lookaround in conditional pattern (`Hg issue 163 <https://github.com/mrabarnett/mrab-regex/issues/163>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThe test of a conditional pattern can be a lookaround.\n\n.. sourcecode:: python\n\n  >>> regex.match(r'(?(?=\\d)\\d+|\\w+)', '123abc')\n  <regex.Match object; span=(0, 3), match='123'>\n  >>> regex.match(r'(?(?=\\d)\\d+|\\w+)', 'abc123')\n  <regex.Match object; span=(0, 6), match='abc123'>\n\nThis is not quite the same as putting a lookaround in the first branch of a pair of alternatives.\n\n.. sourcecode:: python\n\n  >>> print(regex.match(r'(?:(?=\\d)\\d+\\b|\\w+)', '123abc'))\n  <regex.Match object; span=(0, 6), match='123abc'>\n  >>> print(regex.match(r'(?(?=\\d)\\d+\\b|\\w+)', '123abc'))\n  None\n\nIn 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.\n\nAdded POSIX matching (leftmost longest) (`Hg issue 150 <https://github.com/mrabarnett/mrab-regex/issues/150>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThe POSIX standard for regex is to return the leftmost longest match. This can be turned on using the ``POSIX`` flag.\n\n.. sourcecode:: python\n\n  >>> # Normal matching.\n  >>> regex.search(r'Mr|Mrs', 'Mrs')\n  <regex.Match object; span=(0, 2), match='Mr'>\n  >>> regex.search(r'one(self)?(selfsufficient)?', 'oneselfsufficient')\n  <regex.Match object; span=(0, 7), match='oneself'>\n  >>> # POSIX matching.\n  >>> regex.search(r'(?p)Mr|Mrs', 'Mrs')\n  <regex.Match object; span=(0, 3), match='Mrs'>\n  >>> regex.search(r'(?p)one(self)?(selfsufficient)?', 'oneselfsufficient')\n  <regex.Match object; span=(0, 17), match='oneselfsufficient'>\n\nNote 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.\n\nAdded ``(?(DEFINE)...)`` (`Hg issue 152 <https://github.com/mrabarnett/mrab-regex/issues/152>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nIf there's no group called \"DEFINE\", then ... will be ignored except that any groups defined within it can be called and that the normal rules for numbering groups still apply.\n\n.. sourcecode:: python\n\n  >>> regex.search(r'(?(DEFINE)(?P<quant>\\d+)(?P<item>\\w+))(?&quant) (?&item)', '5 elephants')\n  <regex.Match object; span=(0, 11), match='5 elephants'>\n\nAdded ``(*PRUNE)``, ``(*SKIP)`` and ``(*FAIL)`` (`Hg issue 153 <https://github.com/mrabarnett/mrab-regex/issues/153>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``(*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.\n\n``(*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.\n\n``(*FAIL)`` causes immediate backtracking. ``(*F)`` is a permitted abbreviation.\n\nAdded ``\\K`` (`Hg issue 151 <https://github.com/mrabarnett/mrab-regex/issues/151>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nKeeps the part of the entire match after the position where ``\\K`` occurred; the part before it is discarded.\n\nIt does not affect what groups return.\n\n.. sourcecode:: python\n\n  >>> m = regex.search(r'(\\w\\w\\K\\w\\w\\w)', 'abcdef')\n  >>> m[0]\n  'cde'\n  >>> m[1]\n  'abcde'\n  >>>\n  >>> m = regex.search(r'(?r)(\\w\\w\\K\\w\\w\\w)', 'abcdef')\n  >>> m[0]\n  'bc'\n  >>> m[1]\n  'bcdef'\n\nAdded capture subscripting for ``expandf`` and ``subf``/``subfn`` (`Hg issue 133 <https://github.com/mrabarnett/mrab-regex/issues/133>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nYou can use subscripting to get the captures of a repeated group.\n\n.. sourcecode:: python\n\n  >>> m = regex.match(r\"(\\w)+\", \"abc\")\n  >>> m.expandf(\"{1}\")\n  'c'\n  >>> m.expandf(\"{1[0]} {1[1]} {1[2]}\")\n  'a b c'\n  >>> m.expandf(\"{1[-1]} {1[-2]} {1[-3]}\")\n  'c b a'\n  >>>\n  >>> m = regex.match(r\"(?P<letter>\\w)+\", \"abc\")\n  >>> m.expandf(\"{letter}\")\n  'c'\n  >>> m.expandf(\"{letter[0]} {letter[1]} {letter[2]}\")\n  'a b c'\n  >>> m.expandf(\"{letter[-1]} {letter[-2]} {letter[-3]}\")\n  'c b a'\n\nAdded support for referring to a group by number using ``(?P=...)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThis is in addition to the existing ``\\g<...>``.\n\nFixed the handling of locale-sensitive regexes\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThe ``LOCALE`` flag is intended for legacy code and has limited support. You're still recommended to use Unicode instead.\n\nAdded partial matches (`Hg issue 102 <https://github.com/mrabarnett/mrab-regex/issues/102>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nA 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.\n\nPartial matches are supported by ``match``, ``search``, ``fullmatch`` and ``finditer`` with the ``partial`` keyword argument.\n\nMatch objects have a ``partial`` attribute, which is ``True`` if it's a partial match.\n\nFor example, if you wanted a user to enter a 4-digit number and check it character by character as it was being entered:\n\n.. sourcecode:: python\n\n  >>> pattern = regex.compile(r'\\d{4}')\n\n  >>> # Initially, nothing has been entered:\n  >>> print(pattern.fullmatch('', partial=True))\n  <regex.Match object; span=(0, 0), match='', partial=True>\n\n  >>> # An empty string is OK, but it's only a partial match.\n  >>> # The user enters a letter:\n  >>> print(pattern.fullmatch('a', partial=True))\n  None\n  >>> # It'll never match.\n\n  >>> # The user deletes that and enters a digit:\n  >>> print(pattern.fullmatch('1', partial=True))\n  <regex.Match object; span=(0, 1), match='1', partial=True>\n  >>> # It matches this far, but it's only a partial match.\n\n  >>> # The user enters 2 more digits:\n  >>> print(pattern.fullmatch('123', partial=True))\n  <regex.Match object; span=(0, 3), match='123', partial=True>\n  >>> # It matches this far, but it's only a partial match.\n\n  >>> # The user enters another digit:\n  >>> print(pattern.fullmatch('1234', partial=True))\n  <regex.Match object; span=(0, 4), match='1234'>\n  >>> # It's a complete match.\n\n  >>> # If the user enters another digit:\n  >>> print(pattern.fullmatch('12345', partial=True))\n  None\n  >>> # It's no longer a match.\n\n  >>> # This is a partial match:\n  >>> pattern.match('123', partial=True).partial\n  True\n\n  >>> # This is a complete match:\n  >>> pattern.match('1233', partial=True).partial\n  False\n\n``*`` operator not working correctly with sub() (`Hg issue 106 <https://github.com/mrabarnett/mrab-regex/issues/106>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nSometimes it's not clear how zero-width matches should be handled. For example, should ``.*`` match 0 characters directly after matching >0 characters?\n\n.. sourcecode:: python\n\n  # Python 3.7 and later\n  >>> regex.sub('.*', 'x', 'test')\n  'xx'\n  >>> regex.sub('.*?', '|', 'test')\n  '|||||||||'\n\n  # Python 3.6 and earlier\n  >>> regex.sub('(?V0).*', 'x', 'test')\n  'x'\n  >>> regex.sub('(?V1).*', 'x', 'test')\n  'xx'\n  >>> regex.sub('(?V0).*?', '|', 'test')\n  '|t|e|s|t|'\n  >>> regex.sub('(?V1).*?', '|', 'test')\n  '|||||||||'\n\nAdded ``capturesdict`` (`Hg issue 86 <https://github.com/mrabarnett/mrab-regex/issues/86>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``capturesdict`` is a combination of ``groupdict`` and ``captures``:\n\n``groupdict`` returns a dict of the named groups and the last capture of those groups.\n\n``captures`` returns a list of all the captures of a group\n\n``capturesdict`` returns a dict of the named groups and lists of all the captures of those groups.\n\n.. sourcecode:: python\n\n  >>> m = regex.match(r\"(?:(?P<word>\\w+) (?P<digits>\\d+)\\n)+\", \"one 1\\ntwo 2\\nthree 3\\n\")\n  >>> m.groupdict()\n  {'word': 'three', 'digits': '3'}\n  >>> m.captures(\"word\")\n  ['one', 'two', 'three']\n  >>> m.captures(\"digits\")\n  ['1', '2', '3']\n  >>> m.capturesdict()\n  {'word': ['one', 'two', 'three'], 'digits': ['1', '2', '3']}\n\nAdded ``allcaptures`` and ``allspans`` (`Git issue 474 <https://github.com/mrabarnett/mrab-regex/issues/474>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``allcaptures`` returns a list of all the captures of all the groups.\n\n``allspans`` returns a list of all the spans of the all captures of all the groups.\n\n.. sourcecode:: python\n\n  >>> m = regex.match(r\"(?:(?P<word>\\w+) (?P<digits>\\d+)\\n)+\", \"one 1\\ntwo 2\\nthree 3\\n\")\n  >>> m.allcaptures()\n  (['one 1\\ntwo 2\\nthree 3\\n'], ['one', 'two', 'three'], ['1', '2', '3'])\n  >>> m.allspans()\n  ([(0, 20)], [(0, 3), (6, 9), (12, 17)], [(4, 5), (10, 11), (18, 19)])\n\nAllow duplicate names of groups (`Hg issue 87 <https://github.com/mrabarnett/mrab-regex/issues/87>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nGroup names can be duplicated.\n\n.. sourcecode:: python\n\n  >>> # With optional groups:\n  >>>\n  >>> # Both groups capture, the second capture 'overwriting' the first.\n  >>> m = regex.match(r\"(?P<item>\\w+)? or (?P<item>\\w+)?\", \"first or second\")\n  >>> m.group(\"item\")\n  'second'\n  >>> m.captures(\"item\")\n  ['first', 'second']\n  >>> # Only the second group captures.\n  >>> m = regex.match(r\"(?P<item>\\w+)? or (?P<item>\\w+)?\", \" or second\")\n  >>> m.group(\"item\")\n  'second'\n  >>> m.captures(\"item\")\n  ['second']\n  >>> # Only the first group captures.\n  >>> m = regex.match(r\"(?P<item>\\w+)? or (?P<item>\\w+)?\", \"first or \")\n  >>> m.group(\"item\")\n  'first'\n  >>> m.captures(\"item\")\n  ['first']\n  >>>\n  >>> # With mandatory groups:\n  >>>\n  >>> # Both groups capture, the second capture 'overwriting' the first.\n  >>> m = regex.match(r\"(?P<item>\\w*) or (?P<item>\\w*)?\", \"first or second\")\n  >>> m.group(\"item\")\n  'second'\n  >>> m.captures(\"item\")\n  ['first', 'second']\n  >>> # Again, both groups capture, the second capture 'overwriting' the first.\n  >>> m = regex.match(r\"(?P<item>\\w*) or (?P<item>\\w*)\", \" or second\")\n  >>> m.group(\"item\")\n  'second'\n  >>> m.captures(\"item\")\n  ['', 'second']\n  >>> # And yet again, both groups capture, the second capture 'overwriting' the first.\n  >>> m = regex.match(r\"(?P<item>\\w*) or (?P<item>\\w*)\", \"first or \")\n  >>> m.group(\"item\")\n  ''\n  >>> m.captures(\"item\")\n  ['first', '']\n\nAdded ``fullmatch`` (`issue #16203 <https://bugs.python.org/issue16203>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``fullmatch`` behaves like ``match``, except that it must match all of the string.\n\n.. sourcecode:: python\n\n  >>> print(regex.fullmatch(r\"abc\", \"abc\").span())\n  (0, 3)\n  >>> print(regex.fullmatch(r\"abc\", \"abcx\"))\n  None\n  >>> print(regex.fullmatch(r\"abc\", \"abcx\", endpos=3).span())\n  (0, 3)\n  >>> print(regex.fullmatch(r\"abc\", \"xabcy\", pos=1, endpos=4).span())\n  (1, 4)\n  >>>\n  >>> regex.match(r\"a.*?\", \"abcd\").group(0)\n  'a'\n  >>> regex.fullmatch(r\"a.*?\", \"abcd\").group(0)\n  'abcd'\n\nAdded ``subf`` and ``subfn``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``subf`` and ``subfn`` are alternatives to ``sub`` and ``subn`` respectively. When passed a replacement string, they treat it as a format string.\n\n.. sourcecode:: python\n\n  >>> regex.subf(r\"(\\w+) (\\w+)\", \"{0} => {2} {1}\", \"foo bar\")\n  'foo bar => bar foo'\n  >>> regex.subf(r\"(?P<word1>\\w+) (?P<word2>\\w+)\", \"{word2} {word1}\", \"foo bar\")\n  'bar foo'\n\nAdded ``expandf`` to match object\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``expandf`` is an alternative to ``expand``. When passed a replacement string, it treats it as a format string.\n\n.. sourcecode:: python\n\n  >>> m = regex.match(r\"(\\w+) (\\w+)\", \"foo bar\")\n  >>> m.expandf(\"{0} => {2} {1}\")\n  'foo bar => bar foo'\n  >>>\n  >>> m = regex.match(r\"(?P<word1>\\w+) (?P<word2>\\w+)\", \"foo bar\")\n  >>> m.expandf(\"{word2} {word1}\")\n  'bar foo'\n\nDetach searched string\n^^^^^^^^^^^^^^^^^^^^^^\n\nA 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.\n\n.. sourcecode:: python\n\n  >>> m = regex.search(r\"\\w+\", \"Hello world\")\n  >>> print(m.group())\n  Hello\n  >>> print(m.string)\n  Hello world\n  >>> m.detach_string()\n  >>> print(m.group())\n  Hello\n  >>> print(m.string)\n  None\n\nRecursive patterns (`Hg issue 27 <https://github.com/mrabarnett/mrab-regex/issues/27>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nRecursive and repeated patterns are supported.\n\n``(?R)`` or ``(?0)`` tries to match the entire regex recursively. ``(?1)``, ``(?2)``, etc, try to match the relevant group.\n\n``(?&name)`` tries to match the named group.\n\n.. sourcecode:: python\n\n  >>> regex.match(r\"(Tarzan|Jane) loves (?1)\", \"Tarzan loves Jane\").groups()\n  ('Tarzan',)\n  >>> regex.match(r\"(Tarzan|Jane) loves (?1)\", \"Jane loves Tarzan\").groups()\n  ('Jane',)\n\n  >>> m = regex.search(r\"(\\w)(?:(?R)|(\\w?))\\1\", \"kayak\")\n  >>> m.group(0, 1, 2)\n  ('kayak', 'k', None)\n\nThe first two examples show how the subpattern within the group is reused, but is _not_ itself a group. In other words, ``\"(Tarzan|Jane) loves (?1)\"`` is equivalent to ``\"(Tarzan|Jane) loves (?:Tarzan|Jane)\"``.\n\nIt's possible to backtrack into a recursed or repeated group.\n\nYou can't call a group if there is more than one group with that group name or group number (``\"ambiguous group reference\"``).\n\nThe alternative forms ``(?P>name)`` and ``(?P&name)`` are also supported.\n\nFull Unicode case-folding is supported\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nIn version 1 behaviour, the regex module uses full case-folding when performing case-insensitive matches in Unicode.\n\n.. sourcecode:: python\n\n  >>> regex.match(r\"(?iV1)strasse\", \"stra\\N{LATIN SMALL LETTER SHARP S}e\").span()\n  (0, 6)\n  >>> regex.match(r\"(?iV1)stra\\N{LATIN SMALL LETTER SHARP S}e\", \"STRASSE\").span()\n  (0, 7)\n\nIn version 0 behaviour, it uses simple case-folding for backward compatibility with the re module.\n\nApproximate \"fuzzy\" matching (`Hg issue 12 <https://github.com/mrabarnett/mrab-regex/issues/12>`_, `Hg issue 41 <https://github.com/mrabarnett/mrab-regex/issues/41>`_, `Hg issue 109 <https://github.com/mrabarnett/mrab-regex/issues/109>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nRegex 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.\n\nA 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.)\n\nThe 3 types of error are:\n\n* Insertion, indicated by \"i\"\n\n* Deletion, indicated by \"d\"\n\n* Substitution, indicated by \"s\"\n\nIn addition, \"e\" indicates any type of error.\n\nThe fuzziness of a regex item is specified between \"{\" and \"}\" after the item.\n\nExamples:\n\n* ``foo`` match \"foo\" exactly\n\n* ``(?:foo){i}`` match \"foo\", permitting insertions\n\n* ``(?:foo){d}`` match \"foo\", permitting deletions\n\n* ``(?:foo){s}`` match \"foo\", permitting substitutions\n\n* ``(?:foo){i,s}`` match \"foo\", permitting insertions and substitutions\n\n* ``(?:foo){e}`` match \"foo\", permitting errors\n\nIf a certain type of error is specified, then any type not specified will **not** be permitted.\n\nIn the following examples I'll omit the item and write only the fuzziness:\n\n* ``{d<=3}`` permit at most 3 deletions, but no other types\n\n* ``{i<=1,s<=2}`` permit at most 1 insertion and at most 2 substitutions, but no deletions\n\n* ``{1<=e<=3}`` permit at least 1 and at most 3 errors\n\n* ``{i<=2,d<=2,e<=3}`` permit at most 2 insertions, at most 2 deletions, at most 3 errors in total, but no substitutions\n\nIt's also possible to state the costs of each type of error and the maximum permitted total cost.\n\nExamples:\n\n* ``{2i+2d+1s<=4}`` each insertion costs 2, each deletion costs 2, each substitution costs 1, the total cost must not exceed 4\n\n* ``{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\n\nYou can also use \"<\" instead of \"<=\" if you want an exclusive minimum or maximum.\n\nYou can add a test to perform on a character that's substituted or inserted.\n\nExamples:\n\n* ``{s<=2:[a-z]}`` at most 2 substitutions, which must be in the character set ``[a-z]``.\n\n* ``{s<=2,i<=3:\\d}`` at most 2 substitutions, at most 3 insertions, which must be digits.\n\nBy 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.\n\nThe ``BESTMATCH`` flag will make it search for the best match instead.\n\nFurther examples to note:\n\n* ``regex.search(\"(dog){e}\", \"cat and dog\")[1]`` returns ``\"cat\"`` because that matches ``\"dog\"`` with 3 errors (an unlimited number of errors is permitted).\n\n* ``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.\n\n* ``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.\n\nIn the first two examples there are perfect matches later in the string, but in neither case is it the first possible match.\n\nThe match object has an attribute ``fuzzy_counts`` which gives the total number of substitutions, insertions and deletions.\n\n.. sourcecode:: python\n\n  >>> # A 'raw' fuzzy match:\n  >>> regex.fullmatch(r\"(?:cats|cat){e<=1}\", \"cat\").fuzzy_counts\n  (0, 0, 1)\n  >>> # 0 substitutions, 0 insertions, 1 deletion.\n\n  >>> # A better match might be possible if the ENHANCEMATCH flag used:\n  >>> regex.fullmatch(r\"(?e)(?:cats|cat){e<=1}\", \"cat\").fuzzy_counts\n  (0, 0, 0)\n  >>> # 0 substitutions, 0 insertions, 0 deletions.\n\nThe match object also has an attribute ``fuzzy_changes`` which gives a tuple of the positions of the substitutions, insertions and deletions.\n\n.. sourcecode:: python\n\n  >>> m = regex.search('(fuu){i<=2,d<=2,e<=5}', 'anaconda foo bar')\n  >>> m\n  <regex.Match object; span=(7, 10), match='a f', fuzzy_counts=(0, 2, 2)>\n  >>> m.fuzzy_changes\n  ([], [7, 8], [10, 11])\n\nWhat this means is that if the matched part of the string had been:\n\n.. sourcecode:: python\n\n  'anacondfuuoo bar'\n\nit would've been an exact match.\n\nHowever, there were insertions at positions 7 and 8:\n\n.. sourcecode:: python\n\n  'anaconda fuuoo bar'\n          ^^\n\nand deletions at positions 10 and 11:\n\n.. sourcecode:: python\n\n  'anaconda f~~oo bar'\n             ^^\n\nSo the actual string was:\n\n.. sourcecode:: python\n\n  'anaconda foo bar'\n\nNamed lists ``\\L<name>`` (`Hg issue 11 <https://github.com/mrabarnett/mrab-regex/issues/11>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThere are occasions where you may want to include a list (actually, a set) of options in a regex.\n\nOne way is to build the pattern like this:\n\n.. sourcecode:: python\n\n  >>> p = regex.compile(r\"first|second|third|fourth|fifth\")\n\nbut 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\".\n\nThe new alternative is to use a named list:\n\n.. sourcecode:: python\n\n  >>> option_set = [\"first\", \"second\", \"third\", \"fourth\", \"fifth\"]\n  >>> p = regex.compile(r\"\\L<options>\", options=option_set)\n\nThe 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 :\n\n.. sourcecode:: python\n\n  >>> print(p.named_lists)\n  {'options': frozenset({'third', 'first', 'fifth', 'fourth', 'second'})}\n\nIf there are any unused keyword arguments, ``ValueError`` will be raised unless you tell it otherwise:\n\n.. sourcecode:: python\n\n  >>> option_set = [\"first\", \"second\", \"third\", \"fourth\", \"fifth\"]\n  >>> p = regex.compile(r\"\\L<options>\", options=option_set, other_options=[])\n  Traceback (most recent call last):\n    File \"<stdin>\", line 1, in <module>\n    File \"C:\\Python310\\lib\\site-packages\\regex\\regex.py\", line 353, in compile\n      return _compile(pattern, flags, ignore_unused, kwargs, cache_pattern)\n    File \"C:\\Python310\\lib\\site-packages\\regex\\regex.py\", line 500, in _compile\n      complain_unused_args()\n    File \"C:\\Python310\\lib\\site-packages\\regex\\regex.py\", line 483, in complain_unused_args\n      raise ValueError('unused keyword argument {!a}'.format(any_one))\n  ValueError: unused keyword argument 'other_options'\n  >>> p = regex.compile(r\"\\L<options>\", options=option_set, other_options=[], ignore_unused=True)\n  >>> p = regex.compile(r\"\\L<options>\", options=option_set, other_options=[], ignore_unused=False)\n  Traceback (most recent call last):\n    File \"<stdin>\", line 1, in <module>\n    File \"C:\\Python310\\lib\\site-packages\\regex\\regex.py\", line 353, in compile\n      return _compile(pattern, flags, ignore_unused, kwargs, cache_pattern)\n    File \"C:\\Python310\\lib\\site-packages\\regex\\regex.py\", line 500, in _compile\n      complain_unused_args()\n    File \"C:\\Python310\\lib\\site-packages\\regex\\regex.py\", line 483, in complain_unused_args\n      raise ValueError('unused keyword argument {!a}'.format(any_one))\n  ValueError: unused keyword argument 'other_options'\n  >>>\n\nStart and end of word\n^^^^^^^^^^^^^^^^^^^^^\n\n``\\m`` matches at the start of a word.\n\n``\\M`` matches at the end of a word.\n\nCompare with ``\\b``, which matches at the start or end of a word.\n\nUnicode line separators\n^^^^^^^^^^^^^^^^^^^^^^^\n\nNormally 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.\n\nThis 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).\n\nSet operators\n^^^^^^^^^^^^^\n\n**Version 1 behaviour only**\n\nSet operators have been added, and a set ``[...]`` can include nested sets.\n\nThe operators, in order of increasing precedence, are:\n\n* ``||`` for union (\"x||y\" means \"x or y\")\n\n* ``~~`` (double tilde) for symmetric difference (\"x~~y\" means \"x or y, but not both\")\n\n* ``&&`` for intersection (\"x&&y\" means \"x and y\")\n\n* ``--`` (double dash) for difference (\"x--y\" means \"x but not y\")\n\nImplicit union, ie, simple juxtaposition like in ``[ab]``, has the highest precedence. Thus, ``[ab&&cd]`` is the same as ``[[a||b]&&[c||d]]``.\n\nExamples:\n\n* ``[ab]`` # Set containing 'a' and 'b'\n\n* ``[a-z]`` # Set containing 'a' .. 'z'\n\n* ``[[a-z]--[qw]]`` # Set containing 'a' .. 'z', but not 'q' or 'w'\n\n* ``[a-z--qw]`` # Same as above\n\n* ``[\\p{L}--QW]`` # Set containing all letters except 'Q' and 'W'\n\n* ``[\\p{N}--[0-9]]`` # Set containing all numbers except '0' .. '9'\n\n* ``[\\p{ASCII}&&\\p{Letter}]`` # Set containing all characters which are ASCII and letter\n\nregex.escape (`issue #2650 <https://bugs.python.org/issue2650>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nregex.escape has an additional keyword parameter ``special_only``. When True, only 'special' regex characters, such as '?', are escaped.\n\n.. sourcecode:: python\n\n  >>> regex.escape(\"foo!?\", special_only=False)\n  'foo\\\\!\\\\?'\n  >>> regex.escape(\"foo!?\", special_only=True)\n  'foo!\\\\?'\n\nregex.escape (`Hg issue 249 <https://github.com/mrabarnett/mrab-regex/issues/249>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nregex.escape has an additional keyword parameter ``literal_spaces``. When True, spaces are not escaped.\n\n.. sourcecode:: python\n\n  >>> regex.escape(\"foo bar!?\", literal_spaces=False)\n  'foo\\\\ bar!\\\\?'\n  >>> regex.escape(\"foo bar!?\", literal_spaces=True)\n  'foo bar!\\\\?'\n\nRepeated captures (`issue #7132 <https://bugs.python.org/issue7132>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nA match object has additional methods which return information on all the successful matches of a repeated group. These methods are:\n\n* ``matchobject.captures([group1, ...])``\n\n  * Returns a list of the strings matched in a group or groups. Compare with ``matchobject.group([group1, ...])``.\n\n* ``matchobject.starts([group])``\n\n  * Returns a list of the start positions. Compare with ``matchobject.start([group])``.\n\n* ``matchobject.ends([group])``\n\n  * Returns a list of the end positions. Compare with ``matchobject.end([group])``.\n\n* ``matchobject.spans([group])``\n\n  * Returns a list of the spans. Compare with ``matchobject.span([group])``.\n\n.. sourcecode:: python\n\n  >>> m = regex.search(r\"(\\w{3})+\", \"123456789\")\n  >>> m.group(1)\n  '789'\n  >>> m.captures(1)\n  ['123', '456', '789']\n  >>> m.start(1)\n  6\n  >>> m.starts(1)\n  [0, 3, 6]\n  >>> m.end(1)\n  9\n  >>> m.ends(1)\n  [3, 6, 9]\n  >>> m.span(1)\n  (6, 9)\n  >>> m.spans(1)\n  [(0, 3), (3, 6), (6, 9)]\n\nAtomic grouping ``(?>...)`` (`issue #433030 <https://bugs.python.org/issue433030>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nIf the following pattern subsequently fails, then the subpattern as a whole will fail.\n\nPossessive quantifiers\n^^^^^^^^^^^^^^^^^^^^^^\n\n``(?:...)?+`` ; ``(?:...)*+`` ; ``(?:...)++`` ; ``(?:...){min,max}+``\n\nThe subpattern is matched up to 'max' times. If the following pattern subsequently fails, then all the repeated subpatterns will fail as a whole. For example, ``(?:...)++`` is equivalent to ``(?>(?:...)+)``.\n\nScoped flags (`issue #433028 <https://bugs.python.org/issue433028>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``(?flags-flags:...)``\n\nThe flags will apply only to the subpattern. Flags can be turned on or off.\n\nDefinition of 'word' character (`issue #1693050 <https://bugs.python.org/issue1693050>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThe definition of a 'word' character has been expanded for Unicode. It conforms to the Unicode specification at ``http://www.unicode.org/reports/tr29/``.\n\nVariable-length lookbehind\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nA lookbehind can match a variable-length string.\n\nFlags argument for regex.split, regex.sub and regex.subn (`issue #3482 <https://bugs.python.org/issue3482>`_)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``regex.split``, ``regex.sub`` and ``regex.subn`` support a 'flags' argument.\n\nPos and endpos arguments for regex.sub and regex.subn\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``regex.sub`` and ``regex.subn`` support 'pos' and 'endpos' arguments.\n\n'Overlapped' argument for regex.findall and regex.finditer\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``regex.findall`` and ``regex.finditer`` support an 'overlapped' flag which permits overlapped matches.\n\nSplititer\n^^^^^^^^^\n\n``regex.splititer`` has been added. It's a generator equivalent of ``regex.split``.\n\nSubscripting match objects for groups\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nA match object accepts access to the groups via subscripting and slicing:\n\n.. sourcecode:: python\n\n  >>> m = regex.search(r\"(?P<before>.*?)(?P<num>\\d+)(?P<after>.*)\", \"pqr123stu\")\n  >>> print(m[\"before\"])\n  pqr\n  >>> print(len(m))\n  4\n  >>> print(m[:])\n  ('pqr123stu', 'pqr', '123', 'stu')\n\nNamed groups\n^^^^^^^^^^^^\n\nGroups can be named with ``(?<name>...)`` as well as the existing ``(?P<name>...)``.\n\nGroup references\n^^^^^^^^^^^^^^^^\n\nGroups can be referenced within a pattern with ``\\g<name>``. This also allows there to be more than 99 groups.\n\nNamed characters ``\\N{name}``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nNamed characters are supported. Note that only those known by Python's Unicode database will be recognised.\n\nUnicode codepoint properties, including scripts and blocks\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n``\\p{property=value}``; ``\\P{property=value}``; ``\\p{value}`` ; ``\\P{value}``\n\nMany 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}``.\n\nIf the short form ``\\p{value}`` is used, the properties are checked in the order: ``General_Category``, ``Script``, ``Block``, binary property:\n\n* ``Latin``, the 'Latin' script (``Script=Latin``).\n\n* ``BasicLatin``, the 'BasicLatin' block (``Block=BasicLatin``).\n\n* ``Alphabetic``, the 'Alphabetic' binary property (``Alphabetic=Yes``).\n\nA short form starting with ``Is`` indicates a script or binary property:\n\n* ``IsLatin``, the 'Latin' script (``Script=Latin``).\n\n* ``IsAlphabetic``, the 'Alphabetic' binary property (``Alphabetic=Yes``).\n\nA short form starting with ``In`` indicates a block property:\n\n* ``InBasicLatin``, the 'BasicLatin' block (``Block=BasicLatin``).\n\nPOSIX character classes\n^^^^^^^^^^^^^^^^^^^^^^^\n\n``[[:alpha:]]``; ``[[:^alpha:]]``\n\nPOSIX character classes are supported. These are normally treated as an alternative form of ``\\p{...}``.\n\nThe exceptions are ``alnum``, ``digit``, ``punct`` and ``xdigit``, whose definitions are different from those of Unicode.\n\n``[[:alnum:]]`` is equivalent to ``\\p{posix_alnum}``.\n\n``[[:digit:]]`` is equivalent to ``\\p{posix_digit}``.\n\n``[[:punct:]]`` is equivalent to ``\\p{posix_punct}``.\n\n``[[:xdigit:]]`` is equivalent to ``\\p{posix_xdigit}``.\n\nSearch anchor ``\\G``\n^^^^^^^^^^^^^^^^^^^^\n\nA 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:\n\n.. sourcecode:: python\n\n  >>> regex.findall(r\"\\w{2}\", \"abcd ef\")\n  ['ab', 'cd', 'ef']\n  >>> regex.findall(r\"\\G\\w{2}\", \"abcd ef\")\n  ['ab', 'cd']\n\n* The search starts at position 0 and matches 'ab'.\n\n* The search continues at position 2 and matches 'cd'.\n\n* The search continues at position 4 and fails to match any letters.\n\n* The anchor stops the search start position from being advanced, so there are no more results.\n\nReverse searching\n^^^^^^^^^^^^^^^^^\n\nSearches can also work backwards:\n\n.. sourcecode:: python\n\n  >>> regex.findall(r\".\", \"abc\")\n  ['a', 'b', 'c']\n  >>> regex.findall(r\"(?r).\", \"abc\")\n  ['c', 'b', 'a']\n\nNote that the result of a reverse search is not necessarily the reverse of a forward search:\n\n.. sourcecode:: python\n\n  >>> regex.findall(r\"..\", \"abcde\")\n  ['ab', 'cd']\n  >>> regex.findall(r\"(?r)..\", \"abcde\")\n  ['de', 'bc']\n\nMatching a single grapheme ``\\X``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThe grapheme matcher is supported. It conforms to the Unicode specification at ``http://www.unicode.org/reports/tr29/``.\n\nBranch reset ``(?|...|...)``\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nGroup numbers will be reused across the alternatives, but groups with different names will have different group numbers.\n\n.. sourcecode:: python\n\n  >>> regex.match(r\"(?|(first)|(second))\", \"first\").groups()\n  ('first',)\n  >>> regex.match(r\"(?|(first)|(second))\", \"second\").groups()\n  ('second',)\n\nNote that there is only one group.\n\nDefault Unicode word boundary\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThe ``WORD`` flag changes the definition of a 'word boundary' to that of a default Unicode word boundary. This applies to ``\\b`` and ``\\B``.\n\nTimeout\n^^^^^^^\n\nThe matching methods and functions support timeouts. The timeout (in seconds) applies to the entire operation:\n\n.. sourcecode:: python\n\n  >>> from time import sleep\n  >>>\n  >>> def fast_replace(m):\n  ...     return 'X'\n  ...\n  >>> def slow_replace(m):\n  ...     sleep(0.5)\n  ...     return 'X'\n  ...\n  >>> regex.sub(r'[a-z]', fast_replace, 'abcde', timeout=2)\n  'XXXXX'\n  >>> regex.sub(r'[a-z]', slow_replace, 'abcde', timeout=2)\n  Traceback (most recent call last):\n    File \"<stdin>\", line 1, in <module>\n    File \"C:\\Python310\\lib\\site-packages\\regex\\regex.py\", line 278, in sub\n      return pat.sub(repl, string, count, pos, endpos, concurrent, timeout)\n  TimeoutError: regex timed out\n",
    "bugtrack_url": null,
    "license": "Apache Software License",
    "summary": "Alternative regular expression module, to replace re.",
    "version": "2023.12.25",
    "project_urls": {
        "Homepage": "https://github.com/mrabarnett/mrab-regex"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59d63d8fb38120053e4d7b196f32fa5c3a760f8349cdee02c021617e6e653e61",
                "md5": "3880d63f61fb7d3b6ae16bee74a5697b",
                "sha256": "0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3880d63f61fb7d3b6ae16bee74a5697b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 497367,
            "upload_time": "2023-12-24T02:43:23",
            "upload_time_iso_8601": "2023-12-24T02:43:23.163613Z",
            "url": "https://files.pythonhosted.org/packages/59/d6/3d8fb38120053e4d7b196f32fa5c3a760f8349cdee02c021617e6e653e61/regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a8d8c70bce12045fa622949d3fd3e4e64a01b506a3e670dada8c5f9b3be1e34",
                "md5": "58840225b712ab1d633c70bc53ea027a",
                "sha256": "b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "58840225b712ab1d633c70bc53ea027a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 296412,
            "upload_time": "2023-12-24T02:43:27",
            "upload_time_iso_8601": "2023-12-24T02:43:27.546328Z",
            "url": "https://files.pythonhosted.org/packages/8a/8d/8c70bce12045fa622949d3fd3e4e64a01b506a3e670dada8c5f9b3be1e34/regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3dd8e5f7fcd33adaa3ce346ff5baf4319956873c49cbb0ed11566f921883096b",
                "md5": "2f3e20341f2e1109839f1a74b31d3323",
                "sha256": "d865984b3f71f6d0af64d0d88f5733521698f6c16f445bb09ce746c92c97c586"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2f3e20341f2e1109839f1a74b31d3323",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 291028,
            "upload_time": "2023-12-24T02:43:30",
            "upload_time_iso_8601": "2023-12-24T02:43:30.521312Z",
            "url": "https://files.pythonhosted.org/packages/3d/d8/e5f7fcd33adaa3ce346ff5baf4319956873c49cbb0ed11566f921883096b/regex-2023.12.25-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e1558c7b42d4ebc85b88696483c739d2c3b1db7234d7ab3c1aef50cf9b88d51",
                "md5": "baae1d59663eed7786c4e8d82cf12d8a",
                "sha256": "1e0eabac536b4cc7f57a5f3d095bfa557860ab912f25965e08fe1545e2ed8b4c"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "baae1d59663eed7786c4e8d82cf12d8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 774099,
            "upload_time": "2023-12-24T02:43:33",
            "upload_time_iso_8601": "2023-12-24T02:43:33.556954Z",
            "url": "https://files.pythonhosted.org/packages/2e/15/58c7b42d4ebc85b88696483c739d2c3b1db7234d7ab3c1aef50cf9b88d51/regex-2023.12.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40efacde6b823da62186d4309de039e470e3f08311e5b40b754aec187d82939f",
                "md5": "ccd0904a0c6bae10ccc70e8fd2e93345",
                "sha256": "c25a8ad70e716f96e13a637802813f65d8a6760ef48672aa3502f4c24ea8b400"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ccd0904a0c6bae10ccc70e8fd2e93345",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 814912,
            "upload_time": "2023-12-24T02:43:36",
            "upload_time_iso_8601": "2023-12-24T02:43:36.659219Z",
            "url": "https://files.pythonhosted.org/packages/40/ef/acde6b823da62186d4309de039e470e3f08311e5b40b754aec187d82939f/regex-2023.12.25-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a008b2322e246d0a392c91bdb43750bb900fab5d48d693c1497b3ea6656f851",
                "md5": "f5b6a2b93840a532ab4fb87953cd69c2",
                "sha256": "a9b6d73353f777630626f403b0652055ebfe8ff142a44ec2cf18ae470395766e"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f5b6a2b93840a532ab4fb87953cd69c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 800527,
            "upload_time": "2023-12-24T02:43:39",
            "upload_time_iso_8601": "2023-12-24T02:43:39.634045Z",
            "url": "https://files.pythonhosted.org/packages/7a/00/8b2322e246d0a392c91bdb43750bb900fab5d48d693c1497b3ea6656f851/regex-2023.12.25-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "818a96a62ce98e8ff1b16db56fde3debc8a571f6b7ea42ee137eb0d995cdfa26",
                "md5": "254d87f436990a025e8a6d4fa80a8708",
                "sha256": "a9cc99d6946d750eb75827cb53c4371b8b0fe89c733a94b1573c9dd16ea6c9e4"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "254d87f436990a025e8a6d4fa80a8708",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 773955,
            "upload_time": "2023-12-24T02:43:42",
            "upload_time_iso_8601": "2023-12-24T02:43:42.896614Z",
            "url": "https://files.pythonhosted.org/packages/81/8a/96a62ce98e8ff1b16db56fde3debc8a571f6b7ea42ee137eb0d995cdfa26/regex-2023.12.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d63b909ab8c13caf117cab2d494f4e0ba5c973a66014b15e8ccd5ec1a704f179",
                "md5": "d87e8911b4910c18b843c8dbb3c9b97d",
                "sha256": "88d1f7bef20c721359d8675f7d9f8e414ec5003d8f642fdfd8087777ff7f94b5"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d87e8911b4910c18b843c8dbb3c9b97d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 762996,
            "upload_time": "2023-12-24T02:43:45",
            "upload_time_iso_8601": "2023-12-24T02:43:45.555183Z",
            "url": "https://files.pythonhosted.org/packages/d6/3b/909ab8c13caf117cab2d494f4e0ba5c973a66014b15e8ccd5ec1a704f179/regex-2023.12.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fb1df76e0c38fcb7b64b23bd86de820c1cfa7b3b35005122b468df8e93f2bfa",
                "md5": "3343d320f0589766b8dbc0e2cb5acd3f",
                "sha256": "cb3fe77aec8f1995611f966d0c656fdce398317f850d0e6e7aebdfe61f40e1cd"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3343d320f0589766b8dbc0e2cb5acd3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 690363,
            "upload_time": "2023-12-24T02:43:48",
            "upload_time_iso_8601": "2023-12-24T02:43:48.347927Z",
            "url": "https://files.pythonhosted.org/packages/3f/b1/df76e0c38fcb7b64b23bd86de820c1cfa7b3b35005122b468df8e93f2bfa/regex-2023.12.25-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4db7d05718f5157257ee9f980d381f54efdaccb95c0db8e05071ce4d8ee3347",
                "md5": "22a856f9713916be3e6edeacbcf46d86",
                "sha256": "7aa47c2e9ea33a4a2a05f40fcd3ea36d73853a2aae7b4feab6fc85f8bf2c9704"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "22a856f9713916be3e6edeacbcf46d86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 743898,
            "upload_time": "2023-12-24T02:43:52",
            "upload_time_iso_8601": "2023-12-24T02:43:52.037517Z",
            "url": "https://files.pythonhosted.org/packages/a4/db/7d05718f5157257ee9f980d381f54efdaccb95c0db8e05071ce4d8ee3347/regex-2023.12.25-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d068c07ade57639bd30543b96715a0c1eef72d65aabdf7ff6f0b6b1f8bd371f",
                "md5": "d543eb09564975f8c7cd54673bc7b775",
                "sha256": "df26481f0c7a3f8739fecb3e81bc9da3fcfae34d6c094563b9d4670b047312e1"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d543eb09564975f8c7cd54673bc7b775",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 731377,
            "upload_time": "2023-12-24T02:43:55",
            "upload_time_iso_8601": "2023-12-24T02:43:55.706482Z",
            "url": "https://files.pythonhosted.org/packages/2d/06/8c07ade57639bd30543b96715a0c1eef72d65aabdf7ff6f0b6b1f8bd371f/regex-2023.12.25-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "053ce77e4c13492d34171af2765c4263d35573b4b8d813f58bb33dae3da5c897",
                "md5": "55fe406ed0d5a079f4bc3264ce2bb032",
                "sha256": "c40281f7d70baf6e0db0c2f7472b31609f5bc2748fe7275ea65a0b4601d9b392"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "55fe406ed0d5a079f4bc3264ce2bb032",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 764034,
            "upload_time": "2023-12-24T02:43:58",
            "upload_time_iso_8601": "2023-12-24T02:43:58.407198Z",
            "url": "https://files.pythonhosted.org/packages/05/3c/e77e4c13492d34171af2765c4263d35573b4b8d813f58bb33dae3da5c897/regex-2023.12.25-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b85dd2f0a1091c00ee5a854199423609c69eaa8b48a8352a6626c0ae85265b6a",
                "md5": "9345bae1daa75d237e7c68a68f8f809c",
                "sha256": "d94a1db462d5690ebf6ae86d11c5e420042b9898af5dcf278bd97d6bda065423"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "9345bae1daa75d237e7c68a68f8f809c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 768580,
            "upload_time": "2023-12-24T02:44:01",
            "upload_time_iso_8601": "2023-12-24T02:44:01.923508Z",
            "url": "https://files.pythonhosted.org/packages/b8/5d/d2f0a1091c00ee5a854199423609c69eaa8b48a8352a6626c0ae85265b6a/regex-2023.12.25-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b551e884e1e021a8819251e09606354733a62decffd703ad6fd1ed9098a003a0",
                "md5": "ea0112b9d89bcf7f94b06f63c40442af",
                "sha256": "ba1b30765a55acf15dce3f364e4928b80858fa8f979ad41f862358939bdd1f2f"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea0112b9d89bcf7f94b06f63c40442af",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 744705,
            "upload_time": "2023-12-24T02:44:05",
            "upload_time_iso_8601": "2023-12-24T02:44:05.821065Z",
            "url": "https://files.pythonhosted.org/packages/b5/51/e884e1e021a8819251e09606354733a62decffd703ad6fd1ed9098a003a0/regex-2023.12.25-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acfcb7b7da0eb7110d1c4529b9d74d5d1ba92f85f0ce32be72f490f5eebfcdab",
                "md5": "f05882009898d9ea331ad2ad13516b63",
                "sha256": "150c39f5b964e4d7dba46a7962a088fbc91f06e606f023ce57bb347a3b2d4630"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "f05882009898d9ea331ad2ad13516b63",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 257749,
            "upload_time": "2023-12-24T02:44:09",
            "upload_time_iso_8601": "2023-12-24T02:44:09.230769Z",
            "url": "https://files.pythonhosted.org/packages/ac/fc/b7b7da0eb7110d1c4529b9d74d5d1ba92f85f0ce32be72f490f5eebfcdab/regex-2023.12.25-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83eb144d2db5cf2ac3989d0ea4273040218d68bd67422133548da47043423594",
                "md5": "2890ebfb38ddb0659db10900e040638b",
                "sha256": "09da66917262d9481c719599116c7dc0c321ffcec4b1f510c4f8a066f8768105"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2890ebfb38ddb0659db10900e040638b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 269481,
            "upload_time": "2023-12-24T02:44:13",
            "upload_time_iso_8601": "2023-12-24T02:44:13.174003Z",
            "url": "https://files.pythonhosted.org/packages/83/eb/144d2db5cf2ac3989d0ea4273040218d68bd67422133548da47043423594/regex-2023.12.25-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2798e2f151d958bea25682118c68f22e49fe98d8797aadfbf0d5df0288118c6d",
                "md5": "4b430617f68b1e4c1231f639974f4c18",
                "sha256": "1b9d811f72210fa9306aeb88385b8f8bcef0dfbf3873410413c00aa94c56c2b6"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4b430617f68b1e4c1231f639974f4c18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 497418,
            "upload_time": "2023-12-24T02:44:16",
            "upload_time_iso_8601": "2023-12-24T02:44:16.167591Z",
            "url": "https://files.pythonhosted.org/packages/27/98/e2f151d958bea25682118c68f22e49fe98d8797aadfbf0d5df0288118c6d/regex-2023.12.25-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcc2b3c89e9c8933ceb2a8f56fcd25f1133f21d8e490fbdbd76160dfc2c83a6e",
                "md5": "f072029c5eef76ddf48168772542df14",
                "sha256": "d902a43085a308cef32c0d3aea962524b725403fd9373dea18110904003bac97"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f072029c5eef76ddf48168772542df14",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 296466,
            "upload_time": "2023-12-24T02:44:19",
            "upload_time_iso_8601": "2023-12-24T02:44:19.904595Z",
            "url": "https://files.pythonhosted.org/packages/dc/c2/b3c89e9c8933ceb2a8f56fcd25f1133f21d8e490fbdbd76160dfc2c83a6e/regex-2023.12.25-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "609e4b0223e05776aa3be806a902093b2ab1de3ba26b652d92065d5c7e1d4df3",
                "md5": "863f2fda813253e163af1205e4909b9b",
                "sha256": "d166eafc19f4718df38887b2bbe1467a4f74a9830e8605089ea7a30dd4da8887"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "863f2fda813253e163af1205e4909b9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 291038,
            "upload_time": "2023-12-24T02:44:23",
            "upload_time_iso_8601": "2023-12-24T02:44:23.503900Z",
            "url": "https://files.pythonhosted.org/packages/60/9e/4b0223e05776aa3be806a902093b2ab1de3ba26b652d92065d5c7e1d4df3/regex-2023.12.25-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b71b55b5ffc75918a96ea99794783524609ac3ff9e2d8f51e7ece8648a968f6",
                "md5": "d16bc8cf065496e6f0c11cfd3dd4ec7c",
                "sha256": "c7ad32824b7f02bb3c9f80306d405a1d9b7bb89362d68b3c5a9be53836caebdb"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d16bc8cf065496e6f0c11cfd3dd4ec7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 783871,
            "upload_time": "2023-12-24T02:44:26",
            "upload_time_iso_8601": "2023-12-24T02:44:26.682104Z",
            "url": "https://files.pythonhosted.org/packages/9b/71/b55b5ffc75918a96ea99794783524609ac3ff9e2d8f51e7ece8648a968f6/regex-2023.12.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c169b9671621092a1f9b16892bc638368efb3ce00648ce79b91d472feaa740c9",
                "md5": "0a91ae5119e30298ba898c41093cf1ee",
                "sha256": "636ba0a77de609d6510235b7f0e77ec494d2657108f777e8765efc060094c98c"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0a91ae5119e30298ba898c41093cf1ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 823445,
            "upload_time": "2023-12-24T02:44:30",
            "upload_time_iso_8601": "2023-12-24T02:44:30.300119Z",
            "url": "https://files.pythonhosted.org/packages/c1/69/b9671621092a1f9b16892bc638368efb3ce00648ce79b91d472feaa740c9/regex-2023.12.25-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dfc8ade283909c52f795bdc9b9fe44f85c6da5417f9be84c3d245706406551e",
                "md5": "f76ed043c59988d4ccc660a9a49fa396",
                "sha256": "0fda75704357805eb953a3ee15a2b240694a9a514548cd49b3c5124b4e2ad01b"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f76ed043c59988d4ccc660a9a49fa396",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 810161,
            "upload_time": "2023-12-24T02:44:33",
            "upload_time_iso_8601": "2023-12-24T02:44:33.109407Z",
            "url": "https://files.pythonhosted.org/packages/8d/fc/8ade283909c52f795bdc9b9fe44f85c6da5417f9be84c3d245706406551e/regex-2023.12.25-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d6b2f6478814954c07c04ba60b78d688d3d7bab10d786e0b6c1db607e4f6673",
                "md5": "11955fdd8554b850ae5e16888ba3bca7",
                "sha256": "f72cbae7f6b01591f90814250e636065850c5926751af02bb48da94dfced7baa"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11955fdd8554b850ae5e16888ba3bca7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 785105,
            "upload_time": "2023-12-24T02:44:36",
            "upload_time_iso_8601": "2023-12-24T02:44:36.327231Z",
            "url": "https://files.pythonhosted.org/packages/8d/6b/2f6478814954c07c04ba60b78d688d3d7bab10d786e0b6c1db607e4f6673/regex-2023.12.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a3a9601d6e8a49ce7a124268c4c79d54f22416242e5096cd4fca07f7bfac46b",
                "md5": "ac517bead52c659d16e4bec797378571",
                "sha256": "db2a0b1857f18b11e3b0e54ddfefc96af46b0896fb678c85f63fb8c37518b3e7"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ac517bead52c659d16e4bec797378571",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 772823,
            "upload_time": "2023-12-24T02:44:39",
            "upload_time_iso_8601": "2023-12-24T02:44:39.319697Z",
            "url": "https://files.pythonhosted.org/packages/2a/3a/9601d6e8a49ce7a124268c4c79d54f22416242e5096cd4fca07f7bfac46b/regex-2023.12.25-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8b5882aa0697e46d29a9f796c91221e03b1beec3c29664718c7d26ce05e7fb8",
                "md5": "aa20eff8a9a47f61d98dfcd36b5f1679",
                "sha256": "7502534e55c7c36c0978c91ba6f61703faf7ce733715ca48f499d3dbbd7657e0"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aa20eff8a9a47f61d98dfcd36b5f1679",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 749953,
            "upload_time": "2023-12-24T02:44:42",
            "upload_time_iso_8601": "2023-12-24T02:44:42.078389Z",
            "url": "https://files.pythonhosted.org/packages/c8/b5/882aa0697e46d29a9f796c91221e03b1beec3c29664718c7d26ce05e7fb8/regex-2023.12.25-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00d4d876ce23d76103db84f3b2aeb3cba7c6b9b5750a2e2125ef6bfa2be53deb",
                "md5": "89bff4cc08a3c71db9102ccf92565de9",
                "sha256": "e8c7e08bb566de4faaf11984af13f6bcf6a08f327b13631d41d62592681d24fe"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "89bff4cc08a3c71db9102ccf92565de9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 738427,
            "upload_time": "2023-12-24T02:44:45",
            "upload_time_iso_8601": "2023-12-24T02:44:45.349546Z",
            "url": "https://files.pythonhosted.org/packages/00/d4/d876ce23d76103db84f3b2aeb3cba7c6b9b5750a2e2125ef6bfa2be53deb/regex-2023.12.25-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "700f311ada39601c7bd7904b6ab3b01b414438a16efab5f2009f35a273999942",
                "md5": "3428f43d4ea452d58f1fe74c52ccdcec",
                "sha256": "283fc8eed679758de38fe493b7d7d84a198b558942b03f017b1f94dda8efae80"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3428f43d4ea452d58f1fe74c52ccdcec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 770450,
            "upload_time": "2023-12-24T02:44:48",
            "upload_time_iso_8601": "2023-12-24T02:44:48.610137Z",
            "url": "https://files.pythonhosted.org/packages/70/0f/311ada39601c7bd7904b6ab3b01b414438a16efab5f2009f35a273999942/regex-2023.12.25-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e36629a1feac5c69907fedd6b3d8562d5ddc7c28fdf8585da6484617fe4c0b5e",
                "md5": "252cefe620f3a6764fac9cb760c4c98d",
                "sha256": "f44dd4d68697559d007462b0a3a1d9acd61d97072b71f6d1968daef26bc744bd"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "252cefe620f3a6764fac9cb760c4c98d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 776326,
            "upload_time": "2023-12-24T02:44:52",
            "upload_time_iso_8601": "2023-12-24T02:44:52.339736Z",
            "url": "https://files.pythonhosted.org/packages/e3/66/29a1feac5c69907fedd6b3d8562d5ddc7c28fdf8585da6484617fe4c0b5e/regex-2023.12.25-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9733101559f6506a98b55613efa484d072d23fdeca3ef6876d43a8c49c7ec65f",
                "md5": "119b06694cf742083694db189f05f8f2",
                "sha256": "67d3ccfc590e5e7197750fcb3a2915b416a53e2de847a728cfa60141054123d4"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "119b06694cf742083694db189f05f8f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 752942,
            "upload_time": "2023-12-24T02:44:55",
            "upload_time_iso_8601": "2023-12-24T02:44:55.186136Z",
            "url": "https://files.pythonhosted.org/packages/97/33/101559f6506a98b55613efa484d072d23fdeca3ef6876d43a8c49c7ec65f/regex-2023.12.25-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "922a6431462df58f29515be33fa8b3800efa73b2be47664e71af557101e2a733",
                "md5": "1be4dcd4e2be5dafa277dbccae1d6eb9",
                "sha256": "68191f80a9bad283432385961d9efe09d783bcd36ed35a60fb1ff3f1ec2efe87"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "1be4dcd4e2be5dafa277dbccae1d6eb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 257757,
            "upload_time": "2023-12-24T02:44:58",
            "upload_time_iso_8601": "2023-12-24T02:44:58.375668Z",
            "url": "https://files.pythonhosted.org/packages/92/2a/6431462df58f29515be33fa8b3800efa73b2be47664e71af557101e2a733/regex-2023.12.25-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a80118232f93672c1d530834e2e0568a80eaab1df12d67ae499b1762ab462b5c",
                "md5": "521ba3667331a67a9b454d609ed829d0",
                "sha256": "7d2af3f6b8419661a0c421584cfe8aaec1c0e435ce7e47ee2a97e344b98f794f"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "521ba3667331a67a9b454d609ed829d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 269492,
            "upload_time": "2023-12-24T02:45:01",
            "upload_time_iso_8601": "2023-12-24T02:45:01.622703Z",
            "url": "https://files.pythonhosted.org/packages/a8/01/18232f93672c1d530834e2e0568a80eaab1df12d67ae499b1762ab462b5c/regex-2023.12.25-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bb814527ca54351156f65c90f8728ee62e646a484dbce0e4cbffb34489e5bb0",
                "md5": "40a59bd9ae5e1dabf9c547a9e22abe17",
                "sha256": "8a0ccf52bb37d1a700375a6b395bff5dd15c50acb745f7db30415bae3c2b0715"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "40a59bd9ae5e1dabf9c547a9e22abe17",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 500440,
            "upload_time": "2023-12-24T02:45:05",
            "upload_time_iso_8601": "2023-12-24T02:45:05.657917Z",
            "url": "https://files.pythonhosted.org/packages/8b/b8/14527ca54351156f65c90f8728ee62e646a484dbce0e4cbffb34489e5bb0/regex-2023.12.25-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bd45498d06a7a05be1b3e1e553d60fb61292afe5ca9fdc2aea5283f30651f1b",
                "md5": "b5a309db18b701a3ffc17b2c5d74f26a",
                "sha256": "c3c4a78615b7762740531c27cf46e2f388d8d727d0c0c739e72048beb26c8a9d"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5a309db18b701a3ffc17b2c5d74f26a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 298103,
            "upload_time": "2023-12-24T02:45:08",
            "upload_time_iso_8601": "2023-12-24T02:45:08.693811Z",
            "url": "https://files.pythonhosted.org/packages/0b/d4/5498d06a7a05be1b3e1e553d60fb61292afe5ca9fdc2aea5283f30651f1b/regex-2023.12.25-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "666590e759a89534b850fa20e533e587748e967c44f58333b40f6d62718df1b1",
                "md5": "d7880088a3d2674493dc716ee9c3c0c1",
                "sha256": "ad83e7545b4ab69216cef4cc47e344d19622e28aabec61574b20257c65466d6a"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d7880088a3d2674493dc716ee9c3c0c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 292245,
            "upload_time": "2023-12-24T02:45:11",
            "upload_time_iso_8601": "2023-12-24T02:45:11.775815Z",
            "url": "https://files.pythonhosted.org/packages/66/65/90e759a89534b850fa20e533e587748e967c44f58333b40f6d62718df1b1/regex-2023.12.25-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b529ddfd602f350a5f71926fec1f6f1ba9f5fcc7a05b36b364009904a119dfc7",
                "md5": "ec5eccc93f92d5442cf10c5a2a800507",
                "sha256": "b7a635871143661feccce3979e1727c4e094f2bdfd3ec4b90dfd4f16f571a87a"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ec5eccc93f92d5442cf10c5a2a800507",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 786060,
            "upload_time": "2023-12-24T02:45:14",
            "upload_time_iso_8601": "2023-12-24T02:45:14.919301Z",
            "url": "https://files.pythonhosted.org/packages/b5/29/ddfd602f350a5f71926fec1f6f1ba9f5fcc7a05b36b364009904a119dfc7/regex-2023.12.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1baaf9beeee2217de48fd47d68fc5ea9655f66440b33fa8212bad42427fe3587",
                "md5": "a98e81d5e1af0102ef16335325f7ca45",
                "sha256": "d498eea3f581fbe1b34b59c697512a8baef88212f92e4c7830fcc1499f5b45a5"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a98e81d5e1af0102ef16335325f7ca45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 829520,
            "upload_time": "2023-12-24T02:45:18",
            "upload_time_iso_8601": "2023-12-24T02:45:18.199811Z",
            "url": "https://files.pythonhosted.org/packages/1b/aa/f9beeee2217de48fd47d68fc5ea9655f66440b33fa8212bad42427fe3587/regex-2023.12.25-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2da2b04560d91bdf49d3ca519c08db68a5d37d02e526b491f1a5c179ec3d21d",
                "md5": "ddf3fa4cb6bb97035082db1d8ff2db26",
                "sha256": "43f7cd5754d02a56ae4ebb91b33461dc67be8e3e0153f593c509e21d219c5060"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ddf3fa4cb6bb97035082db1d8ff2db26",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 814727,
            "upload_time": "2023-12-24T02:45:21",
            "upload_time_iso_8601": "2023-12-24T02:45:21.270560Z",
            "url": "https://files.pythonhosted.org/packages/a2/da/2b04560d91bdf49d3ca519c08db68a5d37d02e526b491f1a5c179ec3d21d/regex-2023.12.25-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe4e242050c3ff38c08f16b31a5a338525def3f85b819fc0c5a97c35217098a7",
                "md5": "99a8d118c6496a4f93e5f1f14cd389b4",
                "sha256": "51f4b32f793812714fd5307222a7f77e739b9bc566dc94a18126aba3b92b98a3"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99a8d118c6496a4f93e5f1f14cd389b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 789110,
            "upload_time": "2023-12-24T02:45:24",
            "upload_time_iso_8601": "2023-12-24T02:45:24.564645Z",
            "url": "https://files.pythonhosted.org/packages/fe/4e/242050c3ff38c08f16b31a5a338525def3f85b819fc0c5a97c35217098a7/regex-2023.12.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9ef14fcc5f19b0e72b64d4d530ae9bb8ba9739f6ced9c80d061c68ff93d5ebc",
                "md5": "a4dbc00358d9c74bade43e85cf4de525",
                "sha256": "ba99d8077424501b9616b43a2d208095746fb1284fc5ba490139651f971d39d9"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a4dbc00358d9c74bade43e85cf4de525",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 777017,
            "upload_time": "2023-12-24T02:45:28",
            "upload_time_iso_8601": "2023-12-24T02:45:28.227326Z",
            "url": "https://files.pythonhosted.org/packages/f9/ef/14fcc5f19b0e72b64d4d530ae9bb8ba9739f6ced9c80d061c68ff93d5ebc/regex-2023.12.25-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48d741efecdd60b117d60618620b0d2af5d0638d1955c9266a5492235ed38fc8",
                "md5": "22dd32202d9ce19915ca9da11fd9178f",
                "sha256": "4bfc2b16e3ba8850e0e262467275dd4d62f0d045e0e9eda2bc65078c0110a11f"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "22dd32202d9ce19915ca9da11fd9178f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 751262,
            "upload_time": "2023-12-24T02:45:31",
            "upload_time_iso_8601": "2023-12-24T02:45:31.719239Z",
            "url": "https://files.pythonhosted.org/packages/48/d7/41efecdd60b117d60618620b0d2af5d0638d1955c9266a5492235ed38fc8/regex-2023.12.25-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d4d5546af3d7b50ccc10eb511bec0a1029821882be76c49d8c79116163e6a62",
                "md5": "e51f7f8a36722ce192e02570143d67db",
                "sha256": "8c2c19dae8a3eb0ea45a8448356ed561be843b13cbc34b840922ddf565498c1c"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "e51f7f8a36722ce192e02570143d67db",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 742481,
            "upload_time": "2023-12-24T02:45:34",
            "upload_time_iso_8601": "2023-12-24T02:45:34.463625Z",
            "url": "https://files.pythonhosted.org/packages/8d/4d/5546af3d7b50ccc10eb511bec0a1029821882be76c49d8c79116163e6a62/regex-2023.12.25-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6b25f135bae42695796b5b68eb7d1aa00d39d16c39e1a60a3e0892ac8c73edc",
                "md5": "3f267143a0fc617d9c77d63c0afdc9fb",
                "sha256": "60080bb3d8617d96f0fb7e19796384cc2467447ef1c491694850ebd3670bc457"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3f267143a0fc617d9c77d63c0afdc9fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 775170,
            "upload_time": "2023-12-24T02:45:37",
            "upload_time_iso_8601": "2023-12-24T02:45:37.755452Z",
            "url": "https://files.pythonhosted.org/packages/c6/b2/5f135bae42695796b5b68eb7d1aa00d39d16c39e1a60a3e0892ac8c73edc/regex-2023.12.25-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12ea73cc9fea46f631a2b36347b7de9d20c9120a45b53924496fe75b9b467682",
                "md5": "14e35c5fca4e397b52fcb25ab8126006",
                "sha256": "b77e27b79448e34c2c51c09836033056a0547aa360c45eeeb67803da7b0eedaf"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "14e35c5fca4e397b52fcb25ab8126006",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 779331,
            "upload_time": "2023-12-24T02:45:41",
            "upload_time_iso_8601": "2023-12-24T02:45:41.135902Z",
            "url": "https://files.pythonhosted.org/packages/12/ea/73cc9fea46f631a2b36347b7de9d20c9120a45b53924496fe75b9b467682/regex-2023.12.25-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa53b473865d5b44d1395874f0b88df5143def8ef2f7bd11424083260aa93461",
                "md5": "519b4ad5f03ad3edb298a106346273ae",
                "sha256": "518440c991f514331f4850a63560321f833979d145d7d81186dbe2f19e27ae3d"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "519b4ad5f03ad3edb298a106346273ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 759727,
            "upload_time": "2023-12-24T02:45:44",
            "upload_time_iso_8601": "2023-12-24T02:45:44.370707Z",
            "url": "https://files.pythonhosted.org/packages/fa/53/b473865d5b44d1395874f0b88df5143def8ef2f7bd11424083260aa93461/regex-2023.12.25-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64c7700257786f4d4974993364469438ac7498288c2b4aa683dc3230de3fd42d",
                "md5": "6581dcdbb1718fb795523065b3e8edc6",
                "sha256": "e2610e9406d3b0073636a3a2e80db05a02f0c3169b5632022b4e81c0364bcda5"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "6581dcdbb1718fb795523065b3e8edc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 258108,
            "upload_time": "2023-12-24T02:45:47",
            "upload_time_iso_8601": "2023-12-24T02:45:47.585715Z",
            "url": "https://files.pythonhosted.org/packages/64/c7/700257786f4d4974993364469438ac7498288c2b4aa683dc3230de3fd42d/regex-2023.12.25-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1daf4bd17254cdda1d8092460ee5561f013c4ca9c33ecf1aab81b44280327cab",
                "md5": "2584037db69f3d4a1d493675df50ec7d",
                "sha256": "cc37b9aeebab425f11f27e5e9e6cf580be7206c6582a64467a14dda211abc232"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2584037db69f3d4a1d493675df50ec7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 268934,
            "upload_time": "2023-12-24T02:45:51",
            "upload_time_iso_8601": "2023-12-24T02:45:51.112892Z",
            "url": "https://files.pythonhosted.org/packages/1d/af/4bd17254cdda1d8092460ee5561f013c4ca9c33ecf1aab81b44280327cab/regex-2023.12.25-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bea8165b58247039958bac3be16ea6d96b868c3e535fd96e2b102f1c04e9ca21",
                "md5": "6b0fbb31b583f1ed040809152df9f390",
                "sha256": "da695d75ac97cb1cd725adac136d25ca687da4536154cdc2815f576e4da11c69"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b0fbb31b583f1ed040809152df9f390",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 296894,
            "upload_time": "2023-12-24T02:45:53",
            "upload_time_iso_8601": "2023-12-24T02:45:53.891695Z",
            "url": "https://files.pythonhosted.org/packages/be/a8/165b58247039958bac3be16ea6d96b868c3e535fd96e2b102f1c04e9ca21/regex-2023.12.25-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32917a7e2c80280df22b93c4aff5c8d1ef42f741a938f20ad7de68adc55e2a7b",
                "md5": "0c3ad065408beeddf7a30deb16f3e207",
                "sha256": "d126361607b33c4eb7b36debc173bf25d7805847346dd4d99b5499e1fef52bc7"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0c3ad065408beeddf7a30deb16f3e207",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 760342,
            "upload_time": "2023-12-24T02:45:57",
            "upload_time_iso_8601": "2023-12-24T02:45:57.122992Z",
            "url": "https://files.pythonhosted.org/packages/32/91/7a7e2c80280df22b93c4aff5c8d1ef42f741a938f20ad7de68adc55e2a7b/regex-2023.12.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c6cc3c1c4f8249371546a6a4b43ce360d8fa8970ffef1e4a276f4cc9e9b8565",
                "md5": "d1ac0d372c7edd34f556a8f79c7cbf98",
                "sha256": "4719bb05094d7d8563a450cf8738d2e1061420f79cfcc1fa7f0a44744c4d8f73"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d1ac0d372c7edd34f556a8f79c7cbf98",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 801243,
            "upload_time": "2023-12-24T02:46:00",
            "upload_time_iso_8601": "2023-12-24T02:46:00.404916Z",
            "url": "https://files.pythonhosted.org/packages/4c/6c/c3c1c4f8249371546a6a4b43ce360d8fa8970ffef1e4a276f4cc9e9b8565/regex-2023.12.25-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb00208ce4387c9ef72b751c34c4c84667bd8b47a70f3a6cc26f2240f8aab97e",
                "md5": "d5c324c0d9e50a531fd6469b8a2aa56d",
                "sha256": "5dd58946bce44b53b06d94aa95560d0b243eb2fe64227cba50017a8d8b3cd3e2"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d5c324c0d9e50a531fd6469b8a2aa56d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 786509,
            "upload_time": "2023-12-24T02:46:04",
            "upload_time_iso_8601": "2023-12-24T02:46:04.191988Z",
            "url": "https://files.pythonhosted.org/packages/eb/00/208ce4387c9ef72b751c34c4c84667bd8b47a70f3a6cc26f2240f8aab97e/regex-2023.12.25-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef2e1e93f6c7a303cc08d9562c96030924b24d45419a78a288ebd6dc61a2246c",
                "md5": "1c92183001d4e66499a47e9999b9d04a",
                "sha256": "22a86d9fff2009302c440b9d799ef2fe322416d2d58fc124b926aa89365ec482"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c92183001d4e66499a47e9999b9d04a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 761606,
            "upload_time": "2023-12-24T02:46:07",
            "upload_time_iso_8601": "2023-12-24T02:46:07.602622Z",
            "url": "https://files.pythonhosted.org/packages/ef/2e/1e93f6c7a303cc08d9562c96030924b24d45419a78a288ebd6dc61a2246c/regex-2023.12.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30ca330269e793b12059dd2a220fa6a62d31e7397afe59b92e993ec66b71d9b1",
                "md5": "956b80f176b2ab763e4598de115ca96f",
                "sha256": "2aae8101919e8aa05ecfe6322b278f41ce2994c4a430303c4cd163fef746e04f"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "956b80f176b2ab763e4598de115ca96f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 749071,
            "upload_time": "2023-12-24T02:46:10",
            "upload_time_iso_8601": "2023-12-24T02:46:10.439323Z",
            "url": "https://files.pythonhosted.org/packages/30/ca/330269e793b12059dd2a220fa6a62d31e7397afe59b92e993ec66b71d9b1/regex-2023.12.25-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7be6f22ad63b72ff39101d7b7dbeff81a78bc8b82b1106c8b73d1c460983c885",
                "md5": "aeb4d09ece12f12c0a103f57234e5373",
                "sha256": "e692296c4cc2873967771345a876bcfc1c547e8dd695c6b89342488b0ea55cd8"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aeb4d09ece12f12c0a103f57234e5373",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 681463,
            "upload_time": "2023-12-24T02:46:13",
            "upload_time_iso_8601": "2023-12-24T02:46:13.756914Z",
            "url": "https://files.pythonhosted.org/packages/7b/e6/f22ad63b72ff39101d7b7dbeff81a78bc8b82b1106c8b73d1c460983c885/regex-2023.12.25-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "833e3b0cd5bac2e1c3dda2340e8d46d922b37ccda31ffe24adfcd1c54a6fcae4",
                "md5": "1f372f0e14c1bdf3b7e2aa55f3817892",
                "sha256": "263ef5cc10979837f243950637fffb06e8daed7f1ac1e39d5910fd29929e489a"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1f372f0e14c1bdf3b7e2aa55f3817892",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 732622,
            "upload_time": "2023-12-24T02:46:17",
            "upload_time_iso_8601": "2023-12-24T02:46:17.117873Z",
            "url": "https://files.pythonhosted.org/packages/83/3e/3b0cd5bac2e1c3dda2340e8d46d922b37ccda31ffe24adfcd1c54a6fcae4/regex-2023.12.25-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5492d83a9332d97b750cf964a2e8c6c689cc32a328dc7f82379d887ca641968",
                "md5": "9528a06cbab5d90cffd1f936d6e3d9c8",
                "sha256": "d6f7e255e5fa94642a0724e35406e6cb7001c09d476ab5fce002f652b36d0c39"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9528a06cbab5d90cffd1f936d6e3d9c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 724205,
            "upload_time": "2023-12-24T02:46:19",
            "upload_time_iso_8601": "2023-12-24T02:46:19.886393Z",
            "url": "https://files.pythonhosted.org/packages/a5/49/2d83a9332d97b750cf964a2e8c6c689cc32a328dc7f82379d887ca641968/regex-2023.12.25-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8448c81700465f3fd13ba01bdc2d262339d03aa57d319db3a863889d143a252",
                "md5": "9d03b1008e589a10ab7043d5a611ef51",
                "sha256": "88ad44e220e22b63b0f8f81f007e8abbb92874d8ced66f32571ef8beb0643b2b"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9d03b1008e589a10ab7043d5a611ef51",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 755789,
            "upload_time": "2023-12-24T02:46:23",
            "upload_time_iso_8601": "2023-12-24T02:46:23.474500Z",
            "url": "https://files.pythonhosted.org/packages/d8/44/8c81700465f3fd13ba01bdc2d262339d03aa57d319db3a863889d143a252/regex-2023.12.25-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f29e42b68eb9000707e82abe0c360cf46e73d457321b51e62a4dfb5938b148c6",
                "md5": "881e142dc3389018dcf3fc6a4b4bbf69",
                "sha256": "3a17d3ede18f9cedcbe23d2daa8a2cd6f59fe2bf082c567e43083bba3fb00347"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "881e142dc3389018dcf3fc6a4b4bbf69",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 757399,
            "upload_time": "2023-12-24T02:46:26",
            "upload_time_iso_8601": "2023-12-24T02:46:26.842074Z",
            "url": "https://files.pythonhosted.org/packages/f2/9e/42b68eb9000707e82abe0c360cf46e73d457321b51e62a4dfb5938b148c6/regex-2023.12.25-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a6106e359b43c1a2cc288899846eea298aead9821098f58ccffecd167505aba",
                "md5": "12cf5942b4193099337eae458170d849",
                "sha256": "d15b274f9e15b1a0b7a45d2ac86d1f634d983ca40d6b886721626c47a400bf39"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12cf5942b4193099337eae458170d849",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 733529,
            "upload_time": "2023-12-24T02:46:29",
            "upload_time_iso_8601": "2023-12-24T02:46:29.794098Z",
            "url": "https://files.pythonhosted.org/packages/4a/61/06e359b43c1a2cc288899846eea298aead9821098f58ccffecd167505aba/regex-2023.12.25-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e624227b2ad7232fa8cdd34ab35cea2269b605900d7139af3e3fae0fa53a81c",
                "md5": "cdc8cdbc6966c51b2b93c9c5309a7944",
                "sha256": "ed19b3a05ae0c97dd8f75a5d8f21f7723a8c33bbc555da6bbe1f96c470139d3c"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "cdc8cdbc6966c51b2b93c9c5309a7944",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 257567,
            "upload_time": "2023-12-24T02:46:32",
            "upload_time_iso_8601": "2023-12-24T02:46:32.681463Z",
            "url": "https://files.pythonhosted.org/packages/6e/62/4227b2ad7232fa8cdd34ab35cea2269b605900d7139af3e3fae0fa53a81c/regex-2023.12.25-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57c999a839d1a5dbdec67c4959bbb371818b435f6128616ac95140406bd2d1cc",
                "md5": "26a8acc3806596b9be39015093414d83",
                "sha256": "a6d1047952c0b8104a1d371f88f4ab62e6275567d4458c1e26e9627ad489b445"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "26a8acc3806596b9be39015093414d83",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 270181,
            "upload_time": "2023-12-24T02:46:36",
            "upload_time_iso_8601": "2023-12-24T02:46:36.100497Z",
            "url": "https://files.pythonhosted.org/packages/57/c9/99a839d1a5dbdec67c4959bbb371818b435f6128616ac95140406bd2d1cc/regex-2023.12.25-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b4ca029f68882fd9689e895ea4f304987fe853a03cee010b0c00c5278d03554",
                "md5": "579b83d93a9c81b060e9a4bbf86b0619",
                "sha256": "b43523d7bc2abd757119dbfb38af91b5735eea45537ec6ec3a5ec3f9562a1c53"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "579b83d93a9c81b060e9a4bbf86b0619",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 497312,
            "upload_time": "2023-12-24T02:46:39",
            "upload_time_iso_8601": "2023-12-24T02:46:39.507169Z",
            "url": "https://files.pythonhosted.org/packages/2b/4c/a029f68882fd9689e895ea4f304987fe853a03cee010b0c00c5278d03554/regex-2023.12.25-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e562765114c47f070e2fbe6788a96798383a8b9cf1e1baab4035288295dedc6c",
                "md5": "dbae21e81f86e1212797c27ff57f1152",
                "sha256": "efb2d82f33b2212898f1659fb1c2e9ac30493ac41e4d53123da374c3b5541e64"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dbae21e81f86e1212797c27ff57f1152",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 296372,
            "upload_time": "2023-12-24T02:46:42",
            "upload_time_iso_8601": "2023-12-24T02:46:42.854494Z",
            "url": "https://files.pythonhosted.org/packages/e5/62/765114c47f070e2fbe6788a96798383a8b9cf1e1baab4035288295dedc6c/regex-2023.12.25-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7adc44702756cd84b49bc40a02c8a856813341eb35904e35b4efc1357f41c8c",
                "md5": "13bbd89466ddd5eb2e0fb351c6b6adcc",
                "sha256": "b7fca9205b59c1a3d5031f7e64ed627a1074730a51c2a80e97653e3e9fa0d415"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "13bbd89466ddd5eb2e0fb351c6b6adcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 291007,
            "upload_time": "2023-12-24T02:46:45",
            "upload_time_iso_8601": "2023-12-24T02:46:45.490085Z",
            "url": "https://files.pythonhosted.org/packages/d7/ad/c44702756cd84b49bc40a02c8a856813341eb35904e35b4efc1357f41c8c/regex-2023.12.25-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae0429f5b681c3e4f0cdabdf3b98e7f211385be2de8cbf2577f130d421c7fae5",
                "md5": "4e70d771bdd8f8f44e71465948b81898",
                "sha256": "086dd15e9435b393ae06f96ab69ab2d333f5d65cbe65ca5a3ef0ec9564dfe770"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4e70d771bdd8f8f44e71465948b81898",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 776845,
            "upload_time": "2023-12-24T02:46:48",
            "upload_time_iso_8601": "2023-12-24T02:46:48.473401Z",
            "url": "https://files.pythonhosted.org/packages/ae/04/29f5b681c3e4f0cdabdf3b98e7f211385be2de8cbf2577f130d421c7fae5/regex-2023.12.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2617f3ac9acb68205cfe5c0ef2210e9982260db817967bfea74871339ea1629",
                "md5": "4f8f07350bf1d0307c72d5ab6fc135d4",
                "sha256": "e81469f7d01efed9b53740aedd26085f20d49da65f9c1f41e822a33992cb1590"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4f8f07350bf1d0307c72d5ab6fc135d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 818095,
            "upload_time": "2023-12-24T02:46:51",
            "upload_time_iso_8601": "2023-12-24T02:46:51.400430Z",
            "url": "https://files.pythonhosted.org/packages/b2/61/7f3ac9acb68205cfe5c0ef2210e9982260db817967bfea74871339ea1629/regex-2023.12.25-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d57c5a531f7690ede1028ba80a78e45c7fd2d7481e316c6f18bf689d24852f2f",
                "md5": "09a4ee86d36a54d6a476748e720a114a",
                "sha256": "34e4af5b27232f68042aa40a91c3b9bb4da0eeb31b7632e0091afc4310afe6cb"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "09a4ee86d36a54d6a476748e720a114a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 802344,
            "upload_time": "2023-12-24T02:46:54",
            "upload_time_iso_8601": "2023-12-24T02:46:54.819825Z",
            "url": "https://files.pythonhosted.org/packages/d5/7c/5a531f7690ede1028ba80a78e45c7fd2d7481e316c6f18bf689d24852f2f/regex-2023.12.25-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb104ccc8eed80f11c082a2883d49d4090aa80c7f65704216a529f490cb089b1",
                "md5": "9aa948b3f4767e0e3ddfa939ef28b267",
                "sha256": "9852b76ab558e45b20bf1893b59af64a28bd3820b0c2efc80e0a70a4a3ea51c1"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9aa948b3f4767e0e3ddfa939ef28b267",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 777012,
            "upload_time": "2023-12-24T02:46:57",
            "upload_time_iso_8601": "2023-12-24T02:46:57.711466Z",
            "url": "https://files.pythonhosted.org/packages/eb/10/4ccc8eed80f11c082a2883d49d4090aa80c7f65704216a529f490cb089b1/regex-2023.12.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57592fb680ddb311087fa92d36ac471d2c973cfe6b8ff4a8c2b6d6ad125d67e2",
                "md5": "951e34d710138a5fa4189932462a8b80",
                "sha256": "ff100b203092af77d1a5a7abe085b3506b7eaaf9abf65b73b7d6905b6cb76988"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "951e34d710138a5fa4189932462a8b80",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 764456,
            "upload_time": "2023-12-24T02:47:01",
            "upload_time_iso_8601": "2023-12-24T02:47:01.749382Z",
            "url": "https://files.pythonhosted.org/packages/57/59/2fb680ddb311087fa92d36ac471d2c973cfe6b8ff4a8c2b6d6ad125d67e2/regex-2023.12.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b82fdbfade801c0d19eaee278b2f2d45c1106158676078f1e95b6716dc0c8d53",
                "md5": "a80064c9755908ba0714959b6be0af66",
                "sha256": "cc038b2d8b1470364b1888a98fd22d616fba2b6309c5b5f181ad4483e0017861"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a80064c9755908ba0714959b6be0af66",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 695762,
            "upload_time": "2023-12-24T02:47:05",
            "upload_time_iso_8601": "2023-12-24T02:47:05.135996Z",
            "url": "https://files.pythonhosted.org/packages/b8/2f/dbfade801c0d19eaee278b2f2d45c1106158676078f1e95b6716dc0c8d53/regex-2023.12.25-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50b72031d4f803db9eb66cfc1ebf56ca0ce5261961c44088d22a412e962bcd85",
                "md5": "e8044121ae46e764232a16cc9d59f91c",
                "sha256": "094ba386bb5c01e54e14434d4caabf6583334090865b23ef58e0424a6286d3dc"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e8044121ae46e764232a16cc9d59f91c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 748479,
            "upload_time": "2023-12-24T02:47:08",
            "upload_time_iso_8601": "2023-12-24T02:47:08.203118Z",
            "url": "https://files.pythonhosted.org/packages/50/b7/2031d4f803db9eb66cfc1ebf56ca0ce5261961c44088d22a412e962bcd85/regex-2023.12.25-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "434aa8005c5aa6bb602fcfab48fa729a05eceade6400d6468dbe713f1796795f",
                "md5": "5ca76b480db94a5e5aad6e7634624bbc",
                "sha256": "5cd05d0f57846d8ba4b71d9c00f6f37d6b97d5e5ef8b3c3840426a475c8f70f4"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5ca76b480db94a5e5aad6e7634624bbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 738078,
            "upload_time": "2023-12-24T02:47:11",
            "upload_time_iso_8601": "2023-12-24T02:47:11.472404Z",
            "url": "https://files.pythonhosted.org/packages/43/4a/a8005c5aa6bb602fcfab48fa729a05eceade6400d6468dbe713f1796795f/regex-2023.12.25-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82713f613eb12ee0513c4cf7eea5be8bb067a6e07523279f6743d7d3d7c62b22",
                "md5": "07470767e5aa08b82a96defa5126282b",
                "sha256": "9aa1a67bbf0f957bbe096375887b2505f5d8ae16bf04488e8b0f334c36e31360"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "07470767e5aa08b82a96defa5126282b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 769029,
            "upload_time": "2023-12-24T02:47:14",
            "upload_time_iso_8601": "2023-12-24T02:47:14.932841Z",
            "url": "https://files.pythonhosted.org/packages/82/71/3f613eb12ee0513c4cf7eea5be8bb067a6e07523279f6743d7d3d7c62b22/regex-2023.12.25-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5fbd7d23657fb16e5e01e1129c8b2a2445c884854e188e62655c0285b1cf44b",
                "md5": "af73efa024dce755b30cd8d720534a82",
                "sha256": "98a2636994f943b871786c9e82bfe7883ecdaba2ef5df54e1450fa9869d1f756"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "af73efa024dce755b30cd8d720534a82",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 771190,
            "upload_time": "2023-12-24T02:47:18",
            "upload_time_iso_8601": "2023-12-24T02:47:18.315750Z",
            "url": "https://files.pythonhosted.org/packages/c5/fb/d7d23657fb16e5e01e1129c8b2a2445c884854e188e62655c0285b1cf44b/regex-2023.12.25-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49cd4740e6bf0a6d8f00e07be0ea9072548a7d0f80bf7f899291a9381a5e7b92",
                "md5": "1bfdfe1609fdc9ba15d2fd3fd6c0d0ce",
                "sha256": "37f8e93a81fc5e5bd8db7e10e62dc64261bcd88f8d7e6640aaebe9bc180d9ce2"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1bfdfe1609fdc9ba15d2fd3fd6c0d0ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 752386,
            "upload_time": "2023-12-24T02:47:22",
            "upload_time_iso_8601": "2023-12-24T02:47:22.201512Z",
            "url": "https://files.pythonhosted.org/packages/49/cd/4740e6bf0a6d8f00e07be0ea9072548a7d0f80bf7f899291a9381a5e7b92/regex-2023.12.25-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c488413b04134176a59bb40a42f680a3b3ce132c1a3d73ab9d5f5db40874b7c",
                "md5": "0717310d120d9f99b44a1d7b17b8d0cd",
                "sha256": "d78bd484930c1da2b9679290a41cdb25cc127d783768a0369d6b449e72f88beb"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "0717310d120d9f99b44a1d7b17b8d0cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 257775,
            "upload_time": "2023-12-24T02:47:25",
            "upload_time_iso_8601": "2023-12-24T02:47:25.177288Z",
            "url": "https://files.pythonhosted.org/packages/0c/48/8413b04134176a59bb40a42f680a3b3ce132c1a3d73ab9d5f5db40874b7c/regex-2023.12.25-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b40f1f77be3c32770c44c6d06047a8630beac0100298eaa9faf5b6f4a8c8cd8",
                "md5": "66a4732cbbb42dca758a01b2c4c60baf",
                "sha256": "b521dcecebc5b978b447f0f69b5b7f3840eac454862270406a39837ffae4e697"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "66a4732cbbb42dca758a01b2c4c60baf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 269545,
            "upload_time": "2023-12-24T02:47:28",
            "upload_time_iso_8601": "2023-12-24T02:47:28.151627Z",
            "url": "https://files.pythonhosted.org/packages/5b/40/f1f77be3c32770c44c6d06047a8630beac0100298eaa9faf5b6f4a8c8cd8/regex-2023.12.25-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2988384cc2f697bcf00398de3faf5727353ca2357381dee70eba2c022e8f569",
                "md5": "4282613bd38f6a443b7e224eac3bb7c5",
                "sha256": "f7bc09bc9c29ebead055bcba136a67378f03d66bf359e87d0f7c759d6d4ffa31"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4282613bd38f6a443b7e224eac3bb7c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 497381,
            "upload_time": "2023-12-24T02:47:31",
            "upload_time_iso_8601": "2023-12-24T02:47:31.532636Z",
            "url": "https://files.pythonhosted.org/packages/e2/98/8384cc2f697bcf00398de3faf5727353ca2357381dee70eba2c022e8f569/regex-2023.12.25-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e822e9bf54a8e9a3d64c31c5f3978aa2cec633078d8bd2d3dbf5b3d62df2ec0",
                "md5": "d817b4b9f489a4b9b91c3c07db668e07",
                "sha256": "e14b73607d6231f3cc4622809c196b540a6a44e903bcfad940779c80dffa7be7"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d817b4b9f489a4b9b91c3c07db668e07",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 296410,
            "upload_time": "2023-12-24T02:47:34",
            "upload_time_iso_8601": "2023-12-24T02:47:34.378216Z",
            "url": "https://files.pythonhosted.org/packages/6e/82/2e9bf54a8e9a3d64c31c5f3978aa2cec633078d8bd2d3dbf5b3d62df2ec0/regex-2023.12.25-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5b3f5c06f5ebb865a63ea775828038d5ce48263806616e4ad5092ff50e22c93",
                "md5": "bbad524c464e4ea2a9d8825e3162ea58",
                "sha256": "9eda5f7a50141291beda3edd00abc2d4a5b16c29c92daf8d5bd76934150f3edc"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "bbad524c464e4ea2a9d8825e3162ea58",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 291035,
            "upload_time": "2023-12-24T02:47:37",
            "upload_time_iso_8601": "2023-12-24T02:47:37.683670Z",
            "url": "https://files.pythonhosted.org/packages/c5/b3/f5c06f5ebb865a63ea775828038d5ce48263806616e4ad5092ff50e22c93/regex-2023.12.25-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a358ea9e50b29028fea7b8b97ddc246463df4d29a7244c94999baf7ab1d882d0",
                "md5": "9380d1db51fc1248bb098c20f12f2317",
                "sha256": "cc6bb9aa69aacf0f6032c307da718f61a40cf970849e471254e0e91c56ffca95"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9380d1db51fc1248bb098c20f12f2317",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 773552,
            "upload_time": "2023-12-24T02:47:41",
            "upload_time_iso_8601": "2023-12-24T02:47:41.049549Z",
            "url": "https://files.pythonhosted.org/packages/a3/58/ea9e50b29028fea7b8b97ddc246463df4d29a7244c94999baf7ab1d882d0/regex-2023.12.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee07d62cbcf2b87bd1255f13d7f7a7d5bb9f46d0fca6fb771a0aa6ee441a97d9",
                "md5": "3d0e8a03bc1b37a9532793f0d438600a",
                "sha256": "298dc6354d414bc921581be85695d18912bea163a8b23cac9a2562bbcd5088b1"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3d0e8a03bc1b37a9532793f0d438600a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 814376,
            "upload_time": "2023-12-24T02:47:43",
            "upload_time_iso_8601": "2023-12-24T02:47:43.972309Z",
            "url": "https://files.pythonhosted.org/packages/ee/07/d62cbcf2b87bd1255f13d7f7a7d5bb9f46d0fca6fb771a0aa6ee441a97d9/regex-2023.12.25-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b90a082d5677a724fdbf8fee8fa65ff4472eb10dee0d028e0d269024fae58bdf",
                "md5": "4e68b02652d54e389fae3b187e9ebf2b",
                "sha256": "2f4e475a80ecbd15896a976aa0b386c5525d0ed34d5c600b6d3ebac0a67c7ddf"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4e68b02652d54e389fae3b187e9ebf2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 799480,
            "upload_time": "2023-12-24T02:47:47",
            "upload_time_iso_8601": "2023-12-24T02:47:47.433049Z",
            "url": "https://files.pythonhosted.org/packages/b9/0a/082d5677a724fdbf8fee8fa65ff4472eb10dee0d028e0d269024fae58bdf/regex-2023.12.25-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "059e80c20f1151432a6025690c9c2037053039b028a7b236fa81d7e7ac9dec60",
                "md5": "2534aec73d1bba53fe50daaec4cab9f3",
                "sha256": "531ac6cf22b53e0696f8e1d56ce2396311254eb806111ddd3922c9d937151dae"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2534aec73d1bba53fe50daaec4cab9f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 773361,
            "upload_time": "2023-12-24T02:47:50",
            "upload_time_iso_8601": "2023-12-24T02:47:50.247871Z",
            "url": "https://files.pythonhosted.org/packages/05/9e/80c20f1151432a6025690c9c2037053039b028a7b236fa81d7e7ac9dec60/regex-2023.12.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "840e1e435f46997cf601aedb0d0efee86f137d982c3bd5864a4534081f8bb9db",
                "md5": "69bffdf40c92eb7946bfe47650072238",
                "sha256": "22f3470f7524b6da61e2020672df2f3063676aff444db1daa283c2ea4ed259d6"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "69bffdf40c92eb7946bfe47650072238",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 762555,
            "upload_time": "2023-12-24T02:47:53",
            "upload_time_iso_8601": "2023-12-24T02:47:53.375317Z",
            "url": "https://files.pythonhosted.org/packages/84/0e/1e435f46997cf601aedb0d0efee86f137d982c3bd5864a4534081f8bb9db/regex-2023.12.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb212832bfa23fe34d7ff0cf8878ec762362bdafc5107af2229ff42ce008d525",
                "md5": "c9d2b3b75b1483ded81f8168a17a3ce6",
                "sha256": "89723d2112697feaa320c9d351e5f5e7b841e83f8b143dba8e2d2b5f04e10923"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c9d2b3b75b1483ded81f8168a17a3ce6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 689789,
            "upload_time": "2023-12-24T02:47:56",
            "upload_time_iso_8601": "2023-12-24T02:47:56.392144Z",
            "url": "https://files.pythonhosted.org/packages/bb/21/2832bfa23fe34d7ff0cf8878ec762362bdafc5107af2229ff42ce008d525/regex-2023.12.25-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af30027e03ea8312f79d95f9bec5c758c0e423d75620134be5b0eaeda3cfc20b",
                "md5": "9367791ef4dfed138fbc65806b00d0c8",
                "sha256": "0ecf44ddf9171cd7566ef1768047f6e66975788258b1c6c6ca78098b95cf9a3d"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9367791ef4dfed138fbc65806b00d0c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 743642,
            "upload_time": "2023-12-24T02:47:59",
            "upload_time_iso_8601": "2023-12-24T02:47:59.714006Z",
            "url": "https://files.pythonhosted.org/packages/af/30/027e03ea8312f79d95f9bec5c758c0e423d75620134be5b0eaeda3cfc20b/regex-2023.12.25-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd661274fd78698d799dc4c6b30a5b78c7bfc7b854c0e6e77df8884c21f08f21",
                "md5": "dd03a222e8143dc2c5ef3e97e9453ae2",
                "sha256": "905466ad1702ed4acfd67a902af50b8db1feeb9781436372261808df7a2a7bca"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "dd03a222e8143dc2c5ef3e97e9453ae2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 730710,
            "upload_time": "2023-12-24T02:48:04",
            "upload_time_iso_8601": "2023-12-24T02:48:04.200984Z",
            "url": "https://files.pythonhosted.org/packages/dd/66/1274fd78698d799dc4c6b30a5b78c7bfc7b854c0e6e77df8884c21f08f21/regex-2023.12.25-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6079137700bb0f13ccafeecec8a1302655c2486452d41f28f5775173fa953142",
                "md5": "ad5fc2773f71dc56ccc9e0b5cc648906",
                "sha256": "4558410b7a5607a645e9804a3e9dd509af12fb72b9825b13791a37cd417d73a5"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ad5fc2773f71dc56ccc9e0b5cc648906",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 763518,
            "upload_time": "2023-12-24T02:48:07",
            "upload_time_iso_8601": "2023-12-24T02:48:07.151469Z",
            "url": "https://files.pythonhosted.org/packages/60/79/137700bb0f13ccafeecec8a1302655c2486452d41f28f5775173fa953142/regex-2023.12.25-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d952249f4047a548d84b6f805fcb6e3b44e9590433c748577e3d4cbd89feaf90",
                "md5": "0b73a383b647ba4f4f3031b7d0572334",
                "sha256": "7e316026cc1095f2a3e8cc012822c99f413b702eaa2ca5408a513609488cb62f"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "0b73a383b647ba4f4f3031b7d0572334",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 768121,
            "upload_time": "2023-12-24T02:48:10",
            "upload_time_iso_8601": "2023-12-24T02:48:10.836395Z",
            "url": "https://files.pythonhosted.org/packages/d9/52/249f4047a548d84b6f805fcb6e3b44e9590433c748577e3d4cbd89feaf90/regex-2023.12.25-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23ef41e00af6e1eb77acf7295ff50ed3c443b56763dd0c65371058c378b5ce6c",
                "md5": "a1639df9463ddad3379b9a6a6de5115a",
                "sha256": "3b1de218d5375cd6ac4b5493e0b9f3df2be331e86520f23382f216c137913d20"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1639df9463ddad3379b9a6a6de5115a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 744506,
            "upload_time": "2023-12-24T02:48:13",
            "upload_time_iso_8601": "2023-12-24T02:48:13.868197Z",
            "url": "https://files.pythonhosted.org/packages/23/ef/41e00af6e1eb77acf7295ff50ed3c443b56763dd0c65371058c378b5ce6c/regex-2023.12.25-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2a04c4f4b4bab4b82137ece75619fafc2bdecae4d984b2e2a5000c4ea1c10f1",
                "md5": "6dadee80f4c84a6dd5692ea263581420",
                "sha256": "11a963f8e25ab5c61348d090bf1b07f1953929c13bd2309a0662e9ff680763c9"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "6dadee80f4c84a6dd5692ea263581420",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 257778,
            "upload_time": "2023-12-24T02:48:17",
            "upload_time_iso_8601": "2023-12-24T02:48:17.665746Z",
            "url": "https://files.pythonhosted.org/packages/d2/a0/4c4f4b4bab4b82137ece75619fafc2bdecae4d984b2e2a5000c4ea1c10f1/regex-2023.12.25-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35e1ba18181ac00d2a8d4a920fec1a3cd3a0e279fe4f4b939dc2ea353f41041c",
                "md5": "10e3c5d4c2ca84ad9a068cc8d724a5d6",
                "sha256": "e693e233ac92ba83a87024e1d32b5f9ab15ca55ddd916d878146f4e3406b5c91"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "10e3c5d4c2ca84ad9a068cc8d724a5d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 269544,
            "upload_time": "2023-12-24T02:48:21",
            "upload_time_iso_8601": "2023-12-24T02:48:21.034089Z",
            "url": "https://files.pythonhosted.org/packages/35/e1/ba18181ac00d2a8d4a920fec1a3cd3a0e279fe4f4b939dc2ea353f41041c/regex-2023.12.25-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b53931626e7e75b187fae7f121af3c538a991e725c744ac893cc2cfd70ce2853",
                "md5": "3f97f0aef9bf334fe50ae5980b183e68",
                "sha256": "29171aa128da69afdf4bde412d5bedc335f2ca8fcfe4489038577d05f16181e5"
            },
            "downloads": -1,
            "filename": "regex-2023.12.25.tar.gz",
            "has_sig": false,
            "md5_digest": "3f97f0aef9bf334fe50ae5980b183e68",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 394706,
            "upload_time": "2023-12-24T02:48:23",
            "upload_time_iso_8601": "2023-12-24T02:48:23.847191Z",
            "url": "https://files.pythonhosted.org/packages/b5/39/31626e7e75b187fae7f121af3c538a991e725c744ac893cc2cfd70ce2853/regex-2023.12.25.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-24 02:48:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mrabarnett",
    "github_project": "mrab-regex",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "regex"
}
        
Elapsed time: 0.16587s