Skip to main content
Yanked

This release has been yanked by its maintainers, and will be ignored by installers, except when explicitly specified.
Consider using release 1.7.1 instead.
Reason given by maintainers: まだ開発中

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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rdetoolkit-2.0.0.tar.gz (21.5 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rdetoolkit-2.0.0-cp314-cp314-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.14Windows x86-64

rdetoolkit-2.0.0-cp314-cp314-win32.whl (2.9 MB view details)

Uploaded CPython 3.14Windows x86

rdetoolkit-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rdetoolkit-2.0.0-cp314-cp314-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rdetoolkit-2.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rdetoolkit-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rdetoolkit-2.0.0-cp314-cp314-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rdetoolkit-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

rdetoolkit-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rdetoolkit-2.0.0-cp313-cp313-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rdetoolkit-2.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rdetoolkit-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rdetoolkit-2.0.0-cp313-cp313-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rdetoolkit-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rdetoolkit-2.0.0-cp312-cp312-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows x86-64

rdetoolkit-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rdetoolkit-2.0.0-cp312-cp312-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rdetoolkit-2.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rdetoolkit-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rdetoolkit-2.0.0-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rdetoolkit-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rdetoolkit-2.0.0-cp311-cp311-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows x86-64

rdetoolkit-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rdetoolkit-2.0.0-cp311-cp311-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rdetoolkit-2.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rdetoolkit-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rdetoolkit-2.0.0-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rdetoolkit-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rdetoolkit-2.0.0-cp310-cp310-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.10Windows x86-64

rdetoolkit-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rdetoolkit-2.0.0-cp310-cp310-musllinux_1_2_i686.whl (3.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rdetoolkit-2.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rdetoolkit-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for rdetoolkit-2.0.0.tar.gz
Algorithm Hash digest
SHA256 1e2743949903458148c46b93859de5ab51803fb26958c9d9be8a19cb2c4bfdab
MD5 16f58fc993fc9d3265578ec2da1510c8
BLAKE2b-256 6d3b2f43fcbba33ad268b71014a943a742c698155050b10b4c0456d60ad7189e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-2.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.1 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-2.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b0e1b91a908c5633a4a5a94f7add3f857e5295d135834c27111fc8766de3e0aa
MD5 65a8d0b6240245d8f0dda7268e74b449
BLAKE2b-256 07521443e0e993a6021a9ff0f116859ba172ec9605f54fe316bae6b098097a7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-2.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.9 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-2.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 86edb6cfa27fd76969cbcbbabe9aa14d5cb13bd2ca7aed429d254ae4caaced8f
MD5 ab18b9e017a6f301b9dd53f0411c72d1
BLAKE2b-256 bacaff8b527387a1ae50f3ac0f4d7f9649f304a06bf4f6b1d6d97fe2d5010724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c854500241159d64d659f53086829b061ae34dacb2527abdffae79d98a75f52f
MD5 c3ac0cd299f91bb39539b567033673fd
BLAKE2b-256 5e3da634c493951bdb890aa9f92945cbe8dd95518bd6b01f3b19b61cd23f6500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f8b4137d796e1d144d7b0db44083a1c570b87c52e860062b61d1b42b22624bc
MD5 78442739df813488e2c48216a2891297
BLAKE2b-256 567da497b96a85bc82e76b27a04e65a02d36b998deb9bf33e5ed0922ea08e978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3e971837b11c344c1be22310f00b41b11b8aa3f5344d1f01c6e370f376649a8
MD5 4da1f89d292efa9c9c6b3e396f8236f9
BLAKE2b-256 3cab2c02170319ac9fd8f90b1ed0bf162f7023b122e42bd007b6763e76610632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4887a13f67a4890516cf6e09c9af5f3e80c382a3e95e791600e6eaf77b55d29f
MD5 d55839828f9245b11fea54e246aa6e21
BLAKE2b-256 865a2c1dcb245ad53509cb801c026e5b1df344bd65450bb39284cb1ad92b1852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a5739751f05812ae0671adcb75c109071c16dfe13781a96144298dd7e93755c
MD5 a4151f7fc898b600658c50371d5d4f96
BLAKE2b-256 a1cf2762872d60f42ca44cdc41f0d0f7ed50ef64bde3603cb5668f2f2119f956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d05ff31b36a6eeb703f967764adf98c600995a9a22cd607919c218b5ff8f8aab
MD5 ddcaccc1053fe8be505e390fa29f9087
BLAKE2b-256 20cc4bff49267c77e53cec2c66594b264d6850ae90f6fab1611e6b23fa8e0529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae27d1c2e983e976c880824b6906a0fd12e58562128268cabb6c52e25d8bb65f
MD5 014dce45651a448926ef15b7ae602864
BLAKE2b-256 9c16e028bd21f835cfc90e9957dd52f75bcd6d36ce03b05896fadcdfbe82cf26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 959e267ce6787b52bbb42a40b129dfe87944cdd0fe7ac16a1f9b94a27694c1dd
MD5 8bc5b39ed2b17b7a55fb65f938ef9be8
BLAKE2b-256 4afbd59938314c7d349a4c2ed73e02a71e0e86b65c0b7133400204fa83dc8ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 add161aedcc1f34cdd4216468247cfe04085e48033213740510c1b4440fd738d
MD5 8eba5f329dbe87ef750d1cc60ad6fd8c
BLAKE2b-256 6d066060291766b2114f891912fbdad22b11dcfee181b9c4271193c69be655d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d6d6658b4e9deef8682d4de560752fc1d402df491f22598a56449909293d502
MD5 c9faf23b53fb213ebf8872bb262d3206
BLAKE2b-256 4d0200ea62b7c912d7dd4c7d8e6d0b120774e9769400b01e1f7825c786f31178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c073a81e7529abc32d098a14d4e40383cfe46e0772f1ce60b6600d619eeb71cd
MD5 feff85350223e4871a110f2be5d2f070
BLAKE2b-256 cac605def01f317887d1315e80f4e217b4823f070cb4d99b13ea493695e7812f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eca5ca75208c0ed35b7d6ea21ad018b98baf852a33b3b4c1305ea41dae66d0d1
MD5 b0a2ca89b79c647e80105591367ef0e4
BLAKE2b-256 daf9b2c1f4dc2f31ecbe172abc13e56827e697ad8903d2df65d4f87fa8cc91a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-2.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 88e9245e75a4a4c572988f7d548dcc64a0bd03db42cce94dcdd7b2d874fc48a5
MD5 008a149857333dfcc17f167ef5cd5866
BLAKE2b-256 e33e5409d69e1266c7bc705f28685558fc43664d96cddf130b7a0c934785ca5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7eb974e047a67c7df81575189faed3490dd261c51ce85146d70c7bce23535b92
MD5 9d9d92b4a0dea9646309c740cbdf4a7d
BLAKE2b-256 dbaa4937064198aedb77ba709be62e3f0f1c2863cf5e69f3f4c174e0c33ebef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 116d079dcc14803b07a3494a3f259fa36e2b1ffd483e091b1a8939a1650ed49c
MD5 96214aac89092bc7457d86a4cefedde5
BLAKE2b-256 f490d810b97323f289ecf6c71031e73ce889cba1439a6af11153939ae8ba9edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 678a85471e5699acc8c6759d42098f8a3f5646488d270fb72da100b9a9975a53
MD5 2a7ef77eeb0201f33f2a46516cb7b7f9
BLAKE2b-256 50df5e290a10f2a7034684934519d893106a5e2996b60b54f7aaedefc17a1be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51044b63bb138d1af1d9707e243e466899f6c6b102156f03086ab57a7ee30f36
MD5 b77bd3f4db615085f00fbfc9e77a791b
BLAKE2b-256 4e75899bf9f3811d1f429197bb9209527eac3611e4a1be12f0bc2ef4674e5b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c79f1acb68eaca07f7795f77137b01716672ec494207a6c384a7322f8521d406
MD5 703c6771314971b2087d53ff027f973a
BLAKE2b-256 4e9cfa47e1a7b24a9acab72c450718a8f5921f4758bad7f4c7ddeb43261cb03a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c277bc16930ea141b61b60ec565c663e8e0bcec4ad15a62468783897e316551
MD5 ec28bd320e712d41a154889b51617f0c
BLAKE2b-256 7d067c10df18e3c47b61499db35892824361cad699971a96ffaad2f1e0b94a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 edd249942dc698492f9ad8137def672a174749a0359cd5f5d17106cf18c845fb
MD5 81a0047aa5dfd896b9151f5213c275fa
BLAKE2b-256 897b52d62023e201f6af7abc45c355a6b12999b042719741e9c36dedde2a272a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86a4c48603c99fe138c9bc34df942d8c232e1da2801453b2e841e11f96900db4
MD5 5096fffb66e8dc602a2ded0fba2651b6
BLAKE2b-256 bd445ce47b41f5c51b2deb41325261effb795c475bb80a527afe83f2c2d92cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2bb2ca18261aee3b48e2a1954a16e0a2b2343dd5db21dea4f9b2f1034168a5b6
MD5 c65102738fa1a6594caf13d4d7b38f1e
BLAKE2b-256 11f02a2244c745eba93549abdb2c543154ddde7fb112e7e523f8db1fbeb72bf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30abe6a4d809a16cf19e6979ef2af11284709d9842ed8174898fd4d96affc4ee
MD5 3466a4975743d738ba23dc5e24f2571f
BLAKE2b-256 9f7ca51f119488565d8dcab21368beb5a55d7a64683a011bc4ef49fdc46844f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bd2f5f498e5b33b04e46d46f7521154d6d49c26532ff2e8ad21cee25bd7bbd3
MD5 953072a32419e574a201f18f28f382e7
BLAKE2b-256 676d987f78b16ba5b204ea428644650fa337a2ef24a9df9ac5d9534deddc7181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf64187952ed957d2d8f1f96a7768d5539ce30000aa1978a5c095e23fe1b6337
MD5 1024a8bc2f738c7f0de69cccb1e32239
BLAKE2b-256 0acfb028f34612e9960b6878fe605430b9b5a6612590169aedf61d95c7427ba0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-2.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.1 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-2.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7ba24b0391869e85e5dbaeb717300811dfaa4b5151b172e51aee01463e82a98
MD5 a93e9a0ca5487ab19e2405b774043989
BLAKE2b-256 d9ac5105c7916047f02a6eddb1513b6524052f6a74c1b2ed98c5158df20cc624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b1e309bfe0be05e4ff951de7ede754bcf5da8d6f0085be1d08eb5e02182fe6b
MD5 65ae588ebc114b79e098997ed2aaa471
BLAKE2b-256 7f99547a3f0b4d3ad52d6c29734435c714d15cd58a031b6d047e3111965ac9c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52e85e69805191c0ddc897997be264ce8d5add2e2cf3d115b1ade71812d4c429
MD5 094db12a0e61b7c5c24cea7b772ae301
BLAKE2b-256 763a6749d9b3fbfec6f0865db425851cf8c56c4ad7ec6748fe8da0c78d488588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fdca61c7641b0d1de3200bf9f84c9412afdefda39ecf331dddbcd6481675ddca
MD5 7d7e07be4cb43357e84b154900dcc509
BLAKE2b-256 657512cd245843209e686a22db817f9dfb52eca86121d06cfb33bcea31f318af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10504aaca8fd212b7f9d819462fab321db107cb8d289725cf61b583cf3472fc4
MD5 7da1e77e1b4a7c753544e9ed76cb3ec4
BLAKE2b-256 cfee18c6822b30cde3347b355141560cb6bf4d205f3ec5ee6a23e11860494fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1556bdfac054a22216a6ddfd9f422124eee447c37a4846a7eef55279c18e775c
MD5 b111594483a4feb5111e080117c6ef4e
BLAKE2b-256 80b227b3e24a04306794f7a3f6610a085aef5c6ac6aae33a20c46f0a4d09c4fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b802a5368aa2c55c6202c2aad88226b7385daedb21b8e06c67c2b51e510dd4b
MD5 1ea9d2f5ffa1b4cc2e1212f6014bcf62
BLAKE2b-256 b53d8f3a428e0fc50b15475ce1130334eb7e90986f098ccf1ad3b0adb0f4c334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5132d979e1ca61f022109e76ca1ab24615770f729cbdf62c4caba8eb60bb93d
MD5 34831cada68be61b895a961b18b392a5
BLAKE2b-256 67f8b15eaf55a0bf10da638a495d84e77ef4c835e9210b0677ee9a791912cac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa7c97c189c7cc6d69d966462d0de7264a5f8575ff0e4e5413cc6e91585a56de
MD5 64a5081eb0fa836cea9d10e128779fef
BLAKE2b-256 65be4144ad16a0965d8f3563d7d571b4ca5ed0cfb73e7beb018c7a00be8fe6b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7e48b4ab87f0923b001bf2e9515086c8f886b68feba498366492704b4e440c0
MD5 21b8c653f0feeafe7ebd8fcdd7a1adca
BLAKE2b-256 d613c3b56cb5851e06847b6d4cbfdef6582cfff56ea346b4262bc27deac199e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c10ffb4a4d4a164a81a72f6a585507e94e747a33cb30fab4da9cada6163d7087
MD5 f73a6771b3dc38f0b5668c1e56d82f74
BLAKE2b-256 39d539d7bc50789985bb2f0d99bcf6677425cbe02e47caced1f2614c4707b744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f24c6c88c988937e5203a21697e32ac5f631493d0ab3aaaf42392f19d4a8a1e6
MD5 16a01afc509b1dcd15e958278d3ccc04
BLAKE2b-256 5cbc908a9c753d1b3c2c80a82b33c096644f1d69822ab07d175214cc18e7619f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7af997afc806031fadba906b80613ef22ab53117002f11de3bdf5fdd4084f045
MD5 7aa1b19f9c3c5941754671e2a988efc3
BLAKE2b-256 ba0c281ba855f010da243334ea2bda50a6d1023cabec245d31099b0e87ab46f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-2.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.1 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-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 651e3405c112fd79d4592b652ce1aae1a8970f9911b07267903fa9a57ed94a56
MD5 0ae4d2fab95ed8f6bf09c6f22ca205a4
BLAKE2b-256 83975ebd94b9766781f4d6b91999ae103da42aab835ec352f1b6501e9446c310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3f5a0cc7daad2fe391eebe479175f4a67912f6dfcdf645610385ec7b82dc306
MD5 5d3dd8d08b719388a31192e6d94c8e28
BLAKE2b-256 b2ff543127309b5991a281f0bb22f35572186964cb24d2bbf2cd9a519783d88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08f7df51310a4204437095d4528e113ddc8673c037a4d7a7cec53e18b5eaf7ea
MD5 5af72272945ba944d5d7d75065786c82
BLAKE2b-256 5ec16d9ef1a4ab6f19db0c03b5830001c30c178c33bcddda20bdccd83c66ed3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c5d3aa9137ef581a880ae4709b93b89f34d29ffab867367f90c8b50f9bc9cef
MD5 5ea8955d6ddf545eb28336046241d741
BLAKE2b-256 822f3c79ba08752eed8755a8e3f70c07420b50818af67317f1253bd375aee636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 731240a9c2bfd27ff7602c415f37ab38a84cca83f630beb7fcddd9c6153bd46b
MD5 df8fadb9b0597a3791e9f25d7b9d079f
BLAKE2b-256 a9c3fea6da42d6badee2789fb21912cab6e5d406a72d80524c941817a424d87a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8ca5637b3d9608e98f76a20221537ad12258b08ca72418df6b995662c32e9bc
MD5 9a4df58b99e04657527980e4b53e6079
BLAKE2b-256 7866b2fbee90077adf042612685015bbaf3070b1402145243581d0a2eab73adc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09fb842966824cf7ff3847c4a11646548f30e56bf3d70b4f10372e5523102dbf
MD5 120395c894c6cc862932ab070af32ecd
BLAKE2b-256 b4a494b0fead6c3dac3ee921a3bcfe1014c9fc1788a241ab3a35abb12d174d28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0dbcd1b3de706dcc65694488aa4df36a6086d5ea7fc481e1dc4fcfb6e9934fe
MD5 8b0037680cc3ef11337442504773ed16
BLAKE2b-256 77faeb41dd24b9887fff4359501b9bbdac4ec16933fcf1032558cc1f4f103e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e502859c33666e288d5817736973788068eb1c6fda922e957d271d3d3c13aff
MD5 46a97bbcf9c42daf00e7a77a99fd86b2
BLAKE2b-256 bfb14147b208998e3bfc08fa79d52933218b02522a3a8eaa532be40a13f27412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2e4ee9697935669e1d1152d2f7b4dc648c7259a5a12ae58fa21ea69fda5a389
MD5 d611802687d559b48005c5ae8f01f8c8
BLAKE2b-256 cca03e63b30b89d51d801930fa869620d559b1424767ad1975bdb45d14112001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de580c97931991f64ceae9d9442329577d02cf555403877335ecd2104100b6a7
MD5 5ac5952e8e7859e2dd2e016375448fef
BLAKE2b-256 4f98f99b16a8d9bdd8bc766d3ec2cfffc7c97127ae7c982c04fb7d114ed9245f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dc16212d15ca5a9d24154f0292d83b09a72f3ae0529bd65e16bcb37d1a83194
MD5 40e180283b525ede14f965c6d878b5c7
BLAKE2b-256 78e045ad45abbc4b9db2198dbb0a32f2f97c464c32540c2887b738bc99ca766a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5380b0c70c9a91b0619c59fef9880b771fbf8430bc8c55e9c4de5e6a8869a6d
MD5 2e37ae5edfa0cf81e9200cda4277142b
BLAKE2b-256 2a103e43fdb361005164f85cd7dc59ad5483f17a31ee8edd910aacf2cd236a63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdetoolkit-2.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.1 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-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4bcfd28e25b8878462a3d5b7d8e2633798d07a942eb296f73d5e13a2c433eb41
MD5 08a2787b29f6ebb7c8eaa7c07e625ba5
BLAKE2b-256 0bb738c862fa5d4e669770fe0e3293f85b21913f78db0748d61ff795bef4032f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59e3b09d32af9200747c6ae5c594384a79658a4e237ed410ff013ba47d620c14
MD5 be022f1f2b93b0bc3e97f76f62529a4a
BLAKE2b-256 c0e1cb9cd0d038ae1ef3fdc80c8a6f79a756e56261bf05248bd2fe57faadae72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11c1be98c487021e5c13d50ecc235b019aa45139b62f48990c3192e1db578ff5
MD5 dc131fab9e587e924705356230159e9e
BLAKE2b-256 c5fafc126fc5a5e345b8c250ca202bd3cf1affd0f42aabe2a5f55362496e671d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f206058f7187bd736ca463ad5950239856b985e389c70d3883e81652b91a9654
MD5 d5fadfc9481baab7ab4e4231f34bdea6
BLAKE2b-256 284203d9ecb2739a14c49aa4b4fc24091d97519757186955cac15edb6d968e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8e69c5424b2fd6d78abd63edf2189aa8a627cbd086eb8b50b1990fb82045f87
MD5 eb68cfa48f63cdd831147ddb8556da8c
BLAKE2b-256 523826146383b4b7c3446d1ef362ec8048c29d7e47d84c853c2ba125a16d11a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91f24cfc461dfc977e3d398a61d1adc03c8b61ac76952dd44ba76be1a85b1434
MD5 08decab180f663038bccb1e33d43da26
BLAKE2b-256 d53b19b5e4ac028da0c068bc257c3be7402276bc86ed9989d7cc24206ef5780d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f6043ac2974c8c94205499749e4984b0b666020b4a110e902df43eab5ce8b40
MD5 cd19130bbe610abd5ac4e0fd3cc49fa1
BLAKE2b-256 074ddfb47635e2f021baf263e5210eb8244c55c04dc604900af0b8924de55a0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ddb9190fe02d31148a462366b6e09f25c3803412a0f9864012ae747bede3a83
MD5 6d583ea86cf94f484e8bf2ee1a33d43b
BLAKE2b-256 c7547e6d742aaf2420d9d5e821c06749216296786af9b5cfbe9af52409e78972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fd0417964ba3a72c39c4c9721d3345ad54bbd2bcf81a5db00c453e40cd1d9c6
MD5 abf635ae9bfa12af7a54bf974cfc95a6
BLAKE2b-256 8abfbdd45b97df9124d2e52480c6e0e54d69b7b3a0dbcad37ef678161f681ca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dfd229b319e7f2e4d08a15c77c7207eda0f092c5e39c49b0bb4cd2209f4daa5c
MD5 819cf3180854abcbac2d7ca61ae99483
BLAKE2b-256 fc2006501071b94e532687664140d8e2aae2c3895f629992f6d854980c3aca67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdetoolkit-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8f706daa37731b37b08ad3923e1744d4d6459678a0cabe97f0495f6636460d4
MD5 5f4dd42b69c0ff8e9a454b95187d4069
BLAKE2b-256 8109436de733ad888211909ed304b017540a5c7fe2679c991f7d3d9459a55625

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.0.0 This release

65 files

1.7.1

65 files

1.7.0

65 files

1.6.4

65 files

1.6.3

65 files

1.6.2

65 files

1.6.1

65 files

1.6.0

65 files

1.5.3

75 files

1.5.2

75 files

1.5.1

75 files

1.5.0

76 files

1.4.3

66 files

1.4.2

66 files

1.4.1

66 files

1.4.0

64 files

1.3.4

67 files

1.3.3

67 files

1.3.2

67 files

1.3.1

87 files

1.3.0

87 files

1.2.0

87 files

1.1.1

77 files

1.1.0

75 files

1.0.4

77 files

1.0.3

77 files

1.0.2

77 files

1.0.1

2 files

1.0.0

2 files

0.9.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page