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.9 or higher (Python 3.9 support will be removed in v2.0; upgrade to Python 3.10+ recommended)

!!! warning "Python 3.9 Deprecation" Python 3.9 support is deprecated and will be removed in rdetoolkit v2.0. While Python 3.9 continues to work in rdetoolkit 1.x, users will see a DeprecationWarning on import. Please plan to upgrade to Python 3.10 or later before the v2.0 release.

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

rdetoolkit-1.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rdetoolkit-1.5.2-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

rdetoolkit-1.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rdetoolkit-1.5.2-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

rdetoolkit-1.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rdetoolkit-1.5.2-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

rdetoolkit-1.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rdetoolkit-1.5.2-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

rdetoolkit-1.5.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rdetoolkit-1.5.2-cp39-cp39-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rdetoolkit-1.5.2-cp39-cp39-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rdetoolkit-1.5.2-cp39-cp39-musllinux_1_2_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.5.2-cp39-cp39-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for rdetoolkit-1.5.2.tar.gz
Algorithm Hash digest
SHA256 c1fe48366e992bc9d5c5ea7b654d03585530e57d6688010e5a44c14bfbb283fc
MD5 ebb1bfc4bdb16490cde929c85ad77375
BLAKE2b-256 2425be56594e8c9d834196dbee24020d3e992e82150e5ddd19aaa9583df809ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.5.2-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.7

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 af7e8e18bd34fe3de8503c3ca4bb2d6d08356cd31afca2ee8675455945ad09cd
MD5 8be3c904886eee917fb404d476b734db
BLAKE2b-256 32076b423e79ec01be2c760b18450e462db93bcf3b22e184f32e1d337e3e539e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.5.2-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.7

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5878b153785b4ded3e7b7c8a6ff70cce27222d83eacb58fb01bf02b0526b5967
MD5 bc24d27aed1167a84a3ee2bc067bec3d
BLAKE2b-256 3957f8329f9acc7f8ac3ec7498977d9bfd26f9638e1e91ef79f9e94195b47f97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6eb3e5396b30e8e9639c27d825df296b3ab36c62d476fe91a2de7a0117237456
MD5 5bf4ceee8e526832ce6cfe2138715723
BLAKE2b-256 02412073d81158460643d7e3b0f2e3b581811f6725625093dfc8c9134cdc1fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afdf113b37bf8beb343dc6b5101befba9b41116f5c2b4abf6cdb723b0784dcfb
MD5 9b21894497573adae5bb1ea70a99b000
BLAKE2b-256 3540d7b762bd5b799e991ad1814bf0220c018e64b115a6244ec0bcd3774a6b47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f9cc31d690b553b8a818d46214a6671d6e3507644913e7545fa8d6e5986e760
MD5 192c8bda589d7d63c26f1b0c1d81bbf5
BLAKE2b-256 158d821bff12dbe6c13807dfa302541886957893b6267f72937e2b5c97bf99c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a24549f8f39e87712cdb267efe4d79237e0689537dcc85c5ad69e88683c21b7
MD5 17f09bd4a69eb43609ca45503a4cd10b
BLAKE2b-256 779f5f46d99513e732ee500824cd7d277fa9f5af5e0952e2d6b411192f6629e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64143c502f7e377be598c49b665ca6ab8e7c671b4fb1c72b286c327fb45af21e
MD5 6c37fe9382fc69b875c8a730916afb5b
BLAKE2b-256 acca2d7874c99b6dc39c523a3262671aa813a5015bf9f3c71aa43b2f88a1269b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3bd253b2469f2d9e0ac21dc38d6cef20277f87b469c6b86a3610e4355460d2c4
MD5 193bfe4da813ca8b6fe60e7253d81a82
BLAKE2b-256 1c061ef56a1578f29197e3755937def6886e0a057bcb18be0b148031f3152545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 883e9aea5cebd8a0b7acd5920b81b2a5b102c080bc9f1010c9601d7b23fb352b
MD5 0fa25a6fe325843f3f1f1a95ec866beb
BLAKE2b-256 d2be2b2aa9deeb5d85af82ae25e200ea344fad4d6cd59dc124d83dcf00697dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11a98a5c078415700eec8db0175cd67cda29ae1ffe62cf788ef4494197b5f9ac
MD5 4a6bc02b8cb16f393b0863043bd75230
BLAKE2b-256 4a7f02c49a659f4bd0d9e31666533945e1b14ab59250447a1a14788314e05087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c157fa3e4cf3c5bc7b8d267e12d8636bb6e81b98fee25005ae25edd6e956eed9
MD5 f8ff4d50cf2eb6bbe3f00e82af908ae2
BLAKE2b-256 0910bda6d8068b028e4ee692ecf48644a0061b19378690e12090dd9e75fb776d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c956d130cab7390471e51f207638c9c353e44c270c9f1dff48cddf86ac9683a
MD5 43753248bc94734e4bacb93f19d822cd
BLAKE2b-256 3b45843675ce34d04d86b35b2c3911d333a3df754896c7b321dc687c95a56583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b06c66cbe06dce85e5cf2fc723aeb838fbc9c36a2eb8a23a30600347476f37cc
MD5 cb2c026da54c87b74b72e58b9d014de4
BLAKE2b-256 b83420e4ef9b878fc06c1964b6f51204a4df55e3836417d79abaafac524f0a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06fbe6c0e9edd5d55d1c19bbd45c0eef3deb900e46b8429ddced8d6c73ddbd99
MD5 80d14b3dd0777cd7346e232702213c6a
BLAKE2b-256 e83e196e60768ed186b98999025ae28f67edf99697936a9760ebedff21afaa89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.5.2-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.7

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d9d5a182aa51f8a18aa973ff3459272b2a66c964fb911c07b5debe2a4721025e
MD5 4a0e1b8c66a2c881df86176f0c25ff61
BLAKE2b-256 c2b2caacf74b40eeb339b5ec87d29c46beea61ab667182ed6ec27f26ab6527fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80ed29162c9ef0bc0738a1474f3832b7adf69a49470a656335ae27e53750d291
MD5 193b99385ca3210baa92a7213f7f714b
BLAKE2b-256 4d1642bd93cfada303d9abe8683f7f3cfa9385ea453e744776aa7663054704b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fd45c8af7532d781ec6892b9937a392f996d0843716c569db1c48eae2aa9d11
MD5 9c017e0d9e8d698fbdcc771a887dbd64
BLAKE2b-256 d92d386c8e9a7b65fbf6b713f0d6891793899bd17be3a55f0e89b10817506bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec5cfb0042dc15761855f78a04ba85b220193bad98517277564c1a08008d21cf
MD5 fb962444a0287443b11f1c475b91e0a9
BLAKE2b-256 a6e278068cd1ac8c30312433bbf1f73f77b5d3cf5161f5f8d823622a93dbc333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55d456063ac9efc077f31b3f6d67a74591bf833711347f22ee969dd078f93fa8
MD5 2dd8c6cb74d5b6bef70fb7ef507c33cc
BLAKE2b-256 e9fb23b1b0caaff00beeda54432c5430695189bf786c39b3d2d4ab5a7e06cdc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99438610158118df5ad7a76b88588f461dd87de91470249f48212418fa9bf45d
MD5 26af0cc9d61ce507ae95f695c21f787e
BLAKE2b-256 d57b7c7761203f42f18ae41152c8df16f56e549634e4191e2eb38a81c308cbe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ef75d621617cf1d44f61d7ae99b742c11239e49c4e612863f15d8d7bb21a698
MD5 6e3ec6461980d544a697c93fc3c7e247
BLAKE2b-256 b7409d60249e74d0251af637aa724e43bb6a12205eeee8d76160bf80620f9cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48563f39ed145afaa0e55ecfddfcf734911ee1259e958faa9446ee9592336c73
MD5 0dc244497fc99ffc0540bd2c7d2a86d1
BLAKE2b-256 637a3aea308561bb293e2f807c4ed202b5db3b36e1208dac433656077454c3a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a82dac8af33f307b01d7a57b52446fd11074a6d97989b1ee41d0a2f2e779c45c
MD5 c22ec6f265f1baac2e686fb32dd4af14
BLAKE2b-256 016f34ded56a5f1418db0abe3906eea17e980a233c4c93eb427116f85dcdb5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f796446db2edd2f2e5025f27ecab4d9f846b056ddb63bce81d46a174fa7c4b15
MD5 70d6b138b96d7fbe425cd33e34cf6a71
BLAKE2b-256 a81fc29a42bf076213d8ebb8060a7533f78a493d030fc6575dd395481f80fdf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c966026bd915f5a13e84f5ecec0c18dc7799f3c104c6046aca9ed8699ee5317
MD5 614c8b6ffa09156ee7d6986412666403
BLAKE2b-256 1ec0025175a7cd762f632ef6dae7e9cf4bdf4a41ac8e0ece4868202c9dd55fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6d027253387043c588f50febd67b4efbb30639f91e7c2017407730b67c665ac
MD5 04ec561e5772143998d5a37891f7da0c
BLAKE2b-256 5e84e81c259cf44cc5b056ccce177ea51593d466ba852adf5f6cf8b47f664aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26a2c31ae5e1b0fd08739670c851f215f19f7f3ac9b63f16004544ca0fb5c0d5
MD5 843d096d950cd2c9f5044d6043b28ae5
BLAKE2b-256 95305a811a92310867d4bae1c5fdd246e22bd83c635b1aae0f249a3fd3f3a4a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.5.2-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.7

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 42f584832b4f81d0f2cfbfa7334ad2d0d12d0cf5a358986eed502c28371458d2
MD5 de7df14cdc42098aebffa5d66b9f6894
BLAKE2b-256 f6bcbebea074ee6049a363efd0c5252b4953e3dd5bbe7397086069fa5f59a068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4273d87b768d55a990218580554fe2db2d681ba5cdc9e2d211ea138380fd42c5
MD5 307e0186cb1cc65d261a242b70c778ef
BLAKE2b-256 2d9f88202a19223e41bf25488672f9bfcc13bd4fe6a1415b2faf41721db5b377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 805b84edd5b358774fcdfac4611b56020ad901be1f4f6816d420fb5e89bcd617
MD5 1d5cc6e09357a83a1e07b02782e928aa
BLAKE2b-256 f659fc66d0ef1b3f0b24bfddd1937939761b1435d9d0bdf5b8d9c9c120faa230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a65dba822da07893848ac7ad825153e9b1cb69d695bb5cbe9d99c849e39a935d
MD5 edc1bf00bc38c42c8f383e96a58870d7
BLAKE2b-256 3e64ed751bb7bc703fb33bffe5351e26a0bb9e67705b851982bd2701a5241ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8848e91d89dfb1dd9c061e2af465fb99f0240b371e43fc23650d1c0a4e607bcc
MD5 44e932043925671a17066e90860fb64d
BLAKE2b-256 bf9c46a1f16a04431b317c6551c2d74f500d66f9e948a5ae6da0dc58f2593b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a9d9e74a5c442b3162167210ef430ea754ac584a8394a33a7655bd760f8a90c
MD5 cf4dbbdb2430655ae8a4ad2afd21da31
BLAKE2b-256 293ae36b8342f289c9d9ad81a4cd91ecfde58d57f848f43ba615eb187f14e5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3cd39988249402e69df5d718a6a9df25db112ef6d95faea08e841ca451e75ba
MD5 98bd4b3f76c774645152577986fa514e
BLAKE2b-256 620eb3615f53bfb06348da8417fd265b513e89adbfe60b37c188f00479b436e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6359f4327741ce27c284bd2a2cb823dd7a5e7cad95b3b4c951434bf7132d4d8
MD5 00b34cde8fd5dc0f926a051c80ba9ffe
BLAKE2b-256 2fee0b609f09dffbb7982ad2132029bd482d14a2095f12cd213b610646a880bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 853cbece97895014a714dad6af7e6eeadcb6bb9e7fc428689f999c4e47ad1e10
MD5 0f2a6872c5901977bf891872713f145a
BLAKE2b-256 70ccdec2d17d118abe6e7e990ab96b2dd7e593b58dc7ed3d8b055bde71f2f688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f33fa8cc38a508ff27c3e695ba9bafa4cd1cfca9829ae7d15c8997c517c08fc
MD5 d6744b9ed1998212ba04d303d407ba57
BLAKE2b-256 5101694d7e16afd8e2f5e41841d67550f5b14446b4f529b16f5392e70d593643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5c58a8d8db4c465a6c07648eab8e8fa5a35049b0f21e2d5868ed0e632e7e899
MD5 066f940f7215461acafebc48e3c9fc57
BLAKE2b-256 ffe76564d9a8d800136f8569b69a7ec38ca7da16a734686beeda6c7626fdbb6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18fcd84c126788049c32fb4cbb0d38bcfb03fbf6a876c528796e936658a3a195
MD5 43f8a38a1b8edbc77498e35b75bdbf43
BLAKE2b-256 af5c82fe0ca01ee842adea0749c4448c1939e00246419be2a9aa4918fbf92a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56d26474f6f5849c7e91608b6f86bb944075d5e9384788a55056f6036f992366
MD5 426233d40edf6fe02269c8ac7b9068ec
BLAKE2b-256 ca784aa83709361e01e70a8723e6425b769b9403d4ffe3e95149f65c601c4e7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.5.2-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.7

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9101dcd1df23e73380506d568b5833ed001ce67b535308dabd0aedb7ad3f1744
MD5 338ccd03df621a63ab2d0c066fdb39e0
BLAKE2b-256 813fd19de9cd5000cfcade3cf6273ec90eaaf9ca8d5fdcafde1bf46f273de48f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4698cb9351c1ab64bd49f3c5fe3524c4efe823aa0051c82afaacd5abd1ecbad3
MD5 0853fe102207f75bfa81f38363de3f60
BLAKE2b-256 dc085b58038eb9c5f0f0fdf31d5cf7578f62df2ca087ae08bc215b81efd47145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc464cb7fc9df43b5d58e14a82d4ce6ce0d3bb5f613974752ca7e9c6e7533dc2
MD5 f1edc896c7ab1ce825e82f04117ae263
BLAKE2b-256 a8e48c2075d0757490e1c06dbdd2bcced67e75a1efafd8acc9b7a9ed45d56c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8bb05bda04695330be58af456cf925b1a830b6ff6be745a36f0e895d98e1651
MD5 7394128698bb1975fc88cae7c1943d9f
BLAKE2b-256 093b3da2a23801a2234373f8ad5137843dda75aead1ccca65aa40b0bbfe6256b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a6a079983b3ac62f9630ea129471cd54f6a2634f728c339fe02321d14cbdca9
MD5 c4a1f481c15cb7669a11022d4eef769a
BLAKE2b-256 cdc872bec79be33ebcb9a07c0fbaa238812dd3783fc38a5ea3c8c2c532b0182c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94877b50c54cfd3668321fc133c64d506ea4dd437cb9d2f1142c986baf326576
MD5 ab11cfb9193dd13cf8fb3fe1e765bfb0
BLAKE2b-256 13c310172a5999c72ade5a4f35300e55df2494c60e01391e7315aaeb74c46627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9d019f198b6897871fb57461fb359b165280b0dea10a9837b68e0a12e34384d
MD5 e32b8d4f636163e5b17a3fb2f88309a0
BLAKE2b-256 7a51bfbf1457a66412a0b8dc96174b180879f62a7d0ffadbfa407c3b17498744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8fd21781ebdeb563d5b18f07f770bdbbfbb91a4b527acca1063d9293b2a98e78
MD5 86c541cbefaa54ba0aa1f9512afdb459
BLAKE2b-256 aa62f19332797033b24b358279ebf2b40c0dc4da736ea99b73d0296179e557cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1888562b7a13a1dd9703aeaf88bac05447c4a1bbddc24c4a4ef3538615e5bdf7
MD5 64597e250cf655e3c51b563a95ae272e
BLAKE2b-256 f94db940d29ebb980c5297505c697ef05f975cc3310af212e2931561b89820e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f30bf129a4b2b3aae8e75968128fb08122ee8f1a93719c9109de4a510134843
MD5 b85d98c8ff3deb8b64a3e495b3818922
BLAKE2b-256 748bea64680800b6ca13fdeaf0d50d47de3332c95cbe9746290873ab19dddf97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ca2c6db8f6c3ea30e3f12fa5bf2006903707208e8b9759f0008d25e83a853a8
MD5 b19b778f9f7c6930c86eea2829f615cd
BLAKE2b-256 e0db2039d0adcc4db738dbdf397e0b3c29df1f2f5cd264698bffce68ebb55133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76fb6fab56d7d4da8f1c579752edccef93825104fde876a2157cb94ecf3d43f5
MD5 3ca6aa7039ec58c254b6036cd6720553
BLAKE2b-256 3628fae38b3c5199f0dec9c3b06073fc1e0e6b5a81c8eb5a994be536e2f4496f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdaeb87b7f285014710b1f35134982075c18ffd96f5db6b7645f9ceb1cc82ac0
MD5 167550e60e7dc6ac81702f480f61e22c
BLAKE2b-256 49698e4d202c7d3db2de8f92dac4099fccbec7276c4c2e6637e6d94fa7bb509a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.5.2-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.7

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 13b78703407b58cda0558a2429e266fed3c1f014812b0939c86319731c83891d
MD5 9916a3a0c818da20d39a9a4a8d49652f
BLAKE2b-256 5808dc106b734e0e69f0a65581ed0cde0b75cd5760b5ed69e279e49612a5b4fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8116422c4958eb88ea153b6fa78ab427840e63e333420af0c6067ea6d3f5998
MD5 0c079fe8eaf13cc04d97742ae168a331
BLAKE2b-256 e4737eda163aba0debf9112eeeaaa0a071ad67adfd1fa2fa979b27e79ff1243d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f03bb18dc19b232a413eab09b89793be8c7c4431048f19b253328dd60364c83
MD5 a3cc6c75dfd6ddde263d9a7e83ff883d
BLAKE2b-256 82daf8977ef19b4a0686f1c5c1599716453c392b0076faf9024861131c48c3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f64901b368b29e9e2da6e1a23bb2b52379d36eb618f973a5776c61125d89831d
MD5 896d26318e225f7aef0662df843dbf40
BLAKE2b-256 8760cc6c433e2b139f3acd8b933a2621c589d1416e8e7d0f6bd8c5eb31184480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 214317713c7d491d6c2b7d06833b51d6c8adfd0f04c9519d1174e4bfd2880a46
MD5 dffb78ad6989f7ec10cbdca92f9b7c2d
BLAKE2b-256 5614506c285dcb0866e8c1fa964ef5f953bcecb241ba52fd3931bccffc0fb164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f7290c8df30d2ea767a9ef939207ac553195a10e9bb58687678adc8e6b2c616
MD5 66cd91128dd75e6cc4873d95c90e2a43
BLAKE2b-256 13138e331d8c3367899b241dde8da4cd20875422b5ae10813e01087ac1f55905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67378007a13d346d545ae8c7e8fa8dbe2d85522ac0ce732f7abb9c3e9ff4464f
MD5 33cf0e2643d5cee7eda75636ac8cf2a4
BLAKE2b-256 c54198b134fb6e0871a294c162102b44b9b86cc1c7b77610ff08ddd1e34f2127

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5049cc2ba52421fa4339e64b81ca7b15321bef8266881a35ff658224dbe85da3
MD5 8c9563a956ab999b021e4ad2dc9a9585
BLAKE2b-256 1399cbdad1d5eddebf4c97f106d30c8c98eec8cd4b5bd72d425448ad5b8a44c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49d2ae64448d66efae0e52eae19bf616a7a3ec156d0fe9fc431d8367b459a4a1
MD5 f38e690a8918d2f9bd00a52d94c4a5a3
BLAKE2b-256 c4254d3d31266febf8348c29d85af355a6a90e022ddde3d963c57354331ba409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf2740f5f2184ca85716121105f0e2c7aa97741fd90de56f599527fab23f99be
MD5 cc48357cc73deb7ca56204fc22d953c6
BLAKE2b-256 e625aa1db123e84472ed13bf19beab72b3824fb19f6e7479dd805e11ce7ac47d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1342b0190666afa11fcb12236f958cb4ead54f417251be9ee2f1d5ab14c92f3
MD5 fda539a2b3749c76e0bc48238306c36d
BLAKE2b-256 cbc24cc0c4ee524ce657e5c02877af38ba6ccb90f83c5b9358df78b687619757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fb139f7b194311a343d5c03f4bd78ab743f66b29a2529e311f75a4d2be5b6e4
MD5 e54c3659cc9a0ebebbe37f29a562d496
BLAKE2b-256 98842b4be92f639fb0900a894b19c7aa0a38481e09142e09be44ed8de609d682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8767a2aae581ef4fd512db972abd1f1703f0a9451c4aac196d49bd102e07067c
MD5 fdf14fb4aec94893816b3e385073360d
BLAKE2b-256 57d87f4ca7805b07ce5c635bd974978d9af35b940ac6a7bc37be5c484fdb5458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2566fff465bae05926f8ec192dad0b5bbc280ddb4496ab01d4802efafd92aae1
MD5 507d66c323b64d1389039a9bfd40289b
BLAKE2b-256 dd9ffbc84d2073eb031709c2088f9da512badaaf0c4ac9869cdf1f16d997b60e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5eeea5b42def83f91ba56a3217bf1f217c0a5258274ec86aa0d24b7e15ecd9f
MD5 28acfb9484f68a1c525bbb236ccd2483
BLAKE2b-256 caf5a2c25287aa4c8c087cceffbb9dbd800948b70b5b535d40a1fa61f2fbc995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8e857d7f8c281251e01e570177318eceae2cbbb84406b73d52aba057fe130cf
MD5 5a31dcffaf5bb46ac42ad81ef5cb2c67
BLAKE2b-256 1a0bf28db6c4813dd1a24b991a6e8b8d0363cb17168f23088f65d50c7f2b6633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37d603cbdb046e98ad9fe3dc5ebef2784c2086d9d39e866852efc1ddf7acd857
MD5 e6702e90087bd5ca61b18584da10a6bf
BLAKE2b-256 fbe5ef162d029028c2f39004fff364ba7588c4b234c71ec437f0ea2534a08705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb1f8b204e4e1c46c0a7639cae76886642e7b71684910fe1d7975955dedab973
MD5 d68894c6cf84446f5f5a18f9296b138e
BLAKE2b-256 d7c7d22f67b3eb36e96cad31148ae4ed0ee3d72bba75f6de6c7660f3677b0a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 455e3d4708782e783dfd5a40c3cabfb61aea16cca85b7bd56551b2c3a84fe745
MD5 4a8d777c0fff333da02d3fd5969b18f7
BLAKE2b-256 075bc11d0dd758c942cc8c3486b4f10f69ebf5676869078f2424fcb5d5788b20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9686c712d52f13fe6ac6541f70e36b0013ba5ba41f7013bcee8a4794c06aa7fa
MD5 7ee44a39835ee8002b0dbd00daf37aad
BLAKE2b-256 648056ad311f30ec689bf0799e0b3459cdfe08f72a6906ec784062bae97a705d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef7a22d18d16126e9aea888ce33e157d6bdbb6d3b47c13257dbc8c9afc23005d
MD5 895009cfb16f019e81c633c14411c6b5
BLAKE2b-256 1641c9d2e84ccefc5dba4d3b8ce1785d0ea42d07adc02e5d1008751d1f378a35

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