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.4.tar.gz (11.3 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

rdetoolkit-1.0.4-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.4-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.4-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.4-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.4-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.4-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.4-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.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rdetoolkit-1.0.4-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.4-cp311-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

rdetoolkit-1.0.4-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.4-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.4-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.4-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.4-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.4-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.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rdetoolkit-1.0.4-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.4-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

rdetoolkit-1.0.4-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.4-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.4-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.4-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.4-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.4-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.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rdetoolkit-1.0.4-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.4-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

rdetoolkit-1.0.4-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.4-cp39-cp39-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.4-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.4-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.4-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.4-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.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rdetoolkit-1.0.4-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.4-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.4-cp38-cp38-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.4-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.4-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.4-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.4-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.4-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.4-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.4-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.4-cp37-cp37m-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

rdetoolkit-1.0.4-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.4-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.4-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.4-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.4-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.4-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.4.tar.gz.

File metadata

  • Download URL: rdetoolkit-1.0.4.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.4.tar.gz
Algorithm Hash digest
SHA256 75fd49c6aa327d26755f77cfc9dfeb42d1f232f5b1a4414c7de5aedae8f61b60
MD5 b9cc3b23f93ad5b27f536b81dd87cc08
BLAKE2b-256 5dbdd934e2147aff15870a09b764c3f2abc04a9e875479032f990dbee2c522dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 7fb82dc97b4b6316aa177d92474496f176c38c608ceaf74bc6b02bbd1aa57908
MD5 6eb35744e13e9c3e5474de2665c73101
BLAKE2b-256 8acbda2f16195dd4226d56993533ab8a12c9ecab367c03747b507129d9a8d556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 92d75b195a89f3e023006123497550ad9085935c8137c9ec8265a77bea695236
MD5 b917292958113d1ab88adf90fe2e98e1
BLAKE2b-256 11de4b2db344c71a2548cef8305881f97f5c54cdad496c1772d058917211288f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e05f0cc516f3641121672acf759dce2060ff357c658131918a6674f2902fb0b
MD5 1ed14fd40492eee0e2cebc38b21402cd
BLAKE2b-256 6419c8f60d67b15e3d6ef1d379c2253f8ff7b359c224e4fa4e70cc332b1e9865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf215807c72c94d3137ef60f562396fcaecb4e614f8b7366b5b765cb4799ecd2
MD5 f25f1f0b62771c34abe1d2d1da01a03e
BLAKE2b-256 d0c377df58effe9aba7c1891d7ab4e8f62fd0bef14086dca8d7d8dcf38e447ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4fb53ae90decd4ef189f3cf5e0258bc453325b912cf4bffc03bfb8c09836bdb7
MD5 c6fb31f21098b1a2c0b986a5c8a94a28
BLAKE2b-256 39559bb7dd0f582359bce8c2a7205ff332de9c1fe34c3b02c8ee79aaa5eb6333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 511cd6b341fcacccf076bd0ebe8457a7d9cbbd8d75878163d786a1871ed26105
MD5 f61a79fc6680ff590bb2494fad5d589c
BLAKE2b-256 7ee457f34b8171aed02048bcccc9a99650f2a6fe0d45699b46089a8539177d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9906d694c30368bb448fb7bff0b1fbb931d1917eb80e657f852e231e49e61c9
MD5 475d9a0f51efc4cf7e5c556d292eec43
BLAKE2b-256 de314efd8554539623d02dd7531fd1448175b7d5a89f0a8c80614bde068fa5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3148617aff6bd2c1aca7ec25e619cd8717a46c83f0de71208586607aeff89738
MD5 d8651ff8c3f16a8350d507f21686d83b
BLAKE2b-256 a692e27bbe9f356373585253637541d57edb8225815145f4601b39d55dec7110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b93c21842432af100689854ab6aa88b054bc32217040cbad35af2b582d8c4e3c
MD5 ba7af3e13411e058dd1f804b66e2ec3a
BLAKE2b-256 fc5e4921dbcdf336df4297827db567574a6ba00ed362bc23495ab4afdb2a3c87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f6a385c96e7ab2657dfd308b7129222382b5fb69ecc6c050d82ac272978ae01
MD5 0923ab186dbd0439b198667cc9ad860c
BLAKE2b-256 f028c87a90c2bedba30633ca86428f8b0115d9088d2426e7ae0762b19d721d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c144fa10915c4cb90bfdc7b792a597a468274e52f8510049c43fc56b35cbb7ad
MD5 c97ebc7ca08295458def4bca0f53595a
BLAKE2b-256 e04cce86f1383e09adbfa9b84ec7f97d6446720005644fb34a669f4d680fbcf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab133b8216ae861b6a5ff3ae48ebb1faf2003f3b16fb400933b72f9949b2f0f1
MD5 2a9f0082cd982f326c83817795d35d00
BLAKE2b-256 d94b435b304e1895c26e4fffc782b139451f1701927b779694beb77586654428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3025218baa098f7219c1698300d0d35c1728aede546c061cc21ead64ee01c64
MD5 a803431cda173b7eaec812263a6cc7d1
BLAKE2b-256 9c3c8d0104b43ce3e5098e05007a22fef9059b6219b528d83794e51c31eedd09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9477e3cbb454f5daac356e6662f6d0e0b5044ac6e23c0595f959ae3d9829034
MD5 4bda32b692fac478b046e5d0ab6573a2
BLAKE2b-256 58611b9f97a0bd67966bfe59f01535e3eb2161195d395fce78f05637c88681dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b963c0fd2722007a5f0dece14b447f71ac7e7820a0cb6b697461857e2f7eadd7
MD5 3496a440b53b5bdefa060dc475332917
BLAKE2b-256 716d60920519e32457031f1ee3c5091d9588e5a956fb929e0a4d1cdef9d3d68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 50bd805aee95eed8c1b82f8156f2ab097275346505740b7db0674a032edea0eb
MD5 d224eeafb841f5ad54d894f8b49e6a27
BLAKE2b-256 5228ba81ab4a22f901b57417070c065dabea0ee4734ae892f4c2201fdc602e53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 443b7b255e2a3d24fb82ce0ce60467fb8dcd16a6b34990e85884d6e9e334f026
MD5 d871cc1920af76be9dead410d7b5b252
BLAKE2b-256 2e0b01ed2059785a7f6f9529134e4ac82563cd7b05d43a7f3478d9f7636cee81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58189c7b79562ff9d7249efeec71ec53a68888d0ced1dcdd90c3072dbeb39492
MD5 0fc9681d6da195a5a95359441574b559
BLAKE2b-256 f0d031ce4f884963ab96edb4ec69a5de5893d57cedbf206bce64ca7193b1a35c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d945294f0eaf7b38b41f1c9fbf534577c2c75413a74ec6f6f6a7f0d41520cf6
MD5 d1a0ae63263da66a8c7234fab648fb9a
BLAKE2b-256 af8fb09cbb7c06c26bdb585c3a316bca093b1e1bcc6f56a357b1fdb1160fb77b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b279708e323f7ce3dfb7fccffc2c14300a20b0c6260871266565cfedeb0be1e8
MD5 42a295fc882670497b2bafc783c64f82
BLAKE2b-256 c42780a31d83619bd44570cb05f7fdefa288a942b53f7446df97aceebf72fe34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee097ab38c116eecc78e4e59200622fe1abb8dd1c598d59dd630003e49a3f083
MD5 85644559b13d4188ae3b0923e7452503
BLAKE2b-256 f263c4221731e80022b7726777a6c1d06923dcd98477cc5906ad643c1c8e0c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90fa888a4fd1c9fc7aa742d42bb72f21cc81f35c90b77bb4667662367b602252
MD5 0b0e9eec1217cdeda9763b07c2f1ea4c
BLAKE2b-256 cf6862ed07a027d4f0c2f73154ac0a05d9eda35354373732d0fe6a3331f3a249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d3b00f18387ea6ae5d61a393222fb83094b141985f41d4a8100bde1504d0719
MD5 032ced6b035f17196d598351ef6e2d1a
BLAKE2b-256 a8128ee1382a7166be27b17aedce96803189cfe9592d9786c88301316edce319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b8120f6bcc5f89a65fd9054d6699613c7db75b2d64362fbcccc6a495dff5380
MD5 a4055c2c64a11dd7e42c765ca79f6dad
BLAKE2b-256 bf9f856d9519c5eabd540c3e1bedca8520d7560040a3429f11ab4d1add470623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5616197bdc83051361a4483d2782a2a587c776b60699497c5d7258722304dbf4
MD5 b6ed77a9bdcc47606f65d1f45575606a
BLAKE2b-256 cccbbec920d8058615ea7de66c459c98ece24fc43e361122ad6f91212fb8901f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 634cfc95f0d88119dbfcacad4b7830777f2052a878a2377076bbaee368c82bf8
MD5 bf82021f373cb8d4b8346d78985ab2cf
BLAKE2b-256 c1b8cd491d3fa32bae4a134c543c2af64e3ba502f9843a79dcd9ac8747e82b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d940d9d7e545052576e37271d5cc20c00070a548941b6a52aa7cd578ed92b879
MD5 60f19d79b63c5e94430372712eb7e5bb
BLAKE2b-256 8c92474c20b686b23828abf2b2b34cd26b4865ec7bf0df46eca0e5ff571ad5cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9045fcb03b00b4c25908a12de5dc168b22cf3928604999a2e013edf78c11e326
MD5 4bf7ef813679679a627589399462cd10
BLAKE2b-256 d43d7789e6a644702ed9cda28c91fe4964aabf7150f6ab28ec08bba4d7ded5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7f4c437093a270fb5607c46404b4d509f264358008ba903ee755fe474cae161e
MD5 0fcf8e606c221fe9fa53b05d59a86290
BLAKE2b-256 1d94c415edb3e9b956afcb6fe0d511d3ef948602e2b9797a8595c155ca89efe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 7c55ca9cbc3a84610f85c07b563ba60dd8e28e166f41da3ab45247935c3c8eda
MD5 bcbb32cf334a984fdbbcb1fa80427f60
BLAKE2b-256 6d109cf6f96c4a07e42cf7758ae80ca05d238737cf32658a2b53378b8a1029cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a84aa83c731a6166031192e9bebd8f3a411e2bb6a9b0e171c929124a8510b79b
MD5 a090252fdd00e309681d40c39c8247ca
BLAKE2b-256 37760b576a2fd20adec215d28a379d0bd4a51ef5351d3fc8a1765c35afad4bd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 74ab94372ea983ff6a57351bfdedf705bd3b8d5435dbc6c9b3d48da1884ddd51
MD5 7fe1b21237e81261de8cb4be54632a21
BLAKE2b-256 a6f1258a48f2890df60ba842f6ecaadcc060f980fd52535cd432703021a9a21f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a4efad686f53d7d6e371b27bb0bf7ec14f42b0a9a019acaaf12ff13c39ab4bd
MD5 bde150d0df6527407aa349b9c01278da
BLAKE2b-256 1e7c7ae9924b90f917ac4396eaf4387024c5ee1ecd0d26c06c8e7ed83ba4e799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d81d697bba506ef17e45607d60288977c379a363c28d864a080a86e6736a5b96
MD5 ac6575cf0b080f00dfdf5a17a29583ea
BLAKE2b-256 719e6d333c71246a0152ba2cfef7955404a45506f7a9cf84d17670edd923aa0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8618b73a29c752b5c51387417dbb21185e75f7d1f7c1946a30edf6ee447f804a
MD5 e3f140b3573fc500b3b281ac0069f438
BLAKE2b-256 c6672099448f39f90ab739cf80ef0cb38bf45ccd3d86363d5ddbacfe6f0cadbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cba99f503fbf71de4fbb3db4063d8cf7d29223801513f52de730d46214e40d64
MD5 a3b72fd73be30b0622708f805b2e9362
BLAKE2b-256 8d503eb8b534ffb6b3d481de7eec320559e3ea986470c8da7e53a8522d66e400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f21706995c7dd5b6dbc871ded11ff07e94b6d1fdad39af54c5a367520552437
MD5 847160341f2c2141840f91090df422d8
BLAKE2b-256 1a1e938bd45d7147f7a3e459e01d1fdb177d58dac1cecb1b2f0fb91815113dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44a72b759c3eb029ee74f47163eba2af883fe5666002f50eafdeae5c576c2706
MD5 1e225e8a1028404d16912c4d66f2411c
BLAKE2b-256 9d4807f86300dff54d91b806f2e867c3c31dc6c704ccffdd6cc0933e9fd9e36d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 784384b30db263886eb26095c20d9c131da8da91982ce14496ac4806bb10797e
MD5 9c604597a099708ec823d491df109315
BLAKE2b-256 96a425a994463c59808269b338cbeb843696e214fcfd322435d9f1e077fa4dc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ce6f5885e72604acf3437a2de3ea23a690f5490370c5a09b8eb189ac9515595
MD5 d63f85c00211351aeb05469d8f1be9a6
BLAKE2b-256 7d6201c01b96ef647b70153b464d73d4c6db0739f8f5bbea1d5d6acfcd6dce29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 251837e88eac9dfa8c222d5ae0b810512fb5c23078861905e4ac9a405fd30531
MD5 5443a868c683068feda0378e5b631db7
BLAKE2b-256 1ed6d5fc2ec2ce21673abcd977c3c12e2e3e3c3ea1f1cda11ae27e07a7619700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 469e1b3080bd4000be82dd80004a8513eb2d3b0cb37665f6a2856866e2d9be22
MD5 9ffaacc8d6f09abd80daba2f9db49df3
BLAKE2b-256 3a816cf34ec97021bfef1c097797ab3b375927682eaa7a3dc030959124ae89fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 4ef5e1285ce4b3bc759b99e2aeb733aa33babeede2d6d387bf5dbeeb2528f0ba
MD5 f55425aea57b3985b13c678a36f42bb0
BLAKE2b-256 51defd634df8e3ac8052b0d3facc408d9cb0a693b77979abc060fe514f5f41cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a27c16889c69441cd5fe1acfc1dd926dfb4d327666104080eb3e736ffd240ff0
MD5 5c63e40211b3971b6336d7244df16e6b
BLAKE2b-256 d812d86fd24ccdf3309c2ab2ff0d1b68568a71be9844b6f6c75cbaed2130b974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e688173b8ad173f668f36e1eee257f4036edf7cf3f456ba77d348c277e8d82e
MD5 f6f5827a26ba78d803d9157d7f95792b
BLAKE2b-256 75a640a632cde6dd45cd99b25ca1fc6e8a6d0a7206d3a8bb973b7ed3e15277c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 940bf5f4e8d92b04ab31b6c2f1e1b213e86abb45cef1af4bb2515a4a99822baf
MD5 920447b58f308c874505efb95c6650c4
BLAKE2b-256 4b27967311df326b3df741e21b82ac242a23773ee5adc060a5c5fdacdd705f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b24975fb81dd829d0dcddba8287bffc844f155f47ea4b842f1e4f0ee2efa4a42
MD5 3b3e7e4e44a6ad9c3c304e84894fe7a1
BLAKE2b-256 fc5a40dd0036ecfe92445375ee272619cad0b5f5c18c8fea73570b54d6c98c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d8d50085d0dd3dae0ac1506314e3f528c150fe95903edad7e5260f33b7127aa
MD5 cbe5a5e3a7237d305bb6710add19b55f
BLAKE2b-256 88d8ccd3bac1c476b7eba4744f46fdeef94f4121cec69f23577c0f6982935dd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac958a1333200adc2c38b5e3d5d5fb07a54ad20c496bfca3e0aeee786a6aaee4
MD5 b875a3ec49979bcc6c5f5c1d31274524
BLAKE2b-256 b0c852948cc38d0681ce526e5bfb8082c94a3b818dddcb9c6e6ba25dbbb28c59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03fb47659f9c7eeb897b4d8431efccb171cf431c616a4e9ddcbdf81f132703a9
MD5 e09c055028005804f1b3de3b55a12ab7
BLAKE2b-256 4c33f731f0e324f98a92544af14781d65945c7be850d421f25552dbe6811db07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45e8cb10ef90be5a0fd0a86b273a798b31771881ad70c218cd7d331a8bd280a7
MD5 f07a7e12027686362321a7e242b04251
BLAKE2b-256 d86201106d1115048ac854e9d5b96f7042bece3c49960f7b29055603e05b94d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38f28cd43dc85deda394f841dc8d1f1d89be6e6aac43586ed5cd6ed7d9878017
MD5 ef74938865cfa32eb30392fd683f78b2
BLAKE2b-256 378ee81d50a7e3c5770ffe968aea62d64686e2bb1b4b692f07603c0987fb9e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5dfc24e5a12c043850de6d59992bd488d8cbdba07211e1ef0b5294920881094
MD5 2096dcec71301175b169e702821e8371
BLAKE2b-256 33e87175ecb82fefeb01d6aa1ef0a7f3380230e0cd1a4d2bc017b8936023272c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46b2c9c32cb83936ec54f18142f79a2446a23ad56ce1dfe960fe2b2fe3e025de
MD5 f2a13ec3af8761984b213275d37d5831
BLAKE2b-256 b6ec45e08199b218e5bb5b5bb3e6ce9d1e23d1ffd24344d65660fadbefd28e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff30f10316cf136ad9158731be21650136c325a28246d35ed31dc35bfe21400d
MD5 8cbabecf782017c47b3f9dbc13b7b12b
BLAKE2b-256 6eed063b6aa7c7e3397d364e8a46c67c0baf2c8d5bfcecbbff84fcb0a0764ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d128db8a00a7c6aad6434dd9eeb5b4e366a9fe8a64ef099b29ac7b72fca92094
MD5 caa749514cd4d36e1e90da905b1d6ffd
BLAKE2b-256 126d9545f2ea0f358b77bcd76ab658f4fdc7f39f0e7bc364affa7a639a4d2d46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b63825f7a1caa618c54cf693d226d79f6c5b5470deb9a78007068604c2994fbf
MD5 5bb06024f5a1c26e7e21d97f898c7664
BLAKE2b-256 ee5d1dbe669d3c7580cc714fece96944e9d1f4375dfd5f61b14d0e22c55d60f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7eb5f7c0e88e08431d37a72a0f134e92fe9af7d0f56a22fbd2b32da48230a695
MD5 00550fa59fb0a265722bab7a97fa3b6e
BLAKE2b-256 c002bd3293ef3a9277be7fb99242fa1fd5841445d5e28d8259544f78d73c24e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e20c6100cb4973229d6df585bf0ea1bcfd898098a59cce2976fd78e60d7a1bdb
MD5 c530fd13308e1ab68e7af3a852c0eab8
BLAKE2b-256 3357e8049ed0fb20abecf0904f5d0bd4d4add647ec2925c59efd7e2e28ef8ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b96d9fa84e094494b1da2204e05a64269a080363474215bb681849bbfdf606c8
MD5 7762be8e2cb38ea66d858800532b7dc0
BLAKE2b-256 02338cba6ba32a264ea3ad361d38279dddf1ae90f970c615d809bff1c8e1d28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cb80dd7a406b471aabf05e0f5e5bdfb27f71fb2ad5a700d00f7f4e498ce19da
MD5 d6ec45f09f8702fae9cccc28c3ef6f0d
BLAKE2b-256 64d7c36bc30803d8ffa804027c41ac68203a2aee084abd03289c8ff0c339bb31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a5b7bb7f1cdd9015d60a581454653b2474327f2d0a16b354877191c03aadbf6
MD5 9962dde8d1545cb9a0a1442b3e54721d
BLAKE2b-256 0b02bc07f340e1dc4aa2d1aaf25a593fa687aefbb8d9c171d6acfed5676a5984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f8c6229a960a0b999e008233124b81fa1285c16d266afc06d636ef426ca518c
MD5 2da5d14155bf6d1f8b8264c98c868fb2
BLAKE2b-256 38f51a113a045e50905c9a56401584b3c212ca5c480cf1b2cb605022a10bf694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7993c611771d5a6f22ad8551e5fc0dba79f67e50d38d97cd27e35cf308b6b24d
MD5 c65cdfe482276903ec5fa8683a331039
BLAKE2b-256 e322defb3cda8737eb3c31fb2d6119dceaf54615becacd46af215fadbb0b4815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56d9297ddedfa63bb1a05d8d6d4a18aac2599fcf449e139ec61c03e6acdcabb3
MD5 89147f594d3bd5723fd2e59d4e3e388f
BLAKE2b-256 45e03b012148e01a129d347e6a1f5f36cbe70f4c95f1247edfc3dc2abcf1cbbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af32cab26d72090e136c6bf9ffacc4eece1cc3b388c5a62d6f78b77a618cbafc
MD5 d4048fdf964564505b40bdf61ca7c56c
BLAKE2b-256 7f984b1438cdad45904c5e487bbd7aeace0a8b479d0ac029f7b4cba991d77aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcc50887ee2daec1eca440efc1478b9f6b2de9fe467e95fde49d36a00b03a8b0
MD5 e2649953c1ae42deddf2958b70a16e77
BLAKE2b-256 d9ef930df4060e45675291c7d64fee444b5b5aece5a743cd3b4401eb9df0bdbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5fc5cd9d75af58acc690ee15cb630c4f7054fba555c01effa036fecc88a154a
MD5 e3793d0e67f6f6e947abad7f45be5ecf
BLAKE2b-256 6a73e50f74a2e889ec672077893e84281b8a83f3acf9d921a50e0278f495cdc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b91c50202ab07733781595743e844a824804065eb6f06a46377f0351925d3f29
MD5 784d9caa201f010ed27508fd2f68bce2
BLAKE2b-256 7450363ec82d10e303394d59add59f2e81e1898791eba71aaa8481a401411efd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5e5d969559a26481363b3cfa202da4582da9de00f3336ed2d1585968080078a
MD5 79016ac844436b50f873b2978ea68d19
BLAKE2b-256 16c28926d72feefc49db0e6e7adf2bce66a24a4d0687d8c4a8aec565fc186352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78aedef4360f3cff5b4b4d714d9d22e63553ebecfc7885b267e87852bc4d7e40
MD5 9027e5d9e9ea7716f5e8ad6bd183e4e7
BLAKE2b-256 42f05d928a26c486bbb93b0912d951aa5f1fcc49727f9abc7ad0133c0366d186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9d70d3d421e7582d7cb2199947f49b1d6aa26390d884a52adfe1029b0fa8930
MD5 8e895e4c6a1a6958a19eca6ed5d9c530
BLAKE2b-256 f69d7a18956f53cd633e10493883811b41ebc6100c91dc028bbfc85ac52e3c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d65843e1ff79d8527117d41dff43132b021780fac86ea083cb02ca35ff9a4165
MD5 1bec8af280e13b80f1fb1c505d2ccd27
BLAKE2b-256 439f8997ee8132ddadad2cb35374513c292e4a976021cedf6e5d5918473dda38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a60c8b76b4e05b775d742fecefecf64169c06114381fa3092a61f20e67c321d1
MD5 6326630f5fe0cc290ff5cadbb943d7ef
BLAKE2b-256 d8d52de23687a6936c1d0630bae768a8ab2cd7839cfcc7df8d797483820e8f91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e57fffe732c807953208653ae06be382b84b02d7e9c3b8e9a6afbb39f9162ceb
MD5 babcfbb3c783365c88c7423387e81262
BLAKE2b-256 880357c9a1df81f6ec8d3414cda2479427cbcff0765c5e9b95c747d9e2cda4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c676da7ebfa028054f7374da8a25f7074f75bbf85f2bbc90735a1a80ab1013b2
MD5 36bf0c55de7fad5d8af8a0431a9b52b8
BLAKE2b-256 4a53e037da37bb0b5c6e52996c8a09be399b668dfec46ec4d9ba7aacd31c5583

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