Skip to main content

A high-performance Python library for the Ramer-Douglass-Peucker algorithm implemented in Rust

Project description

Ramer-Douglas-Peucker Algorithm

This repository contains a high-performance Python library, implemented in Rust, for the Ramer-Douglas-Peucker algorithm.

The Ramer–Douglas–Peucker algorithm is an algorithm that decimates a curve composed of line segments to a similar curve with fewer points [1].

Installation

pip install rdp2

Usage

Works with lists, tuples, numpy ndarrays and any mixture of the three types, e.g. list[tuple(float, float)].

List

from rdp2 import rdp

rdp([[1, 1], [2, 2], [3, 3], [4, 4]], 1.0)
# result: [[1, 1], [4, 4]]

Tuple

from rdp2 import rdp

rdp(((1, 1), (2, 2), (3, 3), (4, 4)), 1.0)
# result: [[1, 1], [4, 4]]

Numpy ndarray

import numpy as np
from rdp2 import rdp

rdp(np.array([1, 1, 2, 2, 3, 3, 4, 4]).reshape(4, 2), 0.5)
# result: array([[1, 1], [4, 4]])

Examples

Example Polygon with rdp Example line with rdp

Acknowledgment

This project is heavily inspired by the work of Fabian Hirschmann. He originally published the first rdp package, which I came across when looking for an implementation of the RDP algorithm.

The bench.py script provides a runtime comparison between Hirschmann's rdp and this repos rdp2.

Runtime comparison between rdp and rdp2

License

This project is licensed under the GPLv3 License.

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

rdp2-1.2.1.tar.gz (148.9 kB view details)

Uploaded Source

Built Distributions

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

rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (445.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (476.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (513.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (413.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (243.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (259.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (375.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (256.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rdp2-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (441.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp314-cp314t-musllinux_1_2_i686.whl (471.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rdp2-1.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (508.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (408.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (255.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rdp2-1.2.1-cp314-cp314-win_amd64.whl (100.2 kB view details)

Uploaded CPython 3.14Windows x86-64

rdp2-1.2.1-cp314-cp314-win32.whl (95.4 kB view details)

Uploaded CPython 3.14Windows x86

rdp2-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (441.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp314-cp314-musllinux_1_2_i686.whl (472.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rdp2-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (509.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (408.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rdp2-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (255.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rdp2-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (252.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rdp2-1.2.1-cp314-cp314-macosx_11_0_arm64.whl (205.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rdp2-1.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (441.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp313-cp313t-musllinux_1_2_i686.whl (471.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rdp2-1.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (509.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (408.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (255.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rdp2-1.2.1-cp313-cp313-win_amd64.whl (100.3 kB view details)

Uploaded CPython 3.13Windows x86-64

rdp2-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (442.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp313-cp313-musllinux_1_2_i686.whl (472.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rdp2-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (510.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (409.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rdp2-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (256.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (240.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rdp2-1.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (252.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rdp2-1.2.1-cp313-cp313-macosx_11_0_arm64.whl (206.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rdp2-1.2.1-cp312-cp312-win_amd64.whl (100.2 kB view details)

Uploaded CPython 3.12Windows x86-64

rdp2-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (441.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp312-cp312-musllinux_1_2_i686.whl (472.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rdp2-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (509.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (408.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (239.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rdp2-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (256.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (239.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rdp2-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (252.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rdp2-1.2.1-cp312-cp312-macosx_11_0_arm64.whl (206.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rdp2-1.2.1-cp311-cp311-win_amd64.whl (102.0 kB view details)

Uploaded CPython 3.11Windows x86-64

rdp2-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (444.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp311-cp311-musllinux_1_2_i686.whl (475.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rdp2-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (512.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (411.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rdp2-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (258.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (375.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (242.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rdp2-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (255.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rdp2-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (208.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rdp2-1.2.1-cp310-cp310-win_amd64.whl (102.0 kB view details)

Uploaded CPython 3.10Windows x86-64

rdp2-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (444.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp310-cp310-musllinux_1_2_i686.whl (475.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rdp2-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (512.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (411.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rdp2-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (258.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (242.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rdp2-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (255.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rdp2-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (444.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp39-cp39-musllinux_1_2_i686.whl (475.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rdp2-1.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (512.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (412.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rdp2-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (258.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (375.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (242.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rdp2-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (255.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rdp2-1.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (444.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp38-cp38-musllinux_1_2_i686.whl (474.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rdp2-1.2.1-cp38-cp38-musllinux_1_2_armv7l.whl (512.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (412.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rdp2-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (258.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (242.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

rdp2-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (255.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

rdp2-1.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl (444.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

rdp2-1.2.1-cp37-cp37m-musllinux_1_2_i686.whl (474.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

rdp2-1.2.1-cp37-cp37m-musllinux_1_2_armv7l.whl (512.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

rdp2-1.2.1-cp37-cp37m-musllinux_1_2_aarch64.whl (412.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

rdp2-1.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (258.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

rdp2-1.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

rdp2-1.2.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (242.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

rdp2-1.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

Details for the file rdp2-1.2.1.tar.gz.

File metadata

  • Download URL: rdp2-1.2.1.tar.gz
  • Upload date:
  • Size: 148.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rdp2-1.2.1.tar.gz
Algorithm Hash digest
SHA256 caf15fc073e3b008b8ac9416881f9580298edab43b579544eff0a8f4a9ad2a60
MD5 21daddb8e9c3f05778098aacb333e1f4
BLAKE2b-256 699d02cc23e850971c2eeda38597a1fa5bb49fe1a881efdcb9348d9bcd5d6029

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45454f8bde08988a7e8ea9165c46e1b0dacf293ea9641fba87ba214b43cbcdc7
MD5 92567efc648ed347c7fd695dca40ee99
BLAKE2b-256 df1f4f47f7997ed51594cc411f69f1930156ca80faa1009146f3e0e1f066edab

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34355ac752e3afdab56f82fa1ef7da7550404bc12658b157eab959666a5ca528
MD5 00dbdb784c2471fa6fbcb97738a61297
BLAKE2b-256 d53ae1a2a154923b83ad79c1553efcdbfa0b9f0aeae6413a6fc0850c565932e0

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ea79e8ee9eddaccb8a6df388f5d489a2a011c28ba2a4fe686296407aef19078
MD5 353be9d63534110145adc8e73863cbde
BLAKE2b-256 b33976fe834980e576d3494a3c5391e75ecec424d880b00810d7e22ab1e65dea

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6cb63e803b0b77ca8a3628660ab11fcc7c75b5e0a4b60d01ffa68a705bba0f8
MD5 cd267f48ca6e848f44fd23868d45362d
BLAKE2b-256 01a18f408224ecac3dc87de6217f2c787b050f07d2085696da722e917674697e

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 808eb6bc6158fbafa3b340c1022e505f641406452ff6efc1d714fd5cb2d6e202
MD5 5f89dd0bb80cca3c68ac53cd44220949
BLAKE2b-256 fd9f240eac721aea1d016061a567b6f6a839b9626ee5a9761d28da72334ff99d

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da161c393e92eb5a0ffdf66d013fd65032ab1760b69c36a4c92c1a8db40291e8
MD5 98293953d6b753b9ca689195ff23687e
BLAKE2b-256 02c376629aacee8606ed3eb1d174a5decb1bbfc55223d2200bce4087fb751450

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e7e6a6873c421c45ab14db73eb2b2d8ba09401eb2a52be95b418f451643a3fe
MD5 0cd1a5a753e42fef119727208a6acbc4
BLAKE2b-256 e03431b96f00d8b50542d46dec9ee3823cc1f7e60be6afc2c47bbde0ddb06a51

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a5879580a92d100643e2b8de42401d2c612b5b6cfa5e5c1118d9021d3b460bc
MD5 a6e1b90776ef28aa298f37b54f6524f2
BLAKE2b-256 5078ef68ceeeb1caccff5292a13ad65e15b18a2ee4a6ef449003937f0e11de85

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e6fbcb9f11e6a54aacb823b83bdba1d7969de75cd32ba40df7576ac96196dc1
MD5 20e9b283a8e15328a57f0b4f39f20e15
BLAKE2b-256 7a56057091a13ca941169982b1d484381eef8777bd5fa5c50fdd533d464271d9

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2e89cd5f4b4fd83412912fd524914bc52abadccf6f36afeeab4de56882dda9a
MD5 2815226f6ffbf1cb5c8cd6a44661408b
BLAKE2b-256 5bd443be1e56de346517be8d85b112422c6ca1322f40736927f953bf0c71ef54

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8f2e66548d9e7fa26f8ba006a887e4acf9c7f23956b073447d1fe837db7c6de
MD5 e0ae11c8902523ae035263c78e4966aa
BLAKE2b-256 ed5352742098c465b5505bfeb996e1b3b98d745a1f7b775215cecc5e8d9170b6

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41d03b0eb8f985da5945b648366cb9e781867db892982e4ace8864b7a872b1d3
MD5 b686c8e67b8f64400810ff752e773ad4
BLAKE2b-256 9269ec0db8b266f164878b5331c282a5aab780dd41d89f0e1cfd613524deaaee

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c36f9310bc4688cfd130f5b70c39d0f93a44d608c37bb1424ec34f166245d6db
MD5 9622ef2fb5babecd435464bff342d8ec
BLAKE2b-256 aed93a2e0624f13046f3228be1b1a8994b96d1ea071ab1d7f46d0e2641cd3737

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1bee337f97f2590164680558aa6676d9d44071e4610fdce6e370f3e9b06fb4a
MD5 a7e7a0e89cdafa890d3cfa8559f2877c
BLAKE2b-256 99aa46c7f14893e3dcce1e1ed13d28138982266259e17042e599101c375d77dc

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a87b2aa727528ef0458fad410bfce4429daf01595e5486f097328de954c1914
MD5 89d5895ab490e02f5632ab681c0fe73f
BLAKE2b-256 2941fe68a522b1651b12f2e885e2c5b96b69cdbd9690ce31295995963fa716a0

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d693dd2fd53f736c0e8026aed5c4f9ba26f8e354cc5ca2ac9ab7e554b2c14bc3
MD5 26485135acb45543092ec48107b7bc22
BLAKE2b-256 9413050cf95ae2d021ce2b0d345760b5348c71611255a6ec05ea0c9879790189

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56d66b881a25e4a778048c098135dd0b6138d7e7d4ac70bd61affbb67d88eeeb
MD5 3071ff036a00dd0256068a6ad5c9bd46
BLAKE2b-256 58941f778aabdb0f3da1f67e113f6670c6da12f573f1bd66699b291018a6c7d6

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7a526c00a3737bdd8e985d4ea232feb8b73e046c62d5b2b04e3537f07781815
MD5 cafb24ea69448ee17b7cc0778333ede7
BLAKE2b-256 8db7234d3da9e5ebaba82e62bce4e4788260b20a6dafbd844bfaaf775eb47f6e

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rdp2-1.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 100.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0baacf3033933d8b73cbf4b7377a2a51fa0704724c0614e2e6c9587554ea6818
MD5 30faba64f659b0ca04db372a65aa1811
BLAKE2b-256 2a1d4cb1f890c65053ae69a7d9595be499e6ba866a771dc9eaad70673f61b95a

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: rdp2-1.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 95.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0dab2eae3f6d385041f52fcc9368dc0535a206b8b6ae81146cd555743d72c8b4
MD5 dbaa2dc1baca55d383783176a498d818
BLAKE2b-256 a84b0bee70bfefb58a804ff01abcbfbdd41a230e2e0b8976fa56882b0112b801

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ab8c6f1a80dd479b8759e2eefded33b8a69037a74272c960ab99fce06df8d2a
MD5 4009c1dbd249b1a89ce72fe8342eadc5
BLAKE2b-256 4a14fdc59b8e4d2c8f3b1eb32d23c09da5b69d691930da492bae6b559a1e374e

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e33e69de0bc2b356df2dff749a03d024b9fa2b456d38990d27ce048033e71d8
MD5 c9b701580faf54230da45536abda72dc
BLAKE2b-256 11628e9ced602b0ccf1b08a71b74def85b2d807d4150f3e9a432b0767147ed3e

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c65d3818ba0529116ddc173048056a8d49f75f05c545a889fbb5fbac26879af
MD5 0c9399d46270bd72d948254716987807
BLAKE2b-256 f646047d089737e6b3a61f271c4085c4de9c8e44c3712962bb8cd03c0f41f24e

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4024757462b8cea2bd3628b1aec3d2875cb3b1d69299df93ba45df281c8d3f08
MD5 6305acaa7289db163685d60152884bc6
BLAKE2b-256 44c9667ac4be818593be3307dbfad004f8782a592ae92f99e2b9af3e71e1e7a5

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65c5d59cff869a22a4bf83239037a0d6aadad43e00036ff4afdccc5a2d189bb3
MD5 bcc1bc51bc872f60846da398f422f1d5
BLAKE2b-256 268c2e0ef7e0af545414ae3fe1b9d612d1da427a01febf60e50bd17666c0804f

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26d93fb55292c9180ae6163b5781991c92844c929c815e60cc05cbdd5914e0cc
MD5 da2caac76575c4b1c767e150b7310c63
BLAKE2b-256 8b1b85ce54eb6a8c41b5be22795b185ea9322f5045b91d99f746bec29d6ea92b

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e561652a2055f02b6d7b4492cc8f4284b8a9f2700b2bb80b5b5f17412d5cded4
MD5 f24fdeefc9548484629e63615a7f3ab0
BLAKE2b-256 27611f028e46af37c02064c071986b0a9cc71059e5623ea85a70d677383287f0

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9097b1e1f5eb79b58fa30001d33506c3e00824ebc90a0013fd1bee9025009f6
MD5 5200ac915edb27d209faf57ecc629da0
BLAKE2b-256 b68c49d2ee76fefb411937e04be873c18511e56d32c83cd10ac02c9d034a4db4

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d12f94130045bff3cab9c513eb3c59e0628a5bd46783be3cbf49782a4277030b
MD5 7fdce7840a6f3fd3407b25faa050c2f5
BLAKE2b-256 e8191a70bedf7fc8f59026a79577cc4e1f41aa7fc3e960f56c2f9fc6c12fd939

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 575e102b368153cb4551a31f06a8f1083be5fca1c9690a424f84ba26f3d734c3
MD5 9fae120fd3f4e0e529487fa13c230499
BLAKE2b-256 421c7018c87f2676d96a9f97df0f9c1bd5d8f0ccd257cc9fbf51f9505c3fc8c7

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e509c43ff3446906ebaa76212cde0e50fd5141f20bee67dcf905cb36733ed28d
MD5 27220b2d3fc45ea6b92f77f5fd508f9e
BLAKE2b-256 098fde02dff591a9839245b5865dc8f6862ea0b58a20446c1de3f6f51def85aa

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5e91a82556217a26b9694b4b023e5a1c9f5443e4c67afee8b67079b39ef2c3c
MD5 5553cc07bdc2e7ecd1210057ba1b8de1
BLAKE2b-256 e78bbb3e3e3656ed795895524c8d5deb70e52164446d85c8326eb3c78c906a27

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 443ee2144ef56f26eee5ab21a412981ba4bb23271ca2864b1c1b08045d404648
MD5 3308ea788843ef58a07f67972e6701a6
BLAKE2b-256 fcbb825022e5b86f4b9dc0c59e870176c75a8dceee9f606403af78de60089c08

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4291bf43015162f8812552a5458ee0340b0d08e575aa25c29bf7fc0569860904
MD5 7260d8fb13eb15c6e7f084451951ce7d
BLAKE2b-256 0cdc7a255cf4ec7c352c034d46f1bcb21c2fab02e9b5698c62d3d2eb5430f19d

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb22483396f213ce1de50b64a591d347da7cb74779b6aca7c456665e596206dd
MD5 6ba37f825c586b536d3c4a2294e2b69a
BLAKE2b-256 a89ad4aca17f57852e1c0657ae7fcbb55424734386260b36d126f73d0635eee0

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bb358d6ee66d7aeec122c8db5890df256d1d155b58ebae4a65cbee75f7363ca
MD5 8eb4dec691e4ebb373c25763f4a1ae20
BLAKE2b-256 972a7bef0fbeb4dc5db1b1842843b6d57af084a2ac018123120a1b45c7ab5953

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d8e0c57108b8eac71646910d500706b209076d215e47c69c2df843781a2b48b
MD5 1ace663091e89b30e7dcff9688f59651
BLAKE2b-256 a4391aadbc8adcb1f284ba8a4cec5426d7fa358562c04b39f75a9e6e2c788163

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8ee13c1711a38242b83cfd6bbc57487c8309d676ef72699287c55e3172f35c3
MD5 3ce2e7e2fe5e98bd87f46671654315f0
BLAKE2b-256 d20f57a3393da2a7027048a0363f6434d20c0dde4ccf4a6e14b4e42e5e905b15

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65289b6fd75bc719f4f594b26839730ee81a1b5225134f906a4f74df2f21d840
MD5 c7632537d706bc9a1cd533d460931305
BLAKE2b-256 fd4d4ba81dc22f734eb9c33eb51c292cc74de996cd0f5a66531ddfeeb9241297

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rdp2-1.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 100.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d1972a3c19ad1261e7de30710d994bbffbe0e11df3a60b67b9abe1e6b9db00a
MD5 1e5d5bee526428016a8e073e649bb222
BLAKE2b-256 d76e8a374923b9551f274b48b770dca2740bb70517b392bdb2270689ad8ace8a

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df37abe3ecb6aeae7ba75ef559dc0e2ade17a38abbcacad6cc4448f0f4898be7
MD5 14a93fe6669faecc84be0a4ea328f23c
BLAKE2b-256 fdc73d7f110419fe2e088d326151ced8d773024c353b7e14ff330f3d4db9edd6

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b977e5fd21dcb5838d2dc747d453728b48dde8bfecb0763472b4cdd2a8e2a92
MD5 c71ef50a5b33bf2fc3f3c73d1cbcb1b4
BLAKE2b-256 1041a8cf350e07207c179627e305c9917eadb698a6547daef538a83ed577bfa7

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a4214492d958cf7fb343906f073ddc96c121f9fc16381cdc2e8d259280d4956
MD5 0cc12bfad14eb30a5b971c3f4f9a4627
BLAKE2b-256 ed307c2d8091d01083a7508b03640269969ff59275e93051bd33dc55a88a63bf

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68d23cf4e01a4517c88774b91c93cfce723d0003298976a801657a7199c07e37
MD5 33d3731902a71534f297965e5f731752
BLAKE2b-256 6c7d93fbb5e7d506343b77fbbd7672518c197e2f74d61f9290d1d892420ea8f3

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb952dd4015454d007ef16b39616ad4c096afb07aa151b16a51bdbb474e7eb5a
MD5 776d3e1880758d008b1f2642b44a7d72
BLAKE2b-256 bdc2ed737727197593da55f9f62227dfbace695ec81dd42fc227bd2f1e3a7202

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62df5bd7b13e15dc41500a1caaef67639863dfc269c3563bcf64e8acbea12478
MD5 99aab4fcb33f6cab655f17dded1e91e9
BLAKE2b-256 8c8aa001278e470c76b2c3e840f85adc192622f7f388d097e3fa02f4285e1783

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 52e02bf428dee6b47910cece68fc564208d17700da63cdb550d46e2e43f0ba65
MD5 cf5e7f55a0f57e7c79b92e82b9111fa8
BLAKE2b-256 420fe26ecda18fbbd3c4cc98259ff9827cfa190141bf7b06476924ff3654c337

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4bacb354cc59c72ddb420e52497c948fe100752e1af287a90c361d68469df84c
MD5 426dbc41ede80a17884a227eeef0b766
BLAKE2b-256 7d99429b0a800b1981aae7bf755f196d3e647280e3d08af4bff1579041817f12

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7d9241595e7a2e0abe59c0c4b4f3fd90910702726ab78944c88e1795ecaea0b
MD5 7c1099a6be142caa6e2399bf1d8f8ac2
BLAKE2b-256 80a020420b42e340afcc9d801207f876fc02e29df3377278e14f648eaecfaf6b

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1aa53fa0240ed0780c9ae0c3eca53ff38223f6453de492221eaf841ec7f9a3a
MD5 d4c53114651cff0adfdae501090944e0
BLAKE2b-256 51de9384be3816bb0eaad1ebc5cb768a45484dec7ca9373a058a6f85f00a7ffb

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfc83140e4996bab3d73fc77c6b5d51f05fe38f7ebb7751ee4b31bda469b89e3
MD5 9385a49deb2a8d1277eed0cb083c76bf
BLAKE2b-256 d9505dcad10d781ffabf6002c4cf4aae33764dd70df7cc52f6405dcf29d3fe6b

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rdp2-1.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 100.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c6933238ca9a85c0b150bc6efcc36c15a5342b50b2deadf789c97daabfaa52d3
MD5 6d661980fd2b6eba7ac3bf1db782c22b
BLAKE2b-256 1eeabf4299416cd5cba12fca3c54e7940a77b9e6524fc2b872095b2c80b843ab

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57b4b8d50093e6d499abb4ea35ca903228375d0ec8d212c97096fd95b51b5cde
MD5 a5901cd62361d9e666bacb77031e8f3c
BLAKE2b-256 f36a38a9b621a9ee904fcb5e3382c68952438b0e3d418efedd16ea1a2ba26490

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01f8aedd2b7047e0a355e9c0ee6038185b6c027e38ccd840edf9277b73cea1e3
MD5 763bd8157ab88740b6fdc8ad4df3904d
BLAKE2b-256 77b921f282858ea5c2d7337b8592768ec1c289fcad7317536aadb42fa6d3a39a

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b30bd8a145752fe0cb421ac5d1ed36286ee775dd89440276fc86d76ac97acd3d
MD5 551d2972df8be2ed19c2f1527959122e
BLAKE2b-256 8b7564cd51e638ba47f31a69e8063080e3291e27484386297e6998613f39ff5d

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ead70d717b28614f70e08e3d13542179ea6451a72663f5f00e26dfedae696c7a
MD5 3e706f38556605cd14d97d7409cfe2f8
BLAKE2b-256 2941fe9cbe0488b182022a59ef920c686c047efe0b4621dec375e769d8e85137

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 488242f3444167b871bfda22167520cbc8148bbfe27155098f2ebbb494b74c10
MD5 51f28e9cf8d3cd3655c5223d834c13c7
BLAKE2b-256 a61bb44b409318dcddda3655f50067f43589d7b43b02026019a4762051919c39

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 851073e3588f78de78a621f52abc728f6622b1367a199bc9f7d675a14ef76070
MD5 b01ed5a1f00fa9d3156b25b4cf0f39b3
BLAKE2b-256 b654b63d1c88ed68e62be66b8a76434b7b6597de836b4d1f96716ea40864b294

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79ce7b007876c998a5d43af5c6bf5124cb07a42b50645a46c8d1fb6ab0ddc7bd
MD5 754b4a0f78b4d8003dd76f1fe3fe35a8
BLAKE2b-256 373d27f0b47341922b83a27906c194dfb4ed95f40961db5bf51d2eae1908bbb6

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 519ddd72191205bdbdced02a3375a6d1ad0604bcada44340972a7eb37cdbd3d9
MD5 1be6dae4d55f2e8f89914785f894be22
BLAKE2b-256 c9b6a6cdf84bc23131cc8e96854344ca4ce27629429a9058afbe0e4be2176e75

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6db50d5870631c924e113667b2ce8656626e8be8bd7204878b1806b136819c34
MD5 2b0ee1820575fd3d3d95244481b61a41
BLAKE2b-256 60221c633995f7c9eb62c3c89014b6fd40fdbad1c5106da6cf54ae0262e8a6b5

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1106a8169c5a2d63ce383ea5c01e6b5e3e2b15978a45e4c84d3598472a90a8d5
MD5 4379c3d10c412ca5a7eeb8d4f7f58a3c
BLAKE2b-256 0c8d40bfac83b0c164136a513ebb97ce146ef01b77e4e9ebf10d354dd166ab89

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bef55352d1f03b19f430a3b23ee24d4907bff7f032a45099ceb172f31bf5b1d
MD5 28a8be9c5a388693227dfd33dee3d898
BLAKE2b-256 60113918f939f423436007c6bf5ffcd5364e2c04e79221bdc8166934aa67d7be

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rdp2-1.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 102.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 19ee6e54f1e624507e265a0947f3d2716b1bf1e88ce57915f49cfc889e2a14dd
MD5 b1841e21e1119264e1b06d416fbce2ea
BLAKE2b-256 d120a73a6bbcd396ae8e1aa41ead5ee0fd6387dbeed2424bbef7c5099cba5c5a

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73a10c31082789f938df41b5eb044f1e32b26ac6c5c8c376980692cc12590d84
MD5 e4eaa6a7a70b1d0e06d3e451d553af8e
BLAKE2b-256 6ecfa9c90eb86c7cb9156597c1e72384ed94479a01d0c21370dfb02a45410ce7

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 130ebe4f434e91a41358a23793f9ab68617c4f7f311c991f7beca9ff2f01542f
MD5 d39db68077c225d3d8beeba2a1777df3
BLAKE2b-256 2762a5283afff49b976f600f3cef2d189b25646d2691455009b939004f1dd83f

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d71d170b513d079724fe9759bcbb91859f9de83f21bdd54e64201dea4cde41d2
MD5 f55dee663dce2f78ef0b67ab39ecc718
BLAKE2b-256 438e51f63c396f55cf09bb915de270097477a9a13371766a5c72c5af7a5265ee

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd6b818b48f3989ed2dcc526bfbec00775599f6b27259179216cf2ea8a754d44
MD5 2d21575e58ad6a400677bd929893a60d
BLAKE2b-256 d695c44aa748a7385a0cedbe50742cc2a67bf6fab45a12bf35eb7516d9b5d949

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2c0a4381976d37b3b7634fcc9d0a35b08eda75643b1824b747a4cffb30a2ab9
MD5 34c7bfdd5bee98064452bbd86bebfb37
BLAKE2b-256 178bb2894e82b396580df2c6420002a954f942162df5988796c29231f7e9dfe3

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34fb44198e7900b93d2d517cbb1f60e3233f45d1adfbef3265b80b6338c7be10
MD5 cd4539fa3fc3869506c0953520e4a096
BLAKE2b-256 ac7f36405a58af8bac0b131161e7623cd499698b48b00ae7079a16e23cc5a190

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7786314e05af33f118cd3d869ca83d572dba36c1214ab42f4f1db45ed5a2ded
MD5 9d7521d9d811c509410fd0496b9a7443
BLAKE2b-256 bd856bef52cbf3b92cb839440b8535e6d1bea056763ed1533b76713531580204

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c44cb1c0573e5ca02faeace170ba73d064e8a2bd1536b3f7596fc8019c5ef63
MD5 15a4942c6f9465039450aeb572b2b1f2
BLAKE2b-256 95b4c9dff137704219615213d50e3f20b86c3fb928947769007c00554e006f63

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab37e67afe49f809293a233ca5ca93282388429e648e94814eb52725be59a454
MD5 bed8b529c6702e413fb8c1473ad3680d
BLAKE2b-256 af99977516f68aca0a1f5103dced0ae4a605e4ce433b246435c66d253721abe7

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebbb7464c5e50c48453e7bfb91bc88276d8a7aec020fddf8dcaf5135ebbc4490
MD5 5a134637dc38707c044c667ed8b9d3d6
BLAKE2b-256 218bc2a1e508e3385d34e3a30eac500539e29882f5511f188a504275bc6fd1ee

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83e08800b1e0afeb6dce6f8ef62f9cf4b161eee8b265d45ff298d5cdef71583d
MD5 27c5ae7599702e6be6962e48960d031c
BLAKE2b-256 35833ccea7f2999f4d71d6ef6cacd76a2f02f53654b78412c37f71d4a00bb557

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rdp2-1.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 102.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b2aa99e6bcea856e3f8c8f62ad975bd0dcc0e2edc08cbf320a89ec126830b0e
MD5 fb2fc537277907fccbe3833cbaca80ca
BLAKE2b-256 a810a57a90f2c205453d3da296e4154b4b9b1df7095a8477e729dcbd01dbb0e3

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fba3d1387c3850cfa7f44ffda1605d42306d597c42106fe09bef2711032f722
MD5 37d4db9d16b6431404abd6abbd6a5e44
BLAKE2b-256 d2a21987e0b73c93afe2a557a3327592706f284001e2f9abaaf69fe38182bae6

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f90f992092f08683df2d93fb06c0226325010bf37e1bb53c4f9c45ef0131646f
MD5 95302a54028a623f8cf33f7cc8738c77
BLAKE2b-256 dc26d458f3f5ec43e4e00e12413aa3d412299e5e1832ffcf040593253891e5ff

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9d436c98588372e14bd4403eff16b9e999be837efd3ef13003a4ddc1bea5432
MD5 71309cc4c3374546bfae74a41682c9ae
BLAKE2b-256 cf8dba8716a8adc0ba91da606418439a3fc389ac8f546165f1775304335d377e

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c76959e370aba5854d6b2676ec5401da4b83362585ae0fdbcad3c494d79311ac
MD5 35bcbedd6cfa29aef63e549869b2f26c
BLAKE2b-256 bda193bfba0e76d961468f7fc088f0a20b8aa45f343a03128333d2c3e86b8798

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55c2c4a12ffed68ba04baca661318b1062c049057be7fb36f842ce1d8f385b9d
MD5 10768ea013483f679fe9cffba3efc87c
BLAKE2b-256 4edac9ab5698e72ae73715f9e1dfeded631e0338a94959b8fde2cc4dd0cca5b3

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac1553b9e0565260f28069a210f6b4e1400fe360071607dd2c2a68a2827c3c29
MD5 dd5a79c726e4645812f3e3f2e63e0aa6
BLAKE2b-256 5479a0ddb5976a3825118af39e152b01c6610637e2a849c9e49d8e2ba7fc0171

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6c2cf6f263ca33d6aaa59bcfb983de90241acd2c4a31fe0e313a42096be2db5
MD5 ee98ce2319b9cf6e299033c7d0cb6e04
BLAKE2b-256 31f38d1cf9fd820f116fe6f0d3f0ff8b5cf48937d37ca0a71c9e5c4420f4c55b

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cb40e1832db95caef33bfed7033279aad0f4869f2278af6b50642a98dc46f1c
MD5 01b166de5565a14993497df3ad7d0a77
BLAKE2b-256 9cfc10b74e00e0c2627c25fde28f56ebfa3207061ac9b9a2be996ebf53ed8cf7

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d434268a53edd006a47418d2a2a63dbdb32076241f12405f623f09aa3f6c11cc
MD5 d4612a4f7fbdef2d73f545acb635b9fc
BLAKE2b-256 811aba3b5c49cd68656637356179e9bab2dbebf3fa670ee3fb2749238aed0492

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1966dc357d4b823f687f07d66827e2639cf1e02d485e66ce50f9b4e742d8bd65
MD5 cfb1333aa18b5227044054e3a04f4e66
BLAKE2b-256 043f095c205911fd26f06d96f332a6eea2609ebffc8cfef9c33539a73f5712e9

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26b62ce3b7f685f03384e9170c7881baa5f3a9c62dd27ad06d7b9dfafe89c30f
MD5 79f6b5b5141ff622447d6236eed55746
BLAKE2b-256 fe5793bcfa977ee47799bec005c1c8d00dc65ab6eee076b31d0535e2581c1b2e

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ecc5d8eb5f3c8a94404f116fb9c6bb3199ab6ddd20cb07970a1e137e022f3d24
MD5 c870c16877cfcd581eeb0ced8850e139
BLAKE2b-256 e6f18bc6ece66b85d3f3bc74358b19a2de15f83cc9e51096126f3e2e7c3ea9e3

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 379b0ddac85a94c29321badbebb44b5a0d92d1fafdb542b17ac41bfe31560c01
MD5 9efa16f9df812c7c8ed9ed32b2380d16
BLAKE2b-256 47576d9d1ba36f4508562395876953fc669a45a4722bf3e137555625b912495e

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b7f27ab4a40837eef8699d3495883230b25217d71467ebde47c74f5a7fc8667
MD5 958293f17c16d7675e37992cd11cb1b3
BLAKE2b-256 1249833e5da82f3b454685bb999b8b16cc435266e174545eecd86279f640b484

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5833dbc50f90298f272b0691f0506de3a878403ddf25619c27599288b9f1e583
MD5 240f26b319b8e11e4518d81b614ea399
BLAKE2b-256 c74ea4cf20860bc6c6666ed249046d3272d163fa985531819d317aec03087f48

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55513ccdc984207f7998c0affe91df56fc71b09da8c8651238d7d08f43a52552
MD5 23ccc8d14e10356720bb6273b5849938
BLAKE2b-256 143db93691ee74850853e42efb38d83fc5a3924030bf121e2d3947966a9e4a03

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecd6d6d065d3f9538195e1728db622b3f8367089f058d0482ea92ae02e7e652a
MD5 153b529e0ee589a57012917ae7be0518
BLAKE2b-256 cafdd83b12d0c5a28bdc6e7c2a58766745a68bcbad75e4ac4138e9878bc44bf4

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 061ca2d5c41297d1e3da9b91202c3da59b651c3f93d52d3a73e6f719a1dbc9cc
MD5 e21c747efa05c8bca06e0930eb758597
BLAKE2b-256 cb0de9fdf3df532208ae82e752797209a7b3ee9f9e9fa34dc54e38e2bf2e56a3

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 946f5df4eb794e3c822b6ddbb420c47da69b1fd41918b81874c5c4a6381f3347
MD5 580b7a73136a4a2cdc9d488473be4b09
BLAKE2b-256 cbd9ca3c5b827fc9521b3afbdd2bf33d6afb855933504fee87e5b9d034285293

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b61b3a18e00d65509e0146d4b45bdf6e8d03aa62bca19578b2665671391ed91
MD5 13323b152a1540d1f56a04783f25f023
BLAKE2b-256 fadfb0dc20f838f7b9624c733bfbe40fec12db16eb8b48956d4068ad0ab258f0

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dcc47f5130e1f0b36be63120d61cf6f59d63c0eb8bf5d68d3f89881df1a2bf34
MD5 3b1560e024fa3001887e8512471c120a
BLAKE2b-256 9a0222bc79cb4ca09cae8d93a9302bae8c3624896ea6ff1796931055550ec811

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3686134c07d580cbc76b3e10d084e338e675ae172cbc5974b5448a45d15c469c
MD5 8aeabb34c4976727dc02e87f84fc2055
BLAKE2b-256 116e051f1524227e17563152301fc8a7eb5daa6800fd43ce0962233945b04b28

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a76249c49fa28b204dc4a8deb38622fa3eb3d04a38edf91c4ae15616d1ca3b8b
MD5 905b096dcfb3c660f4bf0688033531c4
BLAKE2b-256 be1625c0feae96c950691ad1eb0ab8b52232d743bcf95814ddf770bca258b4c4

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba328c0bae33408fde26e64640ed91a3f8393715987cda4eba19805c2bd857d2
MD5 dfd88cf7fab8615f863882b5810dbdf0
BLAKE2b-256 bebcadb2866bec0a6ed9639ae4b0ad63eed8445c4c3a3d0a0fec0a9b2650d45f

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ef23aca38ae515820790809a26183ae1af50c8ad5097fe7f5c279d968a5748c
MD5 9a845e9750e6d47f1c12752671ff18af
BLAKE2b-256 8631398d18ae04def7c1b6ea794c3731970c2d67f6bc130d90c359601334d144

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00d227bfba79070b25f8937b04c9fe45cf205fc97202da8652bfe520ee3986e6
MD5 d7592b24141c11d5c681871504fa34b5
BLAKE2b-256 cd96ed67044a4d4217c28313fa2767fd8bbe8777d6f6fc9ab9f13bbb223e4a2b

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d31df382b667706cd7bf3cb12c2d08b44b58c6a8d55a1e97ef291adaee685cb
MD5 b14fa2ad8e625e78bfb5ac093d53481f
BLAKE2b-256 4a9280230ae049d1c5eca3cded7b6128af39433cb750d5d3530e993aeed5baa2

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5ce7d29f943b996631a85acb4d7a0f6233609a61381037c96788f0032489289
MD5 66d0b70ce3e4a647671d6c557db1c3d2
BLAKE2b-256 3e50cecd7accc2572b279d717739200d6caf5d96c5773062123076e4a4659f66

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8a76a91bd91a99fee8a633f5a12f76569a198341bae4f69d73443fe1baeb3ba
MD5 29dbc67ff9744b2ea137619dd95002a6
BLAKE2b-256 4945adb27f53b8aadcc4f1e7be912976a0a3728187ca6ba1e03228231d902343

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2e36ffaeb7ea0a7b805b695adcd4d2cc819709c3c1fca80ab037e26074f7c36
MD5 a7e94e0b16bf99b8cdaf366dc4581c54
BLAKE2b-256 68b71971a828d0cba5b95e9181921d3798ea236b231ce7fdbdf0e78fecf28855

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7edf88e1a3ad5b36d349ca3cfb517880ac6a8de74cae3e49ea600d0804e3c7b3
MD5 c977b149ee9943579631c82cb58d9375
BLAKE2b-256 a399c0329c5f41e57a2ddbf5d0bfaee94d86a9dd7e5a9f0564bbcf47cb5d5c4b

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0b465cd1e7997c3a6195973167de0dc176cfcb5207a9daafe6bcb0b7b6970e6
MD5 65cca5f58d1a8719f6b7f7521cbbb860
BLAKE2b-256 a45aec84a0a36f856daf19301732c75717ff11cbf8220ecdb6b1f98b037fc8b8

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp37-cp37m-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a7c924d52cb4faaa450998d3b106270c03e95eaadf02ee94a696c02112f1bef
MD5 618b17f8dbf327893382bf249aa5bcf7
BLAKE2b-256 255662edf0742a4d56d74ca3196624effc88c1a3b9c58216eb32902a97cd1ef3

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c78f5b240767190e7271bf23da27f833675971d368baa8fe12e2350426f6001
MD5 4e78ecc2cb163198c55099715afb0b56
BLAKE2b-256 08d8b7b95886c19f578fd39ac3d2d423253b0065310b14c6eec96ee3e72eda0d

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c5ea2aa5a9f32164b1c50b0148d184e6681acf2ad0eb454a5daaf91e0f768484
MD5 ca6640216ad99199cd4d0e59cfdae21e
BLAKE2b-256 95b7b63cde6ca741241c2f1409cf0a19610b1cb68b3cb88deb74838434369925

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1248a38ea3f6ca7c610693299ffa2378343402921ce294a0a0032935d9cb0bdf
MD5 a326881c63abfe076d4adef18d9211cc
BLAKE2b-256 6e11465c53d933b9bcd51b06f13ffa5b5cfb1e7da9aa4eab278516df6712c631

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fda11ba427e6608a437983b67f2f10a91dcd4fccba37677eea9868bfd5839087
MD5 29c97f24804840e698865821c49cbdfc
BLAKE2b-256 f8d95f75e70ec280bfc707c01cc1a4b011f6707b1fc55a00a0de14130a44c9ab

See more details on using hashes here.

File details

Details for the file rdp2-1.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f62895ec5a3bd85e11bcf7085add759151b1fa97768f782211a9b647f6c155c
MD5 4d3d31446f2f1fddf59391f167f99dc8
BLAKE2b-256 5fcd82bddc870c0e9c873c5fc7e163eaea38eee3ab0ae76fa7634bcda54aff77

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