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 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.

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.6.4.tar.gz (21.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.6.4-cp314-cp314-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rdetoolkit-1.6.4-cp314-cp314-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.4-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.6.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rdetoolkit-1.6.4-cp313-cp313-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.4-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.6.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rdetoolkit-1.6.4-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.4-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.6.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rdetoolkit-1.6.4-cp311-cp311-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.4-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.6.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rdetoolkit-1.6.4-cp310-cp310-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.4-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.6.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.6.4-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.6.4.tar.gz.

File metadata

  • Download URL: rdetoolkit-1.6.4.tar.gz
  • Upload date:
  • Size: 21.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.6.4.tar.gz
Algorithm Hash digest
SHA256 d27e24b1fb9e253da990de84413314d9b9215f1812a1416cb9ad6242669d9819
MD5 69757dde3fd0fc36b82ff5fbbb26830d
BLAKE2b-256 562da914409be26b10a6d8bea157458856e08c9a2602cc8f99a59b02f2107228

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.4-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.6.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f0dd720774575f73c6531de6ccd27b4f929c48880c451b11238d40074dfaa68d
MD5 89744dbbaec11368690fcbb955813a2a
BLAKE2b-256 7e3ee2a9e42e920412608d934d0a931bd073f32652ec02e9403fabfa098be9ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.4-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.6.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0d41d6b74f0feb454ac066d16f27e18a9cd70bafdb016e8a4d59bec1e869b3ce
MD5 700b7eccb8a9dc76d04f41490f9be367
BLAKE2b-256 266c0b389e7edfda20e8efc66ccbb72f3fc3afde43466dbf8f4cb98b172d7914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a66bf7ddec62faab130cd5f65abee694fce82ce85097bc18460f4261ad25ae1
MD5 8a2541ab6fb9ed3d71cf32a39235bc7b
BLAKE2b-256 ee7debdef8ba43aa47584c4ff7ed7f56731d885ce48695553d935ae6bc414e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b07e5cbdc503710c03f1c5e9891f6914d7d22018f4719ef59bb2908a5af8f592
MD5 4f54ae211dcc956e7c30f960e9b86e7f
BLAKE2b-256 a568de957373097f2a0067495fc3475d70af630dbb71fd193b9ef0ae159ef92c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f6247c9cc2542d985ea59ae98d38a5ab678e23c9e909adb47708443edb11b98
MD5 ee447a0b53f0145b46e07138dd7ae9b8
BLAKE2b-256 050f46fdfbfd96f090fc0968e9372b0bd9c2d2698cab2dc4b3ae6b6e271d0c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e320356bd320d81fe72355496cc73790cba2d88e5eb7ddcba8f1046c1032f33
MD5 c12bdc7bbb8c340dcf3c06e25dd89e8b
BLAKE2b-256 a3f8a00f0d31c27fb9cc715bc85f351b43d04152f22933b23a6216d7805df641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a29fbd98009f10d8e540dcca08b062eea0506146cff9f395a82dc2361db9f42b
MD5 889eb9d9a6d2e606ef0d41ea686cf3c7
BLAKE2b-256 ef4096411e8a9b06f04e809c2ba1f938ee38255e6ce6ea13343d701b284e1955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8ea98bfdfc8fbab2fded05c29c92f31ef5dc9af888b6cdcce71f2c5c06a8ab1
MD5 39e264e49c5f00340b753715c588ad43
BLAKE2b-256 cf5544678837b50e1966b6a59a5fb0d885362037aac04ac26f623aaaa5fa9f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4dce4953540ea975d1fa5b193833d694eeaa470f26e2af3272900f0eb16af63
MD5 052371558f5347758d48347ecc7195e4
BLAKE2b-256 78065213876939e98a20550257506038fd7c7419559d4594473486633f0a225b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73008dea8368bae389e2fe0cf86fb3438670858e313d060f8a15b4eb9c501d46
MD5 dd3924a243f833a2fe550f1b2f682caf
BLAKE2b-256 a285e7bc0b8c2259c3e91a41e03ee0b5c5dffb0bc79cfb9cf055956db50b3ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22aba4d5bd640885208c88c4beb56088f3bbce7e7d526c443b8322d59d3deb1b
MD5 0ac6ef02f1ffa956cef53210e4f2b680
BLAKE2b-256 4209be5b9aea4e038f482e88c8d67f7086af38fd7fbc9f71b6aebad86d80ea17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e862166137a7d12af668bcc8421f54eff82760824964d3ba36bd6bc893ff247
MD5 6c2e5ca1bbe017e045e9972d9e569301
BLAKE2b-256 36f567e8bf8154818478c37f11945ffd4969fb3393573dc9f3555a35f2a42c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6e3661610b9100e3a777be0870ab4c112992ae6db411d5a92c065abd292693a
MD5 bc9374393141cacf435da7fdf3526bfb
BLAKE2b-256 f8b50ee43d024e283fa156c010fcabf9213371bdfe57b8e51afb09651099653e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3ddca2c6f995dd5d86317c3ef885affb6e48ecbe05b4a1b851a79f187511224
MD5 80796bad60c15eeb0e9fb030cf6ed2c5
BLAKE2b-256 05a71b848debfbc24cbf037d1e4c9f88a16d45996368801f98b8961b58ab9600

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.4-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.6.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f86437e06e890d439baf0ca651448067a87282930febd5aeb524c72c3c8f346
MD5 4e7b3e9c6ecc27bf7af214a3c5a615d3
BLAKE2b-256 477b68383b9f9b073e7cf563ecf5f69b0e598d50d3aa906a26eb91549a3f45c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03020efe559f8e09bce2717e674025942e6d796959102f32c99ee587f7c9fce8
MD5 9e15d515199334a724a24fdf795317fb
BLAKE2b-256 67f6a9e8d65981cf06ff1060a65eb10fa5246d981e15e7ed786629da71ddaf42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae645eacf63e0454bd62c18dfa9711dbed9a3daa2a38759b35f7628627a60275
MD5 3f8a9d7b86ba231583d0b01842608cf0
BLAKE2b-256 0ad3a6f39a4c14d8a7f565a2f9edbc35c81f54ab0ed4bdfcdd078fa6b0298343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a2335f633cc23b328ce032eb6ccf76a773229c2cdf03d4a8858a742727d8930
MD5 b1077505e4562fcae09a28b1698fbffe
BLAKE2b-256 736d87a9591c68e23a40078999abdd3d62209e713c93329400e4a8503192e17b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbb89c8250cd33add018c0b05b80af204f894494cb9d1b6c51ded255ce8cd213
MD5 bda2d7ab8cc61c82026830c332eac612
BLAKE2b-256 a4b5e64d61f5ced19eb18018f5b93b4a60954c3ce1891455074a75a9a82147b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 541c53c59616ca4b53eeadb947b142ab02bf7450da456ebb64a4fa7ac7aafd91
MD5 87e16e070201d882fe62de15f9b9a6a1
BLAKE2b-256 fcc9df20aa8a1de47e5779ee3d8b3e634d6065754ba232319eb6dfb7b3ce8f3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5fcdb89a4a934af624439b1aee5dbc2adab4cc319c1b750207feb55a54d7398
MD5 44e4e98507fe0ad4ca59c347f00c938d
BLAKE2b-256 f044b7ff8f17435a32ac912a47e1b6fddfe5910e28456a1ae7e0230913a267d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ac27edb485940598f3cc3c658d1eba96e90be2d00971bfd066895256778556a
MD5 51263dc764e85e3a15657d56719a27aa
BLAKE2b-256 cc4e736d5edf8c6692269a42420bd3d0f88dee86cd0c4006c4e7f4311995a49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 996e9106b76f574aeabd3db3d5a9d922956f260f1d0a3bb2be8cd6fc45e7362d
MD5 9c6acc73d358d87b32627657f70f3be4
BLAKE2b-256 453096ee451bfac570c8ebe18ddc5225607e2dd5a6d66b136527719688355c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c93ced62df647db70427fdd6fc1bd4257065a37fd037111410b3fe08c80cf2d
MD5 c4aa2b9c53331663cf6a3b5062473e1f
BLAKE2b-256 25f214199832c433287191d14c77340f1b0e0a75e86953d175a77e32ca9b87ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37e979929b46bc385ae74037fe989b93ca680aa3d666844426cd949d282e599d
MD5 7e95fbf37f286b61bd0664889b61de17
BLAKE2b-256 34a5998573fa70d79147a1ac5b7f9e04926c2e366d22bf82500eb2ba94b649ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fb7c625042fdaae52cf0dec95b080040dab0dfd302ae3251b64596d19de02d8
MD5 86bc6ef2eac0300e63778524369ae296
BLAKE2b-256 a33d5cc415f37d856836376254edd2600aea30a5b68044846d150a6d9d234612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69aac8509365a9dd353ecda66776054a59f61fcf5feff3d6f75f68325a9c6d54
MD5 09ca6ba3dc4944840b4647789fdb2fe7
BLAKE2b-256 2179fa93398b9fdc10bd97d0d0baeb98d8bf15b8ba20fd5270255ff87f9c75cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.4-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.6.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ba66f7f81d16e0e7553a33e5373b03adb7f36d6fb044ae67487c857727d580be
MD5 8a3a854eab6b661330f10a100ecd8621
BLAKE2b-256 18af10fdea8953c3ff8ce6a74bd4c8dec69642e42a194b077e93a9a196393bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75475f4248251128b136498177c9e34e99c94c050c9daf393416f329a19654b8
MD5 feccef5b2de3ed1d7d4033e049d56976
BLAKE2b-256 bcc0a23797cd4736531950c2f9e42f321322b237bbb0f46013e52883fb9f1280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e1cc817bd7bd098069f7d63f28b1e56119be761cae8352241ab193e55a8385b
MD5 ef0c17904e681a3b6c8002364c510222
BLAKE2b-256 4186b58d7bec6b327577dcfd040f05e73da62143b5346a8a7b4dcf346b834b95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7a2e5b2473e9ad4bc572a1e3dba0397c92d6c2ec06319d2ca4d34e855d19121
MD5 7b85efd3bbf807c07760590f00e0d2a8
BLAKE2b-256 aad0bb57e3496d51c2e3ceac432286d2b45270e1d3d4be514c6cd621d31ed90e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e8dd7a8f8f5cade497cd028f13997a111c34830033ac7373b9cee82937e5275
MD5 aef50a35ea03f72e4a20561b2fe164ef
BLAKE2b-256 a8b30271c71fc8137e72b2ab62a1b04cd344f03a93cb25b7cdd8a03669d5dc83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0519c3292889838005346c0829cb0a3b4f962ec1e541659611074138a067ea1c
MD5 ace235827d622d0af44bafa57651f2b5
BLAKE2b-256 87a17c6b6eb698a63692d3c6439c2c692745dd80d0942b86b6667ac554955852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 38409b1e274ed6e3dfeddfd46c034989377273edac4995728e7c691c133dc5e7
MD5 e15043a1632f88bbb19a3d8383d46fb4
BLAKE2b-256 24152e6e336039503d94a917bb304c356b2d9c4dd6efed9f8e452e85f6f340a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c3be012af613ba568c525658c58384f76164005006ee3212cfb62fc2540bad4
MD5 48bc578a256d05f388202299ddf65805
BLAKE2b-256 5a961d92875aaf42a5b111b2b9010a9ae7c45cc6998343da849b630e25cd3143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d784d9c3fbea9d561435d334d1d1c047ec774bbeca4854d1ca0d5378c19e2496
MD5 d78904f85bddec7e72101f7bdd4f0ffc
BLAKE2b-256 0062bf52c83cdeba748be9a56674ac1eae8aecc14590f96a9695e9883afaf511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45e0137f9bcdf8e0be8eb2af08e23073c91b5f42bf3613c4a17a02948cfa19fc
MD5 9eea1efeef6e11d98ef47c51e736ea8d
BLAKE2b-256 ed70b431c3bcd982af1d37f3bde8eb450c4552626ca8fa1346a18da1005245a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c38f44b369ba6aeec228461449d238fbb8e789acf27a8cb93cf671a0d9f240d
MD5 4bfe6a4a538eee4c3e64158605e1764e
BLAKE2b-256 e3b3d8c8053a04bff0ef70d398facd731c86792f83e6a8a57be175386cce4018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4912f0d4479cb487463070e7c6b77e115d8239caaaee415dd62e333c8dbae45e
MD5 c1832b7fd87717b6ebe9a67e4ac92887
BLAKE2b-256 e1bec8e7fec458e0ab1ddbb5724b63bd381362a10235360a897434593bae0bb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c8b4a8c7bfa52f5089a4406f1dd4d5e26cfd81f258d041fb2306d5ff8e872dc2
MD5 9d0104847a2820d0e2cce78a4f80adf2
BLAKE2b-256 e7ab449844736861f403737d20cf71b101230aa5e0ccc33f1a591054afa43991

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.4-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.6.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f4eb8e479ca2aea32ce88b94e61ed65375fdbb96058f5706fe74ae8db242c52
MD5 b69fe2ee1dea0b190d587b5910114653
BLAKE2b-256 0d20f1b83da4971130c50eb2ddde41b7de679cdddc14307e8d19609fe4f087a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29aa09b831c70f1d3753e7a36c3e575363b7ae1b17684473f7c48902aff9ae74
MD5 66eeeb79c549d5a239281376249a9262
BLAKE2b-256 30761850e7e91a03aae5a6d295c7a93f331cc0bd2854b530734a213d621798a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36a40419251a5edfcb03b010e48dce4f0738f5b814c5d1ffc7b713dcb184d615
MD5 3716309791e8dbba1d728189fea7a2b4
BLAKE2b-256 68344c1fd425812eceaeee49674b7701a1fc12726041b603f143855057d705a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b92bd662c1f19d564493309787bac7836ba2b6844221b4cd3f9cd931e6d1ed78
MD5 c3923777e200319daaf4713ecac32f9c
BLAKE2b-256 5c847a8184b14159c3010c9000817a4e46cf42923472a9969a79ee5746c3fa2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 caf3282be0d98f45ea415d85af77291599b219cebe7ae96e990034f3caa9bc5d
MD5 7366d568a962c83a115601973c830519
BLAKE2b-256 92087f484f127db050ba32d8d8a5ba6c447f5b3821aacd83c371cf2ae4c28675

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71b456d2eb544aa1aaa00a2ebfeba8285ecf1bae934cd346e95b691049f6bfbb
MD5 b0552339b72b4664916486bc3e95fccb
BLAKE2b-256 02cd0deb2712ff86a51da6f73d2bc28306ad47303e5198c281a86a501136d4e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0455dda1fe20622b12ac764b1aa11ac7d2c7882e01035d4fd12419e74ac9ebfd
MD5 aa745587b4ab93014dd7e2fe8e9042fc
BLAKE2b-256 91a9934eea80ea7fd9b0ac31cb9950595979c716ff70326637ab090d533b3c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68437ffcdb901bbe16f2830fbd99c81a7fdc1e32e9cbcc0a4ec5fa78606ed712
MD5 18b29b083fe8e21f5d6c21d30a3e9b32
BLAKE2b-256 0d9722f78c43f2c27330cc51d790f8e859017723a6140ee1415872644181d619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e49fa4a916e009b7b000a578db251d5b4ec760f5f37347fb9724fef6ba6cce15
MD5 1e7fe13604a08f4d5be36a10ad411f23
BLAKE2b-256 c3b207ebd8dee060849cb09229513eec269f9a82e62929ec5ba5a12852ec8eed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64f190695744f632706ac5cff6b219c6211662d1963ff13461de4f254bd90a56
MD5 20c2cb98e75db47846d16892475f5b7d
BLAKE2b-256 7dd084353454600233519fac476a4f529a287671e3bc0179020a26a5d45d66f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 466a5b90389aa638166024670e34bb11d44e207f49440fb81c9db4da74ad120b
MD5 8fc5d4c0c786378d0e033f8a3071e5ad
BLAKE2b-256 912816a48068a674beccaaa3687efdbf5589a906ef4ebbf582e2e6f4a51b8126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 489d22388e2a686aadd6d9d9d2ac4219b501f23d681f3d0f6242bd531e919f72
MD5 b427464fd64671caec4c09fb6a988c77
BLAKE2b-256 99d7e089d8e2d83696dbdf5c50bff73473a28e43e793bf53a9de765f91d98aec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 636b9a656777c88d6c096ad33f6ceec5e62cc9c20dc5ceafa9342e64cecc6b47
MD5 898f692c6bbaed457f4783184224c26d
BLAKE2b-256 096f1d71a38f8066ab61e776f6921fecfa05510ee94d589decb7158a972a2715

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.4-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.6.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4aa875ea98ef60320b21d5bf1cff26614c80356407029083df690a80691b921c
MD5 28cb0e07bc91bfd8cce4d1b7e82c2db2
BLAKE2b-256 e7aa051449e9d21cc1302740eca10285018f9224554219f7f0fbb66a6e984e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d84c8138667a94ea9b32d24da532a280b397af176c6eebad84c4bf5c58092bc
MD5 fd66156e7b27700f7437f7f90b491e22
BLAKE2b-256 fbedcec792db95ec08866a73ac55afeeb68f9bda534255ec64cf98a43ca99de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a1b8d764c808b4ee9d84013a1e746376306c1600ac16f255ff44981623c4622c
MD5 defb56ec6bcf88462c583e4225156bfd
BLAKE2b-256 738887518c9e14db00f2267c82cb5cbcde3613e06985a3081ac43a2f867daf74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f0d1ad538c3dbc2e441070c6067bfa191910dd28bac9fcb4ab8baf87d1233c5
MD5 73a743d7ee0ae530f565e8b5d36e304b
BLAKE2b-256 c1336ab83bd7b879a7ce9c0ff3556e97e5e3dcb4105ae07bfd7b83240b53d48c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9b2317f220399446bcc59f571291fbc7e62f6a3e7d9f295f1a44254331a789e
MD5 0081e1d58a6253a2592ab45aadec405e
BLAKE2b-256 114b040a21623f547506ec43003a7bf699e07f3c3cc5c6e22fa31c8633a90a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82d5f032e23ba925e46533abdb55bd0beef64baba87abe351e7acd82ffa86c54
MD5 ad6253295b60f9d7bf360d32c2121e3e
BLAKE2b-256 2067ca0ca39b7a327f6cdf11a00f24f3080821a52eddaffc03b7fead7f78d561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2444a539d803771a8722a5cc1c194e3c04012aade161d5eb9e58a387e7c4b91c
MD5 7075985d28a1e294879966af1c9479ad
BLAKE2b-256 40d06a2f49384b807de13c6de39115ce61cd65f36314f541a5e79868362438bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8827837fe36d1cd3b3345a64c7cf16d8e954a0c5c64b3a232795fa3c324e807c
MD5 39c986296a0478bff31fc66033d90cba
BLAKE2b-256 8fa7e1383e11393953c8ac1626dd8b6352991fa98a37445443e492802be62171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ecdd052502e6ffcc3a5ff4a2789b2ae0a4537da5c4dc44586978ee6e0d729416
MD5 a087508c440c432db62b5e5e0b07c6c4
BLAKE2b-256 132c5c6bf99afef0afc8e033224f4cd3e6cc4df6705cc61ec2b2215b5ab7cf10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 879cfdbdcb13efb613f59cdaa5745fda81124d2a32266a3a1e1b6eb405941d77
MD5 627171bd25e11fe8f16d27ab9d9cdc15
BLAKE2b-256 2cfa29bdefc143e20342cee5b2d16a50579887d8f19afab101bb1ea6483ca5f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61c2d62d58a931140ffefd4882cff621f1243b007bed06a404a51335c2492f98
MD5 dba3aef80338ddd84d7bcf04406545db
BLAKE2b-256 bca7171118bdd63aeca4096a0e6f402ff46e8180411bc0a40a48e44c65739f80

See more details on using hashes here.

Supported by

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