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:

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 structured 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 structured processing here.
container
├── data
│   ├── inputdata
│   ├── invoice
│      └── invoice.json
│   └── tasksupport
│       ├── invoice.schema.json
│       └── metadata-def.json
├── main.py
├── modules
└── requirements.txt

Implementing Structured 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_messsage() under modules to demonstrate how to implement custom structured processing. Create a file named modules/modules.py as follows:

# modules/modules.py
from rdetoolkit.models.rde2types import RdeDatasetPaths


def display_messsage(path):
    print(f"Test Message!: {path}")


def dataset(paths: RdeDatasetPaths) -> None:
    display_messsage(paths.inputdata)
    display_messsage(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 structured processing
import rdetoolkit
from modules.modules import dataset  # User-defined structured processing function

# Pass the user-defined structured processing function as an argument
rdetoolkit.workflows.run(custom_dataset_function=dataset)

If you do not wish to pass a custom structured 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

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.4.0.tar.gz (16.2 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.4.0-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

rdetoolkit-1.4.0-cp314-cp314-win32.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86

rdetoolkit-1.4.0-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

rdetoolkit-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rdetoolkit-1.4.0-cp313-cp313-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rdetoolkit-1.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rdetoolkit-1.4.0-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rdetoolkit-1.4.0-cp313-cp313-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rdetoolkit-1.4.0-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

rdetoolkit-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rdetoolkit-1.4.0-cp312-cp312-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rdetoolkit-1.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rdetoolkit-1.4.0-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rdetoolkit-1.4.0-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rdetoolkit-1.4.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

rdetoolkit-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rdetoolkit-1.4.0-cp311-cp311-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rdetoolkit-1.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rdetoolkit-1.4.0-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rdetoolkit-1.4.0-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rdetoolkit-1.4.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

rdetoolkit-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rdetoolkit-1.4.0-cp310-cp310-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rdetoolkit-1.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rdetoolkit-1.4.0-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

rdetoolkit-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rdetoolkit-1.4.0-cp39-cp39-musllinux_1_2_i686.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rdetoolkit-1.4.0-cp39-cp39-musllinux_1_2_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rdetoolkit-1.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for rdetoolkit-1.4.0.tar.gz
Algorithm Hash digest
SHA256 328d320b1fad8192646a8c93cbc4f94da56ac32e2fa9cd6f345a039ea92a0c29
MD5 cea2692dbb71e5cf40e05735559c5983
BLAKE2b-256 aa37ca034f70cee33b5eaab4849735a316e9dacd1b95363cc4c809c49ccc1e9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 62d9aae7e02683d65357e87d78cd65d109206bb1e8c7f684577cb0a97a53e4d6
MD5 f9da51481329da8fdee46b4f0cd053b2
BLAKE2b-256 4cd164151c8d433a59002eef443daebcbffc049734ecd15fdf7a18935695d76c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.5 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.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a430b92237e238da1ee84e6b656f5b2a1ac4f1c3025beecf5dc9093eaa345395
MD5 25a78243e981eecbebd83c3489620b70
BLAKE2b-256 85a824e3e9ef632e54fd7671935e2d56bcffc0c1281f376c6cfcbe45c1250075

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 23965202c5386d5d0686a75d2dbfddae90ee2aa910d127db0ecfa19e45180168
MD5 505611f87de16a862099bb662f0b5a4e
BLAKE2b-256 ad0d2719343f6e5430b167ac1fb017946486113ab0bd8cdea5d7fd7815bbb129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 341e418e15725a770234f15e31f74f5f3c0be47b4a698475b87a887e357d93c0
MD5 c7db54f1a150ef09401fa40c0df1fbc1
BLAKE2b-256 e1cc3fb4c95884b8f62098242c2836d443b9494eea5853c47dcf5a2dce1ba5e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b858956c5d5fc155b4c20ba83ea27864eb771b3370288fe67b9c1023489f45f1
MD5 3628e87f7fa05ea9a2646035f04d89a2
BLAKE2b-256 a4070fd66aab40942ba3d9eb4638afa42c825985ed4885f1280f0df0824704be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84b8e7a3049300c18cd4314618221647727b5546111e6889647b00f92457a6e4
MD5 9b2d4d40efb3cc965da35f4243b15504
BLAKE2b-256 bcb188ac71e4b60e1dad4035fac17726982ba104f821754db22bb22e6d41a120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b14c9779655226944737aea1403a427d74a4679b970d709c27d2b405b5a23f23
MD5 dc83133091508a755c488780bbba6072
BLAKE2b-256 4f5370cab64be4f948f298f66c45728c1d9bac6c7e448fe8ebe808f4c7fa3848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d915618e0a987aec58b08cd4fffe6a98db81e2ea78e1d3b23d5409af69ff07c5
MD5 dcad1ef3ae7629261d278ab0e1f81dcb
BLAKE2b-256 1863f89f8b650fdfe504e17418bfee862879e31545e3e7cab25c800d736ddcf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1dc454f08f230a1e954152ce856d9a9c5931e85977c77ca90856f40a81b93b79
MD5 51651f730d36cf4162cf9eccc6e2475f
BLAKE2b-256 de62ef678a5c0529cc7e27f9b0c1fb84a00f7bba9c036bfda76203ca33c0b6e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f1c44ce39d0bbae741bb866887de3d335e82c13f85dc7e79c265d06cece8a8c
MD5 19a6d27dfa75f67c7a8dc2bc7b83ff55
BLAKE2b-256 732327152d2f0036b7b76b19fedea30412615e70e04087066d32482aef9e727f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80a3755695e71fc116eae3494372b9086a7c584032c18e4f46cbb7ffc7f165cd
MD5 71441bb7f29495c96a7666ce00667cbe
BLAKE2b-256 3ac85a181cd9d305ed746bf1db2252e147acb5d7ab4c20dfd930f48eea394ff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92a8fdd267ae566bdee79ac832aa25144b6ee8635196b48f5c7cb2834f03cf36
MD5 3f13a863d58123ea0c3cbadab89705eb
BLAKE2b-256 8630e0ee295eb700d53bb87bfd5c12ed308bf99b44e6fdb47dc0210c23297272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f555b1eea91fc1d923664e6400beaacf7de8056023de51dd7d69fb371a1ddd31
MD5 bec682257d0712ed2c61f4c685eb0551
BLAKE2b-256 d060b9e976e60f906607b8b9111e232c35e3fa7230a8455bfa50a37a71823b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3322db8d38e74151701553c97df3892887ba594353c0798aa93dbe4f255d597b
MD5 560edfd2fe3bba46b409db84480545e4
BLAKE2b-256 94215c775d0ebae5b9ed148f8a7f6edaa42e8227991f03d8c97bb3f27a314587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b516670f9d7a8be741020616e3ebd08d1d68352e74f440be69c53b4490f4995
MD5 ca12d9e517bc2994b8b1d0162d247c10
BLAKE2b-256 272b0965faa63ba0c8d24d34020b0e299200d3d0337f83be7401e3ea288201d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d392ff45440e60d8ab5751b982024a31980125c31b029cfe878d1528b4f6d22f
MD5 9faf91fc909933832f2f90451032a584
BLAKE2b-256 4282d5544ff79c7dbe4e1f02dc2d7c1cb01a7ad3853b5b66fd79cda5bce204e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4263500626d0c41c79e1e7028a33538e89c35a79f62950b2c1d21d854d74a8f2
MD5 5caab1325b9eedf7ae282c5177a569de
BLAKE2b-256 3472296dc69aa74f3ef3097c32ea0ddb80e57d10f5c8a2fc8689963b640a1bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dec9a97629eaf0e79112e9a5534cc1596eb67015af917cd07be865ab064b900b
MD5 5dc6065b6d936982ae0fd449788d13da
BLAKE2b-256 574fbf9358c9597fe5da812d994bd5751f6ec381fbb6d772284c0a769a18c836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9879b74f63d12e9e614ece39d3c4cb08ccf4c87c0e7b133d94eda858a34f09e4
MD5 d161546218c2c5f79cbc6d56d738a89c
BLAKE2b-256 9e17c8573089d532391c945abd109c12112a8f84dcaa2ed8d1adaa9fea3995cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9ae7b48eea23dff1ecccd7cf2e5a814f7ef40631ea76ddce5545caeb4ebe803
MD5 21aaaed5e6ddcbde77c93bf825e27429
BLAKE2b-256 f280809d54efb58f28ee51454c8bc6742934dc3623332ad94ca685f30ecf8580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9026224ffdb35b85edc14aa16a251d7422c54a9598ee7b1a314f28714183cf49
MD5 fe78276860efe17a4e0e8935753c2887
BLAKE2b-256 149e260c014b349575ba2a70610a00194b705d9ae3313103fedc91d1782115a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 203ded7d9635db56111482d538b1c9c3539f2dcd506f52a7870e97874757b43a
MD5 3a397ca14dc81f74f1190ec091d71922
BLAKE2b-256 44f909b68f1fb8af0a6720115046fff8529fdbd36e0bb7931c69a46742809d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bbce7d9ad8d58feeaea8891210457a6f71c532a3451c529521677a137e0339a
MD5 6adb9c73f2e825971264af1a923e692e
BLAKE2b-256 f52def8414a19b82dd192a61ef7868cdbeb79dbdbeab1dabd2bb6c86a7d8558e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47e05ab2fb3098e94f833c4b4ddb3a9f2e7227caf061e1751743fd1a9a0d951d
MD5 d9d42e64577c7e1d8ef6e9d4c73eb43e
BLAKE2b-256 675096630307f77652571025d9ca77f4afca74f0bd53fe18ca487daf564914f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a79966ca4a75ac201fca2c91df985180e4ac42d1e1b553ba13e9275d8bd7fee
MD5 ed698daa6c8284283f69b23f25725973
BLAKE2b-256 be59e4f9a74f3c3ca542b37adf7a8ea7874488ba370182efc21dc8121db2cadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fc157fc3c7bc7e358ff7f84846fc69bec0ddefe97daa6636646bb3daed99780
MD5 1f49b0bfe45ce0c83f804d9abfea2ce2
BLAKE2b-256 9acbd8f3f368c56e54a510e9a871cb0015e720c6e4a1d693098a6c26c9efdebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0d8178a46346be3f0caf83d87a8d5f5bd95c8ea5b15924dce01e89a27e8a723
MD5 045926285691b0140f40bd1f10523513
BLAKE2b-256 e6c77e66b16e3d69de308d1dc8ab29de1f73b55ac9691e656a0d33c21fdd614c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df2f9dccc7fcbc5cae5416060b6d596a225affafb51e16e3d0d2e0c324f45226
MD5 0ece0b94e099403b9436e8dcc5317968
BLAKE2b-256 1641c41d0b6b82d22c5161b08080dc7b60095cdada95c455c8e8bd4ad58d1c32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5e144ec1c1bd4363ce7b3c3afca16e4a6a9e3d7a96b70dd40411cb4252497a7e
MD5 96e3b1aa76cfec0d5020b93263a6406d
BLAKE2b-256 85dd483c438d1b8ba441ebc281ed1db1684c07ca02eb0a2a29c73289cdd9c9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d55978724cb9d0f5d0ba4931a1db9e6159d341d710c5b36efd1630a89310e36a
MD5 a52e774c92cb2f280973c6181529b334
BLAKE2b-256 a2724f57180212b5ae009667a6e567481e01cc94c084fa77baf19db176678b56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bafcfab8bb56d4cb9aac684606efafadb2f6d25337a5931778be15c43dc7b3ac
MD5 63ced2b1471ad443b9ae4661f0176169
BLAKE2b-256 fc7585fdf621a8f3ec0cb5a690137c2b8ae1b17683feee03fecf86818efc0963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa5004c0d97b72f3ac8863849f418e62580044f0a6099212d4c7bf4b5d113dcf
MD5 a6d1e0df77d687541715728e54e3a015
BLAKE2b-256 a474b07cb4416af75b06641a65659482b1559b856589e1851f4cb4ad72a4dd47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7a450f3993555285fd43db2473fc34b7b2585a4fe7bf19906ada2c6cbcf642b
MD5 7826ba805696a8d157fb8b60b300a559
BLAKE2b-256 a65ec60744bb51ec6af93ebc89700280acd38230c8fe490605820e654ff027a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dc28bb1ccd0a8099cbbb234b42d8e1d5ef51b3dd45f33eaedc0c2b6e5e8682b
MD5 7f91443a07930a5f74ecf9053734f86a
BLAKE2b-256 4fe2d771a0e4908f5477347f6854fe47a0c2faef3004176cfc03b9f5666ed2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdd8c447404651b2ccb568bbe0c77d2fcd00d85906b5bd4bc48237903c0d99b1
MD5 bea05e04cf26e06cea77ce93273d5817
BLAKE2b-256 903aa49e1c43e9d9745f929d87fafb400228c332b12e63513303a25685acc313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b11003a80a1a43cb815e682dbf29234d6e9d871e60952672d41ede2827b7aa18
MD5 90257c7f375800ebf42ce024692de185
BLAKE2b-256 a883d51931483249dba126dc3700bff099cd6b729831907c5dd6436e14ad00f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc159388c1141cebaca9007e2add4ae8ee4db49e5fa040f144fde9870e555d33
MD5 547d1120612f53199538cef495656220
BLAKE2b-256 df1fabb1c2b0b53d35dda2225a82b951e7d7a2ef24f3999cabd4429c80af8742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e1f24c8f83510af8afa55850709e9e00141bf44b5376577cb63bb2b3f3a069b8
MD5 fedab3ee93479b2427e2b8348fcbbafa
BLAKE2b-256 8d9f7834964a70f405aed29c8b33b522a06368151e9fab9571b30037ed27cbc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c5cf62029597ef0837b598a1ea2bb411fb95c3d441b78796e69abc2336de6cb
MD5 a0e015b565c48784b440b154d7790a00
BLAKE2b-256 ff02ea3cbfc08a44e80c9a59e2b70d40a982c2da3b5171dad2753fc2fa9896c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 228fa296056697bb94854b04d2ce98988d222fd5a50592f9bec0e24fbf5f6900
MD5 a7f966ba2d6ec0dfbfc4b21c7ef4f746
BLAKE2b-256 7b030e6f4b15f97abd74d36b4185e0d88769e3931d0b55601e3bca7af06abb87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8537df90956170edd499f091d212a7b48fcc329765c40b1b86226b087d310804
MD5 5baa22cf7042b509bdf0b86305e6aa41
BLAKE2b-256 b790af0d1ea681c1db3ba13956d919eb35399d14653e83de8254a4c87329f1f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-1.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a01cc6d93974c28cd5b883fc47279d8bd0420c42fdc676b50d2a9ce060716c37
MD5 d088453e6b3e3f8f5d4eb8f31e58c4e6
BLAKE2b-256 8c11f3b84e6ed4d3f95a8b0edb92f77dc3a6eb570c011232db4a8809a62fe254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa2ffc88440da97cc0c483ee6707bd85ea3d4ccb179fb0ef34cc93252477c0d1
MD5 6dae11d24e2b1d47caa3fa3b959a81cc
BLAKE2b-256 3cfccca24526ce48b9bbf80adbd4b8073efc25a49fa2f0d2962f3b96024d75b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc23a48e3dc1422306c007288b8ee23d808cfd310fff3805c1b0272a7fee840b
MD5 5a00f53081cff92299eb1e5b0834d4ec
BLAKE2b-256 2655d1c1285c19f358b9c7413aff6cf6c74d94ea87a0404092d112b3cab11f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79053626869c06f76fbb8b11f50bf094d4bdb1a425d62c74c781452443975064
MD5 e3043504a67af37ad1a45da8dad3b982
BLAKE2b-256 e4b57c6f3341aaa5d78be7a53c8437c84c08b607624d1fe3d30a051439aed85c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 221706d746aa1af0b0eb190c2eb0d1598fe62fd53d760c37431c69b9295022fc
MD5 2309f18320c84410b8e5da276775422a
BLAKE2b-256 2e6b0a919cca27fa4407c25b3c89415dadf4f24622085525174842556e6f6cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad8a9df48043512e4c9b7b3a864d702939402ccc326c18205a88cadc20ce3023
MD5 c999b7736f772a185b0cee6d5866fcd0
BLAKE2b-256 7b0181471ca8d0eba61d2e90452de5c9b8e2323409e99492de07f80cd2e020b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5199775d50ee36cc1714f02e5a107090dea8384198dd1c113a3d9bf21bc8fd2e
MD5 c017896edbdff238fc9ed0ac6e05364a
BLAKE2b-256 e60ed415007cb0847ed370bf755201aa8f10d57581ce3bb7f082b45aa8e193b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98708ad78d051cee7e357c35a13119ec6d3be9321feaf12d12d453f9434a374a
MD5 5e10555ac6189f19a3b2553e8017df0f
BLAKE2b-256 d9bcd54a06a670d404770e40a3d9b7c08874fe9a9ef7203cece62dbe32f31279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44ff1f3826d1d85b391ef5c8ccb81204cabf810dd30ee4303da2c3de0883e7ff
MD5 6f1aed1c6576600b79165a607c0c2cec
BLAKE2b-256 11e30bccf7b2f92c22de1bf24a4f5ba84e5b967d3d041c5003cd10db455b1009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a56e1811ec4dafa4000d7dbb3da7da43b46bcd216a1907af6af3c9968826689
MD5 6b2119856492736dbf63439b0a79aeaf
BLAKE2b-256 97eb87102e907eac37d86574684753472e62e5da04ae177872b2cc62ce267f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b12819d5a3fbeb3484f9e7853e057d09cc7a3498a43f016c387b3a430737cba
MD5 7ef5c3c9c09efcaa8e4dc9ba389c6c12
BLAKE2b-256 515d249a8ae715658febe2ef3ca5eb8fa74a1f4577eae8fd85107900d251500b

See more details on using hashes here.

File details

Details for the file rdetoolkit-1.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rdetoolkit-1.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1a61fc0bd4f5ddd5992e2005a119e4010881e23c12bfa97d97149f1e262100aa
MD5 737dac90da35b11fe39b88d24758a9e3
BLAKE2b-256 bf2f9776e7f9f4f6b2e642893d96801f2884ff1b561ada1ad10725917b66b2f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f2db5578f86f5eea7b28d1702f1d1b2cb0a5bf222e2d579f997e7e1791f5e9b
MD5 02284b674c37bed4c6e4ce1a367433ac
BLAKE2b-256 d25e26f7f2db9bdbad4e1b612c807068651fbae340d0596db78f8642f3c4ff3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7120b81b7bf90e885837576a03296f9c3469dcdb4e8234e7df34941dc6fd9537
MD5 437ddc16a467c2aace2e18834b9bb66c
BLAKE2b-256 b4ebb3354399f43a36ca204d7058e24cee8a031884a1283d8eb10b8254770a72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57a59e99e2c83888a537d80873b0d6b1788b360bdb0e925032cd9083ec9caec4
MD5 b077cd830e0e9061f3b40faa9e6573bd
BLAKE2b-256 1e7a1c0899d23633b8e60847135714c25a7618539ecf4686b97839f1d7e66a4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62e45f1082d92d3964a6737b40eed63c4efe46b321626cdb2dae519533ef636f
MD5 0bf560d0e66f9793e0c88d7deba6cead
BLAKE2b-256 72fb7d0bb600c8d6a35e4fdac5acf40b03490acf2c481690c5cf4a3331c44c50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c147b835a3d0b5d07f461252c545e26a7e98df380935751e0cdf4c2a1f553a7c
MD5 8276c96de81beb89f5adef793449a398
BLAKE2b-256 337e8c32d2e2b3d0b70561a0b3b13207370b661c9b12d10ec5bd04d68fe6c58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c73b0cea9504b83494e73f82d8ab5f5324bf5e6e56384f558c7847f1d33d363d
MD5 39ead519fcf0969c821a73a77730fc67
BLAKE2b-256 97b914f1bd2bd7baa2f172ed5bb1198989ffa2f6205d9d17457245812ea87dbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad4d3508cf7ee616fc2b34c172693ac5b56dd7c7a24050f29c892c0c222103da
MD5 8c14b1041a4969b06b27bda4bba50c62
BLAKE2b-256 cb5973479fb0d40fe549399013cd07d93f24221bee07f8ad8bca6f136436e2a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 637b38bd2ff6763665a86815163e9e29283fa96cf18990c077b1e6489137063f
MD5 1aba44117cf969fd3ff0e3dd89457bf9
BLAKE2b-256 4896402eb64685f74eb04764a2a49ad91f7f7dcdb7ab508f7cbfef359358b0c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6283e145d186b4b77f7615315eac00693a9e1e9e3b6696dbd750ebfdfe661f89
MD5 da6bdc680b60eeb797d3f0ff0fdc9d18
BLAKE2b-256 c1c43b54f3edcc86a4a90a0fa8b99aa73f8132dc910981b59d07a505d2506519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50d11ba050c5a20e90e0076327768d00d6b61bd8034f82b233ab2b09d830b397
MD5 bd39510d2923ed1683d87432df100ed4
BLAKE2b-256 fe43225b736f42068230b3e109b450019a91b88b01dd69fea443546e2f84f65a

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