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.1.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.1-cp314-cp314-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.14Windows x86-64

rdetoolkit-1.7.1-cp314-cp314-win32.whl (2.9 MB view details)

Uploaded CPython 3.14Windows x86

rdetoolkit-1.7.1-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.1-cp314-cp314-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

rdetoolkit-1.7.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

rdetoolkit-1.7.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

rdetoolkit-1.7.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

rdetoolkit-1.7.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdetoolkit-1.7.1-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.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for rdetoolkit-1.7.1.tar.gz
Algorithm Hash digest
SHA256 8ff98252a719018a869fa546ee7fbbf2c19c197480d5557ded1e95cf8de8ffd7
MD5 a4aa69e6b799eb92cef76e01313a5dd6
BLAKE2b-256 57c0990c4307a2db2e1d435e72f90b3268c73872cc54e9ae19e119f13ae40c56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.7.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 14c0f8ec386cf53de64d060ce03e95edf0201ae3081882e1d20fef5b769129d5
MD5 39e44777516874cb0d4d12a6b52c4f67
BLAKE2b-256 56977a9d2086667fcb4920bafd879bebc38e7646b24a8e0bdbcb25a59807ecf9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.7.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 831f07ae160c21fbd01678acb7c71d041f7da29305ea2a3f5c77f9c65f980787
MD5 2a6d67255d5da40d80eb933597f2f75e
BLAKE2b-256 67768a1b882d065a7bb0d4bdc8ecf8b41e6292fb34988a4d44f09a8426647f5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a86cdf5341ddb47351f270d6be46cfbab97f34db90cedb5e33ec2b1fe40eb93b
MD5 4856f614e3e058d70165938c343d37a0
BLAKE2b-256 090738aafe1f24be7120e7f800ac7e592a68b8d2fc0f66fddedf4a6760968ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e80ec9510f46d4b10b0bb090955d260021fd5627c2863dba8d2330bb7a16718
MD5 91fb55e4902f2492ccd1a7455b1b3abb
BLAKE2b-256 55fa69fbb69a4a467f7ecb5421d9d6903d321b3e4e8bc16339e91da8700a299e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f5eba969a794e8aa5741e0394bdc396e0bce7af1ef13a835bf74ddb62a4c2986
MD5 39a0dca9de7ad783f27813e30d9711d0
BLAKE2b-256 40eeb9fa52234800293749ad1f2aa4a989f2fc47ee8686606b003fd0443bdba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97efd5da7ac4783c7f24bc50ad8d1abdc38463991755d037876cc273c157d3f6
MD5 5c5c19319720073a13217645c683c146
BLAKE2b-256 25b81d1e69d34ac59695bea6945ba4d2032a2152bd09eea83867aaeb763e68f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49b7c72e0068a008fbfdee7426474feeb4056bdbc099d3becd1925cfeadd091f
MD5 7ed1b2872c29525e13440ebf2a36eb3d
BLAKE2b-256 1c8c37e881b64ebe6e7eef71a42f17328c48232a15b43dfb101c025c716b6fed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e55e3a8872a200d197b8e50a81f54b4308593d0b3bb3ab7fe4f3d36c4ccc69a
MD5 120a17435a3dbb5cdfcb3f6e7be2bc4e
BLAKE2b-256 70d209dfaf1ec5abc0b15907012444a0f3c1027ce6239b5d3ea68f78f9190419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fed0df65c144ce21db3989d8e48148c6e6d4e932b187826c46ca6b7edd112560
MD5 5865a04b6d7ec00e7e1d2a0332014371
BLAKE2b-256 71887fe65eec4d80581c96b2335b67fd114e156ce819a2e4277684ebf7b0da34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55d1446c8af3faf15947baa068cdadb5e83b7a048068b0d7d676b6213f9bf6c4
MD5 fb13d66555d1a16e02b514dc36380525
BLAKE2b-256 a5d457252562da6f0bfbcafba78115df9d661f5270e0e406ec49d4f0e8f011ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 13c462f6b1b551647e88c6b44d41fa51e527c580d925705846f8b063e763edfd
MD5 39acbea24a078bd95084f383d40c68e4
BLAKE2b-256 4ee53e2f7a813e20c5514e71abab4d9975a421d0fbefb218ecb8b1686f26787b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0dace2847e8fac7e0aac179c596fcff1955f9dc090e7bcde06483501b540bb5c
MD5 89f2afaf8f238485f196acbfda526ad1
BLAKE2b-256 a1696972df58f6de9b300c0c1244bed06bcb4e4444f3728eee6dcee2f8b832e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e228c8404590be8dffaeab29c8a4685ab8ef0be07211a0a823d8e8e7945436b7
MD5 d51a6c5e7241e52841cb9396b4bc352b
BLAKE2b-256 bd38df85afa218fe9d9b82a70d876a11fc2692e2e6aef98101a76cf450ba04f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b39195178abb9a3dfdb8652944ec3cce097fc16563913697627564ed1b70970
MD5 67f25bd17eacc69be330558bdc221047
BLAKE2b-256 dd9636ce143ac391c1cb90462a537ae276f37afe466cd746154454b7daa0933d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.7.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 65fc6706421749a6766a3ad3e42a3e558555d509159acd5ceb570159e11d3271
MD5 ea66aaf2cd1ee782994bf69455f341bf
BLAKE2b-256 a636aba8eecd3e399face304cd233ead203e539c6551060cc7a4f6607974379f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6702d73c1ba3be7671569da9e4017199f30b413fc4d9cdc9c9030704602a16e1
MD5 d9c24b5e71560a795195b8dfd620a885
BLAKE2b-256 1461f7b4be4609e0d101b7ee57d86174cf8f19f24a28e514a85c31b3ebd3ef62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2948f59321995f8b36867c5ad1cd87b094828763a9e6bbf4a94f59ab33e31876
MD5 f259f678c56eaa1928c6f2de439a9b95
BLAKE2b-256 1f0e50ff058b6e692c68bbe8ced535087e1a32553a54e49f01cb364031f3eb70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 596321e6878fab1fa1cc569406b9d43d167aff11c3fda0c08db1a2c4c1801433
MD5 110d6b0dab65617161b46ee4cfef2d27
BLAKE2b-256 aef4baff9f28fcddbb7d51da8d318c62d92562ad66c6e8bc6aabb9ba496da7ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a02794d6868889ae1e01c6bc363fd93d6748d8f5550878cf3db869154d21dbf1
MD5 173e32418e018e7d30d2984b6722d7b5
BLAKE2b-256 2c50471bfaf2bcaee05950068a388f6c9876ee763f9152a3346e4abc19cff9ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 928a48be8a32f840501f89d43ef224a9fa137ab809c0230a059edfe5ee6098a0
MD5 e7714f8b28ef61bf5d45cc796099a5b0
BLAKE2b-256 b6205f829c5355484b0844af2a3272c8c1a09ffc794d945a001337dde2850ae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c54f1c161c1e68a259fc1348124d6c2060a3ba8b72bedaea23606f3ab773e94b
MD5 fd9056ca78994a50b523905a8bd05cd3
BLAKE2b-256 91c82cac067193257a016053d6f65c407477de73e022ffd52e34405adc131f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71ee1e7a02844ec0249ad3094945a6ec3708a297ee8eba93fc838ae0e4d2f833
MD5 bec8a145d4774144ab5661461a0f8698
BLAKE2b-256 3687f64bce33d2ffe39cb2ca8417148edba30e44c6dbe157bb9875560c3a6428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 071967a0b2883cc6349bc5639c79c436e4cd0494a2b4fdc8b01511e304f546fd
MD5 a3c13f797f1cc95ee70b59f136cfddb8
BLAKE2b-256 d900bec7822dc33dee6c6bf3db18df884efc851df4407652878d1f78d02f2c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 821d5d4ae2f38ba724b94c69aa8264ed95acf514080bd9a4e24b16b36fc339e4
MD5 a1b35a6280d0e3051cb5143d8c79d234
BLAKE2b-256 77821afab61bc0b9da26c53e71df5bf45a7f50561c876e3040b56d7adead517e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a56d89511ecfbf8f8c119dd5c0b6e192cfd13f302df2735e9c6131000c5ddcfb
MD5 3cdb29542b41c8b146b472e9ff651a29
BLAKE2b-256 5a844f532d0c6f4556c601718dc11840225a26d99bf6ba17e5678b1c833c842c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cc0a56952e49e3504eb56e33222f6875dfce8daa1d42ab80830e5f4e32c98b3
MD5 b0395fd4f0a4d872d880839a0caf41e8
BLAKE2b-256 989db110d0cf9e0faf92ce361d46e43e4779b00de3b503e316bf92a1be93ee58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9d8a51d8b8c0067e98858dcc420e39ea96d6cfa2f33c6d747d2b12f3f74f4aa
MD5 e7c92dc3d612d080f9b7efc33f5bbae7
BLAKE2b-256 e25bba5b327f942f201e328c237c1aaa99b4787dd08b3b87e31f451ed4e437e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.7.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 826040338d4558d6dcc9a4f0abcd16522a6425fc71c39bc3aed31a52e6e90420
MD5 c0f3797042693a22bd220963e9589c41
BLAKE2b-256 f1ca872ac3827cf1a3ca4120151a4e1023625ce6fe392e1bbe7a352b713a3c7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e210e74bd02edb9b4c5ff71f76439e3951e5e536592015b05e6f753acb6d72b2
MD5 4a03ef47f1c7290dead00b7ded826961
BLAKE2b-256 c360bd0cde6fe77254673fdb173d0a7d9c5740918bf01cd69ba106e5e0e9d8aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8cf9e9610c7f8f95050664da53d47dc2dc48f1332812e9b289f7c714acbd5729
MD5 c969078c394878b5063361d3d92f6894
BLAKE2b-256 5a7f62b74c4fdbdcf983957308ee458a6f6a0ddb1bce3a22bd712a112e6c5d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 931b55d09e55feff628db3f2c90496939eb7fd401dc473a10c04da42581f8a09
MD5 4546e2303dc8361e4e602c27f55206c0
BLAKE2b-256 16ab6fffa567d41a7b1c04e4ae50c921cd8b6799508f7c82809336968a021fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 241c2eb28268c5289a4f3d98281bedbc80c197da394218b91697cc04fd0b3828
MD5 b7a5b6edde4351b2e54934731f011d58
BLAKE2b-256 f6a7466f0eaaaeb54f153290a37df8cec0eb5a0ef75445cb63c278abb1ef862c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b578cebdfb98c826a884ca9bdb96e5fd19c30e26c2afb0f7b973fb570199ed8d
MD5 66a825122660c3fcc7f27f886592e002
BLAKE2b-256 b76134d6ab9dbea768274ae5d48e93d36b2cc52829d301504ba1de08d7bcd3f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13b7e93f10726aba66d2283af1e2d3d4ae8fd0fab7de295ab870f608b6572a36
MD5 74fc40769379baee06e5c6eb075976eb
BLAKE2b-256 f100ea6e838f8741bcd0b8dfc3877edd1f72c401899e56b79b900f77d3778eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94a443cc1057babc02bc42a3cc63ddac380457a6d4a33d51c10082ca43385e30
MD5 33c34e0873e25bf81955f543a394aca2
BLAKE2b-256 4a9485aeefd61acda5c2f80de00513241dacf62b184ce774e47cb035ba2494d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1cf8884de664330628e106184c9b9dec93993b14f348c4c9dac04dc3b051e1c9
MD5 b008fd0facd0cb1d1f68a80dedcd502c
BLAKE2b-256 92262a202fbf59aff0b7eae1928d3fbc4a86b1dc115cb40c2b6366dd088d30fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b634cb4e89289c31a8e0959750d9d2f8810c96fa35988eb0435bb36547753d26
MD5 751f4bf0b30758ae848d59d5807f9a5c
BLAKE2b-256 3366d509b8dc775cabbf9121309ca0fcac6b6e371768ad693fd001f020eaf527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28c91f1f4871dd1eb3f3edde2f8caa77b787faa97437707f8410b6ab229195f5
MD5 24c0aa24c5c7c62c91c627364a11ee78
BLAKE2b-256 bb4ae579186f308db3388d6aa7bca89aa001e0bcfcd94f04e82f3c5cb4fa95cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3706a8732fdd7ba68edf7ecceca59dc85ae3fd94e1218171f31a74997916c12
MD5 735bbc1c0a3b93db2b69d6f2c8d1917c
BLAKE2b-256 d31ecfdf2ece6f7ad02e315b802ae034d2f19666062609510e416d9b967deb8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 55197038f6c8fc65af11340fc9ad3b701e546d73a1889eb0e7bda79b47c4b4a2
MD5 89a801fee7d294507d5748ee08a547ac
BLAKE2b-256 99aaa751e9ddb0dd4da51f92d5f44596b672a082a4d9ccee88e5fa903d92a8a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.7.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab4152a2332374d01e1d7fbe7e2615851034a5613887d9b009e5af43bf293503
MD5 6f3ad77fc567d4f2bf763ee53d928e5f
BLAKE2b-256 d04ba15a34900cc73b7a9557b2bc4b68aa270a766c6f24981fb725fd74243833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74f7da88f4f047584e906ea2630d03e78e61afb9db66fc149a480d567d23517c
MD5 da89b6595ae33c6371487d4cf67785be
BLAKE2b-256 207121baf9b72c496045409c9172eeb3081e286c590044e1ecbee5ae828792ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3da915403c5644e5699d9d7ebeba390b9d13efc5d8e19d6729418421bb73bb8f
MD5 7a46041d340e6917fcaabc63231b7125
BLAKE2b-256 4550f219435e5cb9c2701f62bea93f4aee1bb5491aa4ef3831cf4e8befca73f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cbf7672eaa8bf28c0407ff8a82537f24c3338fddb2eaccfc96aea4b8161131f8
MD5 a6f09f67e906dffe6eb69208b3555479
BLAKE2b-256 fb8699062cf869ad3c1747b23d36d5d6a23ccf211ac9110d90d41f7c6ea78e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c429ae2fd977f754db02b650d66ecd31d0d2d75a6889c8b29cbfb02bc914dbe7
MD5 56fb042da3b2f43566194a51f1298b76
BLAKE2b-256 086bd696e9ca1f8e143167e5d4f6980c3f0de7bfdc9e0ef5e9f19f5d89688278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4ceb6e8463a14db491c10949cfa4c25550c6fa8c6f1e43b9b8b4f907acac8af
MD5 0241b0bd30f59175a58645cdf7d43386
BLAKE2b-256 3cfdb53b6d9c3db9315d1a1c3e49c643f2380cba978930870386459de963612d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49cecce7be8646f1289973f859c96a2de4f1cb83588af214a2c376830df00238
MD5 a22d5f168c9ed92f709a363b857ccc4f
BLAKE2b-256 8180348fcfefc13fa185c7f272472bdff6b5ec521b888f554e59fce23e2daa94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1623f9d950d8b15e3251632b1c6ac87f1d9ac1db892c4a1e9c503ead8dfb2423
MD5 44cb570face57d0f1db8610cb8f37751
BLAKE2b-256 0316f90e8c7288eae0e1e38e09153cd965a085af500315b5f8991ebe452bbf81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6bfdb0c61208ccf9e8cde5cf2f549b787e6c518b0f325741d5ecf4ec7de6fe0e
MD5 87cfad6ed9953491e023eeb164df555b
BLAKE2b-256 7792f18ab8c4a13a962a12bef5d9648851dcab1c902930747aec3071bacd3156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 240a865b43e5014ccdd9fe15b640ace13ac6f0f01b22cbe214c08a81ec0d59a9
MD5 39d08976dd889a37025c8c0a02f908ec
BLAKE2b-256 38c19e60040f55859deaded22325f7a1d415fe96059e07eb2b8cee828d63013a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36522a7e92189bb484665ee495cfb8459731480270b4ffd37365ec63c81759a9
MD5 3bf246c84efc36ea4c66aa8d9bfbb26a
BLAKE2b-256 2a93fa06feca5ee0173efd677699f65007bb4460483b5e5e7859339d61795e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80e91f024a1861a1bbfe8464f6b4a788e3b98b923502f47aaacac6ac15db106e
MD5 b7cc7d84ac01821f8cdf4991a411dd55
BLAKE2b-256 c4d0ce2fbbd74ba58b269d7e2398dd2f22dd6cab31a0af4cb659945ca46b8993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92b7ca05edc6d1126f7a55e6ea2bd6fe3cf769fd62ca881509c15f7cefa858dd
MD5 9075b1f7687e2edc67e0b5ad7de95512
BLAKE2b-256 82d53014608df16c46410347a48a26bdf6662a200bf1705943466ffe8ea6cfe5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.7.1-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/7.0.0 CPython/3.13.14

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05c9ee0bfc45d0004315717ff0f449f3c4d9805ba4b39e3ec3c390e34f098d58
MD5 a53752f3c8bb409d139d99d97af64bbb
BLAKE2b-256 8a46ee4eb54fa59875c73983cd18e0b05a3083c10737e70b95c6678bb57e4613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c608e693371c7d5175466994597ae33c95b723f4b2b3f125fbd1a16009b6c00
MD5 4a76a6dc4a00ef257dcbf60e64529a0d
BLAKE2b-256 9c466e90ca01a5caff94813df7132eeb7b229b0bf8be6eedb75978964ac190a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 110d889b77e91aff647a9f4937f97d5f04d80c8f8bdbab16238dcfc5c6fba521
MD5 dbeef1dc428103c7fc0d997a80a51985
BLAKE2b-256 43005fdb0289a67f0bc61689eee0cae33709c304a39751e5276e100c60e8aa7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ddae99b1cf52fc9e5c85b63b049a6e432b3fed1e35663a76c53bd9666e5d6d59
MD5 af535e39af7522fc49237dcb42efff2c
BLAKE2b-256 1de672d749abb74c7b9461cdfe6d5a7167bb5b43ecde3d34935be6e8c9dd8fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09707d6206df545f3644cd7433342e9fe9c0dc294c83009e859ea2f76ddd803e
MD5 07dc35f919b214c5930e80279795883c
BLAKE2b-256 2e6d723cf519fe1ced87265a7fd68b2e074b464a53161cc212920c4463817e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2c3b426779ed50f4d9b142e755dc6577661fa67627d721fc7c8606f7db947b6
MD5 016afd7d07cf046ae57ed9e4c80f9383
BLAKE2b-256 5ab73f2656ebfe6699d0e99a81b233ac2748ec1509784d2f70b7f203126f294b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73afe6a125223428b52ee88a28f364821d794d01d2db1cb8eafb4ce8b4e93407
MD5 217e5a5179c51e8be88e5d157ea8b65f
BLAKE2b-256 bcfdede4f5b78e64830c4a48bfa3413e6926a765d9a1e6d4f8aec1bcf11f0977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ef8801b86a90960acb552716262950632bdbbed772695673bd362ff35dbf3ed
MD5 8a2e13dd6612f69563edc71753eab33c
BLAKE2b-256 625472ecb9d96e19e33fd13e6162e46430e6343c6cc1732234f1c01b367a260e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2bd1c02ab5aa07c98e616d6ead6daee92292f5d876eb24a5b43eb638555c8519
MD5 c7f317c5a939550cf306eebcbdabd7b8
BLAKE2b-256 b48ba8e919cbbf367066ddf4d688dce1725083056d10cdb6211f0110a77e566d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ce0c2ef55c4e21de32c91c8e9e9cd7999b653cd72272a360627b2390cfcc778
MD5 05a7684e9b5a22a4950dd4c53f5f480d
BLAKE2b-256 dc4f05087d1dcee97af141f0344bbe039ef43c0c2033187d2495701a7005438b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 802ba90bee13a95413217c3658726dfaeb1de5c2da4743bce9e5474416c06f48
MD5 bb520f786525701c8379b763ee019d86
BLAKE2b-256 684a4bb5cb099935915043919c7bb82366b201382aca0043986d0594ab4f8c1e

See more details on using hashes here.

Release history Release notifications | RSS feed

2.0.0

65 files

This release

1.7.1 This release

65 files

1.7.0

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