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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.2-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.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rdetoolkit-1.6.2-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.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.6.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.6.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.2-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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rdetoolkit-1.6.2-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.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.6.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.6.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.2-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.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rdetoolkit-1.6.2-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.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.6.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.6.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.2-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.2-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.2-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.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.6.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.6.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdetoolkit-1.6.2-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.2-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.2-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.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.6.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.6.2-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.2.tar.gz.

File metadata

  • Download URL: rdetoolkit-1.6.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.6.2.tar.gz
Algorithm Hash digest
SHA256 59c01a73937b8c51c2b650207505a7e8c9dbc84944a38bed76d4333816434f64
MD5 e2ee773164094ca3f7f36b613f9660b0
BLAKE2b-256 c89e0e373d87246992a03240bfaf8f728a8769e621f806cdb7409de28789721d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 08b203dcc19a8fd880d8afde808bb9d416ab4abc27e8eb215ba30691ecc9c62a
MD5 7e203910cd813d5524d750cbacb7dba3
BLAKE2b-256 597f5585095b97a1b1a95c9991030d9b148d738621bf4de062be3e44a73ed2ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.6.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.6.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 853d48dd79649dbd956fc4daecc86b9611bcd238585f52cbfa1302cb3619b0aa
MD5 63f03138bd96c62a81c43cac04dc3b35
BLAKE2b-256 f9faf96e27722931b4c54618e947c9f6ff948ba0cfec6ee5f45b3429643283e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c56ccf2aa34977eae4a081baaf9ad98bfd235c2ef0318e064dc652a56041a935
MD5 ee4fb4cbf2684f7d763f79e6b13bcfe2
BLAKE2b-256 67486b8f4bc22ead10da0da4f0b08241f5f1177a1f1a6b517c7ab928b2d30ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34bc7ecc3832443afd1dad44841e85d93768cf4140747f370d259a8b4f200007
MD5 bd4ffcd748d777427b25742eb55a28ba
BLAKE2b-256 294f65214342609c9ffb8bcfb8065e6bcd84b53535abd0d2490425625695568f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbded60034fb2196714d3cc33767f383e3eb2806bd3f7a4d5edaaa8614e51bc2
MD5 08c08bb8808f40638f6310f3352b2244
BLAKE2b-256 75eac2da0ee285684476b24fb55226e212463295a9967a31cb9e0e40b84e05d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cfda8e035be43a93c96acfb5e5b7d66ae93d25c63bc3f52f4c5b1cb5567431c
MD5 55db172c613d480843ea109df25648b0
BLAKE2b-256 4d2487d1e8e2c5611eb4b45b84c59f56cfed0be6e7ca2db50ce6689e3797c968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2cdcbedf245e331cef2544fd83319aafbc040ccf2663c6059dcc80f4ef6e38a
MD5 7610b35071ce8fd1eeb1af63931cd1e9
BLAKE2b-256 161e8c43cb564462eea587f8e187e27181e5769d4b53f63fa503fe4ade6af514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 257d01c733d3a5c39919f071a5e0347c64735f26fe8aa6d08a532fbe5599eda4
MD5 4886787ee35269307a3bf352f3e8a87f
BLAKE2b-256 3150a4b540cc4f300c978784f828f802f49a9e254f1d4b492e31262b24867a3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 718fa26af3ef317f954a5a4f65ceb5840e827dbd7dd809ccde2fece6bca2d4f7
MD5 1dda27e6d04483fca951577aef2700b7
BLAKE2b-256 b84e4d8ff45864bd8af55bbf6329cd5231dcfaba39517708f2685ae2f3a09e60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32f99c11dfde5a9a3fb0cdb2d65db6e252a5e90cd18af29dc2c5c5f38d6279d5
MD5 263514f438057da1c16324e27b47d1da
BLAKE2b-256 3b854f30c65bda367526ec5be68017105249396d2dc6ef30f06716f83318126e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2cfb30517c4f3d998a426c87c0fe171024c9cabc235bfa64a9ced7a73da4f4e4
MD5 4d5f9513353218baf0f33059e8405fea
BLAKE2b-256 1d093412c1aa80f2d49fda1c0388b4ac5232d9060cc8fa153491010e4e6a3ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 968fe566a5396dda102f2f2fedb439bf58e29eb278d71ed39da4499e93358345
MD5 934ad141cbe3024bde6ded36757ffeeb
BLAKE2b-256 4e65fcf87a3ef4d3b49fd60b83c86883a48b5be1c30dda1883b4e3a8d8991209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f3fdc26536429c4372de3c49b7c8e22ee8a7e8b4374e382ddd6d7f608f478b0
MD5 af27b92ff07c14869b064f592d1f5657
BLAKE2b-256 055097d6fcf8b51e01b48be028db78a5cb5ec43f45dac57a3a5a205886957e32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9334c3ef5202972f2d2821e3ce392c77bf1f1a984e8f3c4d0ba4d5bd6d7eced0
MD5 48b5ada16b2010cb7fa0ce58020115f8
BLAKE2b-256 26dac0a16776d75fd37cc4a477c9b37cc714311905c63c9550fb1390ff7524a1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f2dd25cca619ca849fa81f01af2a933e39b02ffe22dab9d261b4871a5b9f6c84
MD5 45d3e548840abe712b7f0b7262a70f0a
BLAKE2b-256 e62fd899f2be219d7301739a0b19a47829644c512010b46fc74f6496231013f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fb66431d9e53aa3f60df196354f547ada9d744e917fbcce6721f93928edb3c3
MD5 8cf7ecf4d02635da3adacb6167307bc7
BLAKE2b-256 c24ab9ede824d5d793854bc2edcc2d0090a0fe9f23444f4a884dfa6a5a65f1d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92db58b6fceb4c9c4a322fb18b7ee715ca58b236818b37c046ab6d2cb7b9f118
MD5 b095ce1778795b18666358e20a54c7cd
BLAKE2b-256 7998bfdf42d4783d811700a2bf672f5a10304f1cb67e9aaa8fc79cadb14fa19c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40e294fb664293778879e7ae98e38428848a17d8ce3048cae64d5d31c4627780
MD5 724b2bb313a8dcfaeab2fb607382c7be
BLAKE2b-256 82b5e4155ea492245c339df15a8eae09e883397eb064e2957a4542083c85d395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d99d17644331b557d3294bca86d407341aecff90769262eefe077cf603af48f2
MD5 eaa1bf623cdf55df6a10534680090136
BLAKE2b-256 eb34dc0691007493b4e9a2eb37196acb8fe9de82da2aa272454352c79c20966d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68465551fddce22d237d0e3024976e2948259e51f49fe7a30e581197a09e1817
MD5 02649eb0f058e56ecc034c520bcc7253
BLAKE2b-256 f7c5df1e8f3b9d1b6ae80d1973c9fa434e091bb959b5b55bf8e053c0bf9c0274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f511da37a9940de73ae0e8ef7e751daf1764588235ac78e13fc11b3eb455df6b
MD5 214f3bb2d900b9169ab27c5be5e908c3
BLAKE2b-256 10a901304a72895c7f5da58e7f4aca86255475c2c8c0901c7488031dc50314de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd55d359a94d67c2eea761d89a5f70bf2f05b8c7415bc4ab26223a9ef3ead629
MD5 b7f95757135f2bd5bceb39acbaf54320
BLAKE2b-256 90dee5088dddc81862a4c6fca55e851124b5bf9f924b332a102ecf5c47fc6b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5b20329219257855962cfa55c36df8b846023b97923a798e018e8d68b010bf1
MD5 0adc687e23fe631eceaab891768c6917
BLAKE2b-256 0222e8f8ed71dc6dade67f160688422e36a41f6f7fd4ecfe9030b43ae6c66520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 feef2f56668b460e26cbd25409e20074a151033ad12a0f204e0b83b099f1dc9a
MD5 f68534472e547db62610742dfdfafd73
BLAKE2b-256 b0b9bf6d87c88df769e10dd766f5d1143567eb237ae60cf0a2ad88284f6f0093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 291c9f00980b871bf8ab7a07854fa010aebc1b954ae1120e1b48e769a747cafc
MD5 b25e486d52ddff135d3b36b0f45e9bed
BLAKE2b-256 44e745f3a0a6547f14c83ffdfbe13c29400e2f8d69272fc3bf5a66a7d596b405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7dabe61d8030b14c5052c5bdab47f85a0570c264641910dd130495334515c4e
MD5 99dba40a6d7959545431ae3b86c6d494
BLAKE2b-256 4ca6dc503b09273a78df4f823706a8895c8bc61705c07a65758223a96f4825d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d5d5f73fcda7f36f96a4e00e0fd858c4bc4d786d545d9e6e9538a6bab8c8329
MD5 1fccf24bf419b45c4fe67a291e08bd5c
BLAKE2b-256 f3c1b2d6db9455b9a248a9d87654e9a4fc96e5d4fd8b5f426d99bbeffc1f890b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe2df1ba154c5a659bf25feaaa7b18676d038a3044d032eb3bfddc7fca54ac27
MD5 c6864e83ea5d63d7eabb41e3dbecce68
BLAKE2b-256 1a26b72f91f078055d5bda14b4bfc8b362cff2aa766f2797f504376d0565b55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ec123945d00d9e2b44722bedd124498b9a336f998b48fc5faa9af0c5578d2e2
MD5 5c93f5dc97bc6c57ac381942b2bd0f70
BLAKE2b-256 3d2729c87f21788df880e87ac6050b2fe4a22f044b18c189813bbc24a0170fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67bb0fb68b02a33b6bf1558db84cab8d69b80400a0476f87bebbec26c58585d2
MD5 b3e63aaf7b864b1ed6b9e69106559c44
BLAKE2b-256 5ebf031d85e49fce3475b347c9dfcf7d91c1cb40444c70ac41dd5092628da113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33934119407bba0cea68d4e1a0766c94f2282aea4fe1901fe3bd69e9f1f50428
MD5 16dc04f57565c9f2b8f8b6daa9958525
BLAKE2b-256 b09ddc8242fca28a151f139df1b7cb4e306e4c17abc111d0f331bef8dbe27a16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bd235070119ec2140d433e7d174260def6d05d3c22b11ebd7581bf1e0028c1b
MD5 125263adcb65ce1282dd589d88b101e0
BLAKE2b-256 f0d09486c15e29fd83b35f64c07726cd5a762964a88bee5d8ab6229de7838443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8accf7765c8bea30e525074bdc75ac8a76c2bcd5e04330492313ab2946ce905
MD5 9ce448c4346fb4ed25154856ab02e8cb
BLAKE2b-256 d8cf26c8e21dc43d80e6d8b2b7f7a1f530c6f08481731ead8c4d3e9c9018f1f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f46a7a6e4b1ee845b5de0caaa4593acdd2d0b74a7a12295dfc2b28b03ad3ced7
MD5 e622b5d044318e3fbeed31110e29ebf8
BLAKE2b-256 a374b6167d4ac2d00897046e83c6ddd6a57bc8b68eb951ba94c60a4283d9012c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a99a90869d2b3fd66e5735e8818b80484c624217b14ed37c2c5fb7e7ba48412d
MD5 783ecf74eefbd17cb9baea2a10903149
BLAKE2b-256 87b048e33de8f4f5c91f77409416c77ffef01270e284b009e64fc28f88518351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef47f48c4deb3b381d28d03670c129519f48c4f3b68d67c62a4d6cca5d208266
MD5 780b011f0bedd83b9d5ebe4aec235b3b
BLAKE2b-256 c21606ba049d2a4f044391a255006fb6f6b57b6476490faf294ccfd1e4caf294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00de0080ebf9b9353d2d8cb8c0e9b959697dd7148cc12c442397a68ea5178124
MD5 0e5926232a75c6bc2a87812cda06c1ee
BLAKE2b-256 a3d935e6f4071e2f523f472805e00fc8e6eec76c92d1f3304dfca29401f3739f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1e6bbc42ea5a73f37112f0e50aa6430b65f29fb61af1c24045b059db1568ce3
MD5 b7545d837f91b49afb0c654d4fd2f241
BLAKE2b-256 fe5bea6344d8f6bbaaa2710221df66abd04356d1720f24142c3ea7b922ad2e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a09b94ab32147a241562cc8a3fccba1c5f443384405c36738ebea2fcf8ea649d
MD5 d8e0ba091f00276ff8d5f2c1a103d56e
BLAKE2b-256 ad2a714aeecd974c82f421e103452b3ecaa132f39eb60630472a49e1581f2fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76752574051566141e9047e62d947357c3523771a55f2c51c713e9a526b79e8e
MD5 e6c6929a1efffa1d7a7b637f5f927443
BLAKE2b-256 bfe91872693bd613be84a11a4ddaed4fbcee50f976c1689075aac7afb8f32559

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a8e98d745d5789ccb727f98ba7f6782fee43e94a39089f3202cee7a741e02fd
MD5 5813e4d9befd676f6e9caf9cfec7dff9
BLAKE2b-256 a874bbf5d3749cae239bd599b0223395f817c86a32d73d2f5b954741571dbcc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52a3bb520cb9d9545b3450a766e7fda601144451bf6e999d4cf1f5da56511283
MD5 5a5e6640baac296a42cbc6ad897b1b10
BLAKE2b-256 4bfbb4ff53cafa528d29eb5634587238056031742f891366f4cf3ca4935f728f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf5024898e86c2f408c0cee262ae34ed5b692ab42067153c3eb7181c9c2d159e
MD5 03089397a7111de766067f53f99227db
BLAKE2b-256 01dd06be442e4fe49c028dc9063cea5e032ceaf0bb04cf06a42650e5c805e5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a03dbf3440329609de258f3a15814d863983fa4b9ad3c0fe2111bc84111814b
MD5 c1f9c9f3fe467c4ad90a7a754686a44a
BLAKE2b-256 a5cb36d37ecf91be9040ec16a259482179418d4582251738716c2829500ed0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c41a8207127de7daeb1182cea1ba2b3af5f92f7b790366ae8a34cbf70d8b2e78
MD5 f6eea40bea9321a01e839f17500a2dcd
BLAKE2b-256 6533e513643dc96a540ca08c5201791e90d7df6756a4bf601e05b3d705223d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ee6f8e69305468a6a51fb65f339fd934f80548d15e57e633ff232d387ef31bc
MD5 8e1abac40c848d59f55379f1dbaa84f7
BLAKE2b-256 e9c46a1ceac3eb3605a2fd66cad49cc4c9fbc9202abbe46e2f11c5d828729cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6edb862ea9f341ec5f19933b0f207751f24da458e37fd9e7c62ece4984ea846
MD5 b740ce7554a6dec04d35d802e9ad0d5f
BLAKE2b-256 c877932f8fa3f6161cdbe1d705ca6be9ea92a814b147f231f50472a55421ba88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 872208255c3b0564b08818e83d8e895e83ded924836a617ad156e5d7eeef348f
MD5 a15098bcdd8cfaa4b85c00994378861b
BLAKE2b-256 319f34e03f6a89a0bc4377ce7b8f64125fb806e89944d2ddfa32dad568a05fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58a3937069714bb5cac6f0041ba646a809bdfbe7c2c4688b6ef54dd926779e0b
MD5 327f44ef6b8af701d1659a44dd0f9b0b
BLAKE2b-256 2049621b4c8ab2073ed6df6f242959d975c1ee3fcce113b699be17d1f3b36cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89e3d7fa7e41c9c5cd2e09523049cd24f41cf5c313237d5e5d76f1c34c5ab851
MD5 b6237a58f154d1f053f6150def9195e2
BLAKE2b-256 3d94f4762cff6945cefc987ad6a63173417c0c0cd60b57f05f93704751c4345b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dd51e36f84a895f72a81aaf2e014be100db90777d112a58c05e8cf9714f2381
MD5 b225fdf2b76afbcbacd5160ef3c48426
BLAKE2b-256 c48d4f28a19d5dd4cc603eb4d2993b001c30fb573f15f5b3358298ada1d855a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e628bab9b604ff391d4860a29c3b638135ccb34132d1e61fe514ac5d55c7ec53
MD5 1300b1d670c7ea07525815ea0a4adbd4
BLAKE2b-256 e6c6c386f0eff5be5285cee5b12c53b391a4583b20c515da79d39f8ad9a61c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cdd3dd08095481dced24cc8bced32d4763059a0774134185f69bbc17d56f829
MD5 6c40ea7659e59f68ec451af51d8a4932
BLAKE2b-256 30edfd698329a4705e3e4ecabc66df2efd5e3bcee3d8322d80201328596ae82e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b761afdd5713a6f8b16266edd04882ca1f7af02e118c6d388d38b998e93e04fb
MD5 034ed5c5a5febb146e34ef44b9b8a4de
BLAKE2b-256 c09f13b3c68fa5b651d7a8711e8b52657f8d1a47da42e9cb0ab8fa513f5e05d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a9b3e1945f79207f5412d98abe1f8218428e034caf0267d2ca0aca982a9ed58
MD5 319b8ce8acb1f18ef5942409969dc96e
BLAKE2b-256 028f9834e707c41a6ecd8d300e8b923128c6a500195bce1295e07d1572001ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7371c15d5f46b15c5ad3e2e7c38ea0c2e018ce616fbc73037a0242fc1207ee5
MD5 37456ef88a650f738a051e8f5e459261
BLAKE2b-256 5fe22f35280f0467a517289c78f10cb70e80643e4315d46d5dee97322dc5c6d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc3fca187ac9a1dfc860289c905d98a71c181479c7d8f42ea23f7e6ea0385247
MD5 ed7bbbcda2cfe725ce0913ccff70a160
BLAKE2b-256 afa4af2fef48c7b57c31dfec2bd917fb2a3dde5963741d3295f9bd97974c1f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6e08cd99459b78fe9fa6763b6e9f752ffacf3ad65d21a3636906006a05db6a8
MD5 633c0cfc8db307880dbc468a63a4e241
BLAKE2b-256 01c98c5a80de52a916a6c3d9ec1b0db4d53fd5d812e3c63765b7518951a1720b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18ba0c5bcd297ca21533c69a17ebc46a676baf0a4708efc4daa9bc41852d9787
MD5 4c9785d1bde2ae2c203ee788890936c2
BLAKE2b-256 0b578a422de65647768781f5c5c4efa7c62bf26017e5be82bcb442630fcfb90d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1d4d25d3ccfbee8edafb3cbdbe608122f3e0c1dcbf1161818b29aae4e45d772
MD5 663da750da72718a268f3112192bf0cd
BLAKE2b-256 fc57fec8be678d5d4953263f895743775be27f2a69b430bb6cf4f918f7198943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61bfedc590284c61909ed8ab16c87c9a8a2041cd212a2d2c0977bba053c7a080
MD5 c9198491fe6e70000b24a3da5c33e13e
BLAKE2b-256 5c3605ecbe1b2cf717ca3651dc55cfebdc9dfda9a2188d93026c6744e95c8125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93305298e2a94baf9060d82dc61d43341d8a589e462eec16da4f5f324b286f25
MD5 450985a26ddae07eb25333275f2696a8
BLAKE2b-256 d5b9704ac1903eb905a796717193827c8dc80dd6935ba694b9682dca212fef6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a470b395ab15b1afa040aa05a9f814e5b72de0097b0804ddb70056cb97a52066
MD5 48b109a69739693041259b107572d21a
BLAKE2b-256 57b77fb43f08e6dc3027aea4357083ae688593f86dd0ba30d3e2e6fcc663b365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9969808a26d5b4b929d35d3cd814091315c39a689d32cd6b3ad5edadfca35180
MD5 e387f07898f93da787d6e4f13a3e3284
BLAKE2b-256 b40dc14087ac371cd0004e81edd7d1527319b7aa0986f7d0351f10d68dca1aa8

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