rdetoolkit


Namerdetoolkit JSON
Version 1.0.4 PyPI version JSON
download
home_pageNone
SummaryA module that supports the workflow of the RDE dataset construction program
upload_time2024-11-07 07:51:42
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)

# RDEToolKit

RDEToolKitは、RDE構造化プログラムのワークフローを作成するための基本的なPythonパッケージです。
RDEToolKitの各種モジュールを使うことで、RDEへの研究・実験データの登録処理を簡単に構築できます。
また、ユーザーが研究や実験データに対して使用されているPythonモジュールと組み合わせることで、データの登録から加工、グラフ化などより多様な処理を実現できます。

## Documents

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

## Contributing

変更を加える場合、以下のドキュメントを一読お願いします。

- [CONTRIBUTING.md](CONTRIBUTING.md)

## Install

インストールは、下記コマンドを実行してください。

```shell
pip install rdetoolkit
```

## Usage

RDE構造化プログラム構築の一例です。

### プロジェクトを作成する

まず、RDE構造化プログラムに必要なファイルを準備します。以下のコマンドをターミナルやシェル上で実行してください。

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

コマンドが正しく動作すると、下記で示したファイル・ディレクトリが生成されます。

この例では、`container`というディレクトリを作成して、開発を進めます。

- **requirements.txt**
  - 構造化プログラム構築で使用したいPythonパッケージを追加してください。必要に応じて`pip install`を実行してください。
- **modules**
  - 構造化処理で使用したいプログラムを格納してください。別セクションで説明します。
- **main.py**
  - 構造化プログラムの起動処理を定義
- **data/inputdata**
  - 構造化処理対象データファイルを配置してください。
- **data/invoice**
  - ローカル実行させるためには空ファイルでも必要になります。
- **data/tasksupport**
  - 構造化処理の補助するファイル群を配置してください。

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

### 構造化処理の実装

入力データに対してデータ加工・グラフ化・機械学習用のcsvファイルの作成など処理を実行し、RDEへデータを登録できます。下記の書式に従っていただければ、独自の処理をRDEの構造化処理のフローに組み込み込むことが可能です。

`dataset()`は、以下の2つの引数を渡してください。

- srcpaths (RdeInputDirPaths): 処理のための入力リソースへのパス
- resource_paths (RdeOutputResourcePath): 処理結果を保存するための出力リソースへのパス

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

今回の例では、`modules`以下に、`def display_messsage()`というダミー処理を定義し、独自の構造化処理を定義したいと思います。`modules/modules.py`というファイルを作成します。

```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)
```

### 起動処理について

続いて、`rdetoolkit.workflow.run()`を使って、起動処理を定義します。起動処理で主に実行処理は、

- 入力ファイルのチェック
- 入力ファイルとRDE構造化で規定する各種ディレクトリパスを取得する
- ユーザーごとで定義した具体的な構造化処理を実行

```python
import rdetoolkit
from modules.modules import datase  #独自で定義した構造化処理関数

#独自で定義した構造化処理関数を引数として渡す
rdetoolkit.workflows.run(custom_dataset_function=dataset)
```

もし、独自の構造化処理を渡さない場合、以下のように定義してください。

```python
import rdetoolkit

rdetoolkit.workflows.run()
```

### ローカル環境で動作させる場合

各自のローカル環境で、デバッグやテスト的にRDEの構造化処理を実行したい場合、`data`ディレクトリに必要な入力データを追加することで、ローカル環境でも実行可能です。ディレクトリ構造は、以下のように、main.pyと同じ階層にdataディレクトリを配置していただければ動作します。

