rdetoolkit


Namerdetoolkit JSON
Version 1.3.1 PyPI version JSON
download
home_pageNone
SummaryA module that supports the workflow of the RDE dataset construction program
upload_time2025-07-14 06:06:54
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords rdetoolkit rde toolkit structure dataset
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![GitHub Release](https://img.shields.io/github/v/release/nims-dpfc/rdetoolkit)
[![python.org](https://img.shields.io/badge/Python-3.9%7C3.10%7C3.11-%233776AB?logo=python)](https://www.python.org/downloads/release/python-3917/)
[![MIT License](https://img.shields.io/badge/license-MIT-green)](https://github.com/nims-dpfc/rdetoolkit/blob/main/LICENSE)
[![Issue](https://img.shields.io/badge/issue_tracking-github-orange)](https://github.com/nims-dpfc/rdetoolkit/issues)
![workflow](https://github.com/nims-dpfc/rdetoolkit/actions/workflows/main.yml/badge.svg)
![coverage](docs/img/coverage.svg)

> [日本語ドキュメント](docs/README_ja.md)

# RDEToolKit



RDEToolKit is a fundamental Python package for creating workflows of RDE-structured programs.
By utilizing various modules provided by RDEToolKit, you can easily build processes for registering research and experimental data into RDE.
Additionally, by combining RDEToolKit with Python modules used in your research or experiments, you can achieve a wide range of tasks, from data registration to processing and visualization.

## Documents

See the [documentation](https://nims-mdpf.github.io/rdetoolkit/) for more details.

## Contributing

If you wish to make changes, please read the following document first:

- [CONTRIBUTING.md](CONTRIBUTING.md)

## Install

To install, run the following command:

```shell
pip install rdetoolkit
```

## Usage

Below is an example of building an RDE-structured program.

### Create a Project

First, prepare the necessary files for the RDE-structured program. Run the following command in your terminal or shell:

```python
python3 -m rdetoolkit init
```

If the command runs successfully, the following files and directories will be generated.

In this example, development proceeds within a directory named `container`.

- **requirements.txt**
  - Add any Python packages you wish to use for building the structured program. Run `pip install` as needed.
- **modules**
  - Store programs you want to use for structured processing here. Details are explained in a later section.
- **main.py**
  - Defines the entry point for the structured program.
- **data/inputdata**
  - Place data files to be processed here.
- **data/invoice**
  - Required even as an empty file for local execution.
- **data/tasksupport**
  - Place supporting files for structured processing here.

```shell
container
├── data
│   ├── inputdata
│   ├── invoice
│   │   └── invoice.json
│   └── tasksupport
│       ├── invoice.schema.json
│       └── metadata-def.json
├── main.py
├── modules
└── requirements.txt
```

### Implementing Structured Processing

You can process input data (e.g., data transformation, visualization, creation of CSV files for machine learning) and register the results into RDE. By following the format below, you can incorporate your own processing into the RDE structured workflow.

The `dataset()` function should accept the following two arguments:

- srcpaths (RdeInputDirPaths): Paths to input resources for processing
- resource_paths (RdeOutputResourcePath): Paths to output resources for saving results

```python
def dataset(srcpaths: RdeInputDirPaths, resource_paths: RdeOutputResourcePath):
    ...
```

In this example, we define a dummy function `display_messsage()` under `modules` to demonstrate how to implement custom structured processing. Create a file named `modules/modules.py` as follows:

```python
# modules/modules.py
def display_messsage(path_list):
    print(f"Test Message!: {path_list}")

def dataset(srcpaths, resource_paths):
    display_messsage(srcpaths)
    display_messsage(resource_paths)
```

### About the Entry Point

Next, use `rdetoolkit.workflow.run()` to define the entry point. The main tasks performed in the entry point are:

- Checking input files
- Obtaining various directory paths as specified by RDE structure
- Executing user-defined structured processing

```python
import rdetoolkit
from modules.modules import dataset  # User-defined structured processing function

# Pass the user-defined structured processing function as an argument
rdetoolkit.workflows.run(custom_dataset_function=dataset)
```

If you do not wish to pass a custom structured processing function, define as follows:

```python
import rdetoolkit

rdetoolkit.workflows.run()
```

### Running in a Local Environment

To debug or test the RDE structured process in your local environment, simply add the necessary input data to the `data` directory. As long as the `data` directory is placed at the same level as `main.py`, it will work as shown below:

```shell
container/
├── main.py
├── requirements.txt
├── modules/
│   └── modules.py
└── data/
    ├── inputdata/
    │   └── <experimental data to process>
    ├── invoice/
    │   └── invoice.json
    └── tasksupport/
        ├── metadata-def.json
        └── invoice.schema.json
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "rdetoolkit",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "rdetoolkit, RDE, toolkit, structure, dataset",
    "author": null,
    "author_email": "Sonokawa Hayato <SONOKAWA.Hayato@nims.go.jp>",
    "download_url": "https://files.pythonhosted.org/packages/a7/55/2aad2b347e01fdd3b9e93a8320284d46e98aa1b66f1ceda908159270feac/rdetoolkit-1.3.1.tar.gz",
    "platform": null,
    "description": "![GitHub Release](https://img.shields.io/github/v/release/nims-dpfc/rdetoolkit)\n[![python.org](https://img.shields.io/badge/Python-3.9%7C3.10%7C3.11-%233776AB?logo=python)](https://www.python.org/downloads/release/python-3917/)\n[![MIT License](https://img.shields.io/badge/license-MIT-green)](https://github.com/nims-dpfc/rdetoolkit/blob/main/LICENSE)\n[![Issue](https://img.shields.io/badge/issue_tracking-github-orange)](https://github.com/nims-dpfc/rdetoolkit/issues)\n![workflow](https://github.com/nims-dpfc/rdetoolkit/actions/workflows/main.yml/badge.svg)\n![coverage](docs/img/coverage.svg)\n\n> [\u65e5\u672c\u8a9e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8](docs/README_ja.md)\n\n# RDEToolKit\n\n\n\nRDEToolKit is a fundamental Python package for creating workflows of RDE-structured programs.\nBy utilizing various modules provided by RDEToolKit, you can easily build processes for registering research and experimental data into RDE.\nAdditionally, by combining RDEToolKit with Python modules used in your research or experiments, you can achieve a wide range of tasks, from data registration to processing and visualization.\n\n## Documents\n\nSee the [documentation](https://nims-mdpf.github.io/rdetoolkit/) for more details.\n\n## Contributing\n\nIf you wish to make changes, please read the following document first:\n\n- [CONTRIBUTING.md](CONTRIBUTING.md)\n\n## Install\n\nTo install, run the following command:\n\n```shell\npip install rdetoolkit\n```\n\n## Usage\n\nBelow is an example of building an RDE-structured program.\n\n### Create a Project\n\nFirst, prepare the necessary files for the RDE-structured program. Run the following command in your terminal or shell:\n\n```python\npython3 -m rdetoolkit init\n```\n\nIf the command runs successfully, the following files and directories will be generated.\n\nIn this example, development proceeds within a directory named `container`.\n\n- **requirements.txt**\n  - Add any Python packages you wish to use for building the structured program. Run `pip install` as needed.\n- **modules**\n  - Store programs you want to use for structured processing here. Details are explained in a later section.\n- **main.py**\n  - Defines the entry point for the structured program.\n- **data/inputdata**\n  - Place data files to be processed here.\n- **data/invoice**\n  - Required even as an empty file for local execution.\n- **data/tasksupport**\n  - Place supporting files for structured processing here.\n\n```shell\ncontainer\n\u251c\u2500\u2500 data\n\u2502   \u251c\u2500\u2500 inputdata\n\u2502   \u251c\u2500\u2500 invoice\n\u2502   \u2502   \u2514\u2500\u2500 invoice.json\n\u2502   \u2514\u2500\u2500 tasksupport\n\u2502       \u251c\u2500\u2500 invoice.schema.json\n\u2502       \u2514\u2500\u2500 metadata-def.json\n\u251c\u2500\u2500 main.py\n\u251c\u2500\u2500 modules\n\u2514\u2500\u2500 requirements.txt\n```\n\n### Implementing Structured Processing\n\nYou can process input data (e.g., data transformation, visualization, creation of CSV files for machine learning) and register the results into RDE. By following the format below, you can incorporate your own processing into the RDE structured workflow.\n\nThe `dataset()` function should accept the following two arguments:\n\n- srcpaths (RdeInputDirPaths): Paths to input resources for processing\n- resource_paths (RdeOutputResourcePath): Paths to output resources for saving results\n\n```python\ndef dataset(srcpaths: RdeInputDirPaths, resource_paths: RdeOutputResourcePath):\n    ...\n```\n\nIn this example, we define a dummy function `display_messsage()` under `modules` to demonstrate how to implement custom structured processing. Create a file named `modules/modules.py` as follows:\n\n```python\n# modules/modules.py\ndef display_messsage(path_list):\n    print(f\"Test Message!: {path_list}\")\n\ndef dataset(srcpaths, resource_paths):\n    display_messsage(srcpaths)\n    display_messsage(resource_paths)\n```\n\n### About the Entry Point\n\nNext, use `rdetoolkit.workflow.run()` to define the entry point. The main tasks performed in the entry point are:\n\n- Checking input files\n- Obtaining various directory paths as specified by RDE structure\n- Executing user-defined structured processing\n\n```python\nimport rdetoolkit\nfrom modules.modules import dataset  # User-defined structured processing function\n\n# Pass the user-defined structured processing function as an argument\nrdetoolkit.workflows.run(custom_dataset_function=dataset)\n```\n\nIf you do not wish to pass a custom structured processing function, define as follows:\n\n```python\nimport rdetoolkit\n\nrdetoolkit.workflows.run()\n```\n\n### Running in a Local Environment\n\nTo debug or test the RDE structured process in your local environment, simply add the necessary input data to the `data` directory. As long as the `data` directory is placed at the same level as `main.py`, it will work as shown below:\n\n```shell\ncontainer/\n\u251c\u2500\u2500 main.py\n\u251c\u2500\u2500 requirements.txt\n\u251c\u2500\u2500 modules/\n\u2502   \u2514\u2500\u2500 modules.py\n\u2514\u2500\u2500 data/\n    \u251c\u2500\u2500 inputdata/\n    \u2502   \u2514\u2500\u2500 <experimental data to process>\n    \u251c\u2500\u2500 invoice/\n    \u2502   \u2514\u2500\u2500 invoice.json\n    \u2514\u2500\u2500 tasksupport/\n        \u251c\u2500\u2500 metadata-def.json\n        \u2514\u2500\u2500 invoice.schema.json\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A module that supports the workflow of the RDE dataset construction program",
    "version": "1.3.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/nims-dpfc/rdetoolkit",
        "Homepage": "https://github.com/nims-dpfc/rdetoolkit"
    },
    "split_keywords": [
        "rdetoolkit",
        " rde",
        " toolkit",
        " structure",
        " dataset"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df84515ca45aabe59c40a4c0651c7ccd1c3be0cbaf3da896a459304251c2c335",
                "md5": "806e635276dc3a46acab81ed827f5f7b",
                "sha256": "98efc12447daa556ee678d9ae706ea69e2622f3eb6f7fc2a8ce82fa415b9ac60"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "806e635276dc3a46acab81ed827f5f7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1642835,
            "upload_time": "2025-07-14T06:04:22",
            "upload_time_iso_8601": "2025-07-14T06:04:22.972545Z",
            "url": "https://files.pythonhosted.org/packages/df/84/515ca45aabe59c40a4c0651c7ccd1c3be0cbaf3da896a459304251c2c335/rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "005319b2a62e7707e4ee350a9d3c7d5f5b4e0a3ab4e572fbec67dce49b334b27",
                "md5": "2a5d5d5669d16d7cb9b97cf4e198e6d2",
                "sha256": "d7134f596862f41b0d84d359f1ea9f48069f84d308ab3c4bdd1b8f9660ebddc7"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2a5d5d5669d16d7cb9b97cf4e198e6d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1670455,
            "upload_time": "2025-07-14T06:04:35",
            "upload_time_iso_8601": "2025-07-14T06:04:35.980759Z",
            "url": "https://files.pythonhosted.org/packages/00/53/19b2a62e7707e4ee350a9d3c7d5f5b4e0a3ab4e572fbec67dce49b334b27/rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2b4895c236176ccd1027522ca12dff72a5f87fd78eacb700d720e2027623057",
                "md5": "39cf385262c64794e491af7e5ae85b91",
                "sha256": "1f51fb6111064979fad36df2904b798e8e82b918168f8b17ab739d18ff78be9d"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "39cf385262c64794e491af7e5ae85b91",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1808349,
            "upload_time": "2025-07-14T06:04:48",
            "upload_time_iso_8601": "2025-07-14T06:04:48.636648Z",
            "url": "https://files.pythonhosted.org/packages/e2/b4/895c236176ccd1027522ca12dff72a5f87fd78eacb700d720e2027623057/rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d566038f2e798d1e872d53d047d79e41f06ade418c93434174f310dea12ca99",
                "md5": "54c5054e46116766cff72b21461807b6",
                "sha256": "757706a27d17a13fad13ab04e891cc2c25b8c12180117ac6efa737d05de9408e"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "54c5054e46116766cff72b21461807b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1898928,
            "upload_time": "2025-07-14T06:05:02",
            "upload_time_iso_8601": "2025-07-14T06:05:02.070636Z",
            "url": "https://files.pythonhosted.org/packages/2d/56/6038f2e798d1e872d53d047d79e41f06ade418c93434174f310dea12ca99/rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc8c8be7802904426120f8792340dcea2f9c0b227bb1a75a2e2b65602806de10",
                "md5": "1b8667bea325da42df85ee3994033068",
                "sha256": "facafbce2e2d51e212b0aee4534149bbdb7f0a04700b0d401a11eda37e06c924"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1b8667bea325da42df85ee3994033068",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1722276,
            "upload_time": "2025-07-14T06:05:13",
            "upload_time_iso_8601": "2025-07-14T06:05:13.927323Z",
            "url": "https://files.pythonhosted.org/packages/dc/8c/8be7802904426120f8792340dcea2f9c0b227bb1a75a2e2b65602806de10/rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95a210b86cac3d73e226fbc7985ec2b9ef56fbe05d89e73ee58f9e034ad44df9",
                "md5": "23d778062ead8c6089c5322238a758b3",
                "sha256": "ae0be8117832b08ee0ce19ae51657a5b0b17714f2a5a2f69fa018663dfc904da"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "23d778062ead8c6089c5322238a758b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1681448,
            "upload_time": "2025-07-14T06:05:26",
            "upload_time_iso_8601": "2025-07-14T06:05:26.345005Z",
            "url": "https://files.pythonhosted.org/packages/95/a2/10b86cac3d73e226fbc7985ec2b9ef56fbe05d89e73ee58f9e034ad44df9/rdetoolkit-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f031fad411ed482756ca2cdb3e89f64bd2e545cf72ba415819520bdb92c39a9d",
                "md5": "27b6ffca9c111739857ef9f579a92379",
                "sha256": "41d3e00cf21d9268f62e0c6a24b3c0a53f3be1d22b3892118834b693fb837356"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "27b6ffca9c111739857ef9f579a92379",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1816924,
            "upload_time": "2025-07-14T06:05:49",
            "upload_time_iso_8601": "2025-07-14T06:05:49.107701Z",
            "url": "https://files.pythonhosted.org/packages/f0/31/fad411ed482756ca2cdb3e89f64bd2e545cf72ba415819520bdb92c39a9d/rdetoolkit-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a7312085bde02f132667711d6483e1cac93742cf7651f3812619cdab19743fe",
                "md5": "ca1d999616972aff18114eea1d0fad3f",
                "sha256": "3f27f03e10857dd9ab0bf96d539ba4c5a50241790718a7d6ddcecda552d136bf"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ca1d999616972aff18114eea1d0fad3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1932530,
            "upload_time": "2025-07-14T06:06:01",
            "upload_time_iso_8601": "2025-07-14T06:06:01.248570Z",
            "url": "https://files.pythonhosted.org/packages/1a/73/12085bde02f132667711d6483e1cac93742cf7651f3812619cdab19743fe/rdetoolkit-1.3.1-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c28d20a526d3b76a44e4c5060c33bacf3cc676ad7cdcc4a916b260f752a9628",
                "md5": "dea6a5f96e41a7462993f4b254b86571",
                "sha256": "3ffddf457032717acdff75bbcbc9ecfb2f9182a9e11c331c6783ad591ad97a87"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "dea6a5f96e41a7462993f4b254b86571",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1922772,
            "upload_time": "2025-07-14T06:06:12",
            "upload_time_iso_8601": "2025-07-14T06:06:12.900452Z",
            "url": "https://files.pythonhosted.org/packages/3c/28/d20a526d3b76a44e4c5060c33bacf3cc676ad7cdcc4a916b260f752a9628/rdetoolkit-1.3.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8fde73a38d493f9e7be4c469410b56522eb4ad4d747223e628b1f71da0b8dca9",
                "md5": "9e93b7803e26790c07f31e0edea445b7",
                "sha256": "bfe68cf549f25572df74a11b53fcb55b7034a37d4ab31f1d2fdf2e9f227ac92a"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e93b7803e26790c07f31e0edea445b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1851886,
            "upload_time": "2025-07-14T06:06:24",
            "upload_time_iso_8601": "2025-07-14T06:06:24.862417Z",
            "url": "https://files.pythonhosted.org/packages/8f/de/73a38d493f9e7be4c469410b56522eb4ad4d747223e628b1f71da0b8dca9/rdetoolkit-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c118de49fc7bbd2211342b845b254365df36afd0a0f81e992bb029a6df7a1375",
                "md5": "bcbf3d2094b6b8be156012a87d5f1f5a",
                "sha256": "c3d7753e20e8a8a03b35a6024360462594e0ec5d7f8817295b1c2c4f33f9e397"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "bcbf3d2094b6b8be156012a87d5f1f5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1394984,
            "upload_time": "2025-07-14T06:06:45",
            "upload_time_iso_8601": "2025-07-14T06:06:45.722590Z",
            "url": "https://files.pythonhosted.org/packages/c1/18/de49fc7bbd2211342b845b254365df36afd0a0f81e992bb029a6df7a1375/rdetoolkit-1.3.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "20b993568036eddd7aeb4d2cb37b2f20b2bf0cd1e7ef3c0c39e3c05471c22750",
                "md5": "467e2ec16883d03c4c1a10aa05fa30a1",
                "sha256": "b1d766b46ecd21b661ef3af03f0e99ae803a6bd2436a3de1dba03f961ad7195c"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "467e2ec16883d03c4c1a10aa05fa30a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1409578,
            "upload_time": "2025-07-14T06:06:37",
            "upload_time_iso_8601": "2025-07-14T06:06:37.640730Z",
            "url": "https://files.pythonhosted.org/packages/20/b9/93568036eddd7aeb4d2cb37b2f20b2bf0cd1e7ef3c0c39e3c05471c22750/rdetoolkit-1.3.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9aec4466cbc43cd3d48fc30592af21e20f41d89b2774a8cdc0c7ea7fdcb007d",
                "md5": "708841018bc8848c09e7a9289a2ab3de",
                "sha256": "291605a1a5930be513852861ba70d39d9c5b5e4dcb5b94ff8dadd9af788e4b84"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "708841018bc8848c09e7a9289a2ab3de",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1592410,
            "upload_time": "2025-07-14T06:05:43",
            "upload_time_iso_8601": "2025-07-14T06:05:43.972469Z",
            "url": "https://files.pythonhosted.org/packages/d9/ae/c4466cbc43cd3d48fc30592af21e20f41d89b2774a8cdc0c7ea7fdcb007d/rdetoolkit-1.3.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a061cbafa234c4ca5dbc997a9a72d99e6efa535b656e9ca5b3649153c6b0e777",
                "md5": "40aa360e6df0d80ba4d16a71af0dcb02",
                "sha256": "22816c4dac3edb859f5c79cc3f3399942735bcdce0d0b43efeb9df99f855ca9c"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "40aa360e6df0d80ba4d16a71af0dcb02",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1537179,
            "upload_time": "2025-07-14T06:05:39",
            "upload_time_iso_8601": "2025-07-14T06:05:39.448928Z",
            "url": "https://files.pythonhosted.org/packages/a0/61/cbafa234c4ca5dbc997a9a72d99e6efa535b656e9ca5b3649153c6b0e777/rdetoolkit-1.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73e2b5d648f29a663d6470242845f25c6fb920ff81752f2e0a6e3a1deda6d883",
                "md5": "035d508190d7b8b529b45941a381afb8",
                "sha256": "7bc8e042d275d77aca551ea0fa8e481900ec52f0f0c117600c48cb164290292d"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "035d508190d7b8b529b45941a381afb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1642462,
            "upload_time": "2025-07-14T06:04:25",
            "upload_time_iso_8601": "2025-07-14T06:04:25.289334Z",
            "url": "https://files.pythonhosted.org/packages/73/e2/b5d648f29a663d6470242845f25c6fb920ff81752f2e0a6e3a1deda6d883/rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a5af99fe795f0c657de2e2419eefa155f37b03733b2ea2fdce383b7dc1d394e",
                "md5": "955c99a97572ef16d25686f828e965af",
                "sha256": "4636cf8e442de7df0664ba5a06f44800c483ea5c9bd093b1ba7cd543ebf2bd70"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "955c99a97572ef16d25686f828e965af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1670381,
            "upload_time": "2025-07-14T06:04:37",
            "upload_time_iso_8601": "2025-07-14T06:04:37.576125Z",
            "url": "https://files.pythonhosted.org/packages/5a/5a/f99fe795f0c657de2e2419eefa155f37b03733b2ea2fdce383b7dc1d394e/rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eae0cd0f69a1fa4112b2fedd50566dbf1aa608869e73a5d16e50a85da84c8709",
                "md5": "5555bf6ca2146236536b337063d0f0e9",
                "sha256": "b82dcc534f757e32767a20e3dee877d3838b03ef0410b11ccc18569125bbdb8a"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5555bf6ca2146236536b337063d0f0e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1808005,
            "upload_time": "2025-07-14T06:04:50",
            "upload_time_iso_8601": "2025-07-14T06:04:50.595781Z",
            "url": "https://files.pythonhosted.org/packages/ea/e0/cd0f69a1fa4112b2fedd50566dbf1aa608869e73a5d16e50a85da84c8709/rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "697994180fb5fb67e561e20573cbd643d8576cfe0c127448232d40cb02940bce",
                "md5": "d6211a2cc6bb609d76c32a9567689a9d",
                "sha256": "ba69b2da1fbfc5cd726b63081c681987c705992fde3dfca9010366ce9141d4e1"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d6211a2cc6bb609d76c32a9567689a9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1898870,
            "upload_time": "2025-07-14T06:05:03",
            "upload_time_iso_8601": "2025-07-14T06:05:03.678383Z",
            "url": "https://files.pythonhosted.org/packages/69/79/94180fb5fb67e561e20573cbd643d8576cfe0c127448232d40cb02940bce/rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb89478c2040c6edcc58b50d236df9f429ab1e57f368bc0ea24d72512e63895d",
                "md5": "d3d3ace3ce60f2efcbdd5f90395d3082",
                "sha256": "986b4db9c526d5babf2c3fb55ccd257127ff363af75278b7648689330b6b4479"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d3d3ace3ce60f2efcbdd5f90395d3082",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1721564,
            "upload_time": "2025-07-14T06:05:15",
            "upload_time_iso_8601": "2025-07-14T06:05:15.969233Z",
            "url": "https://files.pythonhosted.org/packages/fb/89/478c2040c6edcc58b50d236df9f429ab1e57f368bc0ea24d72512e63895d/rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65a52237365b6a93ab6ab6c195a1ca09a2c4cc0fa4ff213d6e58a3fba7e87728",
                "md5": "47d003a38bdfb4e8d02237143a650e34",
                "sha256": "2f56bf8ca3de8b78d3b07aff5daf94a837b15cde22f7764da1f70fb9160f78a1"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47d003a38bdfb4e8d02237143a650e34",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1681296,
            "upload_time": "2025-07-14T06:05:28",
            "upload_time_iso_8601": "2025-07-14T06:05:28.791259Z",
            "url": "https://files.pythonhosted.org/packages/65/a5/2237365b6a93ab6ab6c195a1ca09a2c4cc0fa4ff213d6e58a3fba7e87728/rdetoolkit-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f32b22b19a51ec0668eeddbd503b890b707cfbea678b713a19f673be4354d053",
                "md5": "4bdd4ff752bacca7576f5191ab381f2b",
                "sha256": "2411d62444da2a5fc27e214ecf0cca0e996ca6c24c7f2490c702e141ab50c5f6"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4bdd4ff752bacca7576f5191ab381f2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1816398,
            "upload_time": "2025-07-14T06:05:51",
            "upload_time_iso_8601": "2025-07-14T06:05:51.107273Z",
            "url": "https://files.pythonhosted.org/packages/f3/2b/22b19a51ec0668eeddbd503b890b707cfbea678b713a19f673be4354d053/rdetoolkit-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bfbc44ebda57136ae344f86441709a7ff62a44e1eb7ffa338e34d1fe8577a64d",
                "md5": "a69a63e7a0a66ca9a0c3aefe2f7eb272",
                "sha256": "836bc9b48486dbdfec8e1cf79f657e4d4c30ffec31ca11d47d6bceb9fec8b057"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a69a63e7a0a66ca9a0c3aefe2f7eb272",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1932232,
            "upload_time": "2025-07-14T06:06:02",
            "upload_time_iso_8601": "2025-07-14T06:06:02.876878Z",
            "url": "https://files.pythonhosted.org/packages/bf/bc/44ebda57136ae344f86441709a7ff62a44e1eb7ffa338e34d1fe8577a64d/rdetoolkit-1.3.1-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c9dfb00d4f7bbff7cd70649dc120ef08642bd8862ac8b646deecb74b5d1c699",
                "md5": "1e0cf7114c2948a731aafb0f0ddaa309",
                "sha256": "a6c5610f688eb2f47381a70097ab020e400a74a0044908c48ab0a75cd3ceedbb"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1e0cf7114c2948a731aafb0f0ddaa309",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1922564,
            "upload_time": "2025-07-14T06:06:14",
            "upload_time_iso_8601": "2025-07-14T06:06:14.483767Z",
            "url": "https://files.pythonhosted.org/packages/2c/9d/fb00d4f7bbff7cd70649dc120ef08642bd8862ac8b646deecb74b5d1c699/rdetoolkit-1.3.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07c9e6ad4d76d1ae277e6c3f0c0f3ef787f40b59e72193b521c39744e0aa5a8f",
                "md5": "a6739871390e5f0788527e5eb5635b59",
                "sha256": "dc3b490d81fda04fcf646ae57b8f50700bff398f2790a723934f8bf910702be2"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6739871390e5f0788527e5eb5635b59",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1851631,
            "upload_time": "2025-07-14T06:06:26",
            "upload_time_iso_8601": "2025-07-14T06:06:26.554037Z",
            "url": "https://files.pythonhosted.org/packages/07/c9/e6ad4d76d1ae277e6c3f0c0f3ef787f40b59e72193b521c39744e0aa5a8f/rdetoolkit-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1ad3f752d0644b7a76278fd19afc17bdbc5746e4a3d01980d89ae9ca73f6060",
                "md5": "53c90a2872b6b3d75c1e41396ce5cb39",
                "sha256": "6628f11e2188cfeebfd6442b65f403f9cf639ba14478c5456f93599101fd2a85"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "53c90a2872b6b3d75c1e41396ce5cb39",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1394933,
            "upload_time": "2025-07-14T06:06:47",
            "upload_time_iso_8601": "2025-07-14T06:06:47.278825Z",
            "url": "https://files.pythonhosted.org/packages/b1/ad/3f752d0644b7a76278fd19afc17bdbc5746e4a3d01980d89ae9ca73f6060/rdetoolkit-1.3.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41c0ba935f40da1f64ad81a92688982f06991062d121911684f8a6b4a8ce6ff3",
                "md5": "894d8e95c943e14ed8f5df86f0b6a3b3",
                "sha256": "5bb4714a88df72f949886fb48103157870e164b13c9275f6e74fd6082d726042"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "894d8e95c943e14ed8f5df86f0b6a3b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1409523,
            "upload_time": "2025-07-14T06:06:39",
            "upload_time_iso_8601": "2025-07-14T06:06:39.202945Z",
            "url": "https://files.pythonhosted.org/packages/41/c0/ba935f40da1f64ad81a92688982f06991062d121911684f8a6b4a8ce6ff3/rdetoolkit-1.3.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bce3fb60ce2d4c5625f09ba45a6d5ee0f06231dbf9e3733d42dca0ee052244e",
                "md5": "ef62c170b44b9f1aa67de536af963f49",
                "sha256": "05899eb18d8bbc78c7aa908a471a2129535e0a47d3fc6f83aacf609b5b88d0d8"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef62c170b44b9f1aa67de536af963f49",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1591089,
            "upload_time": "2025-07-14T06:05:45",
            "upload_time_iso_8601": "2025-07-14T06:05:45.566515Z",
            "url": "https://files.pythonhosted.org/packages/6b/ce/3fb60ce2d4c5625f09ba45a6d5ee0f06231dbf9e3733d42dca0ee052244e/rdetoolkit-1.3.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3dfd1b52bf76161e251eba4137bf3d8b5e01305b30b580185c256d20cf1f89c",
                "md5": "de4b0e39bdda0de11102860dd8670e75",
                "sha256": "5719d739cf546d724bc695ac51012b854b79f400d460b48c7aef573f43d3aeec"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "de4b0e39bdda0de11102860dd8670e75",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1537153,
            "upload_time": "2025-07-14T06:05:40",
            "upload_time_iso_8601": "2025-07-14T06:05:40.971593Z",
            "url": "https://files.pythonhosted.org/packages/a3/df/d1b52bf76161e251eba4137bf3d8b5e01305b30b580185c256d20cf1f89c/rdetoolkit-1.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fd8a067cf89addef95148bbefa2cb9a012a9efe22704b2eb3c6f032f1ecb99b",
                "md5": "02c3d3a4a229bd32c3ccd1a7070d3420",
                "sha256": "192b86d6942d39ec549a3a82bef51c49565e8325cd4a4b23a22f168e541f7f95"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "02c3d3a4a229bd32c3ccd1a7070d3420",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1642527,
            "upload_time": "2025-07-14T06:04:27",
            "upload_time_iso_8601": "2025-07-14T06:04:27.137195Z",
            "url": "https://files.pythonhosted.org/packages/9f/d8/a067cf89addef95148bbefa2cb9a012a9efe22704b2eb3c6f032f1ecb99b/rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f208f9688f153a3ee739aeae7903398d6f17cdd9b2e01c2a3f48ea4ebede6e9f",
                "md5": "9c85f45b3f998984a34603da108047e5",
                "sha256": "076b78b2a1cf15d2b726b0e75fd529c454d1ec874a7bc13bc1858d7a5bbea01d"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9c85f45b3f998984a34603da108047e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1670986,
            "upload_time": "2025-07-14T06:04:39",
            "upload_time_iso_8601": "2025-07-14T06:04:39.244217Z",
            "url": "https://files.pythonhosted.org/packages/f2/08/f9688f153a3ee739aeae7903398d6f17cdd9b2e01c2a3f48ea4ebede6e9f/rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a2b15bda0f775f5fdd22028ad88d1ca29d4258570c3cb23a41d65debe135980",
                "md5": "c6e5122e1be354dbba84fd0e3527ec9d",
                "sha256": "85ea69009ef6bc804f5b8441729b6c2315ee1761ba1bcaeea708fc415c8c6cca"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c6e5122e1be354dbba84fd0e3527ec9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1808047,
            "upload_time": "2025-07-14T06:04:52",
            "upload_time_iso_8601": "2025-07-14T06:04:52.590448Z",
            "url": "https://files.pythonhosted.org/packages/3a/2b/15bda0f775f5fdd22028ad88d1ca29d4258570c3cb23a41d65debe135980/rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0b3efe81dd22e1dadadb0af0465c8a3358a5752e924607752df2d860330443b",
                "md5": "e2edc9160a7af157e8948b5424fa8af8",
                "sha256": "8663dd59852fe88e261916e59a1ddf6507cd8c8c168272a07f43c9dd3c2a85be"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e2edc9160a7af157e8948b5424fa8af8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1898388,
            "upload_time": "2025-07-14T06:05:05",
            "upload_time_iso_8601": "2025-07-14T06:05:05.587738Z",
            "url": "https://files.pythonhosted.org/packages/c0/b3/efe81dd22e1dadadb0af0465c8a3358a5752e924607752df2d860330443b/rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ccfda87145eeee33f6f44c35cd423a66ba3932c2463676a063e6e471a9af19d6",
                "md5": "2d2cd9f0a91242bb3693e91137fcc69e",
                "sha256": "c8925a7b854fbb20439a9e2a7e91ca962fb4cc6c28bf8f7369bc0c1a58eaba7b"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2d2cd9f0a91242bb3693e91137fcc69e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1720548,
            "upload_time": "2025-07-14T06:05:17",
            "upload_time_iso_8601": "2025-07-14T06:05:17.646042Z",
            "url": "https://files.pythonhosted.org/packages/cc/fd/a87145eeee33f6f44c35cd423a66ba3932c2463676a063e6e471a9af19d6/rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6342002066cc6af5cf8ef04f843a93efe49de5873753a5393ff424f013c0692d",
                "md5": "3bcaf590703633dc14ba2471f9647c95",
                "sha256": "a5e9bd858f6eb95d592275125781819383a2122bee7303b7eb7d745632aa28e2"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3bcaf590703633dc14ba2471f9647c95",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1680995,
            "upload_time": "2025-07-14T06:05:30",
            "upload_time_iso_8601": "2025-07-14T06:05:30.889600Z",
            "url": "https://files.pythonhosted.org/packages/63/42/002066cc6af5cf8ef04f843a93efe49de5873753a5393ff424f013c0692d/rdetoolkit-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43939a6445a2db5c746c029f90eb83956ca2c6e2165efc3f6dd8adce97c03e01",
                "md5": "ae3e667e69bf3a6d1043d7e32436711f",
                "sha256": "aafecde2cd20bfe6fc5820bebeaa3c72ceb4d233362c621ba54362f41e89a7e5"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ae3e667e69bf3a6d1043d7e32436711f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1816155,
            "upload_time": "2025-07-14T06:05:52",
            "upload_time_iso_8601": "2025-07-14T06:05:52.603352Z",
            "url": "https://files.pythonhosted.org/packages/43/93/9a6445a2db5c746c029f90eb83956ca2c6e2165efc3f6dd8adce97c03e01/rdetoolkit-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d781b0070fc5de5147275a1e177390fb214fca1ac6d9f6c923359d03fc3fdd8",
                "md5": "d896394a263ac0d11febb7adda7b4a17",
                "sha256": "5b55c24edfd661f4b02d251d4431739c64d99681fd44ec41f32e30ed4b16c49e"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d896394a263ac0d11febb7adda7b4a17",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1932592,
            "upload_time": "2025-07-14T06:06:04",
            "upload_time_iso_8601": "2025-07-14T06:06:04.533943Z",
            "url": "https://files.pythonhosted.org/packages/7d/78/1b0070fc5de5147275a1e177390fb214fca1ac6d9f6c923359d03fc3fdd8/rdetoolkit-1.3.1-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10d3a51649c6f394dd9366a78bb2eef0efaa21bcd292b917f18e954f536289f8",
                "md5": "d2a7cda93e17240d1a4145108ca70fc7",
                "sha256": "42e0c1d3491c1d6839631e8b8ba1ec1e1d67638b7773ff553b0d29167e83a818"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d2a7cda93e17240d1a4145108ca70fc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1922800,
            "upload_time": "2025-07-14T06:06:16",
            "upload_time_iso_8601": "2025-07-14T06:06:16.086458Z",
            "url": "https://files.pythonhosted.org/packages/10/d3/a51649c6f394dd9366a78bb2eef0efaa21bcd292b917f18e954f536289f8/rdetoolkit-1.3.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "17beacdc9197b5cef51542b4db123e336b1ba13a7fc0d22e456d94c5035daf51",
                "md5": "fc5805f94eb9ad9b2b8d30756643d650",
                "sha256": "db4e4781191d1e42688995063f805df17e87a2cc6e189ed97061377a620dc779"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc5805f94eb9ad9b2b8d30756643d650",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1851492,
            "upload_time": "2025-07-14T06:06:28",
            "upload_time_iso_8601": "2025-07-14T06:06:28.170487Z",
            "url": "https://files.pythonhosted.org/packages/17/be/acdc9197b5cef51542b4db123e336b1ba13a7fc0d22e456d94c5035daf51/rdetoolkit-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "736011368ba776de8f7a18ea89726650d8a212d73d6fa9bca4fb3fdccad27ec5",
                "md5": "5391dd517bc44789d6017b22bdb3b46f",
                "sha256": "7fba4a21dee9a54cb591d2130a23236888d18eb37f273617ff383620a8a3ad0a"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "5391dd517bc44789d6017b22bdb3b46f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1394491,
            "upload_time": "2025-07-14T06:06:49",
            "upload_time_iso_8601": "2025-07-14T06:06:49.452504Z",
            "url": "https://files.pythonhosted.org/packages/73/60/11368ba776de8f7a18ea89726650d8a212d73d6fa9bca4fb3fdccad27ec5/rdetoolkit-1.3.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c2b0546cb40ed07af3b9ac1f7590bc6085638e59b36b53808a64567381f23c6",
                "md5": "833ab30181c50eac036bcc769ba95f2f",
                "sha256": "c507c15a31a5fb362a3bb4d87f7956cba69bb1af8dfd38318e95fbf61c2a126b"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "833ab30181c50eac036bcc769ba95f2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1408903,
            "upload_time": "2025-07-14T06:06:40",
            "upload_time_iso_8601": "2025-07-14T06:06:40.861847Z",
            "url": "https://files.pythonhosted.org/packages/1c/2b/0546cb40ed07af3b9ac1f7590bc6085638e59b36b53808a64567381f23c6/rdetoolkit-1.3.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9cf2a0b54ff7a155459dce46fa8ba2568a7b94b27174f06135eaca77007ee68",
                "md5": "90a2284f45adff61eba0466bafd08d42",
                "sha256": "9e57965700fc8be62fa7d42fb50e73624df2ed064c5a0146f8507f546bec59b9"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90a2284f45adff61eba0466bafd08d42",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1591575,
            "upload_time": "2025-07-14T06:05:47",
            "upload_time_iso_8601": "2025-07-14T06:05:47.173939Z",
            "url": "https://files.pythonhosted.org/packages/c9/cf/2a0b54ff7a155459dce46fa8ba2568a7b94b27174f06135eaca77007ee68/rdetoolkit-1.3.1-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e8adcecbe98b121c18bb5049a5acbb57f17fbde451f57266775f85ebbe547f6",
                "md5": "39bf0504f6046ff6e61ed17f75385777",
                "sha256": "5766094c358743f89acf7d0fff6dc2845f45598c8f0d880193ba16e9301bfbca"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "39bf0504f6046ff6e61ed17f75385777",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1536926,
            "upload_time": "2025-07-14T06:05:42",
            "upload_time_iso_8601": "2025-07-14T06:05:42.514517Z",
            "url": "https://files.pythonhosted.org/packages/1e/8a/dcecbe98b121c18bb5049a5acbb57f17fbde451f57266775f85ebbe547f6/rdetoolkit-1.3.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e390d065fa16fa2900ba2c489cd499a2cf9faa45ac9a53a22b2c22de3c65685",
                "md5": "3957ea1922928bc029590db3ec03b7b7",
                "sha256": "217ac4473e1e523ebf5240ed53654c6e9927ca0c823b239a8ba236d8347763c5"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3957ea1922928bc029590db3ec03b7b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1642656,
            "upload_time": "2025-07-14T06:04:28",
            "upload_time_iso_8601": "2025-07-14T06:04:28.645517Z",
            "url": "https://files.pythonhosted.org/packages/1e/39/0d065fa16fa2900ba2c489cd499a2cf9faa45ac9a53a22b2c22de3c65685/rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc01d6da6004973c07887f4bc8ce00717cc2041567894c6adfcbd0e35a51b9d5",
                "md5": "c00b6e8470c1800ea12e8558a9ff2603",
                "sha256": "638c76e5be149b8a82b0f589b57843ae557cad081a1a9dfb0876f6256929393e"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c00b6e8470c1800ea12e8558a9ff2603",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1670652,
            "upload_time": "2025-07-14T06:04:40",
            "upload_time_iso_8601": "2025-07-14T06:04:40.813743Z",
            "url": "https://files.pythonhosted.org/packages/bc/01/d6da6004973c07887f4bc8ce00717cc2041567894c6adfcbd0e35a51b9d5/rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bcf05e8c6bb39a27b8085915fdf6d981d99dca134b2300370fa20b603d1cdf2",
                "md5": "1f54d639c9ce580d982766786ad78f17",
                "sha256": "5d00c2ef97a13c567bb56fae8af508d936e6191dc0d0d8aff4b28cfa057ca774"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1f54d639c9ce580d982766786ad78f17",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1808143,
            "upload_time": "2025-07-14T06:04:54",
            "upload_time_iso_8601": "2025-07-14T06:04:54.206473Z",
            "url": "https://files.pythonhosted.org/packages/5b/cf/05e8c6bb39a27b8085915fdf6d981d99dca134b2300370fa20b603d1cdf2/rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c4db5c0f84dbfd6b354801e4cb5771ceb73ceac508cd52156e8583ae297937bc",
                "md5": "9a2024694b9cb859e919537b11ba027d",
                "sha256": "4ff9d9288e46c6de362b378399dd14f1107a54824c884b0c4e63ce5758e8ec47"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9a2024694b9cb859e919537b11ba027d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1897840,
            "upload_time": "2025-07-14T06:05:07",
            "upload_time_iso_8601": "2025-07-14T06:05:07.312017Z",
            "url": "https://files.pythonhosted.org/packages/c4/db/5c0f84dbfd6b354801e4cb5771ceb73ceac508cd52156e8583ae297937bc/rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "062eab2b1d5f4946fe17187bdf71c33f66184c6513e8980353e9904c7160bc0c",
                "md5": "da289f365ac2dbdda59e5acb14e6d71d",
                "sha256": "d88b2c67c270c6025007422345a2746f3d63f5166a3cbada99e57e540ac7d85b"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "da289f365ac2dbdda59e5acb14e6d71d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1721520,
            "upload_time": "2025-07-14T06:05:19",
            "upload_time_iso_8601": "2025-07-14T06:05:19.305168Z",
            "url": "https://files.pythonhosted.org/packages/06/2e/ab2b1d5f4946fe17187bdf71c33f66184c6513e8980353e9904c7160bc0c/rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14dc80c61f15537bbe6580c3cd3e0bde56c6db1a9d4eaf21eb542a123eb5cd2c",
                "md5": "02be534d59ebdd56d656cb147bd19c7f",
                "sha256": "45b8c77fbbdcb7a64772469f105904f518f7b05fef20ede749b93b101024fd42"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02be534d59ebdd56d656cb147bd19c7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1681195,
            "upload_time": "2025-07-14T06:05:32",
            "upload_time_iso_8601": "2025-07-14T06:05:32.739018Z",
            "url": "https://files.pythonhosted.org/packages/14/dc/80c61f15537bbe6580c3cd3e0bde56c6db1a9d4eaf21eb542a123eb5cd2c/rdetoolkit-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8865e222c8d3200cadd68a41d088742a7057665353fc4dd6c6a713b5bdc8ca4d",
                "md5": "e1788344e7fcb6239382895d0bc37674",
                "sha256": "f06191887f098842a6b38c9957a101513eb0429f718cc4b9cdd73bf5cfadc071"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e1788344e7fcb6239382895d0bc37674",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1816399,
            "upload_time": "2025-07-14T06:05:54",
            "upload_time_iso_8601": "2025-07-14T06:05:54.191771Z",
            "url": "https://files.pythonhosted.org/packages/88/65/e222c8d3200cadd68a41d088742a7057665353fc4dd6c6a713b5bdc8ca4d/rdetoolkit-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fefe173f28e2cbe151c783ad01ccee8e7d1d53f7a2ef964c2c702a0ec7d1aa5",
                "md5": "b4013d3524e74d8ad109c3d91cd09384",
                "sha256": "4d7c8167460db436647628aed3a0d365819a85f5534c74a55cb038f531cf494c"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b4013d3524e74d8ad109c3d91cd09384",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1932313,
            "upload_time": "2025-07-14T06:06:06",
            "upload_time_iso_8601": "2025-07-14T06:06:06.235042Z",
            "url": "https://files.pythonhosted.org/packages/7f/ef/e173f28e2cbe151c783ad01ccee8e7d1d53f7a2ef964c2c702a0ec7d1aa5/rdetoolkit-1.3.1-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77f62b35681305cfdfd085f69d859a8a3cb5de0f621218bc8ca0f33f91d616e4",
                "md5": "3eebcbc2670ef6d306f18ae615279b12",
                "sha256": "d3694c48367194e49cc71cbdbc0853132b2073073d43ec105c21e96963294652"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3eebcbc2670ef6d306f18ae615279b12",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1922745,
            "upload_time": "2025-07-14T06:06:17",
            "upload_time_iso_8601": "2025-07-14T06:06:17.697601Z",
            "url": "https://files.pythonhosted.org/packages/77/f6/2b35681305cfdfd085f69d859a8a3cb5de0f621218bc8ca0f33f91d616e4/rdetoolkit-1.3.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f7c55028699505ee267569b551821a2271209eae27d5042b0cb04798f4140e9",
                "md5": "d355da4ebed482a7deca8b6b0e709c58",
                "sha256": "c0301499e89f09dc59ec69445bb5416acc25bc86649ccf534462b93db4e0649f"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d355da4ebed482a7deca8b6b0e709c58",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1851458,
            "upload_time": "2025-07-14T06:06:29",
            "upload_time_iso_8601": "2025-07-14T06:06:29.882343Z",
            "url": "https://files.pythonhosted.org/packages/4f/7c/55028699505ee267569b551821a2271209eae27d5042b0cb04798f4140e9/rdetoolkit-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2a449d273e5888fdb999bc10a67ae919e2efa802aef460fa482f164968925eb",
                "md5": "3cb8dec32691536db6351eea258f3376",
                "sha256": "fe5fad07c1a6b4d09b18ecd85bf5bd27a95ef2e49543d5d568aa90563d38e8e2"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "3cb8dec32691536db6351eea258f3376",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1394470,
            "upload_time": "2025-07-14T06:06:51",
            "upload_time_iso_8601": "2025-07-14T06:06:51.161652Z",
            "url": "https://files.pythonhosted.org/packages/e2/a4/49d273e5888fdb999bc10a67ae919e2efa802aef460fa482f164968925eb/rdetoolkit-1.3.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8163c73a465300f3eb1c14adc59d90cd264859d76bba805bd477db21fad15dc2",
                "md5": "5172a757e2ac388061c9d967d3043b53",
                "sha256": "411179a318754c777bfd9e50a1ecf945985879d2412a2aca95bf5fb94498d0c5"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5172a757e2ac388061c9d967d3043b53",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1409021,
            "upload_time": "2025-07-14T06:06:42",
            "upload_time_iso_8601": "2025-07-14T06:06:42.497410Z",
            "url": "https://files.pythonhosted.org/packages/81/63/c73a465300f3eb1c14adc59d90cd264859d76bba805bd477db21fad15dc2/rdetoolkit-1.3.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d27e581082e6e93eca9c3d1310b93000d440283d35600e3078baf83250c74a0",
                "md5": "60b9cda9e458bd1b86a79bce199cd1ec",
                "sha256": "4a9c7aa949cec47cf085715feccc1af472637788c591cb09e7cfe0afc35f7c35"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "60b9cda9e458bd1b86a79bce199cd1ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1644412,
            "upload_time": "2025-07-14T06:04:30",
            "upload_time_iso_8601": "2025-07-14T06:04:30.456103Z",
            "url": "https://files.pythonhosted.org/packages/2d/27/e581082e6e93eca9c3d1310b93000d440283d35600e3078baf83250c74a0/rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7a68dd7aa059da7fc8251c136e8bb765759fcf9eda39ea592ef28f951dc844d",
                "md5": "14d5b2bb7e74d99a369f1bc50de3daff",
                "sha256": "df9829079f2d79267aba7bf22cb09b486a9d1958f2e653f5f1aee431f54a7db1"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "14d5b2bb7e74d99a369f1bc50de3daff",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1670965,
            "upload_time": "2025-07-14T06:04:43",
            "upload_time_iso_8601": "2025-07-14T06:04:43.174425Z",
            "url": "https://files.pythonhosted.org/packages/b7/a6/8dd7aa059da7fc8251c136e8bb765759fcf9eda39ea592ef28f951dc844d/rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "02e12b8d236b3d78451e62706119c7e4b3191af7da33df7e86a74b69c96221d5",
                "md5": "027142c261881c9fa1e9da1f62cacfd9",
                "sha256": "e89b1ca5a5a86fa6918ad21c06c3184c2b91d1076b022b273461579d3003468b"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "027142c261881c9fa1e9da1f62cacfd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1809024,
            "upload_time": "2025-07-14T06:04:55",
            "upload_time_iso_8601": "2025-07-14T06:04:55.825283Z",
            "url": "https://files.pythonhosted.org/packages/02/e1/2b8d236b3d78451e62706119c7e4b3191af7da33df7e86a74b69c96221d5/rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c19d52626ea8aaf59eb56da52a83314ff36107077ac183ae3c60d40cd3398bd0",
                "md5": "3a799ed3ecc500da93f5b4473b5c802b",
                "sha256": "87f6796205ea988ef8baddbac2f2f682bb1dde35fd1b0e045c17b79388985eb0"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3a799ed3ecc500da93f5b4473b5c802b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1899904,
            "upload_time": "2025-07-14T06:05:08",
            "upload_time_iso_8601": "2025-07-14T06:05:08.876949Z",
            "url": "https://files.pythonhosted.org/packages/c1/9d/52626ea8aaf59eb56da52a83314ff36107077ac183ae3c60d40cd3398bd0/rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bdbf76b0d822ee967b99fa60773b5c35b5875f5545d45f897e3c05fa6d3e76a3",
                "md5": "720df2ee49ada879eb87b56d4ef1242a",
                "sha256": "836d30624d8011695c9a30401f2c6f022291afcd986a1b5579ddf704485c4ee0"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "720df2ee49ada879eb87b56d4ef1242a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1723138,
            "upload_time": "2025-07-14T06:05:20",
            "upload_time_iso_8601": "2025-07-14T06:05:20.843476Z",
            "url": "https://files.pythonhosted.org/packages/bd/bf/76b0d822ee967b99fa60773b5c35b5875f5545d45f897e3c05fa6d3e76a3/rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "acafc82313364d6d3a4c81fc62b62c7821fc5be3455dcf816356874840ec2cea",
                "md5": "52b2622e510d0d8747dcb286ff11e2f3",
                "sha256": "d26c3e7b44b89b60c294fcbec69f6f425603a40e939bf84db8810a619c887582"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52b2622e510d0d8747dcb286ff11e2f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1682603,
            "upload_time": "2025-07-14T06:05:34",
            "upload_time_iso_8601": "2025-07-14T06:05:34.222259Z",
            "url": "https://files.pythonhosted.org/packages/ac/af/c82313364d6d3a4c81fc62b62c7821fc5be3455dcf816356874840ec2cea/rdetoolkit-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d54311a6f5cd6c780666ce9a46ddd70461a546802d7c98f85a97b16b588e8d02",
                "md5": "fe246c63ce9978ebd128f921dad2c441",
                "sha256": "178a2fc9d018a6c5407b80999499e3405cb36b5a9b35697d2bae6246e82c4581"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe246c63ce9978ebd128f921dad2c441",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1818491,
            "upload_time": "2025-07-14T06:05:55",
            "upload_time_iso_8601": "2025-07-14T06:05:55.963640Z",
            "url": "https://files.pythonhosted.org/packages/d5/43/11a6f5cd6c780666ce9a46ddd70461a546802d7c98f85a97b16b588e8d02/rdetoolkit-1.3.1-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39540a7270c405f5b037af84492bb7d89ed813be770131dceb91d2b0c3b72a4f",
                "md5": "507d004fccc9dda1b115e2e3c72d4327",
                "sha256": "20d0e2047369f8853922606f57ed9c2ff997b1e74e9842ce2dff27fd5c3c6c25"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "507d004fccc9dda1b115e2e3c72d4327",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1933318,
            "upload_time": "2025-07-14T06:06:07",
            "upload_time_iso_8601": "2025-07-14T06:06:07.839850Z",
            "url": "https://files.pythonhosted.org/packages/39/54/0a7270c405f5b037af84492bb7d89ed813be770131dceb91d2b0c3b72a4f/rdetoolkit-1.3.1-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6ce0f6e79ecc39f73564314c62e7f0bfbd92db97a665654d13cc27a55e13460",
                "md5": "5b3a061401e44d98786db0cf95b8e9a6",
                "sha256": "c9a00a9a23b9b8e1322395a975230e2549d1e1dfc5ca46b2031624209e3d223f"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5b3a061401e44d98786db0cf95b8e9a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1923342,
            "upload_time": "2025-07-14T06:06:19",
            "upload_time_iso_8601": "2025-07-14T06:06:19.694900Z",
            "url": "https://files.pythonhosted.org/packages/a6/ce/0f6e79ecc39f73564314c62e7f0bfbd92db97a665654d13cc27a55e13460/rdetoolkit-1.3.1-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3d45be3f84f54bc9b3162b2bca61bf41e0add118e9c8b427b5ca8718cf87bce",
                "md5": "b4c8a09ab6bc5ce2849ceb6c9b596818",
                "sha256": "75072580c307220ba7449288d5afa53e8fde1c54f125de05667c006dd8851ad2"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4c8a09ab6bc5ce2849ceb6c9b596818",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1853041,
            "upload_time": "2025-07-14T06:06:31",
            "upload_time_iso_8601": "2025-07-14T06:06:31.690403Z",
            "url": "https://files.pythonhosted.org/packages/d3/d4/5be3f84f54bc9b3162b2bca61bf41e0add118e9c8b427b5ca8718cf87bce/rdetoolkit-1.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c1737dfc426ed64839e0d347b0d99aee5c6f352239fe43c831ff9e066bb2e30",
                "md5": "6b00aad30da7ed8e6f32b18409b30473",
                "sha256": "1a94cabb14faf90498fddc717ce10982d502d07d8c9d16b6e5d676c2e0c831c1"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6b00aad30da7ed8e6f32b18409b30473",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1644234,
            "upload_time": "2025-07-14T06:04:32",
            "upload_time_iso_8601": "2025-07-14T06:04:32.444281Z",
            "url": "https://files.pythonhosted.org/packages/9c/17/37dfc426ed64839e0d347b0d99aee5c6f352239fe43c831ff9e066bb2e30/rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "603b4889e86b4eb5e641ac6030b21d5e5b214882b09b43dba0f142de3e15002f",
                "md5": "2db590714937fb998263e357f62bf707",
                "sha256": "c500fe64bfebdfcaac47b713aab28e42c3bbc98a5b56943407c5aa2e3bd0bb48"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2db590714937fb998263e357f62bf707",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1670766,
            "upload_time": "2025-07-14T06:04:44",
            "upload_time_iso_8601": "2025-07-14T06:04:44.708590Z",
            "url": "https://files.pythonhosted.org/packages/60/3b/4889e86b4eb5e641ac6030b21d5e5b214882b09b43dba0f142de3e15002f/rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06a992e45460824d9858bb9afb5ff2f052ad2da2367e12d6875f2cebc55568c9",
                "md5": "6defd9bb82db748e96a9571bf610fdb6",
                "sha256": "d69fed7856d9af0c907ab67d8ac01ae2d620b4d15a8bdeecaaef7a9b690c34f6"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6defd9bb82db748e96a9571bf610fdb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1808808,
            "upload_time": "2025-07-14T06:04:57",
            "upload_time_iso_8601": "2025-07-14T06:04:57.700180Z",
            "url": "https://files.pythonhosted.org/packages/06/a9/92e45460824d9858bb9afb5ff2f052ad2da2367e12d6875f2cebc55568c9/rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3a8aa23c01b927106b4ecafe375c388571d1b496caabc00ac166623aaba3c85",
                "md5": "a508cfb96dc0dc1fd6ec2b3dacdecae9",
                "sha256": "9d0ea0e01b1d33407ac482ea7654a076418201f3fdc0c0d987eb90f4e31d3456"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a508cfb96dc0dc1fd6ec2b3dacdecae9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1896801,
            "upload_time": "2025-07-14T06:05:10",
            "upload_time_iso_8601": "2025-07-14T06:05:10.547672Z",
            "url": "https://files.pythonhosted.org/packages/b3/a8/aa23c01b927106b4ecafe375c388571d1b496caabc00ac166623aaba3c85/rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0133fd00f86247e1cae2cba795a10d0b23c3d8984c04daa9b9f952dea28df745",
                "md5": "3f0fa931efd288f18566dd623887b8f6",
                "sha256": "53d9ba7ab0a5d9ab088f6ff1521b11b84fdd30ea0f02446f1b8469fc3ccd5d00"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3f0fa931efd288f18566dd623887b8f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1723153,
            "upload_time": "2025-07-14T06:05:22",
            "upload_time_iso_8601": "2025-07-14T06:05:22.548097Z",
            "url": "https://files.pythonhosted.org/packages/01/33/fd00f86247e1cae2cba795a10d0b23c3d8984c04daa9b9f952dea28df745/rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e25da1e64cfeb3b417e1a1513118ad07f62e473ba67c1ed7c355396e89bceb2",
                "md5": "845dddda4dd27038a6e697e3c5b9c055",
                "sha256": "a6f1d3317b5c30770e5ad1728dc26db794204ce6eabbfb4c18f6c64f4f86706c"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "845dddda4dd27038a6e697e3c5b9c055",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1682611,
            "upload_time": "2025-07-14T06:05:35",
            "upload_time_iso_8601": "2025-07-14T06:05:35.963740Z",
            "url": "https://files.pythonhosted.org/packages/2e/25/da1e64cfeb3b417e1a1513118ad07f62e473ba67c1ed7c355396e89bceb2/rdetoolkit-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16a0bae4a5c58a28d0ce510fc3c5331dd25eb353f739b69bf5381a5bbb686ac0",
                "md5": "f666e81e0623768ab75916995a39fcb0",
                "sha256": "e29a701703a49cf35fd5ef340e67a846180854e63c82841cbeb48e2dbf229ca9"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f666e81e0623768ab75916995a39fcb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1818204,
            "upload_time": "2025-07-14T06:05:57",
            "upload_time_iso_8601": "2025-07-14T06:05:57.533096Z",
            "url": "https://files.pythonhosted.org/packages/16/a0/bae4a5c58a28d0ce510fc3c5331dd25eb353f739b69bf5381a5bbb686ac0/rdetoolkit-1.3.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fea113b1996e07f4cc1d043c8b3a100035acd24373c45d1f793dc21b38206ac5",
                "md5": "2e8f4e9a7e02b68f38e32c41129faf49",
                "sha256": "713fddc35d69f8de4419e78454353072c1843f153233b1363b2d56123487bff9"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2e8f4e9a7e02b68f38e32c41129faf49",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1933380,
            "upload_time": "2025-07-14T06:06:09",
            "upload_time_iso_8601": "2025-07-14T06:06:09.432859Z",
            "url": "https://files.pythonhosted.org/packages/fe/a1/13b1996e07f4cc1d043c8b3a100035acd24373c45d1f793dc21b38206ac5/rdetoolkit-1.3.1-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb15c0e7cdf2a18e20452eca5c7924b5d01f06443c6912f5db365ed4a281eb80",
                "md5": "7009e6dcf39eddc7c41f03480ede1994",
                "sha256": "40d695f7b05c18f9480b23943025e210714f4cc3b19d2aaf124de77f5083c0ca"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7009e6dcf39eddc7c41f03480ede1994",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1923390,
            "upload_time": "2025-07-14T06:06:21",
            "upload_time_iso_8601": "2025-07-14T06:06:21.327037Z",
            "url": "https://files.pythonhosted.org/packages/cb/15/c0e7cdf2a18e20452eca5c7924b5d01f06443c6912f5db365ed4a281eb80/rdetoolkit-1.3.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e72c2cce9056610bd52b60a70aadfe4b112365d921d9262dfd57ddc5f2dbaef0",
                "md5": "9151a509720e4ca45aad8af29c39bbde",
                "sha256": "9f2b294e5ceaaa1b06a7e0be74d3e77acf27c5cc7f03a72fee943286fc6217ba"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9151a509720e4ca45aad8af29c39bbde",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1852851,
            "upload_time": "2025-07-14T06:06:33",
            "upload_time_iso_8601": "2025-07-14T06:06:33.795908Z",
            "url": "https://files.pythonhosted.org/packages/e7/2c/2cce9056610bd52b60a70aadfe4b112365d921d9262dfd57ddc5f2dbaef0/rdetoolkit-1.3.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1b3e5fe4d5f659a04db5d29659c67187f1edc470612bee2d6b083262071f1af",
                "md5": "ea5e253c80eae4176555bb369744462e",
                "sha256": "ede64dee5390b88a0f85658417e093aec94f23ddd35e2cda33ac7e8a0c7c53eb"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ea5e253c80eae4176555bb369744462e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1644216,
            "upload_time": "2025-07-14T06:04:34",
            "upload_time_iso_8601": "2025-07-14T06:04:34.385951Z",
            "url": "https://files.pythonhosted.org/packages/f1/b3/e5fe4d5f659a04db5d29659c67187f1edc470612bee2d6b083262071f1af/rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df20e4d4737eeab481902b9d92e5ec967fc4e96e77783d7f70b7c62b8f8591a3",
                "md5": "60bef88257742cabcb17ec7454902bd0",
                "sha256": "544e89e009522db6c149c46e09d6dacb4ad959b7e83c421d98621fed715cef70"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "60bef88257742cabcb17ec7454902bd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1670887,
            "upload_time": "2025-07-14T06:04:46",
            "upload_time_iso_8601": "2025-07-14T06:04:46.603108Z",
            "url": "https://files.pythonhosted.org/packages/df/20/e4d4737eeab481902b9d92e5ec967fc4e96e77783d7f70b7c62b8f8591a3/rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "986b7a8ceb795a1ad1a907de5286d427ea4e1227b401923c1be2a498a9c2fe0b",
                "md5": "38c33b0443eacf76ad3f4474531c0153",
                "sha256": "2024320f771f31a5c48a3ddf873282d7d8ceae2d0a90efd8c2efb4b99a75aac5"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "38c33b0443eacf76ad3f4474531c0153",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1808559,
            "upload_time": "2025-07-14T06:04:59",
            "upload_time_iso_8601": "2025-07-14T06:04:59.665049Z",
            "url": "https://files.pythonhosted.org/packages/98/6b/7a8ceb795a1ad1a907de5286d427ea4e1227b401923c1be2a498a9c2fe0b/rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbd1fc13db96db479e3a67e7ea6ac0a899b41ca985ce8d9ba217eaba4bb4cbb7",
                "md5": "ea719ec0e5828e84176629a6cb593440",
                "sha256": "d045aa70f62a213215a7f95e6d8c39ce6ff9427cfc28c78aa5a419efd90737e6"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ea719ec0e5828e84176629a6cb593440",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1898891,
            "upload_time": "2025-07-14T06:05:12",
            "upload_time_iso_8601": "2025-07-14T06:05:12.196757Z",
            "url": "https://files.pythonhosted.org/packages/db/d1/fc13db96db479e3a67e7ea6ac0a899b41ca985ce8d9ba217eaba4bb4cbb7/rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "182e21bd6921058f2b1e63f38f442fcbd0439f3bd8005b6844145db72e27d69f",
                "md5": "73704499d9881893296cb0b5eac57bce",
                "sha256": "a9f42f6642aafecf5723c6e4ec310b7a41d9f0ef34f089221bfdaeaecc03201a"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "73704499d9881893296cb0b5eac57bce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1723167,
            "upload_time": "2025-07-14T06:05:24",
            "upload_time_iso_8601": "2025-07-14T06:05:24.322410Z",
            "url": "https://files.pythonhosted.org/packages/18/2e/21bd6921058f2b1e63f38f442fcbd0439f3bd8005b6844145db72e27d69f/rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8799f11978a088ccbde7c6665a84b9e581cff4b8c29c942c15bd3e31468f70e5",
                "md5": "8e576d315f702f43167aa9edc9fc3c52",
                "sha256": "57484bb503239934670651f1586414bb0e597d5f18e6c86fc360015ea279cbd8"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e576d315f702f43167aa9edc9fc3c52",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1682324,
            "upload_time": "2025-07-14T06:05:37",
            "upload_time_iso_8601": "2025-07-14T06:05:37.570006Z",
            "url": "https://files.pythonhosted.org/packages/87/99/f11978a088ccbde7c6665a84b9e581cff4b8c29c942c15bd3e31468f70e5/rdetoolkit-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "926c1397c0f0bb31b68f1ee9da87a82422db9e993c90cdc6a9472327017893a6",
                "md5": "3323c420e0f593b6ae8bf491086497c9",
                "sha256": "fdfe4b1dcd5dc0ecadf13e3629efe2706e6157d06e8b35c8867a3fd30b7770b4"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3323c420e0f593b6ae8bf491086497c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1818160,
            "upload_time": "2025-07-14T06:05:59",
            "upload_time_iso_8601": "2025-07-14T06:05:59.171320Z",
            "url": "https://files.pythonhosted.org/packages/92/6c/1397c0f0bb31b68f1ee9da87a82422db9e993c90cdc6a9472327017893a6/rdetoolkit-1.3.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bb5483412727b2dfbb521c74e44aee1847182af72a579d5c890a1bd090a448b",
                "md5": "81c86136605b1443c44e8212dd8496e9",
                "sha256": "628a38d03d1ecf3058e446ed0fed8e7a1350bb4c189c6a50973c18bcc22affba"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "81c86136605b1443c44e8212dd8496e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1932989,
            "upload_time": "2025-07-14T06:06:11",
            "upload_time_iso_8601": "2025-07-14T06:06:11.097769Z",
            "url": "https://files.pythonhosted.org/packages/6b/b5/483412727b2dfbb521c74e44aee1847182af72a579d5c890a1bd090a448b/rdetoolkit-1.3.1-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db46089c1da7fb991be880dab394daada47044a50246bbe3ca88f768d974178f",
                "md5": "20adc7609575661da8d28cb985b0189d",
                "sha256": "ab00fde06e2f3082f9f95681cef4824ace6a690eb4a90249d83573e64651e410"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "20adc7609575661da8d28cb985b0189d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1922931,
            "upload_time": "2025-07-14T06:06:23",
            "upload_time_iso_8601": "2025-07-14T06:06:23.232240Z",
            "url": "https://files.pythonhosted.org/packages/db/46/089c1da7fb991be880dab394daada47044a50246bbe3ca88f768d974178f/rdetoolkit-1.3.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "65de70c731f8da23411b1e51ae003cde1f15c501a22e239a74b8ff649e22cc68",
                "md5": "2e33f84335199994869a467944d8baf8",
                "sha256": "6bc9210d98484962778e389dbaf4410ba994fea50017096256e06584446c2a7d"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e33f84335199994869a467944d8baf8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1853010,
            "upload_time": "2025-07-14T06:06:35",
            "upload_time_iso_8601": "2025-07-14T06:06:35.649300Z",
            "url": "https://files.pythonhosted.org/packages/65/de/70c731f8da23411b1e51ae003cde1f15c501a22e239a74b8ff649e22cc68/rdetoolkit-1.3.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb57d1a0a95fcc62085a51124574ee76fd4186627f2f2d336ac9a5a6b0c15070",
                "md5": "6b62a77bc8fc36e9fdc04a55d639e686",
                "sha256": "986b46b0ea656d7fcfb4608b2e3e9018035436a03cac48b8173ad0b0f8e266d3"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "6b62a77bc8fc36e9fdc04a55d639e686",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1395666,
            "upload_time": "2025-07-14T06:06:52",
            "upload_time_iso_8601": "2025-07-14T06:06:52.787755Z",
            "url": "https://files.pythonhosted.org/packages/eb/57/d1a0a95fcc62085a51124574ee76fd4186627f2f2d336ac9a5a6b0c15070/rdetoolkit-1.3.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92be9633c585b8d559333313d75829163abe653da183ca808066a11a9d8d166d",
                "md5": "c4475b51a1fc9886efeb9fa952f46e79",
                "sha256": "4c31734d3c7e7eb23f1bf73e5e9a673ae41a3c4dafb7305ae3b65ad1dca9120d"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c4475b51a1fc9886efeb9fa952f46e79",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1409929,
            "upload_time": "2025-07-14T06:06:44",
            "upload_time_iso_8601": "2025-07-14T06:06:44.089572Z",
            "url": "https://files.pythonhosted.org/packages/92/be/9633c585b8d559333313d75829163abe653da183ca808066a11a9d8d166d/rdetoolkit-1.3.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7552aad2b347e01fdd3b9e93a8320284d46e98aa1b66f1ceda908159270feac",
                "md5": "78785d4e6555d03426a39ba6402c6913",
                "sha256": "c535741a36ee81ba3edc3e4399cea63ceff8f257d0b451b000e74b2649a87934"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "78785d4e6555d03426a39ba6402c6913",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 11670200,
            "upload_time": "2025-07-14T06:06:54",
            "upload_time_iso_8601": "2025-07-14T06:06:54.758937Z",
            "url": "https://files.pythonhosted.org/packages/a7/55/2aad2b347e01fdd3b9e93a8320284d46e98aa1b66f1ceda908159270feac/rdetoolkit-1.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-14 06:06:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nims-dpfc",
    "github_project": "rdetoolkit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "rdetoolkit"
}
        
Elapsed time: 0.68412s