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.1.2.tar.gz (149.3 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.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (405.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rdp2-1.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (433.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rdp2-1.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (506.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (416.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (270.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (295.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (244.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (252.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (405.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (433.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (506.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (416.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (270.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (295.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (244.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (252.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (406.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (433.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (506.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (417.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (270.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (295.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (239.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rdp2-1.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (403.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rdp2-1.1.2-cp313-cp313t-musllinux_1_2_i686.whl (430.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rdp2-1.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (503.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (414.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rdp2-1.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (267.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rdp2-1.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (292.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (241.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rdp2-1.1.2-cp313-cp313-win_amd64.whl (104.3 kB view details)

Uploaded CPython 3.13Windows x86-64

rdp2-1.1.2-cp313-cp313-win32.whl (100.0 kB view details)

Uploaded CPython 3.13Windows x86

rdp2-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (403.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rdp2-1.1.2-cp313-cp313-musllinux_1_2_i686.whl (431.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rdp2-1.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (504.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (414.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rdp2-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rdp2-1.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (268.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rdp2-1.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (293.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (241.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rdp2-1.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (250.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rdp2-1.1.2-cp313-cp313-macosx_11_0_arm64.whl (207.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rdp2-1.1.2-cp313-cp313-macosx_10_12_x86_64.whl (212.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rdp2-1.1.2-cp312-cp312-win_amd64.whl (104.5 kB view details)

Uploaded CPython 3.12Windows x86-64

rdp2-1.1.2-cp312-cp312-win32.whl (100.0 kB view details)

Uploaded CPython 3.12Windows x86

rdp2-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (403.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rdp2-1.1.2-cp312-cp312-musllinux_1_2_i686.whl (430.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rdp2-1.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (503.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (414.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rdp2-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rdp2-1.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (267.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rdp2-1.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (294.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (241.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rdp2-1.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (249.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rdp2-1.1.2-cp312-cp312-macosx_11_0_arm64.whl (207.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rdp2-1.1.2-cp312-cp312-macosx_10_12_x86_64.whl (212.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rdp2-1.1.2-cp311-cp311-win_amd64.whl (104.7 kB view details)

Uploaded CPython 3.11Windows x86-64

rdp2-1.1.2-cp311-cp311-win32.whl (101.2 kB view details)

Uploaded CPython 3.11Windows x86

rdp2-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (404.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rdp2-1.1.2-cp311-cp311-musllinux_1_2_i686.whl (433.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rdp2-1.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (506.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (415.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rdp2-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rdp2-1.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (269.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rdp2-1.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (294.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rdp2-1.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (252.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rdp2-1.1.2-cp311-cp311-macosx_11_0_arm64.whl (210.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rdp2-1.1.2-cp311-cp311-macosx_10_12_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rdp2-1.1.2-cp310-cp310-win_amd64.whl (104.8 kB view details)

Uploaded CPython 3.10Windows x86-64

rdp2-1.1.2-cp310-cp310-win32.whl (101.3 kB view details)

Uploaded CPython 3.10Windows x86

rdp2-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (405.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rdp2-1.1.2-cp310-cp310-musllinux_1_2_i686.whl (433.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rdp2-1.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (506.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (415.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rdp2-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rdp2-1.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (269.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rdp2-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (294.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rdp2-1.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (252.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rdp2-1.1.2-cp39-cp39-win_amd64.whl (105.0 kB view details)

Uploaded CPython 3.9Windows x86-64

rdp2-1.1.2-cp39-cp39-win32.whl (101.3 kB view details)

Uploaded CPython 3.9Windows x86

rdp2-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (405.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rdp2-1.1.2-cp39-cp39-musllinux_1_2_i686.whl (433.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rdp2-1.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (506.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (416.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rdp2-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rdp2-1.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (269.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rdp2-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (295.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rdp2-1.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (252.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rdp2-1.1.2-cp38-cp38-win_amd64.whl (105.1 kB view details)

Uploaded CPython 3.8Windows x86-64

rdp2-1.1.2-cp38-cp38-win32.whl (101.1 kB view details)

Uploaded CPython 3.8Windows x86

rdp2-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (405.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

rdp2-1.1.2-cp38-cp38-musllinux_1_2_i686.whl (432.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

rdp2-1.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (506.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (415.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

rdp2-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rdp2-1.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (269.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

rdp2-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (294.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

rdp2-1.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (251.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

rdp2-1.1.2-cp37-cp37m-musllinux_1_2_x86_64.whl (405.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

rdp2-1.1.2-cp37-cp37m-musllinux_1_2_i686.whl (433.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

rdp2-1.1.2-cp37-cp37m-musllinux_1_2_armv7l.whl (506.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARMv7l

rdp2-1.1.2-cp37-cp37m-musllinux_1_2_aarch64.whl (415.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

rdp2-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

rdp2-1.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (269.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

rdp2-1.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (294.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

rdp2-1.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

rdp2-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

rdp2-1.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (251.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for rdp2-1.1.2.tar.gz
Algorithm Hash digest
SHA256 cc8de294fc8d2f543e1f3ed15808f63e8863ae37734929e91f85b2c5c76f8fb8
MD5 8b59d4b94814a7aefd03bd662025eb1d
BLAKE2b-256 57dcdb57803e34a9f35d727e554a3b669d3495fea43626e44f528b7f99215b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c595bafc48ede8aafbafb0aeeb56ad23d34f1dbf08c5bb05ac4ceab507bdff9
MD5 601fa0b2b436c5e9958efff105fff92a
BLAKE2b-256 0a6b665c9ab22a3fa98dd1faf79e25fcd1143b746fcc5c13f23876cda0105c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2680c2eafe9f3ab0fce9c7090481492cb82c27bba36ebd37973f54983b4adfb
MD5 2631eb55ca50b47d40fe565f48cbe12d
BLAKE2b-256 3629cee36e9ae2df77ba52a7e8a0c6afa229c7efc538c38e139652db3a3409b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb475d850c96fc5f1fa491ed99423ef180f57d91fe709936c4e84ac480407a60
MD5 e19ca2a1b20a67106acdbbdece232f14
BLAKE2b-256 f7060ab13bd030391a5dfae3e5059c1d07972b4924dc64112dbfae5014a59915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6fe52df945ff04056f2fc3314cdc86677006960e293499bc694db28c6dfed3a2
MD5 4f28ceae12bd47ea0a230ac2479b592a
BLAKE2b-256 af113ed7ce946339eb1b7eef7d39cfd21523533bec1652b3704a845f96869c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be93a7b5f085f1e61ec75962bd6c62787f1c10b98088370bc877b2522c54c456
MD5 a60f6d4c50c4904955769619f8ba6058
BLAKE2b-256 90d9661db4833a2e38c3046632969eeb7a3f9dd3aaa129bf4cf2ba5c9742c9dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02074d38ecf4a02fb1efe17f5cbf6cb8bfc0eb3c4900d4308ef02681aaa19e88
MD5 0a7b8eee652e2ec02926af442b88ac9d
BLAKE2b-256 372b33d5937586ae592a479b3347a5a333a618e376cd8aed8f3f36d64e097f43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96e51cbe7e402db8f68ab098f93ffb4c9c5bdf92002d96c2445082b722925a0e
MD5 83cebe0255e17d51ec9147eb4033b7bd
BLAKE2b-256 836f24c9b89952280452bc31495583315638ffe9bd87fcc7a946b8bf65ba7037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f2c42ff0b1b5de6c5678bdc10897000887cdca0d78c002f29a711166c57a289
MD5 589056ddba69102cb46556235f48bf31
BLAKE2b-256 f5d8ae37c8db68fd51346e289cfa21d58652cd086453cb720628ecb9afc2985f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 760cfa5b34559e849f2478db477bacc7cad0932c2acde5ce45fc8ccf9f436ff7
MD5 7881adf38a11a9b22622fe7e4c6a80bd
BLAKE2b-256 fe1d61d7dc70f6417203ec5272577487b1dae1b0d965250334c3041f8b1c3563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9a9a5c60e4ef1574b6520bb07a81a55d7dfceaa803b13555578c9438ed83e93
MD5 ae215d7096a7dab48d4bed16854ca71c
BLAKE2b-256 cdb91b2ef35196e030f94e41c21180bd57aa0fdc74f46719b13b736a8dffd9e1

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a4b454f2aa5c81ae512e66326ecd85d8df02fe925d146bed3a517aff048c013
MD5 9259a369dcffe56915dfc949b602e4c0
BLAKE2b-256 7ab7a7a272d611e159ecca0295eb07de4a13dd6b62aca6afe2be315d5fc628e4

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e66a0e98268d8c2825e55e05543e8fc4d96a2a0d26a6d997a0e165729b45d47
MD5 8167c3f6ca715305fdcd38700bf3430a
BLAKE2b-256 e5f3654de0a519406dccd0890b9919de9a8b1a99774deeb4e8860fe03fea71a4

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fccb805851445ec3fe77aaafaad039d009241a20b1dbc18f10847bbc49c1cd06
MD5 90f8356ef1f6c0c141d989d9ed605839
BLAKE2b-256 2d149af1995b04fc4609bf05c8a6847ad04c60b3a309e6014a60a8b48d347876

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0b40476164eb4383845ecfc7c4511b860fabf1087356aaf13445627893c085b
MD5 7af53f5a176d93c04c880a77a7c71b1a
BLAKE2b-256 7c2cb931fc1c42471fbd4137c13aa7e7e7d2277e865bf95ccc38e95e2b4d1156

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f6aa41c833f027529e63dfba30cf51b2e17639bc05038f54c786e56b9b8880a
MD5 f8b7b9417c583cc67d91a76cb5cbfac9
BLAKE2b-256 4285e993b0bd2a7c77858bf9cb87dd5ac4da0921907c252998d25fee33d0d13f

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0e6d8ba8aadc8f767adc1be564bd6c76e0cd4455b9266668d507a0c25009926
MD5 260b560b313ed098eb24b32f83301b1f
BLAKE2b-256 ccad40d1b57fe5d5c87979d3e8ce148be49834001ca4315048ae9baaff4c5348

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e98b291a74f32e15e3899e503d982ddd6137900962a84225fe3fd0b7b62535d1
MD5 da95716f3d6bbabd7cb825c55bbbe52d
BLAKE2b-256 c629590cd5ab83f97896e4ef9010f0f9dba0b2ed33872b932fddc78e0869dc67

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fefc5d81e15196ff7297dd7a66bb63202dfc9c811227e318289bf6936cdd99e4
MD5 c1f14fe5b5c37133c9c580dc48f41826
BLAKE2b-256 5536329cbba40e80436eef70c4ad65cd25585f197c6613c039f4c373a073fab4

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3a02ea362d9a925580296d34d6bc98e04e5b523460ed30b69443c8d9265557f
MD5 e0506e6606e61f60516a1e67b28eafe7
BLAKE2b-256 9a429d8a6c23606f014a2057a919d0602fb7d930a7426af153e65521eb8da910

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 531e1a7863f1f000dc28817f22cd6a93e33485c37f1858a224d1dedbd944d804
MD5 9bd6e2ca37d466fa8f98a2737f770181
BLAKE2b-256 35d3fee9cb22c99c838c9a661baab518690cbec6c381097d8a07887b32a8b4c5

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 526b9ceaf09cff88f5056ce2889ce8589362320cd16f7c057ab28cb883e645f2
MD5 c9b7698c2d3a556c84fee19ea8dc5d42
BLAKE2b-256 370f4edea5326352cccc61d546eb26926d77fb24c8fa6457fc3705edfbf5d380

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 562d1f11c2cda9c1524597e093018c8e1a21ea3f0ad2e817927865ad7d2b4518
MD5 15f4833da4e0ebb7803ccbc183fd6002
BLAKE2b-256 edaf9a42f34424aa53238e197b3d7e84e1a22dd8dac4995984b6ffcaa4ad6359

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43536077afcd97863bab6c957de305ee2c18a1530b0a58991e08b1f7b148e591
MD5 765b08b355f837f1ed0420d336178a4b
BLAKE2b-256 a012c96d24ee2ba603f34df8ef184c5efcf4639d40936de37b3768387b2b1518

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 681f2be338f3e828d49152f6d063039503d9c58ed1ec57a6a6a06dcd8867e23a
MD5 daf631d43ecb3af17cb08f7da0dc1ffb
BLAKE2b-256 c0dd04bf79b770d930855659c08106b2b92cce878a0477a95fbab2d19637c296

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52e3ec01c942d7abe8f3a36b9d4eb1b5e664ebe248a4c772a334b9241ac7de85
MD5 c313fd09ca1ab3d9dc18b2d244bb042a
BLAKE2b-256 aded0a53f53072698879009fe62e5dd09b82a9e475c9aa781ca3d6d936ecfde3

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b739f4279da44480e50f81cffcfee14a4d15f8aedba5b9b11e11f2120b6027ea
MD5 646c2da8bd6e5d414da25f938c029302
BLAKE2b-256 b8a971ff6345267c57ff9f4f5bb7f7ca5635223485ee6f4ea3a618196626af6e

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7c554ee41c3b02e459d85546cff8d6166f7695685037e5436b2f841f7a20438
MD5 513a91d14b1ec5aa48167bfabc1b4e9f
BLAKE2b-256 808d420ebe743c402009e6966b209ece1d884add38f7cfc33a9c186ca35b9404

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bb2dcb5662fb76d6c5677194fba559c481b4dd25fa54c19f41dc3ea3565883d
MD5 72676fa17cd9c93531e11c05429799ef
BLAKE2b-256 08f6dd8e95a294a669f59a39b09c2016d421a408653911e825e095a949c921fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7a24754bb880a1b2e557fd0290b085f971e47145cdc605700fdc326990e70c5
MD5 b942463588db3ca7306fa1befb78a7c5
BLAKE2b-256 557791758462343f6009579bbeb054e81cbd87f00559eda4c21cf5079c848b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af96dbd3372adb951921a0c0ac6c25335fb9b88c68ed4e347ba316a0215d4565
MD5 7bd00496984dbb7c74f9198abfcccd93
BLAKE2b-256 13538d980668a1fb1ef13be7e80f40a70301abfd00a740808728c5b898aae19e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8340da40c0466802133b76f7ca4b596b4080416089771e2a05f0102e450f4c0
MD5 b19205496c654307d580bb9f8312d28f
BLAKE2b-256 65c99460a96d9e45f8bbad6a46df2a13b31fc229785e219b8c918a0037b79d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d963e862d750b1a986e5668424627664cc5cd89a86193bccb615a56c65c6c3f
MD5 372f57bd1a2a38515891f9ea9328913b
BLAKE2b-256 bc97d6b94a144430cc44386a4f6742be6fe2eea5f3fb8f08c7d58d5670177abb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fea60a729c72041f1af2a9bfc4c858cc215302178a10bc7bb20da74e7aae774
MD5 99f3710e1ff2c91a2b556d788af9053d
BLAKE2b-256 1763a6a633b419c1244621857ed2adebfc72a17160a098eed5d013fc8e2611e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f871b0a09a4ca0077a7c98285cb0d5112f74d1fb31ed15de85bf2eb615dd4ef4
MD5 7ef2a38b6813079e6d8d9c3fcc56866b
BLAKE2b-256 81c170b5103fa0882ce7d886f5b8129c88b9817096a176bc047b066dc5a28f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f85793bdda8a95db1c3c95c49a1dd3d382daaeaa5043ffb0ec27400abc2cc793
MD5 7209ad5d808443ac4564d2962c4eda4b
BLAKE2b-256 07a13f315f516acb84025e99954b1405289743dd5592be1944354dd7d807ad80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 072df5643ef9b2721fb5281c6019cdf16b48325e64eb359bd09b93066e1b5b09
MD5 bc25ab99143fcdef1d5674339cf233ab
BLAKE2b-256 dd440cb436939d5a4c6b40d62da4070835341dffed5ddb24a128c91a614dac88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ec6e2c3fce55ef49e3cf653ed25554d090321da46eff1077174649b29dd83e26
MD5 e51f405a8a2a36765b7eac978688f155
BLAKE2b-256 0ad8efd8c1bc7954bd3e0a3bb7af9bd8b13818071c005aeba39e3748a86fdeb4

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: rdp2-1.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 100.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e7aa1327988f4c774b88f6bea3aa8764e1dbf83ab0da04eacb54767720a94a41
MD5 7e0458f44327985833dec60b3ca4b110
BLAKE2b-256 a353d243267969b0ccde71302c1028cd819e058b513c8ff5ebbc242e7009e3df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e29ede37294de5b3834b09cac9ffd153564ca9e6b1172324cfbc2219c4852aa3
MD5 072113896a2faf2d5968e4211691c034
BLAKE2b-256 484c946f06e3b2560ca2e431c75a84fb2e6d3e4f09bc502360c6d896889e6490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65b665ce6adf0c5c593338bcf3d9912fc205645d0f02b627f042b9f6e33610ba
MD5 4cd2584ba73ecb1d8122e79756c1ecc1
BLAKE2b-256 25ba1cee57050ce17f7b19415556fb384f93c3d12ca09318858d7d402810d9b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38e0d12805c95f88c914835affbefc63674971002d88be4dc37aa023f59ecae8
MD5 97b27a8d4331a572802f983244d1c056
BLAKE2b-256 df19e3a116b063e682547ad683c936c5065972e4afd082caca4fe0005bc078f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e1659a9713dcca602abf3578a926ce8f3c44fab02f5a70b093cfcf2681ca855
MD5 c2a1ecd4ddd986b2f379d63c6918a1ff
BLAKE2b-256 25221f5af20850645b3e3e97e3a33901a970746b35641e20b08e82f57acc090e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d7641449b8cb5a12de111e185153c8670b1773439251038eb86f9d40d00c6ec
MD5 8d5dfa3a4d023209087e08f0ce726d17
BLAKE2b-256 4475416b03ad396161c2f414fa246c6aed646f111b9bbfbad327410042e2201b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc7c737aae52f119f068648c38c9263e6a484650586548b06a988057eb02340c
MD5 2afff592d6e043306320829d11e252ca
BLAKE2b-256 d717d5bb6667783f48c8486d3244a1d7eb086139e5511d0998fc0364d0779395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6d2df329f8134f51ed66425b2f8aa0002be0112c859695af55d0450e1aa71e9
MD5 71675cefd48425b4bd1e9e5e9e13cb45
BLAKE2b-256 f3ce41d38c8b9996b6e93180e3a4c524972c9d39780fc017e53627e1689886e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 037f77017e1b6405428588e69f0f6f6f27e54c232057e897c8604df88d977398
MD5 867460dbdac5df956a445132702032cd
BLAKE2b-256 fff89fc43dc323ca8767eddeb9280eb97dfcc09bd47857c77b22d9d7dafbb28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0112ca1619711a700be19596b4e111d48793ddc53f4e8514c1675200380cc30
MD5 28611ec90a51ef1101b478d5be43dd3c
BLAKE2b-256 20fc56a9624cdb1371c4a2091e6b7decddab5ffc96e6fe809d7e38c627fcf749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb1effe3fe571c11b5128bec0709afb42d46c66bab965b305e8da13e13843daf
MD5 dc25f4dba0fed4eccecc0701a1374685
BLAKE2b-256 1172165d7b7b5ff1488b2ff5a97338d3704af80941cdf87db9925e5c18193b64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54b2570b6e771f4a7f650398b46b1497a36a32ec7240c96b6496908482744f55
MD5 a70d5e8c2989cf661d88a6af39544829
BLAKE2b-256 773943df06bbc9a4faa32f8907df2ef2c064697cba9b9e3e1d50d6e0acad1a9c

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e63232717c417c72dfbf3ca55255445c6a8dcbb0490d1df3f647871fbcc4434
MD5 f1b02734209f29024acd3dfa04eb5718
BLAKE2b-256 7f5c3e4882b4f33da6f05e2a22a798d1143cf2e5de8c0383bc13c8ebbfb03447

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 705024ee8787621969ac964c6b6bdb9e115a30552aae94747cc3200402eb2db5
MD5 fabece93772f995a83e958f2c984d968
BLAKE2b-256 2fd8346380bd1f4988b55ede42889032cb9c6875e801c4b51ee45eda15f4b944

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: rdp2-1.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 100.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4b1c78e318d840f92655e93f50afbbf34e828dedcca84e83dfb330101927ca61
MD5 635fc4cc44afce44a77e064529ab41fd
BLAKE2b-256 61963657cd6a6a2e7ae60c72f1ebe356f83eca1a6e04f15612f8b4394f41c3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d810421da9ef88f9b43cc4ef4ee08f3fcef79889f010db3e1678a67cc8f53e99
MD5 16de6c65f15d0a6e9c8bd708b5d7d4a3
BLAKE2b-256 ef2bfaa1131777c78ced634e90737376d636568de7cb2e5f49cfdec5a932f107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03ba7491f21c6c9a978e8584e33a315e08a02fa4e2ec08029223a95581365494
MD5 2a8fab59a7d14b0bdaa2a84161050bef
BLAKE2b-256 6a48fb8855f2e10cce3153f5fc72dfb259efa5dcc44616b8d324ddd9e35251b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1b473874ac3d8dde2e3f4f5be8191026302495d6253b70d60152da2582a1172
MD5 43f08e443e26f24f41816f3e77ef210d
BLAKE2b-256 b6eaef763e95684546f1d685688a0b53ea09bd7f769a22c5cafa279f7e5db265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16df71d766f30622db1d50b29bac6a99d7bd0e961229906b20bda73167f57cf6
MD5 7d289336fff2e175bd67a21a015f371e
BLAKE2b-256 c415443c13b80b63e067f547801ebd39bbd9bf26db15a9c8b46a1f4a73f4e46c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ce4ec0cd9dbea3910da1997fbe9080567e00a46f79e96f421c1b1a9cc24d374
MD5 490ed939ae884fb0ce2d208759db0b7d
BLAKE2b-256 6b40cb83e80555b9b0e9dbbc87e98661b1b4e15b19d8d371a2478424d5a597f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1d688dc3d414202aa9195b125f263e6ec25098daaf1a7fa9f1260404fb47801
MD5 9a98a8942e27dfd74602ced9fe726bda
BLAKE2b-256 7abb8ce9d1a68b7e05adecb631886e26553c1f1aaa698a71484fc73db26b73d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62972aa4d058d85689ab364d96725f9444f2fdb8dfb6b0ea77990774926c3794
MD5 6f8b79181d690eeb88f167c7a40b290a
BLAKE2b-256 9cd4819cfde134b926b49773952c325e1e1718fba79f6725aaec10d1b3de791a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fdc17d1c99db29e7cf7a29255a5617f27087470202d044efe7de10f962f5623e
MD5 568b0d85227c957f52b0da5855c90241
BLAKE2b-256 0afa6238ed62fa8e64df049d06858607e581e0ee704b0f0e5f7d03832d245fe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad1d8ae4555e591a65293f991544cd79e4f856d77d21a49ac18374a08761a7a9
MD5 8e09817976e4297f27c166369d01feed
BLAKE2b-256 8a4f5fb660751de24682d2724b36324e419f22e0297b2bf7edb744ce55f0ddb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5017ad62bbb594006b9eb182465b46da303159dcef8f30bd5985462878ea9213
MD5 05fdd910d5cfbec316ba0372b134d815
BLAKE2b-256 975e64bcb568fa68597da4179ebe034f2a902239c161e4a00f159fc54e223b49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8185092fcdd8f4ebc062009eb98f8a27bc7e06bb8aa921c0a3bcb9e858cb42e1
MD5 2c5d008b9e94301492049c8fc9f169f2
BLAKE2b-256 b081d49b96476fadae213ff4c8dae2210a9c3c14dbb6b719fd4aedc98b0f92e8

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d4e84084eb6868616482aefe0fcc78261e6262e2021d627b34fc84744ece5d4
MD5 209ca7f5edf80ccc0885313ec49786b9
BLAKE2b-256 e45ac4cea88acb21c5fc8d4732c1f925ad2d7f131b5eb78640fe080770d88425

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cab02ef4f4c3c135caed92918e38834bf97eb09b384c39acb98b906a7ca9ed63
MD5 deebccf003b6b3d0b2ffbceab2a6ad1e
BLAKE2b-256 71c1f7b5b1d8fbe136927868d2a17e2fae5b25a83a95475e95f44ebba03a5a9c

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: rdp2-1.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 101.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 36d75da1da7551f74e652c1c1afe7c5dcabf8e8d4356a752b5970a5b7919c20f
MD5 8482ef1814687a96a3f8f28ae030d333
BLAKE2b-256 909c36d71130373387c8fda73f209fa0b2e0ad3b8463a3a00afe50ae51959953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17ba80320c433c7ff4446b8e1caac19340c57f439688099de11d4e8a3c48a532
MD5 1e3ed6587c9536f10cc128f6f16abe53
BLAKE2b-256 53973e939c95588b97ea4f18a38d7e952e4b74a1a4a70cb0c024bcced8388fe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 987d671dc51419809670de216c54f7c7de3bb42a3776696c6d6fd1a50a8c32b8
MD5 e07a7e40f16fd640acc1ec3121dcafa3
BLAKE2b-256 d2670a0f7dabe3b6c20e84bcdcd879a370ae2ed26d52e03560f1a1bc87891fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88148b712ac7f42e4bab4a85153448fcbb79614ee05df56217343ff5d4d8b1cf
MD5 aae371a57a7aa75c2c84df9c560f9ab8
BLAKE2b-256 9368fbb6d01ff96773a2da17fb2a8ec1bf5c6e0b097fbaf5b0e368c230a127ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 643b8dd8ec7e22746bef9ade3b242a6103a46f4d2a83104febc4d2eb5e35766d
MD5 8cebb0ee1f73ac74ba45e887eac80414
BLAKE2b-256 312217495e9f05d07fdb906dd418d7d082d04b6149fbb773a03227633af7420d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3a2f6d9c90241c1a9a7952d903f3ec4732c3cef2297462af4137145d8dd7b98
MD5 31116e23d7d8742cfcbca4c3f046a1fe
BLAKE2b-256 3fcc3e4615baa2fd24d55dac277f1c07de798f13d69f11894c05b2be2ecd6ed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e0058411df2bd100c85b1eb4e31ae0ef9b07b861a796bb0c17e0991cdbed4e0
MD5 3d5d393c7f6da0e8f6888bbecc5e4c07
BLAKE2b-256 b72b254002915105e1b8ac4a4d2a7844f8750cbf3653fa09381b0f798663158f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab9480b52f1d65c4299ec2b343a7f49148cb248522fda4816c7e329a4b119ad2
MD5 77838d861888e983ee9a3169a976fb50
BLAKE2b-256 95e39da4768e4ebafce14ca910e5fa972306be85ccc84c59091ae1725f1fd489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 705124052cb0955c8f2accc64ab15eb1ec7be5d3f80c09f67bd58c439e39f73e
MD5 3a7deeac57da57baa039ef76bcdcf029
BLAKE2b-256 7f9561b4e75a464d3230ebe9002db62dd782c0728bcfb64c30481c73ce730d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33b753c17c25a97165d697cc2fb10dee82f0547df155b8c724cb1d133ce06bc1
MD5 e97cb70718862143fba81417d41effc0
BLAKE2b-256 bdfe11977e7a93e0d53d821b9a8789a1741d27b72323800b329a4e9cf599d36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 528921167d79f06c726137a405feadfca57ea54f0cd278d2b0bb88691e7b24a5
MD5 fb6c329658dafa4f6ded785efb39db50
BLAKE2b-256 9a0f830fc92fdaeadf4bc8fb6c55ff4c72f0244f5a875b7242870aa9b2540171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93e33dfcc970d7408a28213dfb735d13e123729d51a04daff1d7106e2db58610
MD5 0b40625b633ab9d4c829feda7f44aa1c
BLAKE2b-256 4004eb3ee957188f4966783c27eae9bf1707945e63035fc2b399ea8074f85394

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52cc17be776321e7b282cc526b5cefae4f21c0551f71d0444781b3014568e198
MD5 ad5f2c29a6405f7897f5cca4c0b828cb
BLAKE2b-256 7ce45c137d0a941a43b030a05989b6de7b3a9576072cc2cd7a3f2aaddaabca5e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5356d6a129452f95b3fd3060a7c517dd240a908a77c073cb7f3f760b4d3821b3
MD5 28680710dbf243d2e342724ea2d294c6
BLAKE2b-256 34560cbe37dca05db8d442eb726f503374bacfa503ee7beb499251b002dac891

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: rdp2-1.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 101.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c007a86010b74b4e0ed6471f63995721689b560508f8d2c009c23d22de7a9bb4
MD5 8a6ed1914acd64c30e7321827517d076
BLAKE2b-256 3c2ced1972963e47a5a0d8aad5921c68ae8fcea2136f5957940f8cb22387a7b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77812d71d04c1837e2510c33dbc0ae6ef8cfc9864165097a190e1e8ac961934f
MD5 6dea3519e25827d4d919a9620cc13f85
BLAKE2b-256 83e881df872a3c453ecca3cd8c119ecf347d60236128596cb18bcd174afcb21e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1320f1c5f824fb010cdc552beb78dd4647ee99e6b7575d42c547d930662555f4
MD5 0cdb8881e3239a71859bed93b4e02f4a
BLAKE2b-256 f9514da2d5551c52c346e71b8cc5fdb7e84418465c63c831eb5ec71fddfbf030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b134ad5fdeb70863cb90540d41809876a1f2ef34b1e0dce0726870d1612ceb9
MD5 007579da367344cd4a64b57e65bb4cde
BLAKE2b-256 50fce6426abb9c2a9d92f8314338adea097e4f2583ff420017285802b97def1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dadde39db66e5e26576a66e5bcb31f4798202fc0cc5f63854c7b03ed71dd555d
MD5 a7ae3c275a37d52850abae2a26f76b2f
BLAKE2b-256 abfe8b892c0149b8ec7bbfbbdf0421a15abf8bcb6984ad957e1c258592c11b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52ac644e85cc24773aa39a40200fd5208aabd18dde8ed8af8bd92ba2bea100fd
MD5 3bfd9ecd6fa93ff73103881114746434
BLAKE2b-256 75c8c36ea7db3671c239e74e998de1af71600d1e8957ea815f120e499e78915d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef95e2af2e5b46a2648615f754b42d33c409a04599f45cbb39fefed2f0c5a341
MD5 018d2adc78a25571fc733b6d1f231e38
BLAKE2b-256 1b600b32223812a0d406b399954be0f1198565f5712aa0fb04d9c872d7ca7d4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99894984b942242dcc401ce0952726a2c61e726682a21aeb2587d37a521602fb
MD5 11aa55a0785085042a06be486283fe86
BLAKE2b-256 08c9d533532e8af8dbcc2e0587b470d7ee563762d232cbe6d8e4d13777b5a17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f105228a89808f0aecfa790d6812440d8cbbaf15dec4d084d3e14d23e46dece0
MD5 6a71095592269b07c264ff68817c6a5f
BLAKE2b-256 4b0ab8984820cf8fb3e131ae12d02e40c5cf28ec451eafee9d099f5652f44e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb02a69f691b75ab74bb7fb745ac1e9ae16d026936539b4bab131378c2fa1f00
MD5 36c249b91140924232b746dea234b92d
BLAKE2b-256 bfc516630fcbfec9058c6a67f8fa618e8ed68c3cb75aca5fe3bf09bc87968141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 357329a378a8b50d90cc23ea46c742cd31fe85cb0350b48f1e34f8baee42ad0c
MD5 5097604ae9d02da353fdbc6b27130f0e
BLAKE2b-256 175fa91c832015e76a98d62d8168ec0355914966d83080744568124eedc7db6e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bdf22961cb4de161e66743bac574ccb615ea86a98921e34fa829fc356139e48b
MD5 b628cede991ad0c7249ff151471a547f
BLAKE2b-256 ec4c394a2c8b7ca2240b0eeca66090df16b0246e6fe23d90ee5b7ce7b16b3e25

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: rdp2-1.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 101.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c55f3dc76258c44a85b8cea6d6ee77f5b6e98d37983314edfca954e1d9a7fd5a
MD5 a3983035262db4eec7d38f9c1dd32ca7
BLAKE2b-256 ad0dc2d5d700075a6d65f42a87e8c91588d8638a1b59bdc4c2d154ed5e55369c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3f358114c230a1aca293743092b0b5d9f6a6b735753a57a8e71e734466d8310
MD5 6b382c40b08ec8345931972e42a2fa11
BLAKE2b-256 d4516f7f2dce2c4b02a5902cc442680a2936cebed00177cee12d5812cab618f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f6f1553f4a8dd0b338150d3a320103cd494a18ee708aecabe16d8f06344b5b4
MD5 8e590909edcc27293be58353b34c2b2f
BLAKE2b-256 178349b99fc615345f8bb1e569bf8622a93e2cd35607414d98c21421fef4b355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 632d388ed29443626aabf45826eb7bd9e8e114f36d87f3e283ed579f8fb8b6b5
MD5 42a7aac45f1806b2b525acb483ff4985
BLAKE2b-256 549a2fca5073a705545638087c27044c76816c954f4d69f1be98cd06ad5a097b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a01bf3c4bf3b10acaf23fc0995863a3f3076dec643c00a04535ffcfe9b7639a2
MD5 9f37316b6b824e8b6bf63e74776cb1af
BLAKE2b-256 b4bc89c7206d6dca7ffe592d6b55ba4760de5c4ceda8d7dbc16e7fd3754f4839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5dadc544cf1e94c4bff5e4d4b889ed8233e2862f68132de68018cabcb3a3177d
MD5 51732eab48fc7412d8b21f10b0f4f7be
BLAKE2b-256 5270c1cb9581f01d0691473b10ea3f9698951e913268173c2d568c1451e4d4fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 265fc83385849c56455f13b303300e9ae1f14f049f8e187a4c4e73986c82dcdd
MD5 b2483dab3980c58914f66e593ae892fa
BLAKE2b-256 31d35832f3e58f94ce7e8625a6937b6688d7b7206f517a62114cb7de78d79945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca6c64f77cc679acb91477140ebe0c641997a338625680d158769b215dcc581a
MD5 4660ec1d696b5e3c9095e2dff83cb9f0
BLAKE2b-256 698f52761400847ae4d9b3a8497ba83ce9363fc15e983b558b51a99e2976ea76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6474489e281a12d3dcc766c4e719e9e2f83632725c0cce9cedf2c06ba794b78c
MD5 7f26ea9c3118a463330d0220ea8edfc1
BLAKE2b-256 4e34c6855d6dfd013d2d1cbc77644040fe1c079fcab446284f87b81044c1dc5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8337beace8953cc927b17043d9eef6cd387d62f67ce6fcd05b135f6f5c28d27
MD5 b74098d5697ceeb386ce55a604f3d180
BLAKE2b-256 73d0c6a89cf43bf3de3eb15d7be2ac4dda4338d6f8c36a4e7d2a55a479144921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6a0863fbaf96b4e043fd70120030b32ebcf92344e17bd3ad114e25a7340b83b
MD5 b9ac3b3ff689c1459e942f9199d24eb8
BLAKE2b-256 5cca54e0eede76a9dbf406cadd4faac4b12cdcde351fcbb1be9d1a40c80d86df

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rdp2-1.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 105.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2c4076e83384dd3dc21af74cb7ed64bc51d252e088f067eedf36fe05798dd542
MD5 b1eff09b7890b3de0bfb766cec6b779d
BLAKE2b-256 ae52ba2e29b4525d5e98898e38f88af61d63d7f95caa0460d60752ab9d94a398

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: rdp2-1.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 101.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8be6bf7d6b457042fdd92b50a126123fdacc4317118df4f892fd91481dab4523
MD5 5ec9a27a81d72302b61793235bdfd150
BLAKE2b-256 0a99f3da9ad94e7ded705fc8645bde6b8a4c3c8c3c7c5a8ab830e49580f2e123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08f8b11e3fcc997a4af67463d1533bc797da76855748084254580d63b564ab19
MD5 cd6c4abac5cc4615a5e35e31a6c7e363
BLAKE2b-256 22bfcd190952882b8dd0f1e0af052584ba9625623a21d9c44de0c226a8742d09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5bee422712acbafd0edc4911ce268a43284b383eb9dce6f1a5ab7b01751c4dda
MD5 1ed020ca4c92357bdc675bb7227e5d8b
BLAKE2b-256 9d190e45c752ecbc875ced7c9cda1eadf8002a9a0addbe4dd69bde1750c1b4bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bf82e377cfe47be761a18248dafd3c5c088f464d0ae17963a51a8dab50a4ba5
MD5 2ceda40bdddc58d9613b2a5538262368
BLAKE2b-256 509dcecb789be70348ed952ae7923eac3fdb13335d96c5be7259bc8619e1786d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c12642839e8d3c6cfde6b5df02613a3b87a8763d8ebfbf41ac536bebd1c5c4ff
MD5 7bde326dccd5859099c5b97ebcfab4ec
BLAKE2b-256 269388cd94d5d561a570773a723bdd407ad849d91540d4f0769413bd2edca507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49f697543a542ae2e6977d1395073de881ed644bf6b737a579dc670e96dec71c
MD5 dcee2ec3f7c436af7704501bf66a2224
BLAKE2b-256 d6e8665b667283653217b844c845509012fc02fff5f579d5978410eac4fb1790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36ba71a71d5a94a24acefe0a628642e2d648e36373b7f36093fcc9cd15eba6da
MD5 86b00613b4cabf4fd539adadb0ff166d
BLAKE2b-256 28a0f78dab070a86960fe62be1bf9fc06f3a6da27528954579f226a9bd1f7fd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7e2ec9ed73fc863dbd9bbbfff61bff3b23399df53f17436005af139e1d915c1
MD5 2dd88cb121c53ea5bfff38ac8f45f5d1
BLAKE2b-256 36f0a8e3a110b3f99919bc914e4c23132d1bc24557604bf22db3fbf190f243fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcf8523359ea032ca26da105295aaffefaf34480c6f6b8675273bb94a70121ff
MD5 19076d741e6b71c493e5e5b1bf91d604
BLAKE2b-256 ab9a91e790c1cf55eab46247a5df1cc569a40ff053182c77ebb7889bacc9b3ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8242902f780a1c98bc5030d99b1e894ad622c9f0846afa7b51ae54ef18aafcff
MD5 7ca30cbeb24f58d228fed4afa25dec16
BLAKE2b-256 84f2390ecf062c04be01627ce77a5d48edcccd3b6dc35cf47be333d6108172b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f7b40b8ec6a3d61540a3e89778192a9fe7c97e82f0cafab36c50dbb593610af7
MD5 e7144aba3369452efad1be214d279ba4
BLAKE2b-256 773109505caa6fa5d31c1897194fba248db9ead968ad863b3c7988234d624389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3ba9410184cadfbfc4fc4c246745de52f0b5f33b226edfbca8defb7ed1d99cf
MD5 3256b7d86caae482f37df92ad6c96f08
BLAKE2b-256 227b5ddf6c93331b8eddfb21797cccf0da72dc7fe41ecb8fdc335cb79cad765b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9b7991b6d4d8eba131d3d0d4e129d782a2dbae5a28ba4226270081421284f9e
MD5 10b82bf6cdf959bb11e9f9cf33890303
BLAKE2b-256 f651f766738550ee4bd41af7f9502ad74d16af69384ffc013f3ce1044e97661e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b12b52cd4027545ebe3144c7a58965d57f27ae476aac0c15d048e41af546ca17
MD5 fed30758593735487c8c814f119406f6
BLAKE2b-256 54e2abc5de6574e1f9d7605b9d3e3516ac72d9d7955a50579afad2e067c79b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c84c597d4938c768e2314d16547a65ce24ddcefd235f0737538d75e93d754733
MD5 69b5677aef934fc18fd1d85d7d3422fb
BLAKE2b-256 e782537ca35b245eba58953b2d9c7d37c44615629c9491a488e6a8cf2381cc60

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 618e7a564e0a13a2ca70461314548e670ef249b537dcd429d3aaa19779fee535
MD5 ce73396ca514073c416e98028b792729
BLAKE2b-256 dbd1b3ade7e7869c5a877aedd17b3cb2f32882f7f28df870ccc552db8d5167e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1aa1aaa277fea7bd2868b7cbdc911475b0b9b7c87ffd156b7a872a7b6f82c0b0
MD5 cd3153ef7c315ff019c39686f3da56ad
BLAKE2b-256 44c26729bf7dbc5c522cf204b44931f2112b30e45f44ebebe9ae7fd03682e658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ceaf408f0dbcc7232fdc5d8b439bf18525850866b5cf08d5c5211f4ee623521
MD5 42952b1ca3551c0a5e5090c7b2886b31
BLAKE2b-256 50fb4b4285dfabb2a35e9cc159f28bfcc5a6a3610d0f5c46925e88aa0f5f5550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83f9d144daa0d6e15d9054ecc0995390b707d9691eb54cd353e4228a1952b60c
MD5 cee8558dd761a666cacdbc7c8dd38f38
BLAKE2b-256 30085630a73263891ff4afdce36d3fd458e4edecdb1daacb574c5245992ceb04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4ed7e7c3afe5cce6e671a2534b60122ef407bd2e027bb11365af011e6a8b5a6
MD5 0e430899712ef2bc20360738288b81bf
BLAKE2b-256 1862e31cc29b86014c78fe43d5ec2902f2b11839d2c073c6c71b91af6a292908

See more details on using hashes here.

File details

Details for the file rdp2-1.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rdp2-1.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0b88c5169a24ce4dd2fc614950a47e47b1ea698bf282f5219223e8e027586ae
MD5 8f2536cdc77a2ccc5b11275d3a4facdd
BLAKE2b-256 70e67db79be94bfe676a89491b21c2af6959b84c9dc40d6781760f193ecb9d4d

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