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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

rdetoolkit-1.6.3-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.3-cp314-cp314-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.3-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.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

rdetoolkit-1.6.3-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

rdetoolkit-1.6.3-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.3-cp313-cp313-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.3-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.3-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.3-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.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

rdetoolkit-1.6.3-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

rdetoolkit-1.6.3-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.3-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

rdetoolkit-1.6.3-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

rdetoolkit-1.6.3-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.3-cp311-cp311-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.3-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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rdetoolkit-1.6.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

rdetoolkit-1.6.3-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

rdetoolkit-1.6.3-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.3-cp310-cp310-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.3-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.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rdetoolkit-1.6.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: rdetoolkit-1.6.3.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.3.tar.gz
Algorithm Hash digest
SHA256 e0c191fe50d363bcd240b9f9af4e47f696356f746bc62c35f6c87510761c72b0
MD5 44c051772bc5f130f939366bdc5d00da
BLAKE2b-256 e3fb92c894d36cc46909cc655608d5f5bc155390ee021ff9e207ecb23904659b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0212a472d1e5b5435b771ea794173992ac183dc7e7e002a552c8cf545e3374f6
MD5 83c89219653f5f6e6c3184664db5535b
BLAKE2b-256 0f9816f47fe39ef4a782154c066ef269689566992cb7ff27a5537057222961e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.3-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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 258629484c28f16c62ea131798c87c3df072f0c126152231eb566a4e8195cd25
MD5 8e0c7d527658a1278361f7098cf173a2
BLAKE2b-256 31363e613f598f524e24ccf3f7f7dd021a496480436d75150323ae73d171a561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0ed9ccbf5f1b78a776a1db7b24cda76c8be420a71f09cec000031dcd86e83a0
MD5 eb994649c58a5dd939a211378553ba3a
BLAKE2b-256 1ed719640566e718eb7b72cfb68ce9429114a2c2a0524af94e53cc96c773281f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8cdda04f8b20f5a468b6b2e12ddb4c46f3e11e08c283e454db7de591b3632d43
MD5 e457d6efbfbcc448f3a288504e09e7b2
BLAKE2b-256 b8f1225fa3cdb6269635b369e3f4093911a0310515f4e7462ed4ba5cb7640055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f36ffc93547c6fbaf6caad817a5f18f857f59ea8ac523c3e5ee326713c320be9
MD5 0bb951132bb995cad3c6785bdd146cbd
BLAKE2b-256 d5ae2f837d3136b5d1a3a61d0062404d5a76beeb150031ed465a590f0d5f757c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5ce0d339f232e9dcb2b7d18cf814122cb92bd75361ca2fc3191e36f25b37f10
MD5 4b842f6d39a338a291417bd802929079
BLAKE2b-256 efc9bcf4b15b3b4eefc1a28763c0e2f471b81850e1bee9e7a83cfd123fb1d285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14c3ded3bd7531cd34121f47be0cc9d55ec963a88dd20fb3db09f229e0c8ca54
MD5 f4a7d22f273774d89a57268afde3dd52
BLAKE2b-256 a2a9f9d084e33eb739f59c202e7f05297a86c6b94a2499b3e7301d9ce1739e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3922bc8cce2c666444dbdd50f4c72938bc104987b9af12baf39943e6d21f9ea6
MD5 21e2e77e7545f6502cbb1aba84415a59
BLAKE2b-256 1b9a404fe9ca505ae31f3e336d65bb001527cce07ef7493f28123f842ee44c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc5f376c5089cae3df7eaa65318b774112736d82d57837555e97d427556b5562
MD5 6bc0a666b0c40a8cacb0f80db0238788
BLAKE2b-256 b714fd6bb66c8171f42612534b6240b6a7a979a31810c4e6d59760994a749947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ab30eecf5be6f8d3fa5ced9a674a41e32c018203534bbda7d4009e353c55828
MD5 c502bce0755e51163cdd7d2c938628de
BLAKE2b-256 119614ccbfa8b424cf89a0ab798b9082de2aa60efd00980aa5400fa97329bc4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8cf6ea8c490885fd0d55835426f474d9ff29772d16a0fdaae47307cc5f064a1c
MD5 9cc36d13570072b49195bf241e466b16
BLAKE2b-256 9e144ceb9968d90b7ed9b6ca790abe2d295b4dfd67e228c03a18e00b33b2b259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da4bd9d909ecb1c876676537bf9b034e76a1051655b0df6bd2c818ad47d46976
MD5 f52042a502d570d4e25c9e58212ebdd5
BLAKE2b-256 c805e86796c12c43ef9406ebf6bb542aea49239a06d5382f5b2335f2caa6987e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b19f16f73e396338219a7ee55fd9676a3090e4dde9e43d7aa6b765b58a61b09f
MD5 b72abdd8579943a067c7b7c75625a06b
BLAKE2b-256 4e7c61363a53717da7b053a815e97d7d3cb5a9e667e7ce22199676a00e6c8261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83953f172c3bdd6595071e79d6665020bf138e8f683bf514b0b1fb8f459d1fbf
MD5 895779f793569ecaf823845daf451b22
BLAKE2b-256 e943c41207c27b8925ab701dc73b79ccf0ab3ea007c24dabd2e8a78968d631f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 178df84f056ae88ae047e73b20ec02728141090baa86f73f01f7c0c99b656672
MD5 2cff558c1a85a3b2a354d8e13f99fa8a
BLAKE2b-256 384ad334130bfbc28d917cf59f00e029fd8d885967ed8ff87a93a6c6c8c0ebbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b7719e45e36c2a573dbeef4813536b3218f6f5d0ed2e3011abdf0e0051743e8
MD5 d0e61692c4cc7eb4fda87167982e82b4
BLAKE2b-256 a08726cf26115e4860b1285acc54565fad5b0c632343be7d80250fef5fe4f4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68888759570f1429ba12b357f902451fc72e9205488876933a87f59e23df160d
MD5 30b483e70d102cab825e9e7e5f7ef3fc
BLAKE2b-256 bf389431cc8be532537f2fd30db970bba59be02181a2a0dbccddb19498251566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 218d0bec0bb134238d69d7d22c0e061642274d31b09a69ddf8f5faeb5d7c297c
MD5 b34016ea516791bf6f414d5f3354fda1
BLAKE2b-256 6f5e86a755758ef1768fa50455f8cabb020124e6ecc8c80c1326d2693de6c0f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05d84efb9d9fc38c7c38fe6cb72b355ecf7ce98599ca8aeeac02c909e9ec15e2
MD5 52c5e7191e9fe7a4af9385f8a70de4c8
BLAKE2b-256 fa7d786b2fd04d5e46a43ee9a0a1d3078c8456582b675cf93daf0f42ac459500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 882765ed76a2263280344a6a51d557a12487ec8e605dbff39906c3a094026f7b
MD5 eeb7d9383cfde8c5c9aff89dcc03e7df
BLAKE2b-256 e89d6889aa3fa078e6a15365b0c81628abad949fcb8968e3b15d74181b9c32ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4ce4711dec6fa388d4522eaf3bd57a78e22432757f5eafc84a55474c6fd7e94
MD5 8c2865e355b9f9ec1f08ac0fd09775ff
BLAKE2b-256 2bd8d7ba48011e0c26f264f3cb9dc441bdc9f1442a06be15761bf7b460de4590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bbbaa25d76fa28c4f9d3696c2acb3742d22874e4f930c82039f92ccc9e36eae
MD5 5bfd609b48d01d3357d630b14152283a
BLAKE2b-256 e28133eeaec13640f4601e8302949f9a905738346a36a1f2d54aa5965c201200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 102694d51d26f47cfb033ab8311b537ba4ce154d381e5a063e924d5794dce710
MD5 1d041954dcc4647ecdf69bf8c6a9cffe
BLAKE2b-256 d0d824db021cfabe2e3f6dd7854eb5d604c6495b5f8ddf1e157bc74649f7a623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 272640b5887961548765dfd170b8d69ad880d95a2195fc0430f8ba3501bb7b7c
MD5 51a681cfc8a1d80d176482b7ceca619b
BLAKE2b-256 67f22f90a1f50c4674b04675eaa4814ba51a1af0d584e0e620a58b241cc130b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c09dccf73b517c7c794ac8274dbc0448f478e54a0ab6a668da8f03f917a37ee
MD5 23aa1110097147843ff800f8dbfbef1e
BLAKE2b-256 c0e45e757b4402430fe2a0f11af63c292ef66d8d216eb9970aca25b3faa3c337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7088602955aab2222485b9a5ea233a0e908234e4725d64257a7fec0891787da
MD5 01fa9627df893a30d9787259f8ca93f1
BLAKE2b-256 c412639557a6ef6018d4a7f6b76eaaa2ad070185844735f43ad5c76a8e67adeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 741a9edc08c00bcb5d3c6534b78b36ca5802522cc62b33303951204b3a26b4a2
MD5 5e262a392967a63f75941a5e8087e64f
BLAKE2b-256 dddf339ee20fb28354638680eea441e9c7ea2edbdd709e91e6d3e7f0e4c6f1af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 80a2dea73160dd136ebed22a37e6610579da9617b876c0b39728d37d500a5624
MD5 79ac4763d448230b8f8d41aff42a37f1
BLAKE2b-256 133fbc125c16267af6c31248e1793a64cd324f896e4b4cadb0c747c801785ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acf2b3f528213dc5add30dd855c935e74526963fdf12945588755802888e6667
MD5 267008738c2a42342baa34e47b82150b
BLAKE2b-256 248c0ad4ba02a4985e4e156c98693c90543b5c7eadb7561b463f042fdc5f393e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b72a4c5ef284355a4daf446c4b969c1d2ef5181073977db75fb4ba47961a5134
MD5 978062313a5fccf8aceb06c6227ab705
BLAKE2b-256 c46faa1672df6f321fe58a7cc68596f204659a7256c13e49d04ff1ece09481a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 165a686b442b9a4e47b852b98e10b0375905967eddc055be59cc4a590f21743e
MD5 723a0a52df2667db8a5066d0c90f4c9a
BLAKE2b-256 d02ed966d0d99032f0401dfc71695886d4e4540059a50b0351d938444341ce65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cb52984fc2af95a3d702458b27bf4c992ac7a3f0e57f23210227ee50380defe
MD5 aa6be0da47a931dd301082dabbafc45a
BLAKE2b-256 82cf2e9afa97f0d90573c73448f6a59da92e1580fe95d879495d7c28535edb69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06bc8e814bd594c637471644c522a4aa62f87f4e341dca61cd734852a06e32b7
MD5 40a714ac36bd6642d1385147a3941eff
BLAKE2b-256 d67c518e47815c88a575034503635db915c804ebd8b7ecf5d285f35becfb0da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e712810d80f21e0e3496b4070a6c35f495c42700d106e0bdaa0ce639dadb9a3
MD5 a34a2eca731b5ecdbc85029692ae553c
BLAKE2b-256 7159f8ced2b69950f0c5a62cd6f817c86c43381bab374565471925ca98297f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ec6980aace9cf31ff1d0076d5bdfd9ba103a294c503c13aaf126495ae042c58
MD5 b61e242d8dac3d671db65dfb773150aa
BLAKE2b-256 93782e05643d39e93fc36510133ba9480293f34edf11cb474dcb4c333d2053b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8299321a8d8f9c202d410688ea3f9255b08ca02338727f1ff455be395b5ff862
MD5 23780246623d962d712bfc2bbe4e3483
BLAKE2b-256 317fd2b1a6af74c5c81398e059558f2400f31e9191526c20f1e2b39e92e2ede1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6e114a7e0c7fb7f0d8771ae2e9570bc99a291f9ea1aa287ef39ae773866206e1
MD5 5e80f0deba87346b434012723336fd0a
BLAKE2b-256 d6a724a07398cfd387cc9390c2d30b330d80d3a31b5ca650e585e0186413c388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f76fd751c140266bcf799f0ab87520929c687e48d362acb872236b23695c9b6
MD5 57a4b61a04a6cd3d834f0f4d4f2d329a
BLAKE2b-256 141db137c7e6bed005f07b32d9ab1d8a1c2b2651bb8330f28ac4b2985926519e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dd15f394fd17d60427011b1857f0a61e2090f6dbe6d22798452eaf8cf7b63b4
MD5 edf7998d8508519facb9728f369063f7
BLAKE2b-256 2653be3ae8a94e80a6984668435379e3ac6115840e62d2ae5afb775ae44fdac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c12d0c17931a3e050b4986c5017e209c01c0e9cd0208c9c05f5c0695c04361a8
MD5 c11c4d607ef6d559340793b8391e3e07
BLAKE2b-256 653a184544fa1e05a852eea0dea8e35bef8e731082cbb345ca83ddc963e99f2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2632db3c8a3809478a427d9f5dba0e14da1488f9e50ddb9effcb9e1c8748a7c3
MD5 c35dce02f43d5c7c781828cce0ef1520
BLAKE2b-256 31d154120a6e2216d511f8a15398b2407b12037733bb30d382384c45209a3558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3df2fbf6245d11c1f041cfcad39c5aba4add7006677c43db1b2108e55f8acfa5
MD5 ba8dd968c4e1c0824c478fa3d3d7608d
BLAKE2b-256 4fe767489226d1a01931226f952885faaf2bc60f3511eb08ce0157f107c680cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 adaf0316618e176d4ac3277497204d438d82e395ab8e901201456d423162d0bc
MD5 5e1e52de11e8c7864ec7a91b8f4f8647
BLAKE2b-256 5938982ff7f6a0ecbda55192f7c870d9f8c0c7da4dbef4a95deffac59fbe630e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 952dec791bb947dae613088506d6e5fab529f2f72153a1340415acb5898fae5d
MD5 3463742870b671202a32f21cade7d8cc
BLAKE2b-256 c987307e49b8b2f691d7394e29d03279780911092f2e628532f11615ec472af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 727aef57dded6718331b2550b06c24b1864d6a4593bfccda57ac1da3b9fe7e48
MD5 d22cb630f1e4fc641f64ffad7b37c2c2
BLAKE2b-256 d7035ade579cb71603461aefa127580543a133262489563ddf1c8d285be5358b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6edfe43337d3a4b0b313dff39581ded1954c4ed491592512f424dbe771e0481
MD5 9090d17eaa63402213772f360e626339
BLAKE2b-256 f3124a29b1a2513fe0006476ac606fc4285ce384f1373bd02f9bdbaee4f7f31f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9e3f1586c6a0cdb83476b948628807628f73d0fe7f0a0d553886590f808f29b
MD5 ba39ca4aa3c59b59d5d74da0b50c5818
BLAKE2b-256 4560410f5a02ebaee0bfdac492d5db40852601c96da6052511ad148f29abc9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b4506d0f2df80de63e75193fdd1f5a0a0f7658f7b031c2ced78e2322ba4a961
MD5 77ff493cb48dde076558c9396b196a3b
BLAKE2b-256 8a1cf2f17a86cc2e7d7dbd019c4d7ddc5c8d31af9a48eee3dc6885be7f0e1c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8229b7d27a8b805ca51b60fb674cc210d07cf5ab373bb9e95ead5a891e2c5426
MD5 eeca935bb3c02539b81a9129e7bde3cf
BLAKE2b-256 63522e9df38409537f6433240186f2a2020e8c2e6a4f598aeab4ec3327fc0094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98acefb66e1d6b6268785c8b81af60e2b230cc17f4f026d8eece2e4743975099
MD5 3b516869e304f08e38b0415141c3c0b8
BLAKE2b-256 a8664764cb8e97ecf0fb386c12e48c38de134f26c2125fd6c43d1f0386349b95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69b237e2970d80a11b2c5c0dfefb11d62d445588eb4635e51980830434cec5d3
MD5 5458abb49b6c9b4e5ddb6a416a4fe2b3
BLAKE2b-256 b74c481a8a6e5893c3593fc8890c7e5b15bf25279b9ffe203d2b603994029c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d40b47f0847579764f353b49c0f0ee137f31ccf5d89035c895e9d7073cc23e9
MD5 4b1eda630cb598c97ab9f7dbdfefd962
BLAKE2b-256 0c6baf263e68798ca1629501d29201d8b9b79c7e925e023ebb4598e9fd08b942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84f2b0b4bd623aaaf5f23213327ad72ea7842c7b5baa6710314885311363561e
MD5 207aa3ed9f24adb1c7a13b5167b81c12
BLAKE2b-256 04235d8f095aadab318c93f6a906c4824f9513db05a8182f83e49068e17a9554

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d921dd752ea48cab0b5ff3f12c0c576322f2bb273a65c00f106b3c892c08c5b5
MD5 2c076a7263a2cda35344b53ca005d08b
BLAKE2b-256 1d4a3269cb643ae0cadd8ea3cc5451ac034e6f721178999c4d7780265972658e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 049a75d94159fe708e201be53a608ed0a9b3c4cb2140e1b539116c40e8427519
MD5 ee00106348aa5b41c6748af658fd04ac
BLAKE2b-256 881c23f22c94d220f7ca74de895b8fb96bab6c8735d3df72a2e679fbf24736d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24d1df83b74f1bd60ade74c75ee79be6a6a1fbbfdaee550565722505f0161198
MD5 f06e3c959b1a860398471224431e1dd0
BLAKE2b-256 a1fdf162d45a0b2b6b09aa8a66530892e7a63f3b2d5bdd6c230edd724f907b6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9cb3967cf81327fbe5e800372def2c1f0b96e06e72d446b5c66cee3c566cf7d0
MD5 d9969497c0ec18b3c5405f770104fb43
BLAKE2b-256 84bb69542003836347e52ff179ae17036c7cd8bdfe75f95b7aba810abb532d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce59acb238c53957b1dbbd94252adbaaa57b2ec570033ccdec845fab7e087006
MD5 1cafdc80cd2d2820a70dbffc0db90978
BLAKE2b-256 716cd3ac9913676002077693edc1f4709b8b0dfd34aeab4c95aa698c91e21efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da528917c674aaff51a5f9d2b89af175b039e7fc7e4f82673d8573589319d1f1
MD5 c100982d95caedf99e49946c02d8f260
BLAKE2b-256 ad07100cf0d5378bbd09e8cc8d1807a1176038aafb3c5bc41f37784295228013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c72b1d2e15979c98bc1e702b4a3831c6802bda2e57c58e48aafc90df4bd08e24
MD5 7ba4e6e1c246956c2ce9a7b43efda63c
BLAKE2b-256 aafa7fb2b028a1a8a16d2e57723cf9e8d176b86558c7fd09a73586c2b39944e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 862f00bb88777c6b800c769d9cdebad962e108d2ab2a778f7a5591579043d1c9
MD5 3565b5a343ff9288dfc38dc4aa192cfb
BLAKE2b-256 94f09f517293ff7382793733f19b81a9f7a3cfa7781d43eac721fde3d4c16cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef4a383e4b2a8a6cb0d9584fdf5c4b856456437f5707452b4a748ba391a5695a
MD5 16ed0ad58da5ddee2bdcd85484e55d98
BLAKE2b-256 b8e0f2079ccbf48a156c1b4a4cb20b18fd54b681cdf1cf90f7dbbee23ca331f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c4f5d6be0919c17e3fcc592950325bf5b3ef6997a1377c2563a0112c1d858d5
MD5 a8ce2bf60021664a0e52a5922da09cf7
BLAKE2b-256 2140fb45fe2c68fb6d507a4281f059c04f1cdf8609318d8966f7d4913fffa0a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e298b1392682b60510eeb950424e5fbef17883e1f2e76dac854e17509dd7e5db
MD5 7853bca0ebe8af36a5c986e04483d94a
BLAKE2b-256 b1d381906de963bac351496849400c35cde5fab8ef3d0a0f78d040c125468e33

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