grex


Namegrex JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/pemistahl/grex
Summarygrex generates regular expressions from user-provided test cases.
upload_time2023-08-24 12:55:55
maintainerNone
docs_urlNone
authorPeter M. Stahl <pemistahl@gmail.com>
requires_python>=3.8
licenseApache-2.0
keywords pattern regex regexp
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">

![grex](https://raw.githubusercontent.com/pemistahl/grex/main/logo.png)

<br>

[![build status](https://github.com/pemistahl/grex/actions/workflows/python-build.yml/badge.svg)](https://github.com/pemistahl/grex/actions/workflows/python-build.yml)
[![codecov](https://codecov.io/gh/pemistahl/grex/branch/main/graph/badge.svg)](https://codecov.io/gh/pemistahl/grex)
[![demo](https://img.shields.io/badge/-Demo%20Website-orange?logo=HTML5&labelColor=white)](https://pemistahl.github.io/grex-js/)
![supported Python versions](https://img.shields.io/badge/Python-%3E%3D%203.8-blue?logo=Python&logoColor=yellow)
[![pypi](https://img.shields.io/badge/PYPI-v1.0.0-blue?logo=PyPI&logoColor=yellow)](https://pypi.org/project/grex)
[![license](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
</div>

<br>

## 1. What does this library do?

*grex* is a library that is meant to simplify the often complicated and tedious
task of creating regular expressions. It does so by automatically generating a
single regular expression from user-provided test cases. The resulting
expression is guaranteed to match the test cases which it was generated from.

This project has started as a [Rust port](https://github.com/pemistahl/grex) of
the JavaScript tool [*regexgen*](https://github.com/devongovett/regexgen)
written by [Devon Govett](https://github.com/devongovett). Although a lot of
further useful features could be added to it, its development was apparently
ceased several years ago. The Rust library offers new features and extended
Unicode support. With the help of [PyO3](https://github.com/PyO3/pyo3) and 
[Maturin](https://github.com/PyO3/maturin), the library has been compiled to a 
Python extension module so that it can be used within any Python software as well.

The philosophy of this project is to generate the most specific regular expression
possible by default which exactly matches the given input only and nothing else.
With the use of preprocessing methods, more generalized expressions can be created.

The produced expressions are [Perl-compatible regular expressions](https://www.pcre.org) which are also
compatible with the [regular expression module](https://docs.python.org/3/library/re.html) in Python's 
standard library.

There is a [demo website](https://pemistahl.github.io/grex-js/) available where you can give grex a try.

![demo website](https://raw.githubusercontent.com/pemistahl/grex/main/website.jpg)

## 2. Do I still need to learn to write regexes then?

**Definitely, yes!** Using the standard settings, *grex* produces a regular expression that is guaranteed
to match only the test cases given as input and nothing else. However, if the conversion to shorthand
character classes such as `\w` is enabled, the resulting regex matches a much wider scope of test cases.
Knowledge about the consequences of this conversion is essential for finding a correct regular expression
for your business domain.

*grex* uses an algorithm that tries to find the shortest possible regex for the given test cases.
Very often though, the resulting expression is still longer or more complex than it needs to be.
In such cases, a more compact or elegant regex can be created only by hand.
Also, every regular expression engine has different built-in optimizations. *grex* does not know anything
about those and therefore cannot optimize its regexes for a specific engine.

**So, please learn how to write regular expressions!** The currently best use case for *grex* is to find
an initial correct regex which should be inspected by hand if further optimizations are possible.

## 3. Current Features

- literals
- character classes
- detection of common prefixes and suffixes
- detection of repeated substrings and conversion to `{min,max}` quantifier notation
- alternation using `|` operator
- optionality using `?` quantifier
- escaping of non-ascii characters, with optional conversion of astral code points to surrogate pairs
- case-sensitive or case-insensitive matching
- capturing or non-capturing groups
- optional anchors `^` and `$`
- fully compliant to [Unicode Standard 15.0](https://unicode.org/versions/Unicode15.0.0)
- correctly handles graphemes consisting of multiple Unicode symbols
- produces more readable expressions indented on multiple using optional verbose mode
- optional syntax highlighting for nicer output in supported terminals

## 4. How to install?

*grex* is available in the [Python Package Index](https://pypi.org/project/grex) and can be installed with:

```
pip install grex
```

The current version 1.0.0 corresponds to the latest version 1.4.4 of the Rust
library and command-line tool.

## 5. How to use?

This library contains a single class named `RegExpBuilder` that can be imported like so:

```python
from grex import RegExpBuilder
```

### 5.1 Default settings

```python
pattern = RegExpBuilder.from_test_cases(["a", "aa", "aaa"]).build()
assert pattern == "^a(?:aa?)?$"
```

### 5.2 Convert to character classes

```python
pattern = (RegExpBuilder.from_test_cases(["a", "aa", "123"])
    .with_conversion_of_digits()
    .with_conversion_of_words()
    .build())
assert pattern == "^(?:\\d\\d\\d|\\w(?:\\w)?)$"
```

### 5.3 Convert repeated substrings

```python
pattern = (RegExpBuilder.from_test_cases(["aa", "bcbc", "defdefdef"])
    .with_conversion_of_repetitions()
    .build())
assert pattern == "^(?:a{2}|(?:bc){2}|(?:def){3})$"
```

By default, *grex* converts each substring this way which is at least a single character long
and which is subsequently repeated at least once. You can customize these two parameters if you like.

In the following example, the test case `aa` is not converted to `a{2}` because the repeated substring
`a` has a length of 1, but the minimum substring length has been set to 2.

```python
pattern = (RegExpBuilder.from_test_cases(["aa", "bcbc", "defdefdef"])
    .with_conversion_of_repetitions()
    .with_minimum_substring_length(2)
    .build())
assert pattern == "^(?:aa|(?:bc){2}|(?:def){3})$"
```

Setting a minimum number of 2 repetitions in the next example, only the test case `defdefdef` will be
converted because it is the only one that is repeated twice.

```python
pattern = (RegExpBuilder.from_test_cases(["aa", "bcbc", "defdefdef"])
    .with_conversion_of_repetitions()
    .with_minimum_repetitions(2)
    .build())
assert pattern == "^(?:bcbc|aa|(?:def){3})$"
```

### 5.4 Escape non-ascii characters

```python
pattern = (RegExpBuilder.from_test_cases(["You smell like 💩."])
    .with_escaping_of_non_ascii_chars(use_surrogate_pairs=False)
    .build())
assert pattern == "^You smell like \\U0001f4a9\\.$"
```

Old versions of JavaScript do not support unicode escape sequences for the astral code planes
(range `U+010000` to `U+10FFFF`). In order to support these symbols in JavaScript regular
expressions, the conversion to surrogate pairs is necessary. More information on that matter
can be found [here](https://mathiasbynens.be/notes/javascript-unicode).

```python
pattern = (RegExpBuilder.from_test_cases(["You smell like 💩."])
    .with_escaping_of_non_ascii_chars(use_surrogate_pairs=True)
    .build())
assert pattern == "^You smell like \\ud83d\\udca9\\.$"
```

### 5.5 Case-insensitive matching

The regular expressions that *grex* generates are case-sensitive by default.
Case-insensitive matching can be enabled like so:

```python
pattern = (RegExpBuilder.from_test_cases(["big", "BIGGER"])
    .with_case_insensitive_matching()
    .build())
assert pattern == "(?i)^big(?:ger)?$"
```

### 5.6 Capturing Groups

Non-capturing groups are used by default.
Extending the previous example, you can switch to capturing groups instead.

```python
pattern = (RegExpBuilder.from_test_cases(["big", "BIGGER"])
    .with_case_insensitive_matching()
    .with_capturing_groups()
    .build())
assert pattern == "(?i)^big(ger)?$"
```

### 5.7 Verbose mode

If you find the generated regular expression hard to read, you can enable verbose mode.
The expression is then put on multiple lines and indented to make it more pleasant to the eyes.

```python
import inspect

pattern = (RegExpBuilder.from_test_cases(["a", "b", "bcd"])
    .with_verbose_mode()
    .build())

assert pattern == inspect.cleandoc("""
    (?x)
    ^
      (?:
        b
        (?:
          cd
        )?
        |
        a
      )
    $
    """
)
```

### 5.8 Disable anchors

By default, the anchors `^` and `$` are put around every generated regular expression in order
to ensure that it matches only the test cases given as input. Often enough, however, it is
desired to use the generated pattern as part of a larger one. For this purpose, the anchors
can be disabled, either separately or both of them.

```python
pattern = (RegExpBuilder.from_test_cases(["a", "aa", "aaa"])
    .without_anchors()
    .build())
assert pattern == "a(?:aa?)?"
```

## 6. How to build?

In order to build the source code yourself, you need the
[stable Rust toolchain](https://www.rust-lang.org/tools/install) installed on your machine
so that [*cargo*](https://doc.rust-lang.org/cargo/), the Rust package manager is available.

```shell
git clone https://github.com/pemistahl/grex.git
cd grex
cargo build
```

To build the Python extension module, create a virtual environment and install [Maturin](https://github.com/PyO3/maturin).

```shell
python -m venv /path/to/virtual/environment
source /path/to/virtual/environment/bin/activate
pip install maturin
maturin build
```

The Rust source code is accompanied by an extensive test suite consisting of unit tests, integration
tests and property tests. For running them, simply say:

```shell
cargo test
```

Additional Python tests can be run after installing pytest which is an optional dependency:

```shell
maturin develop --extras=test
pytest tests/python/test_grex.py
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pemistahl/grex",
    "name": "grex",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "pattern,regex,regexp",
    "author": "Peter M. Stahl <pemistahl@gmail.com>",
    "author_email": "Peter M. Stahl <pemistahl@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/be/57/238060c3af8e553fc95b4d9e9d0405e0f93e15d6c8d3addaaf520d1a0bf2/grex-1.0.0.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n\n![grex](https://raw.githubusercontent.com/pemistahl/grex/main/logo.png)\n\n<br>\n\n[![build status](https://github.com/pemistahl/grex/actions/workflows/python-build.yml/badge.svg)](https://github.com/pemistahl/grex/actions/workflows/python-build.yml)\n[![codecov](https://codecov.io/gh/pemistahl/grex/branch/main/graph/badge.svg)](https://codecov.io/gh/pemistahl/grex)\n[![demo](https://img.shields.io/badge/-Demo%20Website-orange?logo=HTML5&labelColor=white)](https://pemistahl.github.io/grex-js/)\n![supported Python versions](https://img.shields.io/badge/Python-%3E%3D%203.8-blue?logo=Python&logoColor=yellow)\n[![pypi](https://img.shields.io/badge/PYPI-v1.0.0-blue?logo=PyPI&logoColor=yellow)](https://pypi.org/project/grex)\n[![license](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)\n</div>\n\n<br>\n\n## 1. What does this library do?\n\n*grex* is a library that is meant to simplify the often complicated and tedious\ntask of creating regular expressions. It does so by automatically generating a\nsingle regular expression from user-provided test cases. The resulting\nexpression is guaranteed to match the test cases which it was generated from.\n\nThis project has started as a [Rust port](https://github.com/pemistahl/grex) of\nthe JavaScript tool [*regexgen*](https://github.com/devongovett/regexgen)\nwritten by [Devon Govett](https://github.com/devongovett). Although a lot of\nfurther useful features could be added to it, its development was apparently\nceased several years ago. The Rust library offers new features and extended\nUnicode support. With the help of [PyO3](https://github.com/PyO3/pyo3) and \n[Maturin](https://github.com/PyO3/maturin), the library has been compiled to a \nPython extension module so that it can be used within any Python software as well.\n\nThe philosophy of this project is to generate the most specific regular expression\npossible by default which exactly matches the given input only and nothing else.\nWith the use of preprocessing methods, more generalized expressions can be created.\n\nThe produced expressions are [Perl-compatible regular expressions](https://www.pcre.org) which are also\ncompatible with the [regular expression module](https://docs.python.org/3/library/re.html) in Python's \nstandard library.\n\nThere is a [demo website](https://pemistahl.github.io/grex-js/) available where you can give grex a try.\n\n![demo website](https://raw.githubusercontent.com/pemistahl/grex/main/website.jpg)\n\n## 2. Do I still need to learn to write regexes then?\n\n**Definitely, yes!** Using the standard settings, *grex* produces a regular expression that is guaranteed\nto match only the test cases given as input and nothing else. However, if the conversion to shorthand\ncharacter classes such as `\\w` is enabled, the resulting regex matches a much wider scope of test cases.\nKnowledge about the consequences of this conversion is essential for finding a correct regular expression\nfor your business domain.\n\n*grex* uses an algorithm that tries to find the shortest possible regex for the given test cases.\nVery often though, the resulting expression is still longer or more complex than it needs to be.\nIn such cases, a more compact or elegant regex can be created only by hand.\nAlso, every regular expression engine has different built-in optimizations. *grex* does not know anything\nabout those and therefore cannot optimize its regexes for a specific engine.\n\n**So, please learn how to write regular expressions!** The currently best use case for *grex* is to find\nan initial correct regex which should be inspected by hand if further optimizations are possible.\n\n## 3. Current Features\n\n- literals\n- character classes\n- detection of common prefixes and suffixes\n- detection of repeated substrings and conversion to `{min,max}` quantifier notation\n- alternation using `|` operator\n- optionality using `?` quantifier\n- escaping of non-ascii characters, with optional conversion of astral code points to surrogate pairs\n- case-sensitive or case-insensitive matching\n- capturing or non-capturing groups\n- optional anchors `^` and `$`\n- fully compliant to [Unicode Standard 15.0](https://unicode.org/versions/Unicode15.0.0)\n- correctly handles graphemes consisting of multiple Unicode symbols\n- produces more readable expressions indented on multiple using optional verbose mode\n- optional syntax highlighting for nicer output in supported terminals\n\n## 4. How to install?\n\n*grex* is available in the [Python Package Index](https://pypi.org/project/grex) and can be installed with:\n\n```\npip install grex\n```\n\nThe current version 1.0.0 corresponds to the latest version 1.4.4 of the Rust\nlibrary and command-line tool.\n\n## 5. How to use?\n\nThis library contains a single class named `RegExpBuilder` that can be imported like so:\n\n```python\nfrom grex import RegExpBuilder\n```\n\n### 5.1 Default settings\n\n```python\npattern = RegExpBuilder.from_test_cases([\"a\", \"aa\", \"aaa\"]).build()\nassert pattern == \"^a(?:aa?)?$\"\n```\n\n### 5.2 Convert to character classes\n\n```python\npattern = (RegExpBuilder.from_test_cases([\"a\", \"aa\", \"123\"])\n    .with_conversion_of_digits()\n    .with_conversion_of_words()\n    .build())\nassert pattern == \"^(?:\\\\d\\\\d\\\\d|\\\\w(?:\\\\w)?)$\"\n```\n\n### 5.3 Convert repeated substrings\n\n```python\npattern = (RegExpBuilder.from_test_cases([\"aa\", \"bcbc\", \"defdefdef\"])\n    .with_conversion_of_repetitions()\n    .build())\nassert pattern == \"^(?:a{2}|(?:bc){2}|(?:def){3})$\"\n```\n\nBy default, *grex* converts each substring this way which is at least a single character long\nand which is subsequently repeated at least once. You can customize these two parameters if you like.\n\nIn the following example, the test case `aa` is not converted to `a{2}` because the repeated substring\n`a` has a length of 1, but the minimum substring length has been set to 2.\n\n```python\npattern = (RegExpBuilder.from_test_cases([\"aa\", \"bcbc\", \"defdefdef\"])\n    .with_conversion_of_repetitions()\n    .with_minimum_substring_length(2)\n    .build())\nassert pattern == \"^(?:aa|(?:bc){2}|(?:def){3})$\"\n```\n\nSetting a minimum number of 2 repetitions in the next example, only the test case `defdefdef` will be\nconverted because it is the only one that is repeated twice.\n\n```python\npattern = (RegExpBuilder.from_test_cases([\"aa\", \"bcbc\", \"defdefdef\"])\n    .with_conversion_of_repetitions()\n    .with_minimum_repetitions(2)\n    .build())\nassert pattern == \"^(?:bcbc|aa|(?:def){3})$\"\n```\n\n### 5.4 Escape non-ascii characters\n\n```python\npattern = (RegExpBuilder.from_test_cases([\"You smell like \ud83d\udca9.\"])\n    .with_escaping_of_non_ascii_chars(use_surrogate_pairs=False)\n    .build())\nassert pattern == \"^You smell like \\\\U0001f4a9\\\\.$\"\n```\n\nOld versions of JavaScript do not support unicode escape sequences for the astral code planes\n(range `U+010000` to `U+10FFFF`). In order to support these symbols in JavaScript regular\nexpressions, the conversion to surrogate pairs is necessary. More information on that matter\ncan be found [here](https://mathiasbynens.be/notes/javascript-unicode).\n\n```python\npattern = (RegExpBuilder.from_test_cases([\"You smell like \ud83d\udca9.\"])\n    .with_escaping_of_non_ascii_chars(use_surrogate_pairs=True)\n    .build())\nassert pattern == \"^You smell like \\\\ud83d\\\\udca9\\\\.$\"\n```\n\n### 5.5 Case-insensitive matching\n\nThe regular expressions that *grex* generates are case-sensitive by default.\nCase-insensitive matching can be enabled like so:\n\n```python\npattern = (RegExpBuilder.from_test_cases([\"big\", \"BIGGER\"])\n    .with_case_insensitive_matching()\n    .build())\nassert pattern == \"(?i)^big(?:ger)?$\"\n```\n\n### 5.6 Capturing Groups\n\nNon-capturing groups are used by default.\nExtending the previous example, you can switch to capturing groups instead.\n\n```python\npattern = (RegExpBuilder.from_test_cases([\"big\", \"BIGGER\"])\n    .with_case_insensitive_matching()\n    .with_capturing_groups()\n    .build())\nassert pattern == \"(?i)^big(ger)?$\"\n```\n\n### 5.7 Verbose mode\n\nIf you find the generated regular expression hard to read, you can enable verbose mode.\nThe expression is then put on multiple lines and indented to make it more pleasant to the eyes.\n\n```python\nimport inspect\n\npattern = (RegExpBuilder.from_test_cases([\"a\", \"b\", \"bcd\"])\n    .with_verbose_mode()\n    .build())\n\nassert pattern == inspect.cleandoc(\"\"\"\n    (?x)\n    ^\n      (?:\n        b\n        (?:\n          cd\n        )?\n        |\n        a\n      )\n    $\n    \"\"\"\n)\n```\n\n### 5.8 Disable anchors\n\nBy default, the anchors `^` and `$` are put around every generated regular expression in order\nto ensure that it matches only the test cases given as input. Often enough, however, it is\ndesired to use the generated pattern as part of a larger one. For this purpose, the anchors\ncan be disabled, either separately or both of them.\n\n```python\npattern = (RegExpBuilder.from_test_cases([\"a\", \"aa\", \"aaa\"])\n    .without_anchors()\n    .build())\nassert pattern == \"a(?:aa?)?\"\n```\n\n## 6. How to build?\n\nIn order to build the source code yourself, you need the\n[stable Rust toolchain](https://www.rust-lang.org/tools/install) installed on your machine\nso that [*cargo*](https://doc.rust-lang.org/cargo/), the Rust package manager is available.\n\n```shell\ngit clone https://github.com/pemistahl/grex.git\ncd grex\ncargo build\n```\n\nTo build the Python extension module, create a virtual environment and install [Maturin](https://github.com/PyO3/maturin).\n\n```shell\npython -m venv /path/to/virtual/environment\nsource /path/to/virtual/environment/bin/activate\npip install maturin\nmaturin build\n```\n\nThe Rust source code is accompanied by an extensive test suite consisting of unit tests, integration\ntests and property tests. For running them, simply say:\n\n```shell\ncargo test\n```\n\nAdditional Python tests can be run after installing pytest which is an optional dependency:\n\n```shell\nmaturin develop --extras=test\npytest tests/python/test_grex.py\n```\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "grex generates regular expressions from user-provided test cases.",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/pemistahl/grex",
        "repository": "https://github.com/pemistahl/grex"
    },
    "split_keywords": [
        "pattern",
        "regex",
        "regexp"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63b99cdb74c231e0eb879006206f703db39a6f8918aadc88789a73981e0ff8a6",
                "md5": "01714658d9078afe92f3e245486a3776",
                "sha256": "9f49db14198c9fccf8c5a59f538ec7bed85c921216e6af16a4772b29be599c84"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01714658d9078afe92f3e245486a3776",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1029192,
            "upload_time": "2023-08-24T12:50:06",
            "upload_time_iso_8601": "2023-08-24T12:50:06.877901Z",
            "url": "https://files.pythonhosted.org/packages/63/b9/9cdb74c231e0eb879006206f703db39a6f8918aadc88789a73981e0ff8a6/grex-1.0.0-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96d75bb2e0093dd7774f1588041107badd56d0eb553f6c2481d0b99295fb1e7f",
                "md5": "1b5a17c81f2cfa37add4ff24aa89b5a3",
                "sha256": "eca3a4585616e9fa47fac9f45ed4315d7a5b381614a22e4111d4542f8c562447"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1b5a17c81f2cfa37add4ff24aa89b5a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 966236,
            "upload_time": "2023-08-24T12:50:11",
            "upload_time_iso_8601": "2023-08-24T12:50:11.867456Z",
            "url": "https://files.pythonhosted.org/packages/96/d7/5bb2e0093dd7774f1588041107badd56d0eb553f6c2481d0b99295fb1e7f/grex-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6197f61e82d159b1f64af830e64b517581447e045d1dcde85a82916bc60db89e",
                "md5": "0ade76402f8c2b37df7d425cbabb3d7d",
                "sha256": "c2b547e1066e46dd36bf4bfaa4b60ce32034ce0ef6dc7a078043177a726cf9c6"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0ade76402f8c2b37df7d425cbabb3d7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1935694,
            "upload_time": "2023-08-24T12:50:21",
            "upload_time_iso_8601": "2023-08-24T12:50:21.266943Z",
            "url": "https://files.pythonhosted.org/packages/61/97/f61e82d159b1f64af830e64b517581447e045d1dcde85a82916bc60db89e/grex-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6c6f4dc64e7c01228745e44ecce0050e94e1ba8c08e7a648a0344438fffaa39",
                "md5": "53cf32ed66df4a588eade7bfadf651d7",
                "sha256": "3bd865ea15529a19d9e26dcf226aa7e40ea89030d64c25d563fb0472a5050b43"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "53cf32ed66df4a588eade7bfadf651d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1911550,
            "upload_time": "2023-08-24T12:50:25",
            "upload_time_iso_8601": "2023-08-24T12:50:25.475773Z",
            "url": "https://files.pythonhosted.org/packages/f6/c6/f4dc64e7c01228745e44ecce0050e94e1ba8c08e7a648a0344438fffaa39/grex-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c6d32fdb37f61e7b27dccd48261d76ea21136897518370aa926a6bb1b3846a3",
                "md5": "ad7060499dd40079ee29398e6911c09f",
                "sha256": "12930721e3e0b1caad4adb69e05308cebf809637de5d7a4269382e59ca2278e7"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ad7060499dd40079ee29398e6911c09f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2126994,
            "upload_time": "2023-08-24T12:50:34",
            "upload_time_iso_8601": "2023-08-24T12:50:34.876608Z",
            "url": "https://files.pythonhosted.org/packages/9c/6d/32fdb37f61e7b27dccd48261d76ea21136897518370aa926a6bb1b3846a3/grex-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b34821aa3d8ec2a013c4f09998cfca79bfe7ec92c5b476490b0ce3a909193951",
                "md5": "6fae37f16aac18014f98e3eb26194149",
                "sha256": "86f03f655541a2ea70001a8c10b031a0c59b5210dc0062c6aa401f4504c50dc7"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6fae37f16aac18014f98e3eb26194149",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2220045,
            "upload_time": "2023-08-24T12:50:39",
            "upload_time_iso_8601": "2023-08-24T12:50:39.470777Z",
            "url": "https://files.pythonhosted.org/packages/b3/48/21aa3d8ec2a013c4f09998cfca79bfe7ec92c5b476490b0ce3a909193951/grex-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75b86d1545becef56e276e3aa29d2ac3d74a414c7c6db314c5f81a688d1f4b43",
                "md5": "c2f19d0c28f74142b608feeae7706b74",
                "sha256": "9e98fc1afb9716624b060293245889cc20184239530347dcf6a5ddf4dc39568b"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2f19d0c28f74142b608feeae7706b74",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1963371,
            "upload_time": "2023-08-24T12:50:46",
            "upload_time_iso_8601": "2023-08-24T12:50:46.094054Z",
            "url": "https://files.pythonhosted.org/packages/75/b8/6d1545becef56e276e3aa29d2ac3d74a414c7c6db314c5f81a688d1f4b43/grex-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fe08458452653aeada9308eb05efc4a6848855519b6fc806f47ddf24643d9f2a",
                "md5": "2a19b0f1907949783d350c644058f805",
                "sha256": "634b77f414236db0a7b417d237984a8a5983f5f6c1f0f8b6f36d55206f7157cf"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "2a19b0f1907949783d350c644058f805",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1998762,
            "upload_time": "2023-08-24T12:50:52",
            "upload_time_iso_8601": "2023-08-24T12:50:52.395033Z",
            "url": "https://files.pythonhosted.org/packages/fe/08/458452653aeada9308eb05efc4a6848855519b6fc806f47ddf24643d9f2a/grex-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e9d1ac15fd3b874db83c1fbb72926949b98ee773e42c385ab501b97f60fa0961",
                "md5": "e01a845b977d3f42cf1b458a4653173a",
                "sha256": "4ff4077e95a9b9c08423e9e1d1039b6be4022f1a90074b780cb54934fb288c71"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e01a845b977d3f42cf1b458a4653173a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 756086,
            "upload_time": "2023-08-24T12:50:55",
            "upload_time_iso_8601": "2023-08-24T12:50:55.679025Z",
            "url": "https://files.pythonhosted.org/packages/e9/d1/ac15fd3b874db83c1fbb72926949b98ee773e42c385ab501b97f60fa0961/grex-1.0.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16e82c61728041b249e0dcc03dd474e51c6b5f12d123dd311f1a4f25f7f61794",
                "md5": "c7592fbb8075189b445e756dd31ded5d",
                "sha256": "e4ecfc1929cb5cdceb1cb66cfd4510faaaf12a907784f1ffb875a0834d61cccb"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c7592fbb8075189b445e756dd31ded5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 812678,
            "upload_time": "2023-08-24T12:50:58",
            "upload_time_iso_8601": "2023-08-24T12:50:58.574408Z",
            "url": "https://files.pythonhosted.org/packages/16/e8/2c61728041b249e0dcc03dd474e51c6b5f12d123dd311f1a4f25f7f61794/grex-1.0.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb6ed99d8fb1b4e9d640e97145bc05708aa9f4b51cf1b7d70e49c67abde61289",
                "md5": "9c6ff5990c510da92ddf52a6936acaff",
                "sha256": "9b610a0a85f3ef46cdfa31c089357ed9fbf56416b512e3fc3b109ddbda4a51a6"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9c6ff5990c510da92ddf52a6936acaff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1029201,
            "upload_time": "2023-08-24T12:51:02",
            "upload_time_iso_8601": "2023-08-24T12:51:02.081172Z",
            "url": "https://files.pythonhosted.org/packages/fb/6e/d99d8fb1b4e9d640e97145bc05708aa9f4b51cf1b7d70e49c67abde61289/grex-1.0.0-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "132eadb4c7ccf78e289937865ca9683ce7e6156b0ab6ccfc821b6317637d25f9",
                "md5": "cd6a867200d55ad88d79912c4a7ed3ce",
                "sha256": "0a4a66fbed5c3aa1af82975b80c98bcac4b29cefddd0ad628e5e71febf56bf65"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd6a867200d55ad88d79912c4a7ed3ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 966239,
            "upload_time": "2023-08-24T12:51:06",
            "upload_time_iso_8601": "2023-08-24T12:51:06.899284Z",
            "url": "https://files.pythonhosted.org/packages/13/2e/adb4c7ccf78e289937865ca9683ce7e6156b0ab6ccfc821b6317637d25f9/grex-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "308cb2e2de561e24512c1744574bfd8bb3e99eefda493f115d5fc78eb6f79a51",
                "md5": "3fbda8298d84e78af8bc54f619b64d9a",
                "sha256": "5cfbaa1e48718a5cfb2f5fa99d994fc17b489917c690d8f33c6c21c21cff7548"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3fbda8298d84e78af8bc54f619b64d9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1935712,
            "upload_time": "2023-08-24T12:51:12",
            "upload_time_iso_8601": "2023-08-24T12:51:12.205229Z",
            "url": "https://files.pythonhosted.org/packages/30/8c/b2e2de561e24512c1744574bfd8bb3e99eefda493f115d5fc78eb6f79a51/grex-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24f76ba1488ad22a863e5d6ff3b35ee2b5c53a129afd377b349b5082d308f10b",
                "md5": "2da8090115758cfb2cf97bcbc6d603b4",
                "sha256": "65f407976a600ceeafa11f362cf4e4a9fc05e4e6b7f53c14fd92707a2d6d0778"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2da8090115758cfb2cf97bcbc6d603b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1911621,
            "upload_time": "2023-08-24T12:51:17",
            "upload_time_iso_8601": "2023-08-24T12:51:17.787935Z",
            "url": "https://files.pythonhosted.org/packages/24/f7/6ba1488ad22a863e5d6ff3b35ee2b5c53a129afd377b349b5082d308f10b/grex-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94cdd952a1dc7ba378718a7edb1ba03689bc9a1e4436c32eb9ac5a1fc08ecb20",
                "md5": "7f579bdf2a4f107115a85205bb9a7ae1",
                "sha256": "9af5f4ccc20661068d79f9d5bc745ce352459c11b062e2913d998f0c9fb987fc"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7f579bdf2a4f107115a85205bb9a7ae1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2127079,
            "upload_time": "2023-08-24T12:51:26",
            "upload_time_iso_8601": "2023-08-24T12:51:26.305788Z",
            "url": "https://files.pythonhosted.org/packages/94/cd/d952a1dc7ba378718a7edb1ba03689bc9a1e4436c32eb9ac5a1fc08ecb20/grex-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f245a94aa59e7bb85b136470330d70c91a946a29f59ea69665a64f0f7fa5d32",
                "md5": "474ff843734cebcb26decd5d897a41d6",
                "sha256": "28aa9a3b335ee6061222b2a5e4ed5a966736639b14bb8dfa0268a02cb7c1408c"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "474ff843734cebcb26decd5d897a41d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2219991,
            "upload_time": "2023-08-24T12:51:30",
            "upload_time_iso_8601": "2023-08-24T12:51:30.842697Z",
            "url": "https://files.pythonhosted.org/packages/7f/24/5a94aa59e7bb85b136470330d70c91a946a29f59ea69665a64f0f7fa5d32/grex-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "21ccde4de34b3342fbb5aba6c46a24d08c32f1f79b277edb6fc541fab79e225f",
                "md5": "6e55b50a1db6ef3a44c0d9b7737b1a7a",
                "sha256": "987355a8281ec307414e6bed67cb85650611876f7c46f11265f0c5a939efb0ee"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e55b50a1db6ef3a44c0d9b7737b1a7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1963614,
            "upload_time": "2023-08-24T12:51:35",
            "upload_time_iso_8601": "2023-08-24T12:51:35.998423Z",
            "url": "https://files.pythonhosted.org/packages/21/cc/de4de34b3342fbb5aba6c46a24d08c32f1f79b277edb6fc541fab79e225f/grex-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f75412310d8384626fd9cac1a9c9368a1681986c25e87aff2371493dd8504747",
                "md5": "9a3d14e77bf2fef9e7b5a4a29fd4c0f2",
                "sha256": "41f16e1441fac3e1728d96cdd92cfbe17084693989a3202447f653846b77a104"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9a3d14e77bf2fef9e7b5a4a29fd4c0f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1999075,
            "upload_time": "2023-08-24T12:51:41",
            "upload_time_iso_8601": "2023-08-24T12:51:41.255052Z",
            "url": "https://files.pythonhosted.org/packages/f7/54/12310d8384626fd9cac1a9c9368a1681986c25e87aff2371493dd8504747/grex-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6aca38d4e117bcead7af06e42883aa15c316910071c6e17035a8222948d90663",
                "md5": "9679efb0ac2ec901d8fbf16cc1d77ee7",
                "sha256": "7d0532d17f9ec64503851d216a8ea11bfbc2d14555def290bc0908d3cafda1a9"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9679efb0ac2ec901d8fbf16cc1d77ee7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 756098,
            "upload_time": "2023-08-24T12:51:45",
            "upload_time_iso_8601": "2023-08-24T12:51:45.014848Z",
            "url": "https://files.pythonhosted.org/packages/6a/ca/38d4e117bcead7af06e42883aa15c316910071c6e17035a8222948d90663/grex-1.0.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e43e538617ea0a5ee8e433a7112fc73490bbd6a8df33ef9ac64a7609b7ac03a6",
                "md5": "c98d4bcf82822c162c9e0693409ead5f",
                "sha256": "e8f4e8d5c4e86283e6c0e0453dda129403e641360ea4c270af1e4dec9bf17360"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c98d4bcf82822c162c9e0693409ead5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 812693,
            "upload_time": "2023-08-24T12:51:48",
            "upload_time_iso_8601": "2023-08-24T12:51:48.233015Z",
            "url": "https://files.pythonhosted.org/packages/e4/3e/538617ea0a5ee8e433a7112fc73490bbd6a8df33ef9ac64a7609b7ac03a6/grex-1.0.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e0e52011dc529511535d2f25b9bab35a94f1eb66a070c4e6d55451a74ae40a3",
                "md5": "566bfda9eeee4fddaf9e500d3a701fab",
                "sha256": "7026538b7ba137f358789dccf24a483977b096ef13e36ee7fc8a3dadca8e616c"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "566bfda9eeee4fddaf9e500d3a701fab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1934194,
            "upload_time": "2023-08-24T12:51:53",
            "upload_time_iso_8601": "2023-08-24T12:51:53.299738Z",
            "url": "https://files.pythonhosted.org/packages/8e/0e/52011dc529511535d2f25b9bab35a94f1eb66a070c4e6d55451a74ae40a3/grex-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46e22ce19293552c8b8dd08ae6a16a2d43872449fde4a227dc79f05ab5eac5bd",
                "md5": "298eb59ac6c6fb6ea01defb75605d280",
                "sha256": "ff52d0fec7becceb16633876977a634cf61525bbc548c73a0f1fc37870bf6feb"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "298eb59ac6c6fb6ea01defb75605d280",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1908581,
            "upload_time": "2023-08-24T12:51:57",
            "upload_time_iso_8601": "2023-08-24T12:51:57.768602Z",
            "url": "https://files.pythonhosted.org/packages/46/e2/2ce19293552c8b8dd08ae6a16a2d43872449fde4a227dc79f05ab5eac5bd/grex-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f5c2d3e32633f8754d4149498b774e0c87561cab1f4ef4cb67209487095fcf7",
                "md5": "835e6636aee346dbed9e78fef26c3e89",
                "sha256": "5e686a38c9c66325e0f5c6447110e6c2cab094641b3eaded5a09ae67dccc3b51"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "835e6636aee346dbed9e78fef26c3e89",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2124234,
            "upload_time": "2023-08-24T12:52:05",
            "upload_time_iso_8601": "2023-08-24T12:52:05.330339Z",
            "url": "https://files.pythonhosted.org/packages/8f/5c/2d3e32633f8754d4149498b774e0c87561cab1f4ef4cb67209487095fcf7/grex-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37fe86b2c6b1e53ac05cd3fdc39127d34d9a9b95910847d49929d04fa997a0ec",
                "md5": "5bc0f153465562ab4ee1291657fdba41",
                "sha256": "c4fd785b9a355ed502246dd9f6ce43ab06feea1e8e76c4678ff423ff6a0d281b"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5bc0f153465562ab4ee1291657fdba41",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2198422,
            "upload_time": "2023-08-24T12:52:10",
            "upload_time_iso_8601": "2023-08-24T12:52:10.596401Z",
            "url": "https://files.pythonhosted.org/packages/37/fe/86b2c6b1e53ac05cd3fdc39127d34d9a9b95910847d49929d04fa997a0ec/grex-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "239b39d68a816e1dc12c991d2a68426e8ba5fe2ab3d75fd104410a481599ee8b",
                "md5": "3b9f5577d871cc118be5f88d9d3af521",
                "sha256": "6b90f3de8fed8553a63b416f389c98f5245e50f79d632f8c28c68c30674adc88"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3b9f5577d871cc118be5f88d9d3af521",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1960777,
            "upload_time": "2023-08-24T12:52:19",
            "upload_time_iso_8601": "2023-08-24T12:52:19.632381Z",
            "url": "https://files.pythonhosted.org/packages/23/9b/39d68a816e1dc12c991d2a68426e8ba5fe2ab3d75fd104410a481599ee8b/grex-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2208d118337e5388325d41257e98ce9b99164a06e38eecba2cac439e5f2e49d7",
                "md5": "02ae4d5c296589659758e782e99b2a0f",
                "sha256": "f7852bebc0afaa5cb3644d5f0e0d622bd0f129285e87c8749d5072b4d3e62f16"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "02ae4d5c296589659758e782e99b2a0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1996702,
            "upload_time": "2023-08-24T12:52:27",
            "upload_time_iso_8601": "2023-08-24T12:52:27.559685Z",
            "url": "https://files.pythonhosted.org/packages/22/08/d118337e5388325d41257e98ce9b99164a06e38eecba2cac439e5f2e49d7/grex-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "badcfa8a39746b2c0df20ed4c1be5e3245510d4aba72f2fc93f4800007339787",
                "md5": "27c01e62ee4972a7554a57c1eef36a64",
                "sha256": "3f1b79a7a009f026f6fec6562a33fce3dc3f4ce1e2d912f19495a5da94c48522"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "27c01e62ee4972a7554a57c1eef36a64",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1935929,
            "upload_time": "2023-08-24T12:52:35",
            "upload_time_iso_8601": "2023-08-24T12:52:35.427573Z",
            "url": "https://files.pythonhosted.org/packages/ba/dc/fa8a39746b2c0df20ed4c1be5e3245510d4aba72f2fc93f4800007339787/grex-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f346d7713b12d150844617da4e9faab4c3774eec0f2a8f077ac1ad79c6161f3",
                "md5": "d728f0ede38629381f0e752a20dd4259",
                "sha256": "c65b111ba378be7eacd1f17570863c80165c47785c8c5d8dd00b3d663c811efc"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d728f0ede38629381f0e752a20dd4259",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1911451,
            "upload_time": "2023-08-24T12:52:41",
            "upload_time_iso_8601": "2023-08-24T12:52:41.769927Z",
            "url": "https://files.pythonhosted.org/packages/9f/34/6d7713b12d150844617da4e9faab4c3774eec0f2a8f077ac1ad79c6161f3/grex-1.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff0d93fe167eb5608ddb9c5fa62f910b66797173c16cf789413f9cf86031149b",
                "md5": "74d25c94efe7fc1db9c6a47303326bd4",
                "sha256": "a1cdcc8372aa3c6d392535c2ff69b52a798bb1dca56d6a3ea393c25e799e6704"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "74d25c94efe7fc1db9c6a47303326bd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2127644,
            "upload_time": "2023-08-24T12:52:49",
            "upload_time_iso_8601": "2023-08-24T12:52:49.813607Z",
            "url": "https://files.pythonhosted.org/packages/ff/0d/93fe167eb5608ddb9c5fa62f910b66797173c16cf789413f9cf86031149b/grex-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "188f098d95225d4d0558c63660565bbe6d8385cf4f2cd1d4c065368a60d81590",
                "md5": "c16ab00aa8f04dfbe9e4c4badbc30a36",
                "sha256": "d4440d040249afbc782e9a617215f076e68f88d1aa3c548b4bde29c38a056f21"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c16ab00aa8f04dfbe9e4c4badbc30a36",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2221266,
            "upload_time": "2023-08-24T12:52:54",
            "upload_time_iso_8601": "2023-08-24T12:52:54.294216Z",
            "url": "https://files.pythonhosted.org/packages/18/8f/098d95225d4d0558c63660565bbe6d8385cf4f2cd1d4c065368a60d81590/grex-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ae635fcc65bf609bed376317e3af234a0386c862c0a83d98a18751a1d9f0f86",
                "md5": "1f5be483feb5e02be69cef45c01e0d5e",
                "sha256": "78e969329e18b488d554fb5fd4aa889f2dd371efb39e581dc41791107f9ea59d"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f5be483feb5e02be69cef45c01e0d5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1965146,
            "upload_time": "2023-08-24T12:53:02",
            "upload_time_iso_8601": "2023-08-24T12:53:02.352995Z",
            "url": "https://files.pythonhosted.org/packages/9a/e6/35fcc65bf609bed376317e3af234a0386c862c0a83d98a18751a1d9f0f86/grex-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87fdceef632df2f28bedd604adfa13df8ee66547c069ae51cb37d057f4807f29",
                "md5": "1c17c393a0f062445b2c812c5fc244f6",
                "sha256": "130e9fb84065b9437ac3dc3df3b299b4cef4a5aa1a92fba9cb240a08cb429147"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1c17c393a0f062445b2c812c5fc244f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1998693,
            "upload_time": "2023-08-24T12:53:07",
            "upload_time_iso_8601": "2023-08-24T12:53:07.256936Z",
            "url": "https://files.pythonhosted.org/packages/87/fd/ceef632df2f28bedd604adfa13df8ee66547c069ae51cb37d057f4807f29/grex-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65e7c7931f94bac142a2b707bb6c91edf1ac789a6c34cc410600b39565b98780",
                "md5": "0c35b8c2b9f81f3d37faba20c970272f",
                "sha256": "367ce08f319cd71057cf6cf2d944d4868516407b37cd7c13af710f40b08bd4a9"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "0c35b8c2b9f81f3d37faba20c970272f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 756422,
            "upload_time": "2023-08-24T12:53:10",
            "upload_time_iso_8601": "2023-08-24T12:53:10.186011Z",
            "url": "https://files.pythonhosted.org/packages/65/e7/c7931f94bac142a2b707bb6c91edf1ac789a6c34cc410600b39565b98780/grex-1.0.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5040b29d14f92b95596cf286a06a5ecfcb384d6f3808f2434bcf92f44b5e920c",
                "md5": "61a25a0d813810b8a1694a791c0c7a38",
                "sha256": "fc7228752f3b5580375b7c0c30c886432108c9252e784b5a721465c7722c1678"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "61a25a0d813810b8a1694a791c0c7a38",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 812454,
            "upload_time": "2023-08-24T12:53:13",
            "upload_time_iso_8601": "2023-08-24T12:53:13.799152Z",
            "url": "https://files.pythonhosted.org/packages/50/40/b29d14f92b95596cf286a06a5ecfcb384d6f3808f2434bcf92f44b5e920c/grex-1.0.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16af8e2348765f9613831193ed61534a124c1abcc6d5f0e573e4509901b9bd86",
                "md5": "30991780fe3d10c508844405f534c2f9",
                "sha256": "b65f85281c3e9bf113737fc06b2b880d63e91e905ed852c728795fbc1b6abc05"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "30991780fe3d10c508844405f534c2f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1936196,
            "upload_time": "2023-08-24T12:53:19",
            "upload_time_iso_8601": "2023-08-24T12:53:19.992375Z",
            "url": "https://files.pythonhosted.org/packages/16/af/8e2348765f9613831193ed61534a124c1abcc6d5f0e573e4509901b9bd86/grex-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "959989f0d4bd6e89b43c999218d4964a18efaced64ce69cfee884ecd49246433",
                "md5": "663d01b0740f36d8e269194aa2955e6e",
                "sha256": "2b06c1a0e5f11b7fbad76e780cd80366111db40608d8096b6f23d33237fa3d4e"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "663d01b0740f36d8e269194aa2955e6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1912016,
            "upload_time": "2023-08-24T12:53:24",
            "upload_time_iso_8601": "2023-08-24T12:53:24.946436Z",
            "url": "https://files.pythonhosted.org/packages/95/99/89f0d4bd6e89b43c999218d4964a18efaced64ce69cfee884ecd49246433/grex-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11044f70936c1f62c09321aa8c597432378a5a1a5db4feaf8e5e92265f72411c",
                "md5": "5c511bf5e732dc1f9c15c456661323a0",
                "sha256": "4964fb6f495510841008809e627c2849b24403eceb9f392dc799bdb118e570e2"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5c511bf5e732dc1f9c15c456661323a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2127512,
            "upload_time": "2023-08-24T12:53:29",
            "upload_time_iso_8601": "2023-08-24T12:53:29.575316Z",
            "url": "https://files.pythonhosted.org/packages/11/04/4f70936c1f62c09321aa8c597432378a5a1a5db4feaf8e5e92265f72411c/grex-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffc24e48a261f85886a8551e75b524a04243a4625ad197862e3b13f8eaf6469e",
                "md5": "a8a8c299977dc593dd1444dee1d6627f",
                "sha256": "aa93c0fb3fe546ea3238b69c5d434f04d641b6dc46f90a08668632417ed1cccb"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a8a8c299977dc593dd1444dee1d6627f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2220728,
            "upload_time": "2023-08-24T12:53:34",
            "upload_time_iso_8601": "2023-08-24T12:53:34.978845Z",
            "url": "https://files.pythonhosted.org/packages/ff/c2/4e48a261f85886a8551e75b524a04243a4625ad197862e3b13f8eaf6469e/grex-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82353bf7d8b124f02d9c9bcee91d066fcfb660954b450a9c182c4f4a8b1ec2a1",
                "md5": "bcc379dd18c86dd9d5c5c4ce782c4f63",
                "sha256": "c9159dc64b401b7170f3b93650bd5a736bc7be4426cd41a5ab817def7a603b96"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bcc379dd18c86dd9d5c5c4ce782c4f63",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1964287,
            "upload_time": "2023-08-24T12:53:47",
            "upload_time_iso_8601": "2023-08-24T12:53:47.486294Z",
            "url": "https://files.pythonhosted.org/packages/82/35/3bf7d8b124f02d9c9bcee91d066fcfb660954b450a9c182c4f4a8b1ec2a1/grex-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9d38e297c961e3a934809b0cb9e32e9d4389c40a2e434f4d313f1bcc19bd35e",
                "md5": "e39320685ca15dc78aa1df5969cde7d2",
                "sha256": "851f051015fd8d77abb3b3345cfe6c6cadd8ecd0e0e7125e9bb93d4c9e4cdd0b"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "e39320685ca15dc78aa1df5969cde7d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1999011,
            "upload_time": "2023-08-24T12:53:52",
            "upload_time_iso_8601": "2023-08-24T12:53:52.294036Z",
            "url": "https://files.pythonhosted.org/packages/f9/d3/8e297c961e3a934809b0cb9e32e9d4389c40a2e434f4d313f1bcc19bd35e/grex-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4179941789a2fb909b1abd05f62478adad30e948be0913e06d1bf618395029a2",
                "md5": "40a87d9dbe64a86f76bd2ee987389dc1",
                "sha256": "5dcc24583e24f7e76338a14a3a909030128225687677d823d6a45c8a7beaa25d"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "40a87d9dbe64a86f76bd2ee987389dc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 756436,
            "upload_time": "2023-08-24T12:53:56",
            "upload_time_iso_8601": "2023-08-24T12:53:56.763474Z",
            "url": "https://files.pythonhosted.org/packages/41/79/941789a2fb909b1abd05f62478adad30e948be0913e06d1bf618395029a2/grex-1.0.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa0bc65ac2dfd040a35c9d8033dca1869a48d975cab7b4d8d0836aeeaac0398b",
                "md5": "18a1f0b2d9fd09d67a056b9f31080dc0",
                "sha256": "19e491be37a791ca558ad433ccf38e78a8aaa933dcec1366f751145f996c0cbd"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "18a1f0b2d9fd09d67a056b9f31080dc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 812890,
            "upload_time": "2023-08-24T12:53:59",
            "upload_time_iso_8601": "2023-08-24T12:53:59.773393Z",
            "url": "https://files.pythonhosted.org/packages/fa/0b/c65ac2dfd040a35c9d8033dca1869a48d975cab7b4d8d0836aeeaac0398b/grex-1.0.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f669847434b825080036f757396ada600ee9a3700956ea43ed368840d0e04a8",
                "md5": "265000ce54940c0c1a4d8fac071597d4",
                "sha256": "a494e28a4b73f5fa51842dc2ee92c0d6d77f01e58e9ec56706855d6f65dce143"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "265000ce54940c0c1a4d8fac071597d4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1935762,
            "upload_time": "2023-08-24T12:54:04",
            "upload_time_iso_8601": "2023-08-24T12:54:04.988693Z",
            "url": "https://files.pythonhosted.org/packages/5f/66/9847434b825080036f757396ada600ee9a3700956ea43ed368840d0e04a8/grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d2670132cd9a705a77a92aa2350607d33f4626122387348d97986586eca39b5",
                "md5": "c64e7b1c972419f46cb5623f1e211fe0",
                "sha256": "e5d04e60aeb1b9eb7c7b165938b57613ac094ff0b2791f77ded4b1d8b3ef9fb9"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c64e7b1c972419f46cb5623f1e211fe0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1911943,
            "upload_time": "2023-08-24T12:54:10",
            "upload_time_iso_8601": "2023-08-24T12:54:10.170508Z",
            "url": "https://files.pythonhosted.org/packages/8d/26/70132cd9a705a77a92aa2350607d33f4626122387348d97986586eca39b5/grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "528bb6cb5dfc94df317998d5563d3c06587ce0b148524a160e45f84a92e129af",
                "md5": "dcd5fe582d3ff39dfe580f68c4192124",
                "sha256": "409ce3faae43f52a7f96745618bc5a951e65a0c78db98b111d2efcf37371aaa0"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "dcd5fe582d3ff39dfe580f68c4192124",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2127069,
            "upload_time": "2023-08-24T12:54:19",
            "upload_time_iso_8601": "2023-08-24T12:54:19.825360Z",
            "url": "https://files.pythonhosted.org/packages/52/8b/b6cb5dfc94df317998d5563d3c06587ce0b148524a160e45f84a92e129af/grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b66bfa40395fb1b18bca88bd9422c76d15244fe7c52331f13d1411601cd5f41",
                "md5": "bc62dfe2e46cdd29634cf21472877809",
                "sha256": "4884c21af7d758568653510afa15b889c969b2264c1957d98456cff4ea93aa60"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bc62dfe2e46cdd29634cf21472877809",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2219650,
            "upload_time": "2023-08-24T12:54:26",
            "upload_time_iso_8601": "2023-08-24T12:54:26.783740Z",
            "url": "https://files.pythonhosted.org/packages/0b/66/bfa40395fb1b18bca88bd9422c76d15244fe7c52331f13d1411601cd5f41/grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e075af4037294c705604117a7f5fbffd92210787dcd0af93b0af5445c39e2b0",
                "md5": "ed6786a8295112fbfc10f6008fd20dce",
                "sha256": "2ad7c2dffa99a777829d6f2bf14452dea75abf4c9426992833c5830735dbcb2a"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed6786a8295112fbfc10f6008fd20dce",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1964572,
            "upload_time": "2023-08-24T12:54:31",
            "upload_time_iso_8601": "2023-08-24T12:54:31.803473Z",
            "url": "https://files.pythonhosted.org/packages/0e/07/5af4037294c705604117a7f5fbffd92210787dcd0af93b0af5445c39e2b0/grex-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc1786bf346ddb61095dc346e7cfd3e6a45d1e117fb05107dc658d06879eb6f1",
                "md5": "b0ffdd66f558a79049cebd13eaf65944",
                "sha256": "6c297825ef22f5d36b9e50070af29c2b828d1dfeb8e61e0c0298d8fad93c3409"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b0ffdd66f558a79049cebd13eaf65944",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1999357,
            "upload_time": "2023-08-24T12:54:37",
            "upload_time_iso_8601": "2023-08-24T12:54:37.607189Z",
            "url": "https://files.pythonhosted.org/packages/bc/17/86bf346ddb61095dc346e7cfd3e6a45d1e117fb05107dc658d06879eb6f1/grex-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "679bafd4844eacab3c2948d9e7338dba4551e0b45f958db2ac95181b4c135495",
                "md5": "36b21589fec192fe24a504eb7a24968c",
                "sha256": "f9cdcd119e858ed33cb101d983183b4ea67a37f15077649d1ed5ce3b66cf35e1"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "36b21589fec192fe24a504eb7a24968c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1935790,
            "upload_time": "2023-08-24T12:54:42",
            "upload_time_iso_8601": "2023-08-24T12:54:42.152815Z",
            "url": "https://files.pythonhosted.org/packages/67/9b/afd4844eacab3c2948d9e7338dba4551e0b45f958db2ac95181b4c135495/grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b3dfbf92b14c16de436f7d8f502fb06d061cfa9a4543528e013e8d0a48855f4",
                "md5": "687ea1190d18798022579b817f2bba45",
                "sha256": "991329a89deea7f3c63d4c635ea4c57917176ebd971f81415b4b2d360f4e9fe2"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "687ea1190d18798022579b817f2bba45",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1911278,
            "upload_time": "2023-08-24T12:54:49",
            "upload_time_iso_8601": "2023-08-24T12:54:49.837969Z",
            "url": "https://files.pythonhosted.org/packages/2b/3d/fbf92b14c16de436f7d8f502fb06d061cfa9a4543528e013e8d0a48855f4/grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63b435e9032e6c3520ad36310fe94e9742ec5c1fbfc1fd6fdc5f2a9b0890ec76",
                "md5": "99e49899a7fdc14941387ac987c16b47",
                "sha256": "73ae61599b2eaa9551242b3305adaf280ae08fd59ca25d9ffde3526dbd1d3cf6"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "99e49899a7fdc14941387ac987c16b47",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2126804,
            "upload_time": "2023-08-24T12:54:55",
            "upload_time_iso_8601": "2023-08-24T12:54:55.207372Z",
            "url": "https://files.pythonhosted.org/packages/63/b4/35e9032e6c3520ad36310fe94e9742ec5c1fbfc1fd6fdc5f2a9b0890ec76/grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11198555476d2c370cb716c31f03d7bd0a94c867c3250aa94e9596c9a5651499",
                "md5": "2ef52a9f12cdac2506db58c11971a57e",
                "sha256": "c3d14d3d678f7fe5e5d0428281b5a5c74f79e25c39c1aaaae2d35819b9ad3ab4"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2ef52a9f12cdac2506db58c11971a57e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2220783,
            "upload_time": "2023-08-24T12:55:01",
            "upload_time_iso_8601": "2023-08-24T12:55:01.381171Z",
            "url": "https://files.pythonhosted.org/packages/11/19/8555476d2c370cb716c31f03d7bd0a94c867c3250aa94e9596c9a5651499/grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "209657de7d88c630ea66e182a4bcb2810b78c70192caa7588e88f255d33ecc09",
                "md5": "a1756296968b4a0596c1c1223de54f4d",
                "sha256": "264f7505e190ac1db606a800ca287d5e94c58e07f28d2a5ff666bc68d2420672"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1756296968b4a0596c1c1223de54f4d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1964079,
            "upload_time": "2023-08-24T12:55:06",
            "upload_time_iso_8601": "2023-08-24T12:55:06.837426Z",
            "url": "https://files.pythonhosted.org/packages/20/96/57de7d88c630ea66e182a4bcb2810b78c70192caa7588e88f255d33ecc09/grex-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "300ad5c8483b6fb687005db8d89717d58e7e27788265ae40047fcc286536730e",
                "md5": "46c5475b9f3f53ce57fa8a8209e6d7eb",
                "sha256": "e7b36bf1c9fdb1320cc7ec26564d17faf129051a4afbc36af67dcf2fda59273b"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "46c5475b9f3f53ce57fa8a8209e6d7eb",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1998901,
            "upload_time": "2023-08-24T12:55:11",
            "upload_time_iso_8601": "2023-08-24T12:55:11.704312Z",
            "url": "https://files.pythonhosted.org/packages/30/0a/d5c8483b6fb687005db8d89717d58e7e27788265ae40047fcc286536730e/grex-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c60c50f471ad12cc73da5f8254b26859065ca4dd3e4004c5c927287239454289",
                "md5": "a6bc309a522acb614df49231f13cb460",
                "sha256": "8a5193fdc69c35dbbaeaf6134cd68f54a83c2cc24b8e735340af01b7ab0498be"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a6bc309a522acb614df49231f13cb460",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1936317,
            "upload_time": "2023-08-24T12:55:16",
            "upload_time_iso_8601": "2023-08-24T12:55:16.352144Z",
            "url": "https://files.pythonhosted.org/packages/c6/0c/50f471ad12cc73da5f8254b26859065ca4dd3e4004c5c927287239454289/grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0b821480c67919140c8828b752077bfa9256cb79b178528ef7cc04c8f763eb0",
                "md5": "b7200456e3d292e038adec60c26db0d8",
                "sha256": "943fd76dfe0dd540a49a4a34e3b7c8d5f625fade1697095df2a4d0094eb8f65d"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b7200456e3d292e038adec60c26db0d8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1911707,
            "upload_time": "2023-08-24T12:55:24",
            "upload_time_iso_8601": "2023-08-24T12:55:24.185976Z",
            "url": "https://files.pythonhosted.org/packages/d0/b8/21480c67919140c8828b752077bfa9256cb79b178528ef7cc04c8f763eb0/grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15eda3688d47459afb7f8e7c073cf04b7ae67021caba3f6889deed179fd8078a",
                "md5": "7a81379cef35c29eff10af74bb7eed9c",
                "sha256": "8668f9e4ddbdb6f358b77a9b1de2bb520be90e585582c468cf4df37727eeaece"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7a81379cef35c29eff10af74bb7eed9c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2126753,
            "upload_time": "2023-08-24T12:55:30",
            "upload_time_iso_8601": "2023-08-24T12:55:30.380651Z",
            "url": "https://files.pythonhosted.org/packages/15/ed/a3688d47459afb7f8e7c073cf04b7ae67021caba3f6889deed179fd8078a/grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0d7c00d12c265ee3201d24f80799270d5a3b7b6458b722e831460f3541b239a",
                "md5": "0fffdf25136cf38f473302c494699fa1",
                "sha256": "793bfcf7112146e6c8cdb5d3c72823575f178096fa3849d88c1bf0d3d1860046"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0fffdf25136cf38f473302c494699fa1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2219347,
            "upload_time": "2023-08-24T12:55:40",
            "upload_time_iso_8601": "2023-08-24T12:55:40.601095Z",
            "url": "https://files.pythonhosted.org/packages/d0/d7/c00d12c265ee3201d24f80799270d5a3b7b6458b722e831460f3541b239a/grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00d5aeac21d4f69beed44f0287491ee74de22542ecb29c2ef0897818c6e37ffc",
                "md5": "31451136ed8d1c180a0ab8055a9e59ff",
                "sha256": "7c7d36845a5f9a7b6e6fde36fa212e412b1af1c74b383bb71b3af8c3ba96a874"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31451136ed8d1c180a0ab8055a9e59ff",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1964272,
            "upload_time": "2023-08-24T12:55:45",
            "upload_time_iso_8601": "2023-08-24T12:55:45.552534Z",
            "url": "https://files.pythonhosted.org/packages/00/d5/aeac21d4f69beed44f0287491ee74de22542ecb29c2ef0897818c6e37ffc/grex-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3bd94b39166b0d302950d9fcc5e39a15ad27648dfef1a6ab55e1d101355c53e7",
                "md5": "678b5dc6e06e932e9ec71c6e534223ec",
                "sha256": "93cb1a6bb907ab1281985101ef8990be01b173627e37fa7b89833db400fc46ce"
            },
            "downloads": -1,
            "filename": "grex-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "678b5dc6e06e932e9ec71c6e534223ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1998737,
            "upload_time": "2023-08-24T12:55:51",
            "upload_time_iso_8601": "2023-08-24T12:55:51.949308Z",
            "url": "https://files.pythonhosted.org/packages/3b/d9/4b39166b0d302950d9fcc5e39a15ad27648dfef1a6ab55e1d101355c53e7/grex-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be57238060c3af8e553fc95b4d9e9d0405e0f93e15d6c8d3addaaf520d1a0bf2",
                "md5": "80598933f53b5c38f13886de0612957c",
                "sha256": "d5389a3d914d57d012c98b570c337f27e446e30f1bfa8e2c781b5b9bd537d1b2"
            },
            "downloads": -1,
            "filename": "grex-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "80598933f53b5c38f13886de0612957c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 648588,
            "upload_time": "2023-08-24T12:55:55",
            "upload_time_iso_8601": "2023-08-24T12:55:55.318316Z",
            "url": "https://files.pythonhosted.org/packages/be/57/238060c3af8e553fc95b4d9e9d0405e0f93e15d6c8d3addaaf520d1a0bf2/grex-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-24 12:55:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pemistahl",
    "github_project": "grex",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "grex"
}
        
Elapsed time: 0.11204s