Skip to main content

GitHub Release python.org MIT License Issue workflow coverage

日本語ドキュメント

RDEToolKit

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

Documents

See the documentation for more details.

Contributing

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

Requirements

  • Python: 3.10 or higher

!!! note "Python 3.9 Support Removed" Python 3.9 support was removed in rdetoolkit 1.6.x. If you need Python 3.9 support, use rdetoolkit 1.5.x or earlier.

Install

To install, run the following command:

pip install rdetoolkit

Usage

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

Create a Project

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

python3 -m rdetoolkit init

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

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

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

Implementing Structuring Processing

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

The recommended signature for the dataset() function accepts a single RdeDatasetPaths argument that bundles both input and output locations. The legacy two-argument style (RdeInputDirPaths, RdeOutputResourcePath) remains available for backward compatibility.

from rdetoolkit.models.rde2types import RdeDatasetPaths

def dataset(paths: RdeDatasetPaths) -> None:
    ...

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

# modules/modules.py
from rdetoolkit.models.rde2types import RdeDatasetPaths


def display_message(path):
    print(f"Test Message!: {path}")


def dataset(paths: RdeDatasetPaths) -> None:
    display_message(paths.inputdata)
    display_message(paths.struct)

About the Entry Point

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

  • Checking input files
  • Obtaining various directory paths as specified by RDE structure
  • Executing user-defined structuring processing
import rdetoolkit
from modules.modules import dataset  # User-defined structuring processing function

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

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

import rdetoolkit

rdetoolkit.workflows.run()

Running in a Local Environment

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

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

Validating RDE Files

RDEToolKit provides validation commands to verify the structure and correctness of your RDE project files. These commands help catch configuration errors early and can be integrated into CI/CD pipelines.

Validate Invoice Schema

rdetoolkit validate invoice-schema data/tasksupport/invoice.schema.json

Validate Invoice Data

rdetoolkit validate invoice data/invoice/invoice.json \
  --schema data/tasksupport/invoice.schema.json

Validate Metadata Definition

rdetoolkit validate metadata-def data/tasksupport/metadata-def.json

Validate Metadata Data

rdetoolkit validate metadata data/metadata.json \
  --schema data/tasksupport/metadata-def.json

Batch Validation

Validate all standard files in your project at once:

# Validate all files in current directory
rdetoolkit validate all

# Validate all files in specific project
rdetoolkit validate all /path/to/project

# Use JSON output for CI/CD integration
rdetoolkit validate all --format json

For more details, see the validation documentation.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rdetoolkit-1.7.0-cp314-cp314-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.14Windows x86-64

rdetoolkit-1.7.0-cp314-cp314-win32.whl (2.8 MB view details)

Uploaded CPython 3.14Windows x86

rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rdetoolkit-1.7.0-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rdetoolkit-1.7.0-cp314-cp314-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rdetoolkit-1.7.0-cp313-cp313-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.13Windows x86-64

rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rdetoolkit-1.7.0-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rdetoolkit-1.7.0-cp313-cp313-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rdetoolkit-1.7.0-cp312-cp312-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.12Windows x86-64

rdetoolkit-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rdetoolkit-1.7.0-cp312-cp312-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rdetoolkit-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rdetoolkit-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rdetoolkit-1.7.0-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rdetoolkit-1.7.0-cp311-cp311-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.11Windows x86-64

rdetoolkit-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rdetoolkit-1.7.0-cp311-cp311-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rdetoolkit-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rdetoolkit-1.7.0-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rdetoolkit-1.7.0-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rdetoolkit-1.7.0-cp310-cp310-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.10Windows x86-64

rdetoolkit-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rdetoolkit-1.7.0-cp310-cp310-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rdetoolkit-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: rdetoolkit-1.7.0.tar.gz
  • Upload date:
  • Size: 28.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rdetoolkit-1.7.0.tar.gz