```shell
container/
├── main.py
├── requirements.txt
├── modules/
│   └── modules.py
└── data/
    ├── inputdata/
    │   └── <処理したい実験データ>
    ├── 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/5d/bd/d934e2147aff15870a09b764c3f2abc04a9e875479032f990dbee2c522dd/rdetoolkit-1.0.4.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# RDEToolKit\n\nRDEToolKit\u306f\u3001RDE\u69cb\u9020\u5316\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306e\u57fa\u672c\u7684\u306aPython\u30d1\u30c3\u30b1\u30fc\u30b8\u3067\u3059\u3002\nRDEToolKit\u306e\u5404\u7a2e\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u4f7f\u3046\u3053\u3068\u3067\u3001RDE\u3078\u306e\u7814\u7a76\u30fb\u5b9f\u9a13\u30c7\u30fc\u30bf\u306e\u767b\u9332\u51e6\u7406\u3092\u7c21\u5358\u306b\u69cb\u7bc9\u3067\u304d\u307e\u3059\u3002\n\u307e\u305f\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u7814\u7a76\u3084\u5b9f\u9a13\u30c7\u30fc\u30bf\u306b\u5bfe\u3057\u3066\u4f7f\u7528\u3055\u308c\u3066\u3044\u308bPython\u30e2\u30b8\u30e5\u30fc\u30eb\u3068\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u3067\u3001\u30c7\u30fc\u30bf\u306e\u767b\u9332\u304b\u3089\u52a0\u5de5\u3001\u30b0\u30e9\u30d5\u5316\u306a\u3069\u3088\u308a\u591a\u69d8\u306a\u51e6\u7406\u3092\u5b9f\u73fe\u3067\u304d\u307e\u3059\u3002\n\n## Documents\n\nSee [documentation](https://nims-dpfc.github.io/rdetoolkit/) for more details.\n\n## Contributing\n\n\u5909\u66f4\u3092\u52a0\u3048\u308b\u5834\u5408\u3001\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4e00\u8aad\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\n- [CONTRIBUTING.md](CONTRIBUTING.md)\n\n## Install\n\n\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3001\u4e0b\u8a18\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\n```shell\npip install rdetoolkit\n```\n\n## Usage\n\nRDE\u69cb\u9020\u5316\u30d7\u30ed\u30b0\u30e9\u30e0\u69cb\u7bc9\u306e\u4e00\u4f8b\u3067\u3059\u3002\n\n### \u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3092\u4f5c\u6210\u3059\u308b\n\n\u307e\u305a\u3001RDE\u69cb\u9020\u5316\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3092\u6e96\u5099\u3057\u307e\u3059\u3002\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u30bf\u30fc\u30df\u30ca\u30eb\u3084\u30b7\u30a7\u30eb\u4e0a\u3067\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\n```python\npython3 -m rdetoolkit init\n```\n\n\u30b3\u30de\u30f3\u30c9\u304c\u6b63\u3057\u304f\u52d5\u4f5c\u3059\u308b\u3068\u3001\u4e0b\u8a18\u3067\u793a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u30fb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u304c\u751f\u6210\u3055\u308c\u307e\u3059\u3002\n\n\u3053\u306e\u4f8b\u3067\u306f\u3001`container`\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3066\u3001\u958b\u767a\u3092\u9032\u3081\u307e\u3059\u3002\n\n- **requirements.txt**\n  - \u69cb\u9020\u5316\u30d7\u30ed\u30b0\u30e9\u30e0\u69cb\u7bc9\u3067\u4f7f\u7528\u3057\u305f\u3044Python\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5fc5\u8981\u306b\u5fdc\u3058\u3066`pip install`\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n- **modules**\n  - \u69cb\u9020\u5316\u51e6\u7406\u3067\u4f7f\u7528\u3057\u305f\u3044\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u683c\u7d0d\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5225\u30bb\u30af\u30b7\u30e7\u30f3\u3067\u8aac\u660e\u3057\u307e\u3059\u3002\n- **main.py**\n  - \u69cb\u9020\u5316\u30d7\u30ed\u30b0\u30e9\u30e0\u306e\u8d77\u52d5\u51e6\u7406\u3092\u5b9a\u7fa9\n- **data/inputdata**\n  - \u69cb\u9020\u5316\u51e6\u7406\u5bfe\u8c61\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u3092\u914d\u7f6e\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n- **data/invoice**\n  - \u30ed\u30fc\u30ab\u30eb\u5b9f\u884c\u3055\u305b\u308b\u305f\u3081\u306b\u306f\u7a7a\u30d5\u30a1\u30a4\u30eb\u3067\u3082\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059\u3002\n- **data/tasksupport**\n  - \u69cb\u9020\u5316\u51e6\u7406\u306e\u88dc\u52a9\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u7fa4\u3092\u914d\u7f6e\u3057\u3066\u304f\u3060\u3055\u3044\u3002\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### \u69cb\u9020\u5316\u51e6\u7406\u306e\u5b9f\u88c5\n\n\u5165\u529b\u30c7\u30fc\u30bf\u306b\u5bfe\u3057\u3066\u30c7\u30fc\u30bf\u52a0\u5de5\u30fb\u30b0\u30e9\u30d5\u5316\u30fb\u6a5f\u68b0\u5b66\u7fd2\u7528\u306ecsv\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210\u306a\u3069\u51e6\u7406\u3092\u5b9f\u884c\u3057\u3001RDE\u3078\u30c7\u30fc\u30bf\u3092\u767b\u9332\u3067\u304d\u307e\u3059\u3002\u4e0b\u8a18\u306e\u66f8\u5f0f\u306b\u5f93\u3063\u3066\u3044\u305f\u3060\u3051\u308c\u3070\u3001\u72ec\u81ea\u306e\u51e6\u7406\u3092RDE\u306e\u69cb\u9020\u5316\u51e6\u7406\u306e\u30d5\u30ed\u30fc\u306b\u7d44\u307f\u8fbc\u307f\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059\u3002\n\n`dataset()`\u306f\u3001\u4ee5\u4e0b\u306e2\u3064\u306e\u5f15\u6570\u3092\u6e21\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\n- srcpaths (RdeInputDirPaths): \u51e6\u7406\u306e\u305f\u3081\u306e\u5165\u529b\u30ea\u30bd\u30fc\u30b9\u3078\u306e\u30d1\u30b9\n- resource_paths (RdeOutputResourcePath): \u51e6\u7406\u7d50\u679c\u3092\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u51fa\u529b\u30ea\u30bd\u30fc\u30b9\u3078\u306e\u30d1\u30b9\n\n```python\ndef dataset(srcpaths: RdeInputDirPaths, resource_paths: RdeOutputResourcePath):\n    ...\n```\n\n\u4eca\u56de\u306e\u4f8b\u3067\u306f\u3001`modules`\u4ee5\u4e0b\u306b\u3001`def display_messsage()`\u3068\u3044\u3046\u30c0\u30df\u30fc\u51e6\u7406\u3092\u5b9a\u7fa9\u3057\u3001\u72ec\u81ea\u306e\u69cb\u9020\u5316\u51e6\u7406\u3092\u5b9a\u7fa9\u3057\u305f\u3044\u3068\u601d\u3044\u307e\u3059\u3002`modules/modules.py`\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002\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### \u8d77\u52d5\u51e6\u7406\u306b\u3064\u3044\u3066\n\n\u7d9a\u3044\u3066\u3001`rdetoolkit.workflow.run()`\u3092\u4f7f\u3063\u3066\u3001\u8d77\u52d5\u51e6\u7406\u3092\u5b9a\u7fa9\u3057\u307e\u3059\u3002\u8d77\u52d5\u51e6\u7406\u3067\u4e3b\u306b\u5b9f\u884c\u51e6\u7406\u306f\u3001\n\n- \u5165\u529b\u30d5\u30a1\u30a4\u30eb\u306e\u30c1\u30a7\u30c3\u30af\n- \u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068RDE\u69cb\u9020\u5316\u3067\u898f\u5b9a\u3059\u308b\u5404\u7a2e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9\u3092\u53d6\u5f97\u3059\u308b\n- \u30e6\u30fc\u30b6\u30fc\u3054\u3068\u3067\u5b9a\u7fa9\u3057\u305f\u5177\u4f53\u7684\u306a\u69cb\u9020\u5316\u51e6\u7406\u3092\u5b9f\u884c\n\n```python\nimport rdetoolkit\nfrom modules.modules import datase  #\u72ec\u81ea\u3067\u5b9a\u7fa9\u3057\u305f\u69cb\u9020\u5316\u51e6\u7406\u95a2\u6570\n\n#\u72ec\u81ea\u3067\u5b9a\u7fa9\u3057\u305f\u69cb\u9020\u5316\u51e6\u7406\u95a2\u6570\u3092\u5f15\u6570\u3068\u3057\u3066\u6e21\u3059\nrdetoolkit.workflows.run(custom_dataset_function=dataset)\n```\n\n\u3082\u3057\u3001\u72ec\u81ea\u306e\u69cb\u9020\u5316\u51e6\u7406\u3092\u6e21\u3055\u306a\u3044\u5834\u5408\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9a\u7fa9\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\n```python\nimport rdetoolkit\n\nrdetoolkit.workflows.run()\n```\n\n### \u30ed\u30fc\u30ab\u30eb\u74b0\u5883\u3067\u52d5\u4f5c\u3055\u305b\u308b\u5834\u5408\n\n\u5404\u81ea\u306e\u30ed\u30fc\u30ab\u30eb\u74b0\u5883\u3067\u3001\u30c7\u30d0\u30c3\u30b0\u3084\u30c6\u30b9\u30c8\u7684\u306bRDE\u306e\u69cb\u9020\u5316\u51e6\u7406\u3092\u5b9f\u884c\u3057\u305f\u3044\u5834\u5408\u3001`data`\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u5fc5\u8981\u306a\u5165\u529b\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u3001\u30ed\u30fc\u30ab\u30eb\u74b0\u5883\u3067\u3082\u5b9f\u884c\u53ef\u80fd\u3067\u3059\u3002\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u69cb\u9020\u306f\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3001main.py\u3068\u540c\u3058\u968e\u5c64\u306bdata\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u914d\u7f6e\u3057\u3066\u3044\u305f\u3060\u3051\u308c\u3070\u52d5\u4f5c\u3057\u307e\u3059\u3002\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 <\u51e6\u7406\u3057\u305f\u3044\u5b9f\u9a13\u30c7\u30fc\u30bf>\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.0.4",
    "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": "3a816cf34ec97021bfef1c097797ab3b375927682eaa7a3dc030959124ae89fc",
                "md5": "9ffaacc8d6f09abd80daba2f9db49df3",
                "sha256": "469e1b3080bd4000be82dd80004a8513eb2d3b0cb37665f6a2856866e2d9be22"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ffaacc8d6f09abd80daba2f9db49df3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1276028,
            "upload_time": "2024-11-07T07:50:44",
            "upload_time_iso_8601": "2024-11-07T07:50:44.844727Z",
            "url": "https://files.pythonhosted.org/packages/3a/81/6cf34ec97021bfef1c097797ab3b375927682eaa7a3dc030959124ae89fc/rdetoolkit-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ed6d5fc2ec2ce21673abcd977c3c12e2e3e3c3ea1f1cda11ae27e07a7619700",
                "md5": "5443a868c683068feda0378e5b631db7",
                "sha256": "251837e88eac9dfa8c222d5ae0b810512fb5c23078861905e4ac9a405fd30531"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5443a868c683068feda0378e5b631db7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1236075,
            "upload_time": "2024-11-07T07:50:37",
            "upload_time_iso_8601": "2024-11-07T07:50:37.489427Z",
            "url": "https://files.pythonhosted.org/packages/1e/d6/d5fc2ec2ce21673abcd977c3c12e2e3e3c3ea1f1cda11ae27e07a7619700/rdetoolkit-1.0.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d6201c01b96ef647b70153b464d73d4c6db0739f8f5bbea1d5d6acfcd6dce29",
                "md5": "d63f85c00211351aeb05469d8f1be9a6",
                "sha256": "3ce6f5885e72604acf3437a2de3ea23a690f5490370c5a09b8eb189ac9515595"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d63f85c00211351aeb05469d8f1be9a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1337603,
            "upload_time": "2024-11-07T07:49:34",
            "upload_time_iso_8601": "2024-11-07T07:49:34.941007Z",
            "url": "https://files.pythonhosted.org/packages/7d/62/01c01b96ef647b70153b464d73d4c6db0739f8f5bbea1d5d6acfcd6dce29/rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96a425a994463c59808269b338cbeb843696e214fcfd322435d9f1e077fa4dc7",
                "md5": "9c604597a099708ec823d491df109315",
                "sha256": "784384b30db263886eb26095c20d9c131da8da91982ce14496ac4806bb10797e"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9c604597a099708ec823d491df109315",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1364328,
            "upload_time": "2024-11-07T07:49:46",
            "upload_time_iso_8601": "2024-11-07T07:49:46.211548Z",
            "url": "https://files.pythonhosted.org/packages/96/a4/25a994463c59808269b338cbeb843696e214fcfd322435d9f1e077fa4dc7/rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9d4807f86300dff54d91b806f2e867c3c31dc6c704ccffdd6cc0933e9fd9e36d",
                "md5": "1e225e8a1028404d16912c4d66f2411c",
                "sha256": "44a72b759c3eb029ee74f47163eba2af883fe5666002f50eafdeae5c576c2706"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1e225e8a1028404d16912c4d66f2411c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1490948,
            "upload_time": "2024-11-07T07:49:56",
            "upload_time_iso_8601": "2024-11-07T07:49:56.078002Z",
            "url": "https://files.pythonhosted.org/packages/9d/48/07f86300dff54d91b806f2e867c3c31dc6c704ccffdd6cc0933e9fd9e36d/rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a1e938bd45d7147f7a3e459e01d1fdb177d58dac1cecb1b2f0fb91815113dea",
                "md5": "847160341f2c2141840f91090df422d8",
                "sha256": "2f21706995c7dd5b6dbc871ded11ff07e94b6d1fdad39af54c5a367520552437"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "847160341f2c2141840f91090df422d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1488808,
            "upload_time": "2024-11-07T07:50:06",
            "upload_time_iso_8601": "2024-11-07T07:50:06.939324Z",
            "url": "https://files.pythonhosted.org/packages/1a/1e/938bd45d7147f7a3e459e01d1fdb177d58dac1cecb1b2f0fb91815113dea/rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d503eb8b534ffb6b3d481de7eec320559e3ea986470c8da7e53a8522d66e400",
                "md5": "a3b72fd73be30b0622708f805b2e9362",
                "sha256": "cba99f503fbf71de4fbb3db4063d8cf7d29223801513f52de730d46214e40d64"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a3b72fd73be30b0622708f805b2e9362",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1478487,
            "upload_time": "2024-11-07T07:50:17",
            "upload_time_iso_8601": "2024-11-07T07:50:17.965901Z",
            "url": "https://files.pythonhosted.org/packages/8d/50/3eb8b534ffb6b3d481de7eec320559e3ea986470c8da7e53a8522d66e400/rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6672099448f39f90ab739cf80ef0cb38bf45ccd3d86363d5ddbacfe6f0cadbb",
                "md5": "e3f140b3573fc500b3b281ac0069f438",
                "sha256": "8618b73a29c752b5c51387417dbb21185e75f7d1f7c1946a30edf6ee447f804a"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e3f140b3573fc500b3b281ac0069f438",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1369148,
            "upload_time": "2024-11-07T07:50:27",
            "upload_time_iso_8601": "2024-11-07T07:50:27.835898Z",
            "url": "https://files.pythonhosted.org/packages/c6/67/2099448f39f90ab739cf80ef0cb38bf45ccd3d86363d5ddbacfe6f0cadbb/rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "719e6d333c71246a0152ba2cfef7955404a45506f7a9cf84d17670edd923aa0e",
                "md5": "ac6575cf0b080f00dfdf5a17a29583ea",
                "sha256": "d81d697bba506ef17e45607d60288977c379a363c28d864a080a86e6736a5b96"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ac6575cf0b080f00dfdf5a17a29583ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1530213,
            "upload_time": "2024-11-07T07:50:51",
            "upload_time_iso_8601": "2024-11-07T07:50:51.286662Z",
            "url": "https://files.pythonhosted.org/packages/71/9e/6d333c71246a0152ba2cfef7955404a45506f7a9cf84d17670edd923aa0e/rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e7c7ae9924b90f917ac4396eaf4387024c5ee1ecd0d26c06c8e7ed83ba4e799",
                "md5": "bde150d0df6527407aa349b9c01278da",
                "sha256": "9a4efad686f53d7d6e371b27bb0bf7ec14f42b0a9a019acaaf12ff13c39ab4bd"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bde150d0df6527407aa349b9c01278da",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1607506,
            "upload_time": "2024-11-07T07:51:00",
            "upload_time_iso_8601": "2024-11-07T07:51:00.622602Z",
            "url": "https://files.pythonhosted.org/packages/1e/7c/7ae9924b90f917ac4396eaf4387024c5ee1ecd0d26c06c8e7ed83ba4e799/rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6f1258a48f2890df60ba842f6ecaadcc060f980fd52535cd432703021a9a21f",
                "md5": "7fe1b21237e81261de8cb4be54632a21",
                "sha256": "74ab94372ea983ff6a57351bfdedf705bd3b8d5435dbc6c9b3d48da1884ddd51"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7fe1b21237e81261de8cb4be54632a21",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1587148,
            "upload_time": "2024-11-07T07:51:10",
            "upload_time_iso_8601": "2024-11-07T07:51:10.659283Z",
            "url": "https://files.pythonhosted.org/packages/a6/f1/258a48f2890df60ba842f6ecaadcc060f980fd52535cd432703021a9a21f/rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37760b576a2fd20adec215d28a379d0bd4a51ef5351d3fc8a1765c35afad4bd1",
                "md5": "a090252fdd00e309681d40c39c8247ca",
                "sha256": "a84aa83c731a6166031192e9bebd8f3a411e2bb6a9b0e171c929124a8510b79b"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a090252fdd00e309681d40c39c8247ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1524791,
            "upload_time": "2024-11-07T07:51:20",
            "upload_time_iso_8601": "2024-11-07T07:51:20.955908Z",
            "url": "https://files.pythonhosted.org/packages/37/76/0b576a2fd20adec215d28a379d0bd4a51ef5351d3fc8a1765c35afad4bd1/rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6d109cf6f96c4a07e42cf7758ae80ca05d238737cf32658a2b53378b8a1029cf",
                "md5": "bcbb32cf334a984fdbbcb1fa80427f60",
                "sha256": "7c55ca9cbc3a84610f85c07b563ba60dd8e28e166f41da3ab45247935c3c8eda"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "bcbb32cf334a984fdbbcb1fa80427f60",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1099810,
            "upload_time": "2024-11-07T07:51:36",
            "upload_time_iso_8601": "2024-11-07T07:51:36.722088Z",
            "url": "https://files.pythonhosted.org/packages/6d/10/9cf6f96c4a07e42cf7758ae80ca05d238737cf32658a2b53378b8a1029cf/rdetoolkit-1.0.4-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d94c415edb3e9b956afcb6fe0d511d3ef948602e2b9797a8595c155ca89efe2",
                "md5": "0fcf8e606c221fe9fa53b05d59a86290",
                "sha256": "7f4c437093a270fb5607c46404b4d509f264358008ba903ee755fe474cae161e"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0fcf8e606c221fe9fa53b05d59a86290",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1112334,
            "upload_time": "2024-11-07T07:51:29",
            "upload_time_iso_8601": "2024-11-07T07:51:29.979811Z",
            "url": "https://files.pythonhosted.org/packages/1d/94/c415edb3e9b956afcb6fe0d511d3ef948602e2b9797a8595c155ca89efe2/rdetoolkit-1.0.4-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d43d7789e6a644702ed9cda28c91fe4964aabf7150f6ab28ec08bba4d7ded5f5",
                "md5": "4bf7ef813679679a627589399462cd10",
                "sha256": "9045fcb03b00b4c25908a12de5dc168b22cf3928604999a2e013edf78c11e326"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4bf7ef813679679a627589399462cd10",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1275825,
            "upload_time": "2024-11-07T07:50:46",
            "upload_time_iso_8601": "2024-11-07T07:50:46.617550Z",
            "url": "https://files.pythonhosted.org/packages/d4/3d/7789e6a644702ed9cda28c91fe4964aabf7150f6ab28ec08bba4d7ded5f5/rdetoolkit-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c92474c20b686b23828abf2b2b34cd26b4865ec7bf0df46eca0e5ff571ad5cf",
                "md5": "60f19d79b63c5e94430372712eb7e5bb",
                "sha256": "d940d9d7e545052576e37271d5cc20c00070a548941b6a52aa7cd578ed92b879"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "60f19d79b63c5e94430372712eb7e5bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1235951,
            "upload_time": "2024-11-07T07:50:39",
            "upload_time_iso_8601": "2024-11-07T07:50:39.383260Z",
            "url": "https://files.pythonhosted.org/packages/8c/92/474c20b686b23828abf2b2b34cd26b4865ec7bf0df46eca0e5ff571ad5cf/rdetoolkit-1.0.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1b8cd491d3fa32bae4a134c543c2af64e3ba502f9843a79dcd9ac8747e82b17",
                "md5": "bf82021f373cb8d4b8346d78985ab2cf",
                "sha256": "634cfc95f0d88119dbfcacad4b7830777f2052a878a2377076bbaee368c82bf8"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bf82021f373cb8d4b8346d78985ab2cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1337571,
            "upload_time": "2024-11-07T07:49:37",
            "upload_time_iso_8601": "2024-11-07T07:49:37.119166Z",
            "url": "https://files.pythonhosted.org/packages/c1/b8/cd491d3fa32bae4a134c543c2af64e3ba502f9843a79dcd9ac8747e82b17/rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cccbbec920d8058615ea7de66c459c98ece24fc43e361122ad6f91212fb8901f",
                "md5": "b6ed77a9bdcc47606f65d1f45575606a",
                "sha256": "5616197bdc83051361a4483d2782a2a587c776b60699497c5d7258722304dbf4"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b6ed77a9bdcc47606f65d1f45575606a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1364069,
            "upload_time": "2024-11-07T07:49:47",
            "upload_time_iso_8601": "2024-11-07T07:49:47.884530Z",
            "url": "https://files.pythonhosted.org/packages/cc/cb/bec920d8058615ea7de66c459c98ece24fc43e361122ad6f91212fb8901f/rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf9f856d9519c5eabd540c3e1bedca8520d7560040a3429f11ab4d1add470623",
                "md5": "a4055c2c64a11dd7e42c765ca79f6dad",
                "sha256": "4b8120f6bcc5f89a65fd9054d6699613c7db75b2d64362fbcccc6a495dff5380"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a4055c2c64a11dd7e42c765ca79f6dad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1490663,
            "upload_time": "2024-11-07T07:49:58",
            "upload_time_iso_8601": "2024-11-07T07:49:58.046774Z",
            "url": "https://files.pythonhosted.org/packages/bf/9f/856d9519c5eabd540c3e1bedca8520d7560040a3429f11ab4d1add470623/rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8128ee1382a7166be27b17aedce96803189cfe9592d9786c88301316edce319",
                "md5": "032ced6b035f17196d598351ef6e2d1a",
                "sha256": "6d3b00f18387ea6ae5d61a393222fb83094b141985f41d4a8100bde1504d0719"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "032ced6b035f17196d598351ef6e2d1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1488662,
            "upload_time": "2024-11-07T07:50:08",
            "upload_time_iso_8601": "2024-11-07T07:50:08.703324Z",
            "url": "https://files.pythonhosted.org/packages/a8/12/8ee1382a7166be27b17aedce96803189cfe9592d9786c88301316edce319/rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf6862ed07a027d4f0c2f73154ac0a05d9eda35354373732d0fe6a3331f3a249",
                "md5": "0b0e9eec1217cdeda9763b07c2f1ea4c",
                "sha256": "90fa888a4fd1c9fc7aa742d42bb72f21cc81f35c90b77bb4667662367b602252"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0b0e9eec1217cdeda9763b07c2f1ea4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1477997,
            "upload_time": "2024-11-07T07:50:19",
            "upload_time_iso_8601": "2024-11-07T07:50:19.432740Z",
            "url": "https://files.pythonhosted.org/packages/cf/68/62ed07a027d4f0c2f73154ac0a05d9eda35354373732d0fe6a3331f3a249/rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f263c4221731e80022b7726777a6c1d06923dcd98477cc5906ad643c1c8e0c08",
                "md5": "85644559b13d4188ae3b0923e7452503",
                "sha256": "ee097ab38c116eecc78e4e59200622fe1abb8dd1c598d59dd630003e49a3f083"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85644559b13d4188ae3b0923e7452503",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1368662,
            "upload_time": "2024-11-07T07:50:29",
            "upload_time_iso_8601": "2024-11-07T07:50:29.247066Z",
            "url": "https://files.pythonhosted.org/packages/f2/63/c4221731e80022b7726777a6c1d06923dcd98477cc5906ad643c1c8e0c08/rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c42780a31d83619bd44570cb05f7fdefa288a942b53f7446df97aceebf72fe34",
                "md5": "42a295fc882670497b2bafc783c64f82",
                "sha256": "b279708e323f7ce3dfb7fccffc2c14300a20b0c6260871266565cfedeb0be1e8"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "42a295fc882670497b2bafc783c64f82",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1529976,
            "upload_time": "2024-11-07T07:50:53",
            "upload_time_iso_8601": "2024-11-07T07:50:53.016833Z",
            "url": "https://files.pythonhosted.org/packages/c4/27/80a31d83619bd44570cb05f7fdefa288a942b53f7446df97aceebf72fe34/rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af8fb09cbb7c06c26bdb585c3a316bca093b1e1bcc6f56a357b1fdb1160fb77b",
                "md5": "d1a0ae63263da66a8c7234fab648fb9a",
                "sha256": "0d945294f0eaf7b38b41f1c9fbf534577c2c75413a74ec6f6f6a7f0d41520cf6"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d1a0ae63263da66a8c7234fab648fb9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1607331,
            "upload_time": "2024-11-07T07:51:02",
            "upload_time_iso_8601": "2024-11-07T07:51:02.490821Z",
            "url": "https://files.pythonhosted.org/packages/af/8f/b09cbb7c06c26bdb585c3a316bca093b1e1bcc6f56a357b1fdb1160fb77b/rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0d031ce4f884963ab96edb4ec69a5de5893d57cedbf206bce64ca7193b1a35c",
                "md5": "0fc9681d6da195a5a95359441574b559",
                "sha256": "58189c7b79562ff9d7249efeec71ec53a68888d0ced1dcdd90c3072dbeb39492"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0fc9681d6da195a5a95359441574b559",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1587093,
            "upload_time": "2024-11-07T07:51:12",
            "upload_time_iso_8601": "2024-11-07T07:51:12.251393Z",
            "url": "https://files.pythonhosted.org/packages/f0/d0/31ce4f884963ab96edb4ec69a5de5893d57cedbf206bce64ca7193b1a35c/rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e0b01ed2059785a7f6f9529134e4ac82563cd7b05d43a7f3478d9f7636cee81",
                "md5": "d871cc1920af76be9dead410d7b5b252",
                "sha256": "443b7b255e2a3d24fb82ce0ce60467fb8dcd16a6b34990e85884d6e9e334f026"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d871cc1920af76be9dead410d7b5b252",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1524394,
            "upload_time": "2024-11-07T07:51:22",
            "upload_time_iso_8601": "2024-11-07T07:51:22.454606Z",
            "url": "https://files.pythonhosted.org/packages/2e/0b/01ed2059785a7f6f9529134e4ac82563cd7b05d43a7f3478d9f7636cee81/rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5228ba81ab4a22f901b57417070c065dabea0ee4734ae892f4c2201fdc602e53",
                "md5": "d224eeafb841f5ad54d894f8b49e6a27",
                "sha256": "50bd805aee95eed8c1b82f8156f2ab097275346505740b7db0674a032edea0eb"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d224eeafb841f5ad54d894f8b49e6a27",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1099767,
            "upload_time": "2024-11-07T07:51:38",
            "upload_time_iso_8601": "2024-11-07T07:51:38.272207Z",
            "url": "https://files.pythonhosted.org/packages/52/28/ba81ab4a22f901b57417070c065dabea0ee4734ae892f4c2201fdc602e53/rdetoolkit-1.0.4-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "716d60920519e32457031f1ee3c5091d9588e5a956fb929e0a4d1cdef9d3d68f",
                "md5": "3496a440b53b5bdefa060dc475332917",
                "sha256": "b963c0fd2722007a5f0dece14b447f71ac7e7820a0cb6b697461857e2f7eadd7"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3496a440b53b5bdefa060dc475332917",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1112171,
            "upload_time": "2024-11-07T07:51:31",
            "upload_time_iso_8601": "2024-11-07T07:51:31.613470Z",
            "url": "https://files.pythonhosted.org/packages/71/6d/60920519e32457031f1ee3c5091d9588e5a956fb929e0a4d1cdef9d3d68f/rdetoolkit-1.0.4-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58611b9f97a0bd67966bfe59f01535e3eb2161195d395fce78f05637c88681dd",
                "md5": "4bda32b692fac478b046e5d0ab6573a2",
                "sha256": "a9477e3cbb454f5daac356e6662f6d0e0b5044ac6e23c0595f959ae3d9829034"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4bda32b692fac478b046e5d0ab6573a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1274885,
            "upload_time": "2024-11-07T07:50:48",
            "upload_time_iso_8601": "2024-11-07T07:50:48.030487Z",
            "url": "https://files.pythonhosted.org/packages/58/61/1b9f97a0bd67966bfe59f01535e3eb2161195d395fce78f05637c88681dd/rdetoolkit-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c3c8d0104b43ce3e5098e05007a22fef9059b6219b528d83794e51c31eedd09",
                "md5": "a803431cda173b7eaec812263a6cc7d1",
                "sha256": "a3025218baa098f7219c1698300d0d35c1728aede546c061cc21ead64ee01c64"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a803431cda173b7eaec812263a6cc7d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1235669,
            "upload_time": "2024-11-07T07:50:41",
            "upload_time_iso_8601": "2024-11-07T07:50:41.495224Z",
            "url": "https://files.pythonhosted.org/packages/9c/3c/8d0104b43ce3e5098e05007a22fef9059b6219b528d83794e51c31eedd09/rdetoolkit-1.0.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d94b435b304e1895c26e4fffc782b139451f1701927b779694beb77586654428",
                "md5": "2a9f0082cd982f326c83817795d35d00",
                "sha256": "ab133b8216ae861b6a5ff3ae48ebb1faf2003f3b16fb400933b72f9949b2f0f1"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2a9f0082cd982f326c83817795d35d00",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1337175,
            "upload_time": "2024-11-07T07:49:38",
            "upload_time_iso_8601": "2024-11-07T07:49:38.887915Z",
            "url": "https://files.pythonhosted.org/packages/d9/4b/435b304e1895c26e4fffc782b139451f1701927b779694beb77586654428/rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e04cce86f1383e09adbfa9b84ec7f97d6446720005644fb34a669f4d680fbcf0",
                "md5": "c97ebc7ca08295458def4bca0f53595a",
                "sha256": "c144fa10915c4cb90bfdc7b792a597a468274e52f8510049c43fc56b35cbb7ad"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c97ebc7ca08295458def4bca0f53595a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1363949,
            "upload_time": "2024-11-07T07:49:49",
            "upload_time_iso_8601": "2024-11-07T07:49:49.628139Z",
            "url": "https://files.pythonhosted.org/packages/e0/4c/ce86f1383e09adbfa9b84ec7f97d6446720005644fb34a669f4d680fbcf0/rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f028c87a90c2bedba30633ca86428f8b0115d9088d2426e7ae0762b19d721d5d",
                "md5": "0923ab186dbd0439b198667cc9ad860c",
                "sha256": "0f6a385c96e7ab2657dfd308b7129222382b5fb69ecc6c050d82ac272978ae01"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0923ab186dbd0439b198667cc9ad860c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1490267,
            "upload_time": "2024-11-07T07:49:59",
            "upload_time_iso_8601": "2024-11-07T07:49:59.931189Z",
            "url": "https://files.pythonhosted.org/packages/f0/28/c87a90c2bedba30633ca86428f8b0115d9088d2426e7ae0762b19d721d5d/rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc5e4921dbcdf336df4297827db567574a6ba00ed362bc23495ab4afdb2a3c87",
                "md5": "ba7af3e13411e058dd1f804b66e2ec3a",
                "sha256": "b93c21842432af100689854ab6aa88b054bc32217040cbad35af2b582d8c4e3c"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ba7af3e13411e058dd1f804b66e2ec3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1487413,
            "upload_time": "2024-11-07T07:50:10",
            "upload_time_iso_8601": "2024-11-07T07:50:10.765933Z",
            "url": "https://files.pythonhosted.org/packages/fc/5e/4921dbcdf336df4297827db567574a6ba00ed362bc23495ab4afdb2a3c87/rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a692e27bbe9f356373585253637541d57edb8225815145f4601b39d55dec7110",
                "md5": "d8651ff8c3f16a8350d507f21686d83b",
                "sha256": "3148617aff6bd2c1aca7ec25e619cd8717a46c83f0de71208586607aeff89738"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d8651ff8c3f16a8350d507f21686d83b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1476589,
            "upload_time": "2024-11-07T07:50:21",
            "upload_time_iso_8601": "2024-11-07T07:50:21.310567Z",
            "url": "https://files.pythonhosted.org/packages/a6/92/e27bbe9f356373585253637541d57edb8225815145f4601b39d55dec7110/rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de314efd8554539623d02dd7531fd1448175b7d5a89f0a8c80614bde068fa5f5",
                "md5": "475d9a0f51efc4cf7e5c556d292eec43",
                "sha256": "f9906d694c30368bb448fb7bff0b1fbb931d1917eb80e657f852e231e49e61c9"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "475d9a0f51efc4cf7e5c556d292eec43",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1368435,
            "upload_time": "2024-11-07T07:50:30",
            "upload_time_iso_8601": "2024-11-07T07:50:30.903669Z",
            "url": "https://files.pythonhosted.org/packages/de/31/4efd8554539623d02dd7531fd1448175b7d5a89f0a8c80614bde068fa5f5/rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7ee457f34b8171aed02048bcccc9a99650f2a6fe0d45699b46089a8539177d40",
                "md5": "f61a79fc6680ff590bb2494fad5d589c",
                "sha256": "511cd6b341fcacccf076bd0ebe8457a7d9cbbd8d75878163d786a1871ed26105"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f61a79fc6680ff590bb2494fad5d589c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1529369,
            "upload_time": "2024-11-07T07:50:54",
            "upload_time_iso_8601": "2024-11-07T07:50:54.499734Z",
            "url": "https://files.pythonhosted.org/packages/7e/e4/57f34b8171aed02048bcccc9a99650f2a6fe0d45699b46089a8539177d40/rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39559bb7dd0f582359bce8c2a7205ff332de9c1fe34c3b02c8ee79aaa5eb6333",
                "md5": "c6fb31f21098b1a2c0b986a5c8a94a28",
                "sha256": "4fb53ae90decd4ef189f3cf5e0258bc453325b912cf4bffc03bfb8c09836bdb7"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c6fb31f21098b1a2c0b986a5c8a94a28",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1607281,
            "upload_time": "2024-11-07T07:51:03",
            "upload_time_iso_8601": "2024-11-07T07:51:03.955711Z",
            "url": "https://files.pythonhosted.org/packages/39/55/9bb7dd0f582359bce8c2a7205ff332de9c1fe34c3b02c8ee79aaa5eb6333/rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0c377df58effe9aba7c1891d7ab4e8f62fd0bef14086dca8d7d8dcf38e447ec",
                "md5": "f25f1f0b62771c34abe1d2d1da01a03e",
                "sha256": "bf215807c72c94d3137ef60f562396fcaecb4e614f8b7366b5b765cb4799ecd2"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f25f1f0b62771c34abe1d2d1da01a03e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1587307,
            "upload_time": "2024-11-07T07:51:13",
            "upload_time_iso_8601": "2024-11-07T07:51:13.918418Z",
            "url": "https://files.pythonhosted.org/packages/d0/c3/77df58effe9aba7c1891d7ab4e8f62fd0bef14086dca8d7d8dcf38e447ec/rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6419c8f60d67b15e3d6ef1d379c2253f8ff7b359c224e4fa4e70cc332b1e9865",
                "md5": "1ed14fd40492eee0e2cebc38b21402cd",
                "sha256": "8e05f0cc516f3641121672acf759dce2060ff357c658131918a6674f2902fb0b"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ed14fd40492eee0e2cebc38b21402cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1523812,
            "upload_time": "2024-11-07T07:51:23",
            "upload_time_iso_8601": "2024-11-07T07:51:23.868169Z",
            "url": "https://files.pythonhosted.org/packages/64/19/c8f60d67b15e3d6ef1d379c2253f8ff7b359c224e4fa4e70cc332b1e9865/rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11de4b2db344c71a2548cef8305881f97f5c54cdad496c1772d058917211288f",
                "md5": "b917292958113d1ab88adf90fe2e98e1",
                "sha256": "92d75b195a89f3e023006123497550ad9085935c8137c9ec8265a77bea695236"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b917292958113d1ab88adf90fe2e98e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1099487,
            "upload_time": "2024-11-07T07:51:39",
            "upload_time_iso_8601": "2024-11-07T07:51:39.715687Z",
            "url": "https://files.pythonhosted.org/packages/11/de/4b2db344c71a2548cef8305881f97f5c54cdad496c1772d058917211288f/rdetoolkit-1.0.4-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8acbda2f16195dd4226d56993533ab8a12c9ecab367c03747b507129d9a8d556",
                "md5": "6eb35744e13e9c3e5474de2665c73101",
                "sha256": "7fb82dc97b4b6316aa177d92474496f176c38c608ceaf74bc6b02bbd1aa57908"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6eb35744e13e9c3e5474de2665c73101",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1112312,
            "upload_time": "2024-11-07T07:51:33",
            "upload_time_iso_8601": "2024-11-07T07:51:33.101433Z",
            "url": "https://files.pythonhosted.org/packages/8a/cb/da2f16195dd4226d56993533ab8a12c9ecab367c03747b507129d9a8d556/rdetoolkit-1.0.4-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a53e037da37bb0b5c6e52996c8a09be399b668dfec46ec4d9ba7aacd31c5583",
                "md5": "36bf0c55de7fad5d8af8a0431a9b52b8",
                "sha256": "c676da7ebfa028054f7374da8a25f7074f75bbf85f2bbc90735a1a80ab1013b2"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "36bf0c55de7fad5d8af8a0431a9b52b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1337714,
            "upload_time": "2024-11-07T07:49:40",
            "upload_time_iso_8601": "2024-11-07T07:49:40.772399Z",
            "url": "https://files.pythonhosted.org/packages/4a/53/e037da37bb0b5c6e52996c8a09be399b668dfec46ec4d9ba7aacd31c5583/rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "880357c9a1df81f6ec8d3414cda2479427cbcff0765c5e9b95c747d9e2cda4e4",
                "md5": "babcfbb3c783365c88c7423387e81262",
                "sha256": "e57fffe732c807953208653ae06be382b84b02d7e9c3b8e9a6afbb39f9162ceb"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "babcfbb3c783365c88c7423387e81262",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1364210,
            "upload_time": "2024-11-07T07:49:51",
            "upload_time_iso_8601": "2024-11-07T07:49:51.418643Z",
            "url": "https://files.pythonhosted.org/packages/88/03/57c9a1df81f6ec8d3414cda2479427cbcff0765c5e9b95c747d9e2cda4e4/rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8d52de23687a6936c1d0630bae768a8ab2cd7839cfcc7df8d797483820e8f91",
                "md5": "6326630f5fe0cc290ff5cadbb943d7ef",
                "sha256": "a60c8b76b4e05b775d742fecefecf64169c06114381fa3092a61f20e67c321d1"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6326630f5fe0cc290ff5cadbb943d7ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1491106,
            "upload_time": "2024-11-07T07:50:01",
            "upload_time_iso_8601": "2024-11-07T07:50:01.326316Z",
            "url": "https://files.pythonhosted.org/packages/d8/d5/2de23687a6936c1d0630bae768a8ab2cd7839cfcc7df8d797483820e8f91/rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "439f8997ee8132ddadad2cb35374513c292e4a976021cedf6e5d5918473dda38",
                "md5": "1bec8af280e13b80f1fb1c505d2ccd27",
                "sha256": "d65843e1ff79d8527117d41dff43132b021780fac86ea083cb02ca35ff9a4165"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1bec8af280e13b80f1fb1c505d2ccd27",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1488335,
            "upload_time": "2024-11-07T07:50:12",
            "upload_time_iso_8601": "2024-11-07T07:50:12.658031Z",
            "url": "https://files.pythonhosted.org/packages/43/9f/8997ee8132ddadad2cb35374513c292e4a976021cedf6e5d5918473dda38/rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f69d7a18956f53cd633e10493883811b41ebc6100c91dc028bbfc85ac52e3c38",
                "md5": "8e895e4c6a1a6958a19eca6ed5d9c530",
                "sha256": "d9d70d3d421e7582d7cb2199947f49b1d6aa26390d884a52adfe1029b0fa8930"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8e895e4c6a1a6958a19eca6ed5d9c530",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1478637,
            "upload_time": "2024-11-07T07:50:23",
            "upload_time_iso_8601": "2024-11-07T07:50:23.166042Z",
            "url": "https://files.pythonhosted.org/packages/f6/9d/7a18956f53cd633e10493883811b41ebc6100c91dc028bbfc85ac52e3c38/rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42f05d928a26c486bbb93b0912d951aa5f1fcc49727f9abc7ad0133c0366d186",
                "md5": "9027e5d9e9ea7716f5e8ad6bd183e4e7",
                "sha256": "78aedef4360f3cff5b4b4d714d9d22e63553ebecfc7885b267e87852bc4d7e40"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9027e5d9e9ea7716f5e8ad6bd183e4e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1368924,
            "upload_time": "2024-11-07T07:50:32",
            "upload_time_iso_8601": "2024-11-07T07:50:32.367542Z",
            "url": "https://files.pythonhosted.org/packages/42/f0/5d928a26c486bbb93b0912d951aa5f1fcc49727f9abc7ad0133c0366d186/rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16c28926d72feefc49db0e6e7adf2bce66a24a4d0687d8c4a8aec565fc186352",
                "md5": "79016ac844436b50f873b2978ea68d19",
                "sha256": "e5e5d969559a26481363b3cfa202da4582da9de00f3336ed2d1585968080078a"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "79016ac844436b50f873b2978ea68d19",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1529921,
            "upload_time": "2024-11-07T07:50:55",
            "upload_time_iso_8601": "2024-11-07T07:50:55.829490Z",
            "url": "https://files.pythonhosted.org/packages/16/c2/8926d72feefc49db0e6e7adf2bce66a24a4d0687d8c4a8aec565fc186352/rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7450363ec82d10e303394d59add59f2e81e1898791eba71aaa8481a401411efd",
                "md5": "784d9caa201f010ed27508fd2f68bce2",
                "sha256": "b91c50202ab07733781595743e844a824804065eb6f06a46377f0351925d3f29"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "784d9caa201f010ed27508fd2f68bce2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1607793,
            "upload_time": "2024-11-07T07:51:05",
            "upload_time_iso_8601": "2024-11-07T07:51:05.376795Z",
            "url": "https://files.pythonhosted.org/packages/74/50/363ec82d10e303394d59add59f2e81e1898791eba71aaa8481a401411efd/rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a73e50f74a2e889ec672077893e84281b8a83f3acf9d921a50e0278f495cdc4",
                "md5": "e3793d0e67f6f6e947abad7f45be5ecf",
                "sha256": "b5fc5cd9d75af58acc690ee15cb630c4f7054fba555c01effa036fecc88a154a"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e3793d0e67f6f6e947abad7f45be5ecf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1587200,
            "upload_time": "2024-11-07T07:51:15",
            "upload_time_iso_8601": "2024-11-07T07:51:15.656029Z",
            "url": "https://files.pythonhosted.org/packages/6a/73/e50f74a2e889ec672077893e84281b8a83f3acf9d921a50e0278f495cdc4/rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9ef930df4060e45675291c7d64fee444b5b5aece5a743cd3b4401eb9df0bdbf",
                "md5": "e2649953c1ae42deddf2958b70a16e77",
                "sha256": "fcc50887ee2daec1eca440efc1478b9f6b2de9fe467e95fde49d36a00b03a8b0"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2649953c1ae42deddf2958b70a16e77",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.9",
            "size": 1524495,
            "upload_time": "2024-11-07T07:51:25",
            "upload_time_iso_8601": "2024-11-07T07:51:25.381767Z",
            "url": "https://files.pythonhosted.org/packages/d9/ef/930df4060e45675291c7d64fee444b5b5aece5a743cd3b4401eb9df0bdbf/rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f984b1438cdad45904c5e487bbd7aeace0a8b479d0ac029f7b4cba991d77aa5",
                "md5": "d4048fdf964564505b40bdf61ca7c56c",
                "sha256": "af32cab26d72090e136c6bf9ffacc4eece1cc3b388c5a62d6f78b77a618cbafc"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d4048fdf964564505b40bdf61ca7c56c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1337657,
            "upload_time": "2024-11-07T07:49:42",
            "upload_time_iso_8601": "2024-11-07T07:49:42.943233Z",
            "url": "https://files.pythonhosted.org/packages/7f/98/4b1438cdad45904c5e487bbd7aeace0a8b479d0ac029f7b4cba991d77aa5/rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45e03b012148e01a129d347e6a1f5f36cbe70f4c95f1247edfc3dc2abcf1cbbc",
                "md5": "89147f594d3bd5723fd2e59d4e3e388f",
                "sha256": "56d9297ddedfa63bb1a05d8d6d4a18aac2599fcf449e139ec61c03e6acdcabb3"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "89147f594d3bd5723fd2e59d4e3e388f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1364088,
            "upload_time": "2024-11-07T07:49:52",
            "upload_time_iso_8601": "2024-11-07T07:49:52.834113Z",
            "url": "https://files.pythonhosted.org/packages/45/e0/3b012148e01a129d347e6a1f5f36cbe70f4c95f1247edfc3dc2abcf1cbbc/rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e322defb3cda8737eb3c31fb2d6119dceaf54615becacd46af215fadbb0b4815",
                "md5": "c65cdfe482276903ec5fa8683a331039",
                "sha256": "7993c611771d5a6f22ad8551e5fc0dba79f67e50d38d97cd27e35cf308b6b24d"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c65cdfe482276903ec5fa8683a331039",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1491160,
            "upload_time": "2024-11-07T07:50:03",
            "upload_time_iso_8601": "2024-11-07T07:50:03.217623Z",
            "url": "https://files.pythonhosted.org/packages/e3/22/defb3cda8737eb3c31fb2d6119dceaf54615becacd46af215fadbb0b4815/rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38f51a113a045e50905c9a56401584b3c212ca5c480cf1b2cb605022a10bf694",
                "md5": "2da5d14155bf6d1f8b8264c98c868fb2",
                "sha256": "3f8c6229a960a0b999e008233124b81fa1285c16d266afc06d636ef426ca518c"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2da5d14155bf6d1f8b8264c98c868fb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1488307,
            "upload_time": "2024-11-07T07:50:14",
            "upload_time_iso_8601": "2024-11-07T07:50:14.694945Z",
            "url": "https://files.pythonhosted.org/packages/38/f5/1a113a045e50905c9a56401584b3c212ca5c480cf1b2cb605022a10bf694/rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b02bc07f340e1dc4aa2d1aaf25a593fa687aefbb8d9c171d6acfed5676a5984",
                "md5": "9962dde8d1545cb9a0a1442b3e54721d",
                "sha256": "0a5b7bb7f1cdd9015d60a581454653b2474327f2d0a16b354877191c03aadbf6"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9962dde8d1545cb9a0a1442b3e54721d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1478688,
            "upload_time": "2024-11-07T07:50:24",
            "upload_time_iso_8601": "2024-11-07T07:50:24.831639Z",
            "url": "https://files.pythonhosted.org/packages/0b/02/bc07f340e1dc4aa2d1aaf25a593fa687aefbb8d9c171d6acfed5676a5984/rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64d7c36bc30803d8ffa804027c41ac68203a2aee084abd03289c8ff0c339bb31",
                "md5": "d6ec45f09f8702fae9cccc28c3ef6f0d",
                "sha256": "7cb80dd7a406b471aabf05e0f5e5bdfb27f71fb2ad5a700d00f7f4e498ce19da"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d6ec45f09f8702fae9cccc28c3ef6f0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1368913,
            "upload_time": "2024-11-07T07:50:34",
            "upload_time_iso_8601": "2024-11-07T07:50:34.004004Z",
            "url": "https://files.pythonhosted.org/packages/64/d7/c36bc30803d8ffa804027c41ac68203a2aee084abd03289c8ff0c339bb31/rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "02338cba6ba32a264ea3ad361d38279dddf1ae90f970c615d809bff1c8e1d28b",
                "md5": "7762be8e2cb38ea66d858800532b7dc0",
                "sha256": "b96d9fa84e094494b1da2204e05a64269a080363474215bb681849bbfdf606c8"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7762be8e2cb38ea66d858800532b7dc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1529773,
            "upload_time": "2024-11-07T07:50:57",
            "upload_time_iso_8601": "2024-11-07T07:50:57.245884Z",
            "url": "https://files.pythonhosted.org/packages/02/33/8cba6ba32a264ea3ad361d38279dddf1ae90f970c615d809bff1c8e1d28b/rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3357e8049ed0fb20abecf0904f5d0bd4d4add647ec2925c59efd7e2e28ef8ff4",
                "md5": "c530fd13308e1ab68e7af3a852c0eab8",
                "sha256": "e20c6100cb4973229d6df585bf0ea1bcfd898098a59cce2976fd78e60d7a1bdb"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c530fd13308e1ab68e7af3a852c0eab8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1607840,
            "upload_time": "2024-11-07T07:51:07",
            "upload_time_iso_8601": "2024-11-07T07:51:07.215618Z",
            "url": "https://files.pythonhosted.org/packages/33/57/e8049ed0fb20abecf0904f5d0bd4d4add647ec2925c59efd7e2e28ef8ff4/rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c002bd3293ef3a9277be7fb99242fa1fd5841445d5e28d8259544f78d73c24e3",
                "md5": "00550fa59fb0a265722bab7a97fa3b6e",
                "sha256": "7eb5f7c0e88e08431d37a72a0f134e92fe9af7d0f56a22fbd2b32da48230a695"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "00550fa59fb0a265722bab7a97fa3b6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1587262,
            "upload_time": "2024-11-07T07:51:17",
            "upload_time_iso_8601": "2024-11-07T07:51:17.456767Z",
            "url": "https://files.pythonhosted.org/packages/c0/02/bd3293ef3a9277be7fb99242fa1fd5841445d5e28d8259544f78d73c24e3/rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee5d1dbe669d3c7580cc714fece96944e9d1f4375dfd5f61b14d0e22c55d60f5",
                "md5": "5bb06024f5a1c26e7e21d97f898c7664",
                "sha256": "b63825f7a1caa618c54cf693d226d79f6c5b5470deb9a78007068604c2994fbf"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5bb06024f5a1c26e7e21d97f898c7664",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.9",
            "size": 1524483,
            "upload_time": "2024-11-07T07:51:26",
            "upload_time_iso_8601": "2024-11-07T07:51:26.800664Z",
            "url": "https://files.pythonhosted.org/packages/ee/5d/1dbe669d3c7580cc714fece96944e9d1f4375dfd5f61b14d0e22c55d60f5/rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "126d9545f2ea0f358b77bcd76ab658f4fdc7f39f0e7bc364affa7a639a4d2d46",
                "md5": "caa749514cd4d36e1e90da905b1d6ffd",
                "sha256": "d128db8a00a7c6aad6434dd9eeb5b4e366a9fe8a64ef099b29ac7b72fca92094"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "caa749514cd4d36e1e90da905b1d6ffd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1275950,
            "upload_time": "2024-11-07T07:50:49",
            "upload_time_iso_8601": "2024-11-07T07:50:49.413700Z",
            "url": "https://files.pythonhosted.org/packages/12/6d/9545f2ea0f358b77bcd76ab658f4fdc7f39f0e7bc364affa7a639a4d2d46/rdetoolkit-1.0.4-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6eed063b6aa7c7e3397d364e8a46c67c0baf2c8d5bfcecbbff84fcb0a0764ab2",
                "md5": "8cbabecf782017c47b3f9dbc13b7b12b",
                "sha256": "ff30f10316cf136ad9158731be21650136c325a28246d35ed31dc35bfe21400d"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8cbabecf782017c47b3f9dbc13b7b12b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1236117,
            "upload_time": "2024-11-07T07:50:43",
            "upload_time_iso_8601": "2024-11-07T07:50:43.141167Z",
            "url": "https://files.pythonhosted.org/packages/6e/ed/063b6aa7c7e3397d364e8a46c67c0baf2c8d5bfcecbbff84fcb0a0764ab2/rdetoolkit-1.0.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6ec45e08199b218e5bb5b5bb3e6ce9d1e23d1ffd24344d65660fadbefd28e51",
                "md5": "f2a13ec3af8761984b213275d37d5831",
                "sha256": "46b2c9c32cb83936ec54f18142f79a2446a23ad56ce1dfe960fe2b2fe3e025de"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f2a13ec3af8761984b213275d37d5831",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1337625,
            "upload_time": "2024-11-07T07:49:44",
            "upload_time_iso_8601": "2024-11-07T07:49:44.326926Z",
            "url": "https://files.pythonhosted.org/packages/b6/ec/45e08199b218e5bb5b5bb3e6ce9d1e23d1ffd24344d65660fadbefd28e51/rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33e87175ecb82fefeb01d6aa1ef0a7f3380230e0cd1a4d2bc017b8936023272c",
                "md5": "2096dcec71301175b169e702821e8371",
                "sha256": "e5dfc24e5a12c043850de6d59992bd488d8cbdba07211e1ef0b5294920881094"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2096dcec71301175b169e702821e8371",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1364594,
            "upload_time": "2024-11-07T07:49:54",
            "upload_time_iso_8601": "2024-11-07T07:49:54.508418Z",
            "url": "https://files.pythonhosted.org/packages/33/e8/7175ecb82fefeb01d6aa1ef0a7f3380230e0cd1a4d2bc017b8936023272c/rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "378ee81d50a7e3c5770ffe968aea62d64686e2bb1b4b692f07603c0987fb9e84",
                "md5": "ef74938865cfa32eb30392fd683f78b2",
                "sha256": "38f28cd43dc85deda394f841dc8d1f1d89be6e6aac43586ed5cd6ed7d9878017"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ef74938865cfa32eb30392fd683f78b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1491094,
            "upload_time": "2024-11-07T07:50:05",
            "upload_time_iso_8601": "2024-11-07T07:50:05.453329Z",
            "url": "https://files.pythonhosted.org/packages/37/8e/e81d50a7e3c5770ffe968aea62d64686e2bb1b4b692f07603c0987fb9e84/rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d86201106d1115048ac854e9d5b96f7042bece3c49960f7b29055603e05b94d6",
                "md5": "f07a7e12027686362321a7e242b04251",
                "sha256": "45e8cb10ef90be5a0fd0a86b273a798b31771881ad70c218cd7d331a8bd280a7"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f07a7e12027686362321a7e242b04251",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1488342,
            "upload_time": "2024-11-07T07:50:16",
            "upload_time_iso_8601": "2024-11-07T07:50:16.430892Z",
            "url": "https://files.pythonhosted.org/packages/d8/62/01106d1115048ac854e9d5b96f7042bece3c49960f7b29055603e05b94d6/rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c33f731f0e324f98a92544af14781d65945c7be850d421f25552dbe6811db07",
                "md5": "e09c055028005804f1b3de3b55a12ab7",
                "sha256": "03fb47659f9c7eeb897b4d8431efccb171cf431c616a4e9ddcbdf81f132703a9"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e09c055028005804f1b3de3b55a12ab7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1478596,
            "upload_time": "2024-11-07T07:50:26",
            "upload_time_iso_8601": "2024-11-07T07:50:26.475584Z",
            "url": "https://files.pythonhosted.org/packages/4c/33/f731f0e324f98a92544af14781d65945c7be850d421f25552dbe6811db07/rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0c852948cc38d0681ce526e5bfb8082c94a3b818dddcb9c6e6ba25dbbb28c59",
                "md5": "b875a3ec49979bcc6c5f5c1d31274524",
                "sha256": "ac958a1333200adc2c38b5e3d5d5fb07a54ad20c496bfca3e0aeee786a6aaee4"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b875a3ec49979bcc6c5f5c1d31274524",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1368983,
            "upload_time": "2024-11-07T07:50:36",
            "upload_time_iso_8601": "2024-11-07T07:50:36.083615Z",
            "url": "https://files.pythonhosted.org/packages/b0/c8/52948cc38d0681ce526e5bfb8082c94a3b818dddcb9c6e6ba25dbbb28c59/rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88d8ccd3bac1c476b7eba4744f46fdeef94f4121cec69f23577c0f6982935dd5",
                "md5": "cbe5a5e3a7237d305bb6710add19b55f",
                "sha256": "1d8d50085d0dd3dae0ac1506314e3f528c150fe95903edad7e5260f33b7127aa"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cbe5a5e3a7237d305bb6710add19b55f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1530706,
            "upload_time": "2024-11-07T07:50:59",
            "upload_time_iso_8601": "2024-11-07T07:50:59.188432Z",
            "url": "https://files.pythonhosted.org/packages/88/d8/ccd3bac1c476b7eba4744f46fdeef94f4121cec69f23577c0f6982935dd5/rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc5a40dd0036ecfe92445375ee272619cad0b5f5c18c8fea73570b54d6c98c3d",
                "md5": "3b3e7e4e44a6ad9c3c304e84894fe7a1",
                "sha256": "b24975fb81dd829d0dcddba8287bffc844f155f47ea4b842f1e4f0ee2efa4a42"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3b3e7e4e44a6ad9c3c304e84894fe7a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1607310,
            "upload_time": "2024-11-07T07:51:08",
            "upload_time_iso_8601": "2024-11-07T07:51:08.691071Z",
            "url": "https://files.pythonhosted.org/packages/fc/5a/40dd0036ecfe92445375ee272619cad0b5f5c18c8fea73570b54d6c98c3d/rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b27967311df326b3df741e21b82ac242a23773ee5adc060a5c5fdacdd705f5f",
                "md5": "920447b58f308c874505efb95c6650c4",
                "sha256": "940bf5f4e8d92b04ab31b6c2f1e1b213e86abb45cef1af4bb2515a4a99822baf"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "920447b58f308c874505efb95c6650c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1587046,
            "upload_time": "2024-11-07T07:51:19",
            "upload_time_iso_8601": "2024-11-07T07:51:19.483564Z",
            "url": "https://files.pythonhosted.org/packages/4b/27/967311df326b3df741e21b82ac242a23773ee5adc060a5c5fdacdd705f5f/rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75a640a632cde6dd45cd99b25ca1fc6e8a6d0a7206d3a8bb973b7ed3e15277c7",
                "md5": "f6f5827a26ba78d803d9157d7f95792b",
                "sha256": "2e688173b8ad173f668f36e1eee257f4036edf7cf3f456ba77d348c277e8d82e"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f6f5827a26ba78d803d9157d7f95792b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1525313,
            "upload_time": "2024-11-07T07:51:28",
            "upload_time_iso_8601": "2024-11-07T07:51:28.238268Z",
            "url": "https://files.pythonhosted.org/packages/75/a6/40a632cde6dd45cd99b25ca1fc6e8a6d0a7206d3a8bb973b7ed3e15277c7/rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d812d86fd24ccdf3309c2ab2ff0d1b68568a71be9844b6f6c75cbaed2130b974",
                "md5": "5c63e40211b3971b6336d7244df16e6b",
                "sha256": "a27c16889c69441cd5fe1acfc1dd926dfb4d327666104080eb3e736ffd240ff0"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "5c63e40211b3971b6336d7244df16e6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1099799,
            "upload_time": "2024-11-07T07:51:41",
            "upload_time_iso_8601": "2024-11-07T07:51:41.265570Z",
            "url": "https://files.pythonhosted.org/packages/d8/12/d86fd24ccdf3309c2ab2ff0d1b68568a71be9844b6f6c75cbaed2130b974/rdetoolkit-1.0.4-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51defd634df8e3ac8052b0d3facc408d9cb0a693b77979abc060fe514f5f41cc",
                "md5": "f55425aea57b3985b13c678a36f42bb0",
                "sha256": "4ef5e1285ce4b3bc759b99e2aeb733aa33babeede2d6d387bf5dbeeb2528f0ba"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f55425aea57b3985b13c678a36f42bb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1112323,
            "upload_time": "2024-11-07T07:51:35",
            "upload_time_iso_8601": "2024-11-07T07:51:35.251013Z",
            "url": "https://files.pythonhosted.org/packages/51/de/fd634df8e3ac8052b0d3facc408d9cb0a693b77979abc060fe514f5f41cc/rdetoolkit-1.0.4-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5dbdd934e2147aff15870a09b764c3f2abc04a9e875479032f990dbee2c522dd",
                "md5": "b9cc3b23f93ad5b27f536b81dd87cc08",
                "sha256": "75fd49c6aa327d26755f77cfc9dfeb42d1f232f5b1a4414c7de5aedae8f61b60"
            },
            "downloads": -1,
            "filename": "rdetoolkit-1.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "b9cc3b23f93ad5b27f536b81dd87cc08",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 11276924,
            "upload_time": "2024-11-07T07:51:42",
            "upload_time_iso_8601": "2024-11-07T07:51:42.953589Z",
            "url": "https://files.pythonhosted.org/packages/5d/bd/d934e2147aff15870a09b764c3f2abc04a9e875479032f990dbee2c522dd/rdetoolkit-1.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-07 07:51:42",
    "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.62610s