Skip to main content

A module that supports the workflow of the RDE dataset construction program

Project description

GitHub Release python.org MIT License Issue workflow coverage

RDEToolKit

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

Documents

See documentation for more details.

Contributing

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

Install

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

pip install rdetoolkit

Usage

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

プロジェクトを作成する

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

python3 -m rdetoolkit init

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

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

  • requirements.txt
    • 構造化プログラム構築で使用したいPythonパッケージを追加してください。必要に応じてpip installを実行してください。
  • modules
    • 構造化処理で使用したいプログラムを格納してください。別セクションで説明します。
  • main.py
    • 構造化プログラムの起動処理を定義
  • data/inputdata
    • 構造化処理対象データファイルを配置してください。
  • data/invoice
    • ローカル実行させるためには空ファイルでも必要になります。
  • data/tasksupport
    • 構造化処理の補助するファイル群を配置してください。
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): 処理結果を保存するための出力リソースへのパス
def dataset(srcpaths: RdeInputDirPaths, resource_paths: RdeOutputResourcePath):
    ...

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

# 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構造化で規定する各種ディレクトリパスを取得する
  • ユーザーごとで定義した具体的な構造化処理を実行
import rdetoolkit
from modules.modules import datase  #独自で定義した構造化処理関数

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

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

import rdetoolkit

rdetoolkit.workflows.run()

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

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

container/
├── main.py
├── requirements.txt
├── modules/
│   └── modules.py
└── data/
    ├── inputdata/
       └── <処理したい実験データ>
    ├── invoice/
       └── invoice.json
    └── tasksupport/
        ├── metadata-def.json
        └── invoice.schema.json

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rdetoolkit-1.0.3.tar.gz (11.3 MB view details)

Uploaded Source

Built Distributions

rdetoolkit-1.0.3-cp312-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

rdetoolkit-1.0.3-cp312-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.12 Windows x86

rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rdetoolkit-1.0.3-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rdetoolkit-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rdetoolkit-1.0.3-cp311-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

rdetoolkit-1.0.3-cp311-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86

rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rdetoolkit-1.0.3-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rdetoolkit-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rdetoolkit-1.0.3-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

rdetoolkit-1.0.3-cp310-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86

rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rdetoolkit-1.0.3-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rdetoolkit-1.0.3-cp310-cp310-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

rdetoolkit-1.0.3-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

rdetoolkit-1.0.3-cp39-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86

rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rdetoolkit-1.0.3-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rdetoolkit-1.0.3-cp39-cp39-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

File details

Details for the file rdetoolkit-1.0.3.tar.gz.

File metadata

  • Download URL: rdetoolkit-1.0.3.tar.gz
  • Upload date:
  • Size: 11.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for rdetoolkit-1.0.3.tar.gz