Algorithm Hash digest
SHA256 d70ee1ff8a9981e1ca4796d85b38dd9b699c4b8bf02bfe8dfc38c31e93485e03
MD5 2a0a7a28c5987756f1367e29b7ff451b
BLAKE2b-256 fae839b894b78d9932f6d2c978e93cec1b6b27d206947f859ceb30164d71c873

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rdetoolkit-1.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f4b8923371c8f169f384bd83f17fc84350e92861d27bc47e8aa38d1cec5e0b13
MD5 a9ea84d0f450c4428e48fae22d057eff
BLAKE2b-256 6de48d47fe9c9f518c92f56126b15551fb199fccfbb07e6dd4d7682a6f155c44

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: rdetoolkit-1.7.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2b64789d78d377effc6bce7094f6c8cb238874c49525c3cf866144c9f6577f4c
MD5 a957be36212fc492526754883000de54
BLAKE2b-256 15b8100f8055bc14191b897ad799ea8fc6bd69464ed9efbb764c669d744b27bf

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed978404aeb6e84f128307c277816a9d23e6e5d79f0d44731733520b952171c3
MD5 5a18ff8920d5dd457369eb7a4f0c4e6a
BLAKE2b-256 4bd5d4f09c99963e46945a4eceaac3fbe0fa2fa9106824ec6032f6fba286a8d2

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61f672904f30f9d069fd29ad9fb925b7d382c019694063c8d72a99ce538bf65a
MD5 29bbf4064c236700da765b5929f4dd5a
BLAKE2b-256 c4166f9249b5b4febc49aec6d9ef1c5738bb993a584956b7b437b5f408a7cb70

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a21aa1da13a7fc8945a74aa3698bf0c0246dfab000fda58dc870469e143a2ab
MD5 b1e42c9b25616aaef9c1b5f31f7c167c
BLAKE2b-256 80ed1131630ef905d757abdd3891947ae160fd55f809552b6aeaebbf1b118405

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6eeb28a6995571296d4fabc394ffd262e1fba85636958f4d8e55adc9f51821d4
MD5 587fb8fde3adbac56d6ed88f742567e1
BLAKE2b-256 b9d7b5b30f9babefb8905b782354f857e3267d5e66ccc67e3f70128a33972e9c

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b15c27b731facc815b8951691d374fcb0d6d21d26a3d30f2e7f698a6b67c98dd
MD5 955ca9838aa793eb882cb9b80720a001
BLAKE2b-256 b626ed430e0da12ed0987c7a95cb1752c05a6f8e169efb400e599bdffae7e013

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 293568c3fd4c0235a8761c09bba57757d4f592f11cfe866565bce65792f34e86
MD5 1c20ec151aeec890c2a042903567a2c8
BLAKE2b-256 c0d84cbf4c09aaadf31186c15d9417d5df5a410908574765abf790ab5f744ac4

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6165ab0b7607379e530142d59ad376f8bebcf4e5f5a92645953cb03204e0210b
MD5 c369f314cc9f9202e437faa1a4de631a
BLAKE2b-256 7aa6d8f6309f9434bd4227d90389230659ad2d0cd17f4404d1d223c72df005b4

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 acfe6ab6b8ec5db92a228f751d1652b51f10a05fdd0e6e22a8d53bad785f499c
MD5 a9e1c3566ae16afba5577abe8a9d2ba0
BLAKE2b-256 97cd7e8e632c4d24f3a8592c2482e4cf65512a4a5cd6b0ee8cd2828b89f0edfd

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6548bb55c04b0fb3b43c3587779b53180985eafc2567ed117046df8c6e528bad
MD5 f963ae91ff3dd15f0e37182f785e87b8
BLAKE2b-256 1e3ade1a69b1a1fe2a1eef41f387454965fefdb5229ad46cf27965c8fae2f261

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef701468612c0497d69bf140c318b5b6ccb943b1b3681dd37ada16fb88b9ec4d
MD5 e541e169ee9bc8af425d5795e1ab5cea
BLAKE2b-256 3ebf8e50ee8618db562b27c280fdb4179a38dcf6e5f68ee20c6fe3eb27079cf5

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f71b2eec54ab11a28b26fad0202681fd0106039a13a147d4bfc50ac97ce6157
MD5 959ca1479747a20f1e2033ee26a6a44f
BLAKE2b-256 4da62d4e40e31337f813c38d4397eaa7da626fa01fa36272c6329fd54db96a80

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 840df027f69155a3bdb75da804f911002424f0cdcbaf3ac5d2fdb1a9b331941f
MD5 909e5cc3fb8dd82586ebb01b63839aa0
BLAKE2b-256 e6b411dfac288602a5bcec87006dd39966254dbbed028f63dbed46125bb1108c

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rdetoolkit-1.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e49b84aa574a6bd64e926061ca33e4b75f24c8589384c42932e2264fdc249f87
MD5 b75018d927ccae8ccf299c2a13486046
BLAKE2b-256 bd24b4469632d5695100b8968ddc0b6fc94c6bcf49aca2fc5c4b47350d4dba49

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2eb2dc0fce60c7dddc000ff1e277a13940ac10c955f24ec2a6994e1941b4d64
MD5 6b08860195ba62aba4880ff0c7514640
BLAKE2b-256 58ee52ba956261db07f9245fd838269e1fc7092dfd4a94b8bce5474ff657844f

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 273f53ea22d655a44a08630b6057b7389cc69540bf3779da6ca9c547c252e567
MD5 ee76bf675409a896427e04027f60af5b
BLAKE2b-256 3fc3f1c5cdd03608d18dd08c37f5f947ec1861612e2d829001597042bbf5f87a

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8cfa6b16c4655dc7f5a7223372235bcc7b600efa3ce6a4bcc39776bab81675c3
MD5 204f94c1601c416fa9bc44564973a239
BLAKE2b-256 e53a35a14cda3da1b5c4a48012d5f62fbfb335966f0180f4e74108ffb71f8b2d

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 996933ef08c38a8a048fd04b14da88958eba32dee826b04d55273f61070398a1
MD5 f567243ccc2abfbf9433b836b1a93a55
BLAKE2b-256 21490b9b240b61be9b1fa3cf5ce56b188eecdd947db2f4f3c83b563b79516d19

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ec8083e7277569d25b5c395d4dbe28a0d3378f2ba9fa756c06219a15ca880b0
MD5 9bed555d36e0feea5a83484e055ebc4c
BLAKE2b-256 0eac879c1e1016784f968138113e504482073aca04a9738b93658b39bf3b6651

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a88075268e91808cb960cefd1cec06753cfbd8c568ad0538284041ba040d740
MD5 c5030f58d6c14389787ee08c2d98796b
BLAKE2b-256 db40a58c6f8dcbddd7b4cddcde1be40a5d41e01785cf43cc82a550c928bc7d3d

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 215ff603b8afd9fe802de63e3ccf8dcdec0db2077e5e3115d98a42e40d96a7e8
MD5 0b77889eaf4afe53c183b8a51c54866b
BLAKE2b-256 1f9ef11b31cf6589999fbbe19bfc2d1af5e479e97fcb98dae5a5668b8bf05fb3

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2e7375f6b2210d37099f4ef3b8201a441a72f7d81144a5f4dca63561fd3e7ce
MD5 0c918c6c162518b441805f4101b4ba28
BLAKE2b-256 4974ba808f70d3935139f1fcab4bc339324afe2f3c50457e760ab3518eaeac38

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1078d0a6d478606f8169a354343bd89bfa5869e8ac6e63c28a5e06e0fb9b1b7
MD5 8c2a8ba22023b625df17f76c9561c697
BLAKE2b-256 1ea6795954e81b9c6b8a541a320251c1a54f67217868eda770032c498c311414

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a26ca681173f15e9ce88e6de181586e76d06f8c38c2f7b18bfe2f61bf8dd0759
MD5 b63126b6fba418de651a64d8ab954b38
BLAKE2b-256 6973ab4c04cc1e8b37b9d0673496503e17df75241ecb682174a4750ef3c035b0

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e279dabf3ea393f6c746244b5502d4d926f99ec5a67b79a88f8a2f176c53a918
MD5 788a4b3e39513959ce11732b1841750c
BLAKE2b-256 42897a064ba267416ef611d55c9a6410acebe11dcc83be77150fb0aaf9bcd38e

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 51794a5d203ba00ca4ecc1b0729868998ae90d6717780b583bc2fc1c44976ca7
MD5 0797d8d223d38ce92cdf98192e3d9145
BLAKE2b-256 136648b46466f157c92269c8a5a1c68e2709cb66afaf4f924d66b45cad101093

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rdetoolkit-1.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d334303ce918be021903966060438f304acf1b9e2132004800ac27397af07eb6
MD5 6f7b7d0ac141bfa7cb42bc495fb05ae2
BLAKE2b-256 5a9270a7e58663034b2a102b01625856e93025bb0daa487e3fd0f8a111236860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a132cd659fa98403b18989155231893dc41dfe2cd25fa6502978bdbfdfb42bd
MD5 16babfe8fccee910abd29ad78c2f42d4
BLAKE2b-256 c183e61641a52b9b0ca8533cfa57568e88ad78d0972eba243bc17bba5cdce2cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a664e1ad8fe7e52309e1e52727f3a6f1682ee56ccb4e4be9b1ccefd83669f7a5
MD5 1489ded872596fb7dff25609a74e586b
BLAKE2b-256 1228b201c414e9fda798cfc3692e2379ed0f45ce692637ab39aa0881b90c67b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db6b01e601633687db3b39dae61a83518d1c8edc57003ead6d799cd94bf4f4fe
MD5 74b3d20525f7f1f348c0de755bf4405a
BLAKE2b-256 84273b81fb015dd90e2ec6443be8b430bd0b3ffdaddc8a76032e680e3fb25ea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dff0db43714a31c18d01f07e9c51aeb5c6b68bba7002eef78f92e1e6480f22ae
MD5 ca9ef11ade47ad8858a28d2ff9346429
BLAKE2b-256 a0d97cbeb772887a06d39a20b5ce87ef555151bcdff15dffa3d5a96f7fda9449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efa3f5f90bfcbd772023ff5bc139a0abb5e47d28e4c59b8bfcaa86dda40d8d6f
MD5 1e7d7bc8d4ad6ab21e280435a9ff0a53
BLAKE2b-256 8b77767a4e727b60880d78f46c5c76c410f70826b79845b33d6fbf237c69e3fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efb38ed72b83f2840bf75352b27b900204747a02b7df5bec4984c82e3ba821e1
MD5 77bd49730b4a5e2cfad34ecc2d2330c5
BLAKE2b-256 ff4ec182c4fcf0f310818991f5d433c59a0b1012da867624f202a8a276d2ea7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbfe084bb6c052973a6f57db998956a59156f9774895a08cf31b180c645cbc53
MD5 d9b13d60be5a58dd538d9929df889f92
BLAKE2b-256 ba798d62bb92d417a209a42d1baba9343706a91d4646cfeb5925a2e050b775ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 105148eaa3b5173bdece51e0ae2043bd9d0830f45de5b72c70b7c012ac4beb79
MD5 f9a80b6831d971faa562742033412801
BLAKE2b-256 b762ea8879b0f05559fce0011f2e86fdbf6d4b203665b9590d516b3f316e7a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd3bb73ec7c038494fe7ffdd8975ab45c1b5e72f31cd92bc5d23c83a2acbb145
MD5 303c4cf7b1269c8ab5d55270820377a6
BLAKE2b-256 bd3475e3fc768f3e2dd474f0be7637ab072f3b1c986b9cc9b01918914328dcf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b57ba70b7c1026285a7c01c6f2480e5c2284f64cdff7c3896f3be3e936ce252
MD5 9493faa2fba5c28b20584f2bb36cd87e
BLAKE2b-256 92e0245a4d270d83eb061b9c933e0b0221d13a8e866d28ba659353624d136cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 345759ece96f821046397c7db1ff932912ea9e14bce23e392b904e58cfaa8aea
MD5 070151217ba426a81be99f5ec95c2c89
BLAKE2b-256 7869a1e1e0fac3d51638ad41b25dda42795dae84233ff07c163bbde3c051f5d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 354cf0ff6e9269c42d107f6ca85f7c5eee051240b1425066fc4a22b49ec98fed
MD5 b92581981b46f8e9dfa3cdbe2e135216
BLAKE2b-256 6cadc89b5201d0e481f72cdb82a07efef988279c50026fc31d9d5bf581f1833d

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rdetoolkit-1.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c44dea5f1d2fd2e8a039b2ce4aeeb49e609b225ada4276f3d3888aea2bf2b4a8
MD5 419f69d346c4921b3ad628ce8055049d
BLAKE2b-256 7624d4496a3b3b05bcfd89bb3abe151a34c4737ec1dc5895799f464a3f2f44af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5afac3b4fd6d5bab51ed624ea6ed8ba4a4c7000c80f10734ca7fb6da0ee08874
MD5 e198d7a971fd0ad5259492251bba1aad
BLAKE2b-256 6b636a320ad139ea8b2c18eda97a745a351e076fbd131505155e92b09d6e37f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 983314eb64b064c27656f7199da13d079ec25fe9f16d491b0892be2bb153d88f
MD5 612a2784b29b0ba56307e85ebb677217
BLAKE2b-256 4b859a4d2cddd384c5d029c9127fe52730a2bd6dd38169e6027e9af00e8b7414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36e38a59680009e4a6e02d8bc23ab6b1858bb1351c1b3445e6704ed683dc23d3
MD5 567966fa35fe87e3e46a820f71325730
BLAKE2b-256 8e98d9b1fa9dca6f7e72c3488f78ee28c857bdff939d1af73df4a49e5d4aca4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40f54a96000d13cb3e13619667589357de3f15cca5b8c83ab7fde88e6edb5827
MD5 dc6fd80bb2855b418359a4fed17d6d88
BLAKE2b-256 a5dfff240dc528f69c96f48f1d4cacd065c36ab356dcb2fd19272b432eadc1d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48d1dc0d036090c50b116223741ea51ddc3675561056f3981e587cfbbca5af4a
MD5 6592828056681364278c24783ac3a207
BLAKE2b-256 4b243daf5646ff4852e0dac50bc8b6ec8b239c08e9167a6cdcdc48555c770c66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00ef0329d2f38aa2d22877d1eba446187c26f42d1ee0818d60f3cd30e7f9c53f
MD5 b31f13f5fb1a2b800b3faff68d8cd393
BLAKE2b-256 332dbdc108d7877348556962c5d6d62e9583efd215c6bad097e994afe7bf0a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e66fd8d296db3d70b3597a5e07d911cc6145bfbccfcffb36157083eaf5c2e146
MD5 d67d381cb2de9bf7fc04327c315dc7ba
BLAKE2b-256 e0b282e3f513a8a8d5692311064e244475e3a85654b48c7b7749429b2746632c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a94e96bc6f19d15af661fa342bd58f4deeaf9d426cf61f442573e7b0d69e670
MD5 f150fc40141b9ce1d1a4df2780589562
BLAKE2b-256 8bb6625c38328f9917234a67eb78dd5b4e1a0b45d988ea388451deb4fe7f9390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83d2295dfe0525349cb93e62bd197ce78c2dfd3675b3bbb79410dde1437ca2e8
MD5 8b4c137b7c22a05cc99468feec67d969
BLAKE2b-256 4921a5f4be05f3ea260b765528bf34cfc3744ccf575e90a9b447363686aacc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67117ba0be40fc14ebc0f9bb15cdbdf7bb74e8e0235b3f42b6280bc885603a7c
MD5 19f29a51f609c1ff40b6c9c52dbf6b38
BLAKE2b-256 36580ab033e41f444e637bdccac6af521fcf5bd883785e314fbe798e94f6e429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff309d23cb820a6c42c1a9418abc04094883ce1909bc84997e1751aa7043fc69
MD5 51509719e5a122f2bc34e7996f79eaef
BLAKE2b-256 d8cbc8c60b7009f102bdc665b19729978e83d04eb9897682fc8e43c51d34151a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 877b3f1b7165ddcad6f6db2642e23a5afa48c6e1b319e369613138e750e8abdd
MD5 dd8188c5cc8b3dd1686f9ec8ad5e342d
BLAKE2b-256 5db7da701d76d2a2d07eb570dc74eada7fc8c24f672eb175e9c6c7aeded579ed

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.7.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rdetoolkit-1.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d48c95985a8b69c2bb0e702727ff9218b542509b1e8f6039c14b77d50ce6cab8
MD5 95942eb758d6ec877a9c0c86d653e2be
BLAKE2b-256 9144fe25dad9dd74a1aa352239c008369eb2d866d4bf406f3920aa940cac1ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be3be4728bf6defc43026875bb93b278afb2bb337aeeb7d57f51af839c300350
MD5 918ab9ec2c823e3fcbdf0f1b7496db78
BLAKE2b-256 04897a0d65c5eb3ae9f785fc95fc1095c9892b7a67623e250d59c5c3a5e60741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af83b8f41583ac060c8b07e46a8ca23903a116bdd8c8e63493c64751142cb83d
MD5 88870e4f24ea6382a41af20e5f6b1a04
BLAKE2b-256 bb9d2e8db928ca90bf48bfb898f729bb564c256ffefb5e2db2442ff0a513be1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c55dbbe1d6acf1985b0a3f708dce2bd863639afef37a3b405855c875a88e42a7
MD5 f2fd78c5e9f3e15aee7b9293f654d910
BLAKE2b-256 18ca0f723c69a219a685de6afd1dd5cc63d1ca49ae693b80af1a1b7d41e96a27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 017749bfa388b7d6627ee2fa6d01f2f6e32598553704515695f92d051fc3978a
MD5 5921cab3f38cc131f12e3c016b6dffd8
BLAKE2b-256 2355ad00e6032a1e31a5ed750cb48bbde606881177646a0a3e25e530cb452510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b469a0447efd68162156146867d9d99b520342824055e486b7c2abfc7db84980
MD5 1d4ac747d8be85b54e628c0776f9167f
BLAKE2b-256 ca641f23eb01bf971c103df543baca01388b32aa700e5a4da19bf34c7e103e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 656d6b12434ff9f70349cd17111a7511623273619cb88c03ed2959b29ad05ab0
MD5 8dd6134d1099ace0f5c71cd3c909d841
BLAKE2b-256 ae992e948ceb62828b5726d35eecee70647d93493ae668150e20a254f4cd9fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93eb669ee58936d5d463b7fc07140d5bef6200815b26673ff802cb42e0efff0b
MD5 7a8c266542cde412c3178db74bf2f9a9
BLAKE2b-256 6b7348cb41f386adcbb5633403414c76b17847eaf58f0dab08208550c2e3aa31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e1dea6541173a87076c58a6a7e3539bc2ee267bedf8d980d6606f97cb32df04
MD5 ce5cb50be1490a3c11ee95da4bb16319
BLAKE2b-256 c0fef24c1c03e6a6bb77584f82b015b19a232d84a437e667e765e8670dbc8eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 198d6f3388fcea717e552a1b73a629b74288c964d7f1da205ba36d4e29ee6f14
MD5 5c02def53edd7e832e5d7ebc0293aaf3
BLAKE2b-256 27b25df8555e33e5a271e30fa6088dd9709b97436d4f4a66cb12f0464910350c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a15acd758e3d17b03b7b1fbfb9d1456065bdb8248af17ba57b173253e9a49bb5
MD5 e1429d49ec0ceca88377b91dcc912bf2
BLAKE2b-256 5fc08bfae881923f04ecca4b4b852c302b4910e71770e8d6bc8f1e9ffc19a220

See more details on using hashes here.

Release history Release notifications | RSS feed

2.0.0

65 files

1.7.1

65 files

This release

1.7.0 This release

65 files

1.6.4

65 files

1.6.3

65 files

1.6.2

65 files

1.6.1

65 files

1.6.0

65 files

1.5.3

75 files

1.5.2

75 files

1.5.1

75 files

1.5.0

76 files

1.4.3

66 files

1.4.2

66 files

1.4.1

66 files

1.4.0

64 files

1.3.4

67 files

1.3.3

67 files

1.3.2

67 files

1.3.1

87 files

1.3.0

87 files

1.2.0

87 files

1.1.1

77 files

1.1.0

75 files

1.0.4

77 files

1.0.3

77 files

1.0.2

77 files

1.0.1

2 files

1.0.0

2 files

0.9.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page