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.0.tar.gz (149.1 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (449.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rdp2-1.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (480.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rdp2-1.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (519.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (424.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (248.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (259.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rdp2-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (445.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp314-cp314t-musllinux_1_2_i686.whl (476.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rdp2-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (515.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (420.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (263.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (367.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rdp2-1.2.0-cp314-cp314-win_amd64.whl (103.9 kB view details)

Uploaded CPython 3.14Windows x86-64

rdp2-1.2.0-cp314-cp314-win32.whl (98.7 kB view details)

Uploaded CPython 3.14Windows x86

rdp2-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (445.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp314-cp314-musllinux_1_2_i686.whl (475.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rdp2-1.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (515.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (420.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (243.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rdp2-1.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (263.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rdp2-1.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (256.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rdp2-1.2.0-cp314-cp314-macosx_11_0_arm64.whl (213.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rdp2-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (445.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp313-cp313t-musllinux_1_2_i686.whl (475.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rdp2-1.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (515.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (420.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (263.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rdp2-1.2.0-cp313-cp313-win_amd64.whl (103.9 kB view details)

Uploaded CPython 3.13Windows x86-64

rdp2-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (445.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp313-cp313-musllinux_1_2_i686.whl (476.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rdp2-1.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (515.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (420.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rdp2-1.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (263.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rdp2-1.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (256.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rdp2-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (213.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rdp2-1.2.0-cp312-cp312-win_amd64.whl (103.8 kB view details)

Uploaded CPython 3.12Windows x86-64

rdp2-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (445.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp312-cp312-musllinux_1_2_i686.whl (476.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rdp2-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (515.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (421.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rdp2-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (263.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rdp2-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (256.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rdp2-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (213.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rdp2-1.2.0-cp311-cp311-win_amd64.whl (105.2 kB view details)

Uploaded CPython 3.11Windows x86-64

rdp2-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (448.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp311-cp311-musllinux_1_2_i686.whl (479.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rdp2-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (517.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (423.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rdp2-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (247.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rdp2-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (258.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rdp2-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (214.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rdp2-1.2.0-cp310-cp310-win_amd64.whl (105.2 kB view details)

Uploaded CPython 3.10Windows x86-64

rdp2-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (449.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp310-cp310-musllinux_1_2_i686.whl (479.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rdp2-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (518.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (424.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rdp2-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (247.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rdp2-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (259.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rdp2-1.2.0-cp39-cp39-win_amd64.whl (105.3 kB view details)

Uploaded CPython 3.9Windows x86-64

rdp2-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (449.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp39-cp39-musllinux_1_2_i686.whl (479.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rdp2-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (518.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (424.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (247.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rdp2-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (247.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rdp2-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (259.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rdp2-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (448.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp38-cp38-musllinux_1_2_i686.whl (479.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rdp2-1.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (517.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (423.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (246.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rdp2-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (247.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

rdp2-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (259.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

rdp2-1.2.0-cp37-cp37m-musllinux_1_2_x86_64.whl (448.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

rdp2-1.2.0-cp37-cp37m-musllinux_1_2_i686.whl (479.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

rdp2-1.2.0-cp37-cp37m-musllinux_1_2_armv7l.whl (517.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

rdp2-1.2.0-cp37-cp37m-musllinux_1_2_aarch64.whl (423.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

rdp2-1.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (266.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

rdp2-1.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

rdp2-1.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (247.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

rdp2-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (240.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for rdp2-1.2.0.tar.gz
Algorithm Hash digest
SHA256 e927bb2aff49c0a62b923878e665f42bf31c16309a06f262c8a551ef10ca23fa
MD5 ff7205ba621c3ef6785e2021ff5817a9
BLAKE2b-256 89a02b17b5fd9ead6bd48d1fa83cbc57b91a3173f07abae231c84f2f8131ec14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59acaf5166f58c9580f413983bafc582f50057abd286983b88008b9c15e652fd
MD5 18378b410c67b7002b072f2350b6c8c6
BLAKE2b-256 2dd49cc7ad0a91a9f22b50542c9e98b00087baf711a946158a9748db7c03d231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 630974ce8af0ba1c6d2bc4ea5c0c5edeaafa69241c932e24f7e95ce7d95c59a2
MD5 a37c34e0bfe181f77edae247aba8482c
BLAKE2b-256 25830944bb5238237443558d8680c48d26fa6e2e898a194976ac776661bf85d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32f8b1d891fda08b16ea7dc2f919259a2403828e6a73e3e72114024368cb7c48
MD5 70137ee47b563ac95410721f9abb196d
BLAKE2b-256 f62b2964d60d05ec7f9f56b2b6a489383e7f1555ecad2b78fe9b8c510ff58bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d36c115fc452a2598f67263561e234433083cf55f9c7391612d7667764b7dd9
MD5 32441cf255fede69786b6b3f7424f03e
BLAKE2b-256 06ca02a8a59e0d504779b1489a25e93c55519367c1f96bb8ace1cbaa297db80f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5db14dac3dc711e9891eede7f1f2ff4b0d83d841500035153c804ac45dfed5ca
MD5 e851829112b83e3f87e676810068f38f
BLAKE2b-256 a96c892da76d32550bd353fbafecd8aec41ec7ed466c3deed49b4f13f98f755d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d57a474b83bb6db987c1979a3eff27966e11cffb11a3514d3ab3c89a6de7a66
MD5 94f026f8feda910b80ec2d76f38b193a
BLAKE2b-256 fd3299069f649591041b9ad5bc663de2eb7669835ba095ce044f9f64f79e89a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e200669d6e3d455f388bdffaa916359efb1260e0f480dfed58a74f7f67f5720
MD5 0f0b749ac5fc377e8c763298d59bdfab
BLAKE2b-256 0a8eb7add77d39686cb1bb39412d4bf0e281c84b5fabbf3cda3ec46b7b7848fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6cae322aa5a711459840052286aeb0af9426d26f443cd8ad733ea7f1d7b9c37
MD5 77fc6cdb54f6594ad2dcb2d51445b4dd
BLAKE2b-256 75855558c09d4db4a0c28373452a4455605180e28676038f6a814db940980285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9df686aec3710e2ef1c420b1a458c20c90d95e1be332b9b62387f0de2e8fab47
MD5 bc946ddc0760ee68e9902f737969371c
BLAKE2b-256 7550924e0d0ac25c08e38881df5bafe3abf264acc1c848c271ae7bdb41fc1b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b9f8be74ba4c691819cfafb41bee1d459239c3acd7d631d39287fb8a27b0e23
MD5 8010be8993d725f99a2240e66210c48f
BLAKE2b-256 4af37987380c9d0dba56fada0e1affb9e0ed330e17768497859d7d0ce322ceed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 502c7e194fabe05e28d304396aa3d52735b6f6c7c447086882c9ed27d76a20cf
MD5 2191fc14bbb4f19066923f4cb3e73ac9
BLAKE2b-256 ea2400f457e90fd3b3f5493383fd9c3f234b7aeda725e07219a98158f5098bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4108acfd40cb0299e65dc7113a45ee5d03005bd44ea8d533b132f3eea2df59fd
MD5 edbefd32e2acf054b8abc71d0123e6a4
BLAKE2b-256 84062b9a151a7ce832386ec1dcdaa6c46b81c4dabe0ab7a507f8ffa536ea8903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50f4bbcf27043c6a5591328dfd9ec3cf3b8277aceec2b5ba1d69adc7fe896786
MD5 329f3bd0fef661723bfa56ade5c98276
BLAKE2b-256 9ea655b8012c1efbe25a21b71a7df8a62e901eecca527768db2c52335b826637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 118e2782fe8355da511b9bbcf7fe550205879003638f47f75c50245ed4bbf859
MD5 1b04214defbf5a319efb043c55014df0
BLAKE2b-256 53f6e1f279fba1226f27adf940a1ed90fb3398b9f672af32612539cb909c10de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 185afe066fa1c64c2895af0af44507d0ec330cf793b8343d42cc5e9dd670c0bb
MD5 f4d9c4cbf82d630ce6f4aa352e42ce1c
BLAKE2b-256 db546b3a0df9c21caa4c72cb19c3ae0a0f3eaeed2bf9d92f6f8938c4255d6d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82d2fb458672fac870e10ddafc46dec5a054490011206d1c4ce47113113ed008
MD5 9f9014c9699b32539cbe72e0aa0dd512
BLAKE2b-256 ca097b014f915b4b2062bcd126af155b1fe4790eef6f13375716041538196719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26a4e5f6f8c9109eed30ac4309fb171ded062f482a33ac3c6a17a5465cc4cb39
MD5 45fdf6ee03cf7704e64f4e01653c597f
BLAKE2b-256 0a560520c721b2ea74577b841330b980c3b71e54d7e4b61a4367fa08758c5ec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fda0550a677dcebc7d5aaa6471d18397f16dddd0e0f77bf93e6bc38026e36c9d
MD5 9e1663d926c3c2d72b147f142fe41d4b
BLAKE2b-256 8830eb1e3ec769994ad3cb841b92dbc0a34d7d1a77f86ea30f9de4f5c11a50a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdp2-1.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 103.9 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 74fb2669b5155abb9ad7a9ca2f951fd3c71a7a890c8f857ea0a3bd9b64aa4c49
MD5 d967de66340a646a19b858a5b810b593
BLAKE2b-256 adacbab81fc87ad06e68c9f967d55dd73a91f476bb2b666e5d28b8ab15d0987e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdp2-1.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 98.7 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 945b49ab4d5abbea47178e3133537718e57a25e3570978b40a7ce9f397e5361c
MD5 7658d324cff257070ced51b60a5e78ed
BLAKE2b-256 2ebc39503940bfec6099fde868b02e9358f2df629e744aed63d7380360ae4a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9da8f29c9261f4d140a58487e3f6a57d7501313af59c09fe543dbe87f525da37
MD5 73d77260f706d779b2fca2bd0c2f7c34
BLAKE2b-256 f8b8652f5cff10e697a6cdcf4ccc76e21a018b723bbda4f163b9d722a2006843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2688fbd500a2b9aa7c7c4d4c389686ec141df82c4b6c0cc67b744a51ce13adb6
MD5 3a725de1f18cba04f6bb0790e342cf6b
BLAKE2b-256 e98df9f979d5aa310bd08001dbbe87fa2e393b3ccea69d543465549a953feec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5fde36f44fbb92d18459b44a1131aae1de0b3204b28cac435f6ceb932537539
MD5 b6a12e807b8fa66cf2a00f28cc6c89f1
BLAKE2b-256 411f214ec3552cd682802de8b6c6c14d3ff5a9b1225ffb7e6405d4113cec9366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6eff34707e88fef828bf9ef50bcfd94f4d9930e22acc83b0a473ee839156b521
MD5 bbb06f5a4a0f9f9feda971a81d8704a8
BLAKE2b-256 84c8be2efbff3d5ccc1b4068c339fd17df6a2f6513e58de862eff9033e8b57bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99d6a13147ba01316d5d0b96789ae215827127bd788551728dce57f53c4da259
MD5 e3ee7e547e5aa703062578027bf23f98
BLAKE2b-256 9179d53e3b6bd0bf3c9fa6b74011887d051f317073af8a795ab45d3a95452225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b67753abd0fc0870f5183695ac06bb16dafe0d230a41bc38c13dc2d23de72c0
MD5 b62ed598bccdfcc8c518a43ffd6fa05c
BLAKE2b-256 e24a241b5333ae6dfef23184ad814e43eb0114e1986bf3613de27d5a5df26db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbc4d8d771a9a887cd2c7b73f5bf1e380428c081202a354d2b0ed77184c907d7
MD5 3399492645d9efbff0267094ccaf84b4
BLAKE2b-256 ba335d09ab2049776635d092c30c1971aa89f35024bdb65174719bb5a272da50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea15713a6d75bc40f2d4e0f9aa35dc1ad329af952e3929190d4b989d43aa4f98
MD5 71cb2c83a51a558813bc9ac2889ed098
BLAKE2b-256 3b1f662a7cc5bb7502016ed9d89a4fe2934c2718656e52c8bcbb216071002e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f80f8d51a5734b3d4d4e26d669bb8f2e2e1876b49191ac08c05b1b8403d44d7
MD5 6f7757695f22515528713b2c5ef305cd
BLAKE2b-256 1cdad21355d787b821762c05c127e9b8449e290ecda8cce79e221fad1fcc0d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0ee172a57073122f6a505b9fbf9b4eadf0dafb1b2dda1c205a79dbccee426ae
MD5 3a72c0804441a916a56f7a0a8b5dffdd
BLAKE2b-256 ad5dc7846ce62550b525588db1cb796852a5638987435f81e19a55f1f1f2ba88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ee2a2149e3520df2607885cf7cc69577f7d1eb0fab5b94fb5c0add5c334b2a9
MD5 d9904c1f9bbf009388452544d5805137
BLAKE2b-256 7c99396c9a7e3c219403f7402a8a0fd703d9e14383aafd534121d516078d4bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3dbb6dd3002544f138838fe7050e5dbeb875ead0919b95c0df94c7583b70c2ab
MD5 7806e30c4e912172baaf8fffaf8254f9
BLAKE2b-256 a111131caabec6fb630495389110e24926cafd68352eea13b103813313407843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89442dc44104a90dec05584a72980611679c9f1a8d64aa87c054500731b9a4a4
MD5 d58b6e5d142a738b816fd5d49cbe813b
BLAKE2b-256 e2340ef290293e3ce483e9f7c30d27682c91cd456e2ee6ff63ddd4f950333179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e59726441d379560e59e430bd3c67d45bb4897f51bfce12ba97f35dc376d6a48
MD5 dceb1899f0f5da4387de158125b441d6
BLAKE2b-256 62f5876c1a729cd79dd9e1eee9237ed47ac5e86ce2fa6d173767f004f42e927c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29ae4b8c0ababc6c1a75c7c3080c33938fdef55d51e816cc20727c7a48ce7202
MD5 eb379d77b5147e09721cfd63b1641929
BLAKE2b-256 95ea8d39526c74ff3f45ef6f3c6c0291a8e38a1ebb5308b8e76052f02e477784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 601d34b694c25fe1548ef01c05f2bcb555f60c8df27d141daea5d735e89fdd2f
MD5 6a12d0046eb6dcffe85fa6dd3ced9ade
BLAKE2b-256 b2b42dbafd5146ecdbd794f7adabbdd32619d8ff5f2b1c78a0b3059300341a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58016b9628869b1a75fdca618b37b9f2d26b23e9f3437b6ceca3a0de34365e74
MD5 449061da326a546d0dafbd0926ca653f
BLAKE2b-256 70179bc953ac8f9e7bc0c94722a93dba059733b99d3c1b0023de0f360f87d768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37dd43da83d8571d81499108fe7b562f6cc5aab1370708abfaf783cdec87fd8d
MD5 48d35ab92e967bf49328f80fd6965847
BLAKE2b-256 51bc35a4cac6296ce963a1a5c936465295304efadb8f37865689e5eebf5fa198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62e0576105028d402562713a7ede847b1f7c96bf87608cef318807f43d5cacb2
MD5 26d0aeb0b63b44f8592ef7da0df9c7f2
BLAKE2b-256 65c5f9fc49077cac29368117f26463403a062a21853e4f6a733f476614121d32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdp2-1.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 103.9 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b36ef2a63b2a7f0fcc6940ffeb1c660da2e6ebc5e18fccbc5a77be751b7af54b
MD5 53aebb4a0f8c6bca6c4a47b6eb5a1504
BLAKE2b-256 87d4d6be05a778c0ddc19a6bf793bb903aaccb8e3605a3063a1ce01430c5f1fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2246a487be8ff273c16df56fdfed9333e734a773f65da8487448c1c4f14e2c8
MD5 7981d65c8f6e5132781b58803ed5d04c
BLAKE2b-256 5d43100f37f547cabfa0c5c23f27ae9d1e9a9312c13830d9b4c554f841586b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f0bc56729e36b81a230e87c547da8c6c6dc1cb6c58c6fa0b09b28b2d766330a
MD5 4b44b026bbc5b9c78d34a9107e071c88
BLAKE2b-256 5de9ff19614d8fdb453d8684ccf5bdb241bdd5dead88fda007f702455f6400a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa7a08f5e2e7593f2e560f126eb43ec94278673e4e3535c8c106c5ea156b6977
MD5 9ce5ecbb1c9a620b364167bab0e26a26
BLAKE2b-256 c308f2f62b94a186d478bb39693f96307a1e1b6d7fa27789fe70bcbdf5a7d4da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12836d0e2ad2998629f8bbd2a58c766c3436759b02e180589c04c9304856842d
MD5 fdde534d42b2e1b461019cc52742aabd
BLAKE2b-256 9f644dca9b837145a33563afafec8d0545df00527808ffe241ded68fe336e6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c1db5bd6bc8e2f782c556bd67e9ce3ff331276a4489a202c0356619bd64594c
MD5 b8319f62f096664f843a6847ec5e8aa7
BLAKE2b-256 660cd70e83ab7f01f525c64b66011ab650ee0e179f16c51b83248af1f44f9ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 583e1741a46008f5badb30a155976bf8265adffc690a9c088aafae543969d28b
MD5 deb8e9a00b3c300f123843c4ab29f18b
BLAKE2b-256 24111ec1e288f6f389f32b3cb661f2595816c40b83ad557ca98b5e9851272ea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35482610e5d475997ea59388b2e4a3249000df61a13b07e9d1a3c6c51be4c42a
MD5 30df2e135613c5a3cd1012001503f177
BLAKE2b-256 dabe9d8af16b6eb8b85e02de6f1c2e6bfcdd67aaf5b479b688bbc1a447646fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8bef5a06923a610f3aaefb1d099e30c84f7185136c3269dbc760338fb5f74df
MD5 5d7947abec2daf8f157d9affb7acbb5c
BLAKE2b-256 88e1c16e6e58f26fba5b060ec0cbe65ece2c197d4757858f6183b75bce63128a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f66fb9560a99e07bf8cff22d4529d12a7a9e0d8971b2f05cc66d1dda23b1e14
MD5 b515b3357c379b63650cf92ffb7eae88
BLAKE2b-256 2c3accb3514839f40429572656fe7de5d10bc5cd8e637e33c9d65cea2cad2a16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c335ad15580b246e92a1343cde210604e67b0baf64d7d448111f3f71de77b30f
MD5 aac027c3f02aa9ac7f16b06e25120b4b
BLAKE2b-256 61c6f4adff0a0b19a00342fdc4df47b4c4c4800a226d57dfae34853d324771c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20675af38ecc77a097c62336b9e260c563c577f7cffc7209ecf2dec6d286add7
MD5 e293cec2d7e92054a46063ff5b90ec5f
BLAKE2b-256 b5daf6dfe503f0f796adb5d23deda8304ab3bfd62e8497e15669ffc137a90a3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdp2-1.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 103.8 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 71868298f593b386dad71149f95c7b3ed11ffffe55d66f57ccee77724aa631ce
MD5 485b663dd77fdf7ecfec4a52c2c0be01
BLAKE2b-256 efc755c6771ecbd70fffbff28cec2633662f7eabd67d632826b9d43d6e9199e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02b4abf566412cb983e8a6679bdf3bcc816f7155c8209ea0d8e995baadaee6f4
MD5 1c00ad305e053a34e91b74272fea8d44
BLAKE2b-256 882be1f994322a67cb9257de6fb9a3459fa36c985d96e10f0b838e1e44a336f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a2d5a71c35b36fa6461cc3f13889f21d0111b8b4b3e31628b66ac9106c82d70
MD5 bafb7a6d82d7b89081a32398646cf013
BLAKE2b-256 b2aa48ad6e674abe8e9aa3de83c13ef5e75f35a7b892709f7b15487bdec06bdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a8f3113c65765c16d3ee1798f8a45412cb0b25443e6663bc559268014ad2833
MD5 f68cdf90eca28b9fcbb2801dc3a1cb61
BLAKE2b-256 ba9f8db104f1d3e5d28c29b4d560ff41cf57898fd88f850e572df7b301f01fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71cd762e06a78a8132a23fda7f1d2c211c414aa72f236ad629edbc54c11909c0
MD5 25566182759cf35f2bfdf31b8daa1193
BLAKE2b-256 72136a9bb37cbc7936db795cfaaa06a2979944918abc927899b7fc1fc4d0189c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 104863f34076dc6ab645f450279b62540f9398c801f9e78a10db1f4ff3211e17
MD5 d06cd5edae4b091b777c714910ecdaa3
BLAKE2b-256 63442be6204b3372f14678f43cfee4fa635065fdaef9f6bf7150534d46434b9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a601c76f03035ec93d514504b38c2502a0adf13d5124902c55dbacca02b04267
MD5 3f14a4f1e6feb56a7dc9aabcdf7b534c
BLAKE2b-256 dfd70ae11030d4064da2653582af0754f7298847fbd98ec587f11d8523942b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d33e9eadf06959d1687d3f7b21ade6440bcbb745b15e34919a18833ab1dd7317
MD5 65ae77b840f55aad2d69007e06e43eaf
BLAKE2b-256 02905b6bfb628826c5a23bb613cb825c7f454714330e1fbfc1c4ba200dbfec8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb97bec90e92774a71fdf6904f6ed4001bd87630989669e6fb3aaceee2f12132
MD5 e5bf1686862b01dbfcf2eeca3fe10cf3
BLAKE2b-256 103381f7a40a82baeeea6d0b07f452fe831bb18b2122331258ec7049d920ff56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50d81fe7c8ebcc831ffed0da5212e31ae4ef733372b231dda1cecd3eda618050
MD5 e2b6ddf4933e5dbec058e7e14067ad69
BLAKE2b-256 9258a7fb7c3becf311a9bb37ed518dd87c2daabb95fee86589e474d0559f27ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e824e9533127b59cb834cba7aa43c4bc4d50456c833da73d9f78383c8b8cfd5e
MD5 26555144ebce149875841f3cb58c1166
BLAKE2b-256 a5efbe849f629db7167199edefcfa67e8c9ea88938107c4fd135b34626b46ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa141753f4c58867ab5cab9a3387d88205af7ba27b15027d3b0274be91987ffb
MD5 9d59a615026e4337d4b0c10a2cc493f7
BLAKE2b-256 d074365a284778c27fc3ed7b8f7436375718a81a3859bdbba7379e09d912ffef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdp2-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 105.2 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8a8b7aa0568d7a67f7d3de1ca35e15c0dcfbce982a8d195e387adf87d6166fd
MD5 66b0b64a85f19e536419e0fb8fe4f855
BLAKE2b-256 d8310e52907f004ff3da97f41e81f84e074db56133a48b356a8d29f640799472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 880a7e965c42efea3fdca7f3cb79208c5a955bbd5744c612dc998b8ef511c253
MD5 41e3dd2b838665659cbad0f9c11acf2c
BLAKE2b-256 f913bb8c8ad59d4ed821f930b4aec0165471e5a9addf3c96affb6e5cee7231ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25be0b2ae94b243b95108a683d855312213ecb0c423bf4bcdaa0e506fb67658f
MD5 499b58506f9ba140de51405cc9c9ffd9
BLAKE2b-256 75ae5303b4d1b728103717675eda73fe448a4f9457a64f48aee1de6559a4942c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7841afbee6a72f17e5b94915301c7f546f6e4df91e008b76d2767f5f3affca0e
MD5 96de5b895253226f22efe76971889474
BLAKE2b-256 094db8e152b96da22718a9b06cd8c11d29be7230a5faf5cc007971ad3621ad63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d52b2b4ba0c6166be4c03297a9711181587bffab95be5556b5dc5d457ba8e96e
MD5 691c781423fa918b6bd43183227199ad
BLAKE2b-256 11a980e7ccecaddcb98909a24b516d67dfa70b90635208bdd0cd04cd6785e5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e77208ee5eb49d2d31cc30999f93980a8bee0fd552f50ba91d7f4123f55b398
MD5 ee4d3735dd0f4923b762d6e024ed13d5
BLAKE2b-256 0d3c431ab0bec7eac30009b04549fdb06989c63e4c7daf57264d4435eb502b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 607db3a9ab96a099aaeeddcde3017b2795f350021cdaa9d0961e457817bc9a74
MD5 7e516d94ba4191034036f450bea58715
BLAKE2b-256 f66a6edc184e15d864ebe5b7e68b8f61139359d666bf37c488c7b21b349cfdbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15f794d84b22870e12bae1a56de094acf28f4a54aaf0f95b344ba7c970c36127
MD5 f6f010193cf2c7e691e7ad2c7dd3b9e5
BLAKE2b-256 89f633fc5692ad3a2583f8b652a5d50017537359570bac197ec7d6dddffa64f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 452d378696e333f70bff42aee4de4774cf8202b8c331284efc6968d522616845
MD5 5bb443be176e6ddfa9317154554dc4bc
BLAKE2b-256 c379bd3b0eb1ec906f572f288050979844e3fa3fb4a592ea383e186c8b0cc65d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2dddee847fd8c4e57d4aae8ce91064bada58bda230142e6471d17dc29676d1c
MD5 9079b3c0bb4d022fe11688eba87bbec5
BLAKE2b-256 3ffa3c63f6c2e0f263cdd8e6198295d61ac9f6134e4aae6706cc7d027202f050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f3f55f9d5b2a71008ba287a36677fd25657b655c642b1e944392078b37af51c4
MD5 b437bffc899c1ded7038c37f07d70798
BLAKE2b-256 cecbff9ad78c4b2f70e0d7f678741f5d59d4698304e728336724fb6404472cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 368fc1031876e4514b3be065ac08d95ee510cf69285341f9cbb0fbc0c9013e87
MD5 44b21438a7a678ab9bdbd1739e031c11
BLAKE2b-256 8a2408dc35a02e28669401f5e4f5eb3cb01bae8fd03535089b7f29646a4fbc99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: rdp2-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 105.2 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b79cad56c7b6ba0b12b2dd4af1becbb217906dde5a31adfd7ecc8360fd699802
MD5 6aae09049ab36bc8e352793c03a9d253
BLAKE2b-256 3344ad684b71e390810ff14b63bdab91d84331471aa95dc3d04b10b2cd628ebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37e416ddd0ec669e61442309e3ddbe963ee04682b27f6be5ae3b72cb3917d424
MD5 e637c273a978e11364a7da490359c0b6
BLAKE2b-256 93466c4bf5123267e70dd66c2866be16facdfe302b0cbb00bc0c6e7a3853f28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f6dd48d0675a3edf89996d8ab904763a87ec4f0286b3edaeeec1c9def1fc4aa
MD5 b7db170e58679bdef732408dfa86af03
BLAKE2b-256 076e392e01b6cc1b115078c1bb9263c65262278e6040f4d99dfb327c7d02b6e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35bdc2decf1cca9e36a1c065987e713ded68b7f929e6d89fc42f25265d533ded
MD5 91988e5f003dc15509745f36e5ee8ca0
BLAKE2b-256 194ac30e8d855ecf7d5aaff05994f7325d5d167405a3a317c8a2ac26198f981a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c04db390af2688f05b76f217fb23c6cd95a0afc8c887ba9ad6f8ccb1df4d8e7a
MD5 cac1d29c02399fa0de0253be817ca366
BLAKE2b-256 d01b3e5417f064d2288d249fd291a67cb1fdff00028f36800759cced2b73e8be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06bfefdbfecb7c7311e1a7c0a1f11cd7624f99b9b81ab02d535d90ebce298340
MD5 e75df7d607a20b35de438c038eeccee2
BLAKE2b-256 678eba215fcc979db623b36948a1f956f407d306a1e584e2313abff9d4e65237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cac30740152be9c2ffc036786dfd99bc25ec417974fa872bbc252c6b4fb9f6e5
MD5 96f411ba64934c43e7cc63957c57c32f
BLAKE2b-256 6fac6bbb40f7a1e2d4f2c8c74d9b722a2756da61860340f28fdb5f283cd805b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cce044ab2d86fd5a27e41987ad8255ac70dae85b7404a8d3a624983ae6e79fed
MD5 1496a0f0b9f7c575af37e69b720acb47
BLAKE2b-256 d585b8ff782af7a975608029b0aeaf7d06172dd328a26d385d91aff258de7eed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6358297dc7e561135bbe4923ce9564bffa9537e5100fca2c14f8ac7101b344c3
MD5 265e737b38ac812a28fd0aed04274d4a
BLAKE2b-256 2f3b43d25591c9c1d9b5155d0be29b1c3dc5315ad3647cd4901203c941b37c4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 441af41a2eaed2ea5d36e99fbb0f8bd69605ec16d718f74642df934de48553c4
MD5 5e4fbfda69c29523037821c0618d0305
BLAKE2b-256 42ef6ba20b10fe376f6a671d2a7cec40ce8d6c7e9d4b66111e7e356e20ff591c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb2b4e7f2fc143a121c3104180cbf21680d7293199bcaae16392919a6f5da73a
MD5 22dfd0d1c7837b3b15d53c358abf58ce
BLAKE2b-256 7c6a1a57a203363623a5db9970f6f8495f0cd2e5b35e672a0809a4cb8961b9dc

See more details on using hashes here.

File details

Details for the file rdp2-1.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rdp2-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 105.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 085ec6e743996d7660b144f42bc80a911eca6706a53aadb19e180f602934c4e2
MD5 1f5251a639e964677264bf9814861208
BLAKE2b-256 48b76f4a116880f919d690630c1fadeb7f714d70552814e32b1dd5f14991531f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f428eccbe0c15d4dab15e48214199d2428b449a443b93ea5e15c7643ad7b318
MD5 2e1205d5590b1030ef95006f5e9c8a1c
BLAKE2b-256 6d450e8779e8f19c9550fda2bd62104848dc77ae3775276d64f0c26711fd666f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f006381251384313871431c52d1c10e44cfb91bce09d2cde10ea23a11b73717b
MD5 5ec90110fec0c3827230139d5db71706
BLAKE2b-256 3107d3f25c240bd10e756018c14433b51f639365f618611a309059275b82c18e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 47ff62d3fb151bf6b145cb518f20b9b766163c2184a9fb87cce4e55974fae1bc
MD5 516a0ddd8123b7e03f0b8a2aa4ced32a
BLAKE2b-256 17eefe45506d84468c5619ab8d6c3a3c51b7524ed042b24290bc6c62f6332b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e13a9c91a293739251e4c6e6761d76449d60dd61bdc653a13ae6eda25edcf304
MD5 e9727ef11dfc9bb444d758dcf58cda46
BLAKE2b-256 c0256420808a4cff23efffba016bbc8cfd7edbfd3a3b484930e01418c293625a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed9666736b6e640330949b52f8f070be51bdc0704c27d99a330e5910268c8d23
MD5 5952d87c18c5e84b0f2990d45047707e
BLAKE2b-256 6864c53dac8e463b3b6edc34206f0e304e0678b6f30d6a84de67de50064db9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9325a49fde9af10750939d8a665b2eb0196a1b7cc85a6609c8732c6357b5f4b4
MD5 99cc5605b4c614b03e22bc2c23d73658
BLAKE2b-256 5b00f062866133aee5f862bb9727386e0bebdf1247028078cb32c174ffc0579a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7174ce44f9dbd081e7ba03f86af5b50e2c45412425b47b99b05e5bddc1ba32bb
MD5 cdf714303d4dbcb44ee2bd8da2de9672
BLAKE2b-256 9380da503134aad8936dbbb9619e616dd81ebb0e6aabdb69b384d8eaa20afd22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f66b071ded844497107905c4957aabc9e660b59ad5be0348c800228ffd70e88
MD5 d348ca7f05b65d342e4b0b4dd004a258
BLAKE2b-256 ef58adf301e81064e1244e4266e5dbda38ee9a5c29d1bf641063b9690430f2ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c802ce2299b85d3fc2a588fd84bfc49997dcfd83a8b3d3d57886c8ffe8e5e7c6
MD5 1b052a4ee7fb2cb4b12ea8dcf6527802
BLAKE2b-256 17915582f53472afb2333e23d6facb505ef12ac2c429ec4eece54d9ff11ee242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd6f2dfe49f0f4173918524631af705fb79fcdfe90e669817c3c7ca609b5ba5d
MD5 1c1ee682f35ff584016d4b9cf25ec315
BLAKE2b-256 8c76a3a0b7ca25952e8591bc2974f1f54fbcf1bf7013322cc3764eaca2447ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14255c20f9443e48a17c247ed4c35873abca305936475c964bc665f38a3cf5dc
MD5 09ab620826789c8ba24099b2ba903ae7
BLAKE2b-256 31f0f72c0aa957a5ba6a0448900bbdbb76866e4f5f6a361a3c0aa9fb5373b68c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8b237bae3c2de9ca13dab0ef4643462172c7292ea2b1ab1dcce746c7984e691
MD5 b9d5c8794dacbb41515c51c28548c1f3
BLAKE2b-256 5f346a445070ff092daed5100e43b5f482cc7a0c4d9ea7a505b8aa904b3ce641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a4636a591da5177d41a1d82ba112b809f35d0667a15690cbef46efd7ec66dde
MD5 fba411d2ec01ecec809d0f76d5a5d6fb
BLAKE2b-256 8ba862d742db0bd764994f200ed6ee8ab55cad1484ce535b3250c7c1159160c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48f8574c262a00072e4da748899b6c46d32b00930aff8ce4842f4a5908ce403d
MD5 90c712fe1e574aa77e36fedf6fdfdd56
BLAKE2b-256 f3233381acfd78426252bec69c6be3a9cda464a2216b0c57a23b6ed068eb8db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 914729072cf9123aca802d6320ac5197f1f143c28d2a1dd85851ee54eb3b767b
MD5 302ade69673258b56d6428c2afab7b9c
BLAKE2b-256 3c1583c1a55d92263b9b4925e7dee8581b82873f5fdcc6caacffcba20db201ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbb5755897c33ce03ebeae57a253768862f34135a8c0429222253f68f970ceaa
MD5 dae2e8d78238bfb0f76bdff037e378be
BLAKE2b-256 b81ced03b120d4efcba5fe321672e8cd5c59d4c166b318df25a48a9f53306d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9acfca96e2de895dcdb6d94465fe41505871d424f506e8068a98cc6d42556ff
MD5 af30413dd51dc84daad957beabe570ae
BLAKE2b-256 af07fa96387dc5e2dd0adb3a4aab92920c12174159b446e61113ed679dd92508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df1ec7fefaa50f335b50717c20a1e454d7979f3672bde3970c8a2384c54fd950
MD5 3d018340e61903db7af6ea4ca8ca745c
BLAKE2b-256 3e0bb4145f78a938012e435b84633b0d0bdf337ff8cf95774172a781b0111c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e67cbe4c7820d111f9b3a6c569677af11320ef79798275759ce997436cd002dd
MD5 e67a2213d667fe3fad18e2d8bfeda1b0
BLAKE2b-256 38ccfa36a19b56bc55693f66da265bf8db657602907302efc9a88614226588a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 540fbccbcaaa0e7a1af676638248cdd2fa31c85b8e6e56a961b24ef62b89a9e8
MD5 7023e4038be78ec8e09c1572f9aa2362
BLAKE2b-256 967f7fe032b6000352e5cf129c3016a1c051e7a03143b2d462434a3fe1828918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5805ee5b49d03efd582097edaa369012fc61f33a2007f9aaef5afdd737bbac3
MD5 20de3601b0bd7513f6430d87abefa6e7
BLAKE2b-256 13cc8fe246f3d5f0aad9ade62f343e5bd86e672767e88d1a871366445dcd63e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 962b35323b79b4eebb9d8bdab7e4c578bd5570a7a41e0fee519780ec1a3c64f8
MD5 a5b282b073ae34ea93793cbc96dad1b5
BLAKE2b-256 ab00b90a0a0daac60019095c106b523743c51f58d9e09d7919591988894f6a06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b06eb5b7a0cd0b491c4be5362a33134fd2a48c244b3d3534a2bbf9bcd81827f0
MD5 3daf8e42c86adf622126bc99e542a363
BLAKE2b-256 260c6bcaaf3111161ed08ce09c4d84c468c950c52967a05d732e6326b614eab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58ded8c56fc1d07b7f3cb9477102c35fe09011acdc5fa9c4c6540e07660af484
MD5 7c93c803065b8b3ed11524f1c2376665
BLAKE2b-256 06229a453aa3c750ac75bb80e2a9d12c799ce262119aea34cf65e2e3291678cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a025301eb95a8331255fae3f5abb320ec188afc983a9d80cea4290f38ff8968
MD5 ddd1b37dc25513b950221d30d76fd51f
BLAKE2b-256 f44a828abbc9db61c8faeb32660de9b24b0c65d674bcb8186b95d4b934205551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3d1d82d88c27dddee8311c75f36fe21ea18c072681de479a5240fc86017b708
MD5 e77b5b984c365e4ce9a6ced329cb8041
BLAKE2b-256 a6a9bb06f49750d2dc0c8e00cd63bf1846de302e032394dab11d55f5cf02e27d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cadae275d9cc343d963585776a13a08474f9ea6a0af1a7c8bb59e46bba0b4946
MD5 180e4227396f161c7b4fa2296893548e
BLAKE2b-256 a8a0e31d5420be6122567b09002d8456a3e54de3e4b69ea360f7b6953494b6e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ade57eec32292d6040ce1328fe21158e9cc962ed39141cde8c256d35c954c537
MD5 12e153a63830547817638793fdad195e
BLAKE2b-256 1ecfddf5bd851547b9c3d21e5d2f71560530860e40b29340002b75ed61316362

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