Algorithm Hash digest
SHA256 ceee27ac7b5754386ba8af958996cb2b007c5bd0f6ec912b53ef1031a87af892
MD5 98c2af0b9b868a08a4911403031f1657
BLAKE2b-256 7a982aa9387fe58beca50ddda49a50b963be649f2a95c3c32360a6599447041d

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b5d660c4fcceb536f8d8d0e4e469fc8b997706efdde94dcfed17b7e893273095
MD5 46cea520b36410002a1cb026231f78ed
BLAKE2b-256 4569c6fd5d13d74a5c634998d17f4d18fd1432fb1678cee02645a5f9d292fa6c

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-none-win32.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c0de269b4a4cddab990d6f0c7bc70e339bc2356ae445a2dff8f7c256a7ac28bb
MD5 4c6d40a9046dde84f192a0a00ed52e47
BLAKE2b-256 f56f15c465de899d61354b0eb7c42d59dca6236b507d9c2501690826d48cbc55

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f6797811e3e3aa466052e496c477ddfb230883dec85eeba3d1f956e23133a4d
MD5 508158cfca15a2eb5946cb12462e7442
BLAKE2b-256 282f41857e76ad42864a6f0bc619ffb295e9162cde6c9c561a0fc31a6999f202

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f07afd5e79ff8f79ce66bacc516a8013c0c3aff66010da908929f73de91128b
MD5 63782fb69b734b817671c832de463a97
BLAKE2b-256 62b25c8cf88e7b7227345756e049ede8a1a6b0b7f7290cf3fa9c46a082574176

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b21ca94cbc100908f14efb2cf6b1ef6cff1132681d48b62ab52857cfb1fee3c2
MD5 c9831df3330bb2e2196da40285097d43
BLAKE2b-256 b50267466f56b272ad576883df16ca630e7a6322ac048bcdc28bf3dbdb51c69a

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07619380609532fa52457edd1294ad0d90ef31365ce95e0774d6737ff4dfb24c
MD5 0d078f1116795e549a45c919947686be
BLAKE2b-256 cb8da44b343a940fd1a234800276537c7210ee1bf7a3fc10b27314e785c69cda

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8412992e311b05920775ff86a6ab4c9571e24cb36668670e581c2eed8b7841f0
MD5 9c3a3f7583d86945fd961b5ff776d730
BLAKE2b-256 7ae5e128bccea24bbe21422dcc66f4f14945abc278bb7bbf82314782f32f397d

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15dc85c328512a2b69a8044bd4580e0a82ff18ca4cebc6e15334618efcd555ce
MD5 7f65c8290b55c2aa0e29ebc65e4d2b91
BLAKE2b-256 c5d615b34b1d2a3cd843de913158fd1dbf36476aa68b874a350c13fa8924afae

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 894837240b0a4ad5530e5e678af00f5013b399cd2363a9af2c4e7311974e08df
MD5 03171eb0d9bd3c5a3656787c1e73f1e8
BLAKE2b-256 8f5b494987ea6feeffb172505b9b34c97523711c3576d63c42cdb67359d255e7

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5989cd016304e8a3f04a1269e0c367b202e56606679bfc0571e0aa7501769eb
MD5 385753121c204d41cfca0d4e4db05570
BLAKE2b-256 9f45bedaebb5d69f2d58e95473b3d9488309eeb7155af1070094880992c7be69

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 194256ac67c9bc6cecc68e6ee12bb82cd5802c5879138c03a3e9fb089cc4e61d
MD5 37f5b5323b037133c0de357c07dd8189
BLAKE2b-256 6e1c1d8bc810298cc148f321c7fb2d9191dd373bbb793f319bdf23b8928e7bf6

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f7448cad0105a2904602ef088f638e98abaa63b0a1ff4e082c21a99355d7e3a
MD5 f6b36dab8b62d75738255dca616133da
BLAKE2b-256 fb81eb2a1ce589bcbe7165acc992ad0211023fcacb34f2a2a01fca9c86eb8050

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7862c5c991c471bb43be651baa9a8817e0621f283ff8b87ede9d9fc6840b3e81
MD5 6f0baf4f24cba01757cfbebd0eab5ece
BLAKE2b-256 16bac510a42f406d358a8ebc6ba520aad31648c0a1d4d8137bb5d6f5077adf2b

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 48c033a3f0037af478b16e6080e480c77237a7735ce3acd7984f2b38a66549b1
MD5 d2e975e03fda24b933b539b0a73e6193
BLAKE2b-256 a31c2222036fe2fcd52b28efdc5f1bfdb346217e03828c682c742579516f6ae3

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e3d7d12788b61329526ee008edd195592b457ba91f6064856cb8280bd18e9699
MD5 c29e3a24b57b793c7e7d6c52d5410d50
BLAKE2b-256 754ed7eed0b29b7956a2da8138a1e2571ed79f5c39216e98df07ec39f45cf6ee

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-none-win32.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 aad0e66d89df0684ed6913d6bb6436ccaa7b199b2e2219b1079234d8b6afd74b
MD5 9537ea05889961939ce7d6c68f63d48c
BLAKE2b-256 857f6d8a18c58413a4b2c87a0c924f44fbb6e15852357a61382a3a2a211ad350

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b8384a6c7a4ccbebf4714238860f2bd93c3af474457784254122a0477527982
MD5 45b1d75fef0df2e20719cbfeac127350
BLAKE2b-256 256da923cbdb4200bcb9fb8e81c46b04c4b8e2c352249a500304a17139c92589

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fdf8bc0f5c559f8061fab96d1c215c078cdbb46ea2600e659bb66b6a85fe6c03
MD5 c8aef83c24e6617dde0d7fba05668e43
BLAKE2b-256 4ce7a0d9ec91787a5387f9c867b328d51efff29c784a222f57255b8d378949c2

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be7bd8a54fb0a137c7c7511a7465048a6654ec8e16528e874e98124e8bec60c9
MD5 51b4fe17b47e2849476a0c5993605801
BLAKE2b-256 d0b049a1c57b7ade7cb44da66580ce9c968428e0f960fec3c8fb9f4db9bbcbd6

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab1ea0030e521de683555de5773a640a96bd771a27f7e0c3e61820a4e1d9287c
MD5 21d7e6305c49b5e2d818f1565ff63e91
BLAKE2b-256 bdee54463b2bb8e013999b1b71d77081a332aadea9dc4c66f9b5581c64e58c05

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 934df1b4df9781133d174f2592ec49765c74e8b33fd140c8cfc90f7244d6100b
MD5 ef88ddae334583d17cb8d5107bf58220
BLAKE2b-256 c261bd4cdb7fa972179ce9bbd9ecb9721c09a42f9be716ece613ac04ead09416

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c70615e63be8641270b80118e1385d23bd79bcc734dbde8225a386570c94b6c
MD5 f806bc908c129cfe086565b5af5d2d33
BLAKE2b-256 15d29d39a7c1232219766333ccb70f011b8e2cd275301af8f532b1e95be614c5

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4cfd1547196522d55dcd073a2b306c0c45863968a5a4f5400200dc9bf9777e5
MD5 cdcc4a8158cfcbace9cc11a2bb7b9d68
BLAKE2b-256 1a349a1d6679c5adf3f1c485f335a799664873942a70bb20283c51212c74eae0

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1fe0efb41065fa880d84e4f8b4bf735a1d934afa07b30b8b9b1729f1c791bca
MD5 515c6facac4d1029b09c6caa00344fc6
BLAKE2b-256 54598b0707f3c46a3aa3d8fb72bf54297f6dd162a9b9b6574eed315126f1b368

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1903a594b12131a00c5e7ab9696534979d3ed62318bda551f7baf6017250d87
MD5 3db02c85804c4700b105c42c61df2b93
BLAKE2b-256 f98725414a90e94abfaf30fd5816e79a3ca38eea7af0d5d0c9353f1ace35cb1e

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c306d158710d56e7fce0a70e25ad1a08ea7220981c57b82a381f7aafecabc1c
MD5 17bc9278dce826af68e2bc1bf185cfe8
BLAKE2b-256 4222497c955676f5f0bf913e2128a3def29f80184aa97929174b90d75e2de5ba

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bb326cfaa6d20dad54d07af7ffbdcf8bdc7975b9f0f52cc15e0b54a455e20b1
MD5 37ebf5c2d196faa37c3efe6af608fb80
BLAKE2b-256 99f6e687c670937bcfe7631d4eb57c2dce552047e7d65d1d5fcb21e0024db49e

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ce23448a2088db9790dc23023b2653c3afe7ebfc0f9aadb42713b6f028d49c5
MD5 b82b0fe6bf6aa4f0b9c7a02e777a9049
BLAKE2b-256 85eaf7b5aae4bddf5dbe3bf9e6778d34ecbc1d9c1d69c851feb5325eefa362db

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8fa76fd91203ff5682597cd5a044a68616554ff5c8662f180f972aa5a9aa7a4f
MD5 5c9545a5d6266ecb351ee4bcfa58258d
BLAKE2b-256 c3e1bd6a4fd9102e350d955f9d77e2c767b08a45b23a436d0004367464669995

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-none-win32.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 239168e87f6f1c0b22ec9153f968bf25ea8aee8b5c52eb160fb3b077a1d48024
MD5 87b42a06223569cc88bdf2f3ac1d7582
BLAKE2b-256 2958922abb17fc487c7ff1d57d42766ea1ef4f21090148adcd83ee67309c7880

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9330f78a609158737df231b9d432b7dcad524902d8c4ac6906899a9a484d3dc2
MD5 403cbf7829c522cac44be500d43f698c
BLAKE2b-256 c9a71f61c2ff8879beb794e4c1459afeb6e791736783e94b629e3f68c1e97786

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bb1202714bece0af996bdd2dc51e7212195fca3941c0ffb3397a9242db0f0aa
MD5 74b37513d35208ba603a32b0e16570b5
BLAKE2b-256 91ae3c2f6055d294a4e7b3b344ced57195e46b6986fe3f95f239a272d5d71d64

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50b166cd76028ad922b885d670f52593836858460cdf8e0e18e1e95486eb546b
MD5 845573298e8aa890cb624b6ba503b3be
BLAKE2b-256 a6e22c71b8460d94ac229d401e390348ef19dd7cefd9f78eaf4862a55de5f5c5

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f034441494fed32982d8b1cf48b6e7e74a44f64cbbd3074e5abc6a3fe517aa1
MD5 ed5f4a2ac812d715fb71a142da6c718f
BLAKE2b-256 1ece73a5b1bf4e8a4f72518c2db71f7e67bf780d835776b6e9ce046957dea1ee

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28560821f5922daabcd6c204764ce1090b7fe8dcb2557bc86ada94ae69d3fdc3
MD5 c3aa8a297540f147f775952e74018105
BLAKE2b-256 3eef8e8b94fdbdd40f4ba3763f49c34e52e64e0d8ef20e794eb89f175271f436

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 575abb2617dd281dc85626e8436a23bffd1bf59974f98a43362d7fba579d0847
MD5 69c5832816a0ead161435527361e85d9
BLAKE2b-256 e4ea532ccbed275e9912c7f6a3e0a75e04be361d4625bc64e42c99b4f4f611d5

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3894e7ea0bd5533dfeb7be01a1d31d6d52458bc6765951d97af503086d0bb3d7
MD5 3c8df854250a671802888d9164c4bc8c
BLAKE2b-256 e22b5341bc5bc2e240065cef1935f4148688c2c40082a63353a7012e90e1510e

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb9afc994db60d7f20ca3fe95e63911c020011c96c015c59df3d1fcf7a8ad528
MD5 4c37494c233d0aafbe89970863ec4c0b
BLAKE2b-256 5d272e1c1e992e11aeb66d927a55a21dd11170bb28bcabeed863526a2e34b18a

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2d1acdf9d635ce5fa25fa07f850e3041a37eb89813f3701cbf1083bc110e2fd
MD5 aff9567d3887336ca9e773fc67b70104
BLAKE2b-256 4ee33e6fe8152262edd9d79bd8af545db7430a6f3a5215ac69aed88d4a22a92a

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 facfcbdafe94c3048b684497e8298a0f4a12069372aa3c178222f9be60a2981f
MD5 e35f81887d42dd5ed756e69346ccc76c
BLAKE2b-256 5d2d58a0ec4c46da20383d603a0ddfae97ed2d603335a87ee41a45c3a9df59a0

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8d0f1f998b10882bfe6723a67f64c1ad97f8196771a4ab0f95fd60bfae83e71
MD5 d13b034b05e0a845349ca83b0cd88d68
BLAKE2b-256 84d247cec612c16c520bcc46a86ce5632f2544738e50678c8494bf6f8f84e330

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce8e819bbe1be8d0d71820c063cee1a973e08e8f78088952ce29c978848874e8
MD5 670d2569f31a4e4dbfdf65791fa62704
BLAKE2b-256 e3fa9b3eb21db2d394939f01c7d9e90b625953376af08afc685831a33e463899

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0ee18d1551180aa940e643ae7f3eb0bb5482486b13cee60d4c32e02c18a9cd8e
MD5 071e47cbc6653b02228db37f3ac081ff
BLAKE2b-256 0f06ecdd048f79b5fa0dd28cf17ea95f67687087ef718684c8ebdbb20aaf454a

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-none-win32.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c5f10a3292d4339bae3a8a983d4d68f1909baf5f01624c4050f927e85bb3d398
MD5 a1cf02498aa2ac9c2163a48e5108b0b6
BLAKE2b-256 17fa1ad05fa0e0b3d31cb2976e149e6208142914688a3f1ce6b77496fccc0d47

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01a24bbcd6d6be7c7c00d4600df6dff98c3f5b4a3d58fa7c7e8312c4eaf135bc
MD5 a655ca625d822b0f8578a01123e1444b
BLAKE2b-256 0d6f263004c454f62f6cbd13f3cdc8e77010acc6e1404c9b18eccdb63abe0851

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21261856937a41853f661c438a40a99f2f5b70d19e72bed41a9eb2b02971cf93
MD5 7300f72bce1443e1055cac20bf4c0f7f
BLAKE2b-256 d2962700451af26388e968b9cb4d322eb62a3d4a29737f25fc965faf0a652aa7

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c845ae5334c783a4236658b3cdcf5245bd2b8ad1950d3d7a8e2fe575315aad9b
MD5 9c9cd8bcc142d20d1212cdc204725851
BLAKE2b-256 a5fa656d42aa3a6df55eff8f9da58938573210805dfc899941cbda60a81f60db

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cfb1d20bc2eed5f200d04996d33e336530f6f0ba3966d8231ccc61db240922c
MD5 021fb45ca5da4a9bcc8db4d75da0cbd8
BLAKE2b-256 979828d15da637341e9ac6bc0766a8ce63df18b748d150866a8954c71e5c0970

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b049a3089af7c4a9a53d0cd103e7b324465203dbff4e37241ce319461705448
MD5 591e036850bb98488a498a02a00fa69a
BLAKE2b-256 a17eaa5447c86cac50e447ed1636b72a6a9db5fc62b7bbcc13af898d26b40e11

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a707c9373560b7d5e53f68ed4c734d029962f4d46e20cea9fcb6018dde3c69c
MD5 ab70003ce857195d27a1f4ff47b16248
BLAKE2b-256 3d921f189a3b0bdbe5dfbb44aaa269c9b6216bd21d5388d2f8b451eb84ace98f

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 670298a87159339323383e3b23f2c117ff9e0f5ea0c4d1ab574e5671786622c9
MD5 dc1e5125ea9d5005cedfe10ca736a229
BLAKE2b-256 5637cb98e686a7928c4ba0b7d2d158ec3477df985baf99888736674e9a401be1

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0efe45b7d0a446c60621269c2a5dca1299719ff84aac4ad03331287a25d046de
MD5 9b58c36617f3efb39138db840f5b573d
BLAKE2b-256 94a6a3f3c0d723255ff9bcdae0b7ba7a57e2439e7531af3dbdc5ed43eaf08dbb

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba71a05739bc28bcea9a96e45e00b3cc035dab2c38cb2dbe4763cdef2463108a
MD5 055b22666327b09d0e8be21af33c535c
BLAKE2b-256 b724468a1fe019916f27849d635932e9b018531c5b664a2f0aa2be83df9dd04f

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c20e5aed6c45f8ae497af79af4d35bb6972d5c506cf0cf77c8edc6bc18c692ee
MD5 3f01f45b599fcef93c009e3c4d285bee
BLAKE2b-256 d3be4dab4d882ee626e1bfb262291768de76c6968c352cc0a0f232999da80201

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e55418bf1f4db05d07d4fb4d933ca9ffad760aac655c11b2615e6f46603a5e0
MD5 6ab1b05c02e6ec006661094100870ffa
BLAKE2b-256 34476c86f36242121c2e23018a7897fa3a33a1db0cae1057a706ab8f433606a6

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d4bf0b5c97189093f7d07065e92f3f3122daf94f3834af23428ee5fcd0efbe4
MD5 273e3c6a5d99afc9438dc7e358f3d3fa
BLAKE2b-256 12ac43c97aa9eccc0f2c915c963c244c24b092efaa1d326946fd2035e2165126

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8187164964e7339d76f40528ec67ee3e76afa9ce3c4f24c00adf547c74b30de2
MD5 df2e7cd0504c94d85a08bbfd8011d000
BLAKE2b-256 ccd24bcb886b25e276aa497aca233c6b061fc3949546c9d0487853e18de6da3e

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b513736449290a9ba2ac8c7752289fa7777449871705ad5fc8254e4699b7077a
MD5 3e82be760abec277d95126a9bd240a4f
BLAKE2b-256 2638ee3e60cf860f7c69a2f2c2deacf1c6cae57406351292b3a6d4771bc352b0

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e240e4bb59567b4f967d12c0dcb8a7e2f535231140d4909f4fb26c34934f319a
MD5 9e6fe28e3b2e2b56e8452cbd557ca3a7
BLAKE2b-256 af2f95e3306cc6a54da223ebd50b7b597d6a2295b3d01fcac430929169d8c68a

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a11a6dd511dc6cee22607cb23154587692a3844f762b098c7f429a5ffe9c3ea
MD5 afd37830f3b5a67f45e521d94bf6eb24
BLAKE2b-256 370221ee9c9b26501f4b1fe5816818e2a94efbd93ae64fc94be3ce13cdf82293

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 935befe9d34bb3ecf09271cafbce832d8b4f0da6468c3117561a6f9aca22a35b
MD5 245f1fa999d78de8d18c89f846bffc40
BLAKE2b-256 fa14d241ff99f6d783c740b5a981061a9422d5ae663f62b7a8a684c052157055

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 834d3e5201657920fa99107cc8f5deebc5529fbf080502a2888282eccfee33a3
MD5 a677e0f27486dda4d60ca1411b8ce4da
BLAKE2b-256 f32b6e57da69a9832e975a032fe5c418808ce29e3c2864dc95d3e4bb540549ef

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81729e114c90e8cac51b953e29809f6935f5a67f9ae3c00fa62bede567f790a1
MD5 9e743817cc9e44aa722c2149bd423058
BLAKE2b-256 3feb27d612fa6bc7793f533f123c28b8c9e1d3808c8dde5794a24ba544a3e7eb

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dafd347c1db0019f94a6b5d882fee8f115b86611094492cd01102b929e6ee31a
MD5 546a1be43bb0b070a755cbf8df2d2fb0
BLAKE2b-256 bcf23719b98c1a47d12eea7d9636fd05ebd41741af880d1b94344f71235bebdd

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af6fc37cf63d9f839db32f4923279211ab7846c34752689d19e8715bb015bc40
MD5 9c0123d16786d5729d0324e86b633388
BLAKE2b-256 f40756d10586ff8289014e2b8ef6dbcd49c14df9ffdf9a54efc515c3c48852f7

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33be6f062b3bc60d6e433e6ddd5b3fc2b4ea7ed9bf4730716200298e47026735
MD5 af0681ce6131f65594dd7434a65997da
BLAKE2b-256 6c0caa19febcf17b74e9deb7ae92af2f7046a8151116ff1839b53c6d7e697d92

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08585ce9165b97d694b8a3a4130516a9de0280449562a5ba70c8c3f9370217ae
MD5 3a4ef2ac7484df06bb4c97212581c726
BLAKE2b-256 50726198a5ce1cd81ace6241d0c3d645018654e64e2bdc035161bc9f85747cd5

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b52327b33bd8e6671bde3fd30ae20d7c26da7142f36cb43346ae1f0c8c70c205
MD5 17773288d3bdd11a3fb396f031aa438c
BLAKE2b-256 e73e2793b814b4d5aa339883831c9fb3c16adc36632da44548315b48d2559191

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f025bb37b3b81d2c16da28b8dbe9ef6c226f5b6db25dcd90683e9ddea909168
MD5 09513604a7d92191e320d8b74186aeef
BLAKE2b-256 3d5a1cd1e95e13e897d90d481d437a33694aef606c7d426b5483450731c58720

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23f7bb22318071d603751f9c7941e02822647b26c5b78ecf7e8765d4c2844847
MD5 612e349753d89e4dc3b05e0691a3631b
BLAKE2b-256 251119d16fbcc04d9099d1157f114b532cd317dd6532848f219db6b990c6e42e

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eebfe112fabdf9bd3599ffea598b4392f544eb1857001fdff060c4018711c832
MD5 0be8e6480e780f3fdd13b57dfa916713
BLAKE2b-256 eed2b744a68d2747e39b6fcd7e6d8cdb327d66b62da88425bc24d0c461f0b32c

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6669447d6ae5980f631ab365dc57657c6b71e1a1a2ff8f8dc594cd59ad61f92d
MD5 cc757e3d7a73560f6bd0424033498cf4
BLAKE2b-256 b586dafa31c7f573deed8d5867217731f885ac17df9ea7b880deb1baac4cb411

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67d6c44f0a262c3898d094ea7d8e8026c065e7953770c3990597c78c6f82432f
MD5 6135ca875b53f57bf4b8686c501bc462
BLAKE2b-256 2d45642d28660746bbda6f9f980af3b94e3aa8552a712065140ca2e415e277cb

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d25247ed4ab34396cf3ee12b54f4bdcc3bc3f7275cde3fb1f3f8293eaf989c66
MD5 f42774eb9a2921ca4c9170aeb314cd47
BLAKE2b-256 b87d2153507c2e13db81e430e8d41a053e385b16188c909f775cb2a615029347

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0019b3237253b79d4d4b2c4f2ad1e7994c317200fa0712f146e3f922c5d60cdd
MD5 45d6a614c5b638e7d4da272ba5691279
BLAKE2b-256 e3c3f61a8705999df4be3ebc82224aea798278cf7cb5d0b4630a976eacb39ff4

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d7a35b5e18279f2a6a60e4587e2fb1259223dabe4d5e8104ca00b9ba6480be3
MD5 907db83811b9178d76182d1444f69639
BLAKE2b-256 99f8323b3dee069aa5d6e10e700c5fd615bf421a10d4ea1ac660454da9058e7a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page