Skip to main content

resp-benchmark is a benchmark tool for testing databases that support the RESP protocol, such as Redis, Valkey, and Tair.

Project description

resp-benchmark

Python - Version PyPI - Version PyPI - Downloads License

resp-benchmark is a benchmark tool for testing databases that support the RESP protocol, such as Redis, Valkey, and Tair. It offers both a command-line interface and a Python library.

Installation

Requires Python 3.8 or higher.

pip install resp-benchmark

Usage

Command-Line Tool

resp-benchmark --help

Python Library

from resp_benchmark import Benchmark

bm = Benchmark(host="127.0.0.1", port=6379)
bm.flushall()
bm.load_data(command="SET {key sequence 10000000} {value 64}", count=1000000, connections=128)
result = bm.bench("GET {key uniform 10000000}", seconds=3, connections=16)
print(result.qps, result.avg_latency_ms, result.p99_latency_ms)

Custom Commands

resp-benchmark supports custom test commands using placeholder syntax like SET {key uniform 10000000} {value 64} which means the SET command will have a key uniformly distributed in the range 0-10000000 and a value of 64 bytes.

Supported placeholders include:

  • {key uniform N}: Generates a random number between 0 and N-1. For example, {key uniform 100} might generate key_0000000099.
  • {key sequence N}: Sequentially generates from 0 to N-1, ensuring coverage during data loading. For example, {key sequence 100} generates key_0000000000, key_0000000001, etc.
  • {key zipfian N}: Generates according to a Zipfian distribution (exponent 1.03), simulating real-world key distribution.
  • {value N}: Generates a random string of length N bytes. For example, {value 8} might generate 92xsqdNg.
  • {rand N}: Generates a random number between 0 and N-1. For example, {rand 100} might generate 99.
  • {range N W}: Generates a pair of random numbers within the range 0 to N-1, with a difference of W, used for testing *range* commands. For example, {range 100 10} might generate 89 99.

Best Practices

Benchmarking zset

# Load data
resp-benchmark --load -P 10 -c 256 -n 10007000 "ZADD {key sequence 1000} {rand 70000} {key sequence 10007}"
# Benchmark ZSCORE
resp-benchmark -s 10 "ZSCORE {key uniform 1000} {key uniform 10007}"
# Benchmark ZRANGEBYSCORE
resp-benchmark -s 10 "ZRANGEBYSCORE {key uniform 1000} {range 70000 10}"

Benchmarking Lua Scripts

redis-cli 'SCRIPT LOAD "return redis.call('\''SET'\'', KEYS[1], ARGV[1])"'
resp-benchmark -s 10 "EVALSHA d8f2fad9f8e86a53d2a6ebd960b33c4972cacc37 1 {key uniform 100000} {value 64}"

Differences with redis-benchmark

When testing Redis with resp-benchmark and redis-benchmark, you might get different results due to:

  1. redis-benchmark always uses the same value when testing the set command, which does not trigger DB persistence and replication. In contrast, resp-benchmark uses {value 64} to generate different data for each command.
  2. redis-benchmark always uses the same primary key when testing list/set/zset/hash commands, while resp-benchmark generates different keys using placeholders like {key uniform 10000000}.
  3. In cluster mode, redis-benchmark sends requests to each node, but all requests target the same slot on every node.

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

resp_benchmark-0.1.7.tar.gz (24.1 kB view details)

Uploaded Source

Built Distributions

resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.1.7-cp312-none-win_amd64.whl (912.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

resp_benchmark-0.1.7-cp312-none-win32.whl (847.6 kB view details)

Uploaded CPython 3.12 Windows x86

resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

resp_benchmark-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

resp_benchmark-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

resp_benchmark-0.1.7-cp311-none-win_amd64.whl (914.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

resp_benchmark-0.1.7-cp311-none-win32.whl (849.4 kB view details)

Uploaded CPython 3.11 Windows x86

resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

resp_benchmark-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

resp_benchmark-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

resp_benchmark-0.1.7-cp310-none-win_amd64.whl (914.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

resp_benchmark-0.1.7-cp310-none-win32.whl (848.9 kB view details)

Uploaded CPython 3.10 Windows x86

resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

resp_benchmark-0.1.7-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

resp_benchmark-0.1.7-cp39-none-win_amd64.whl (914.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

resp_benchmark-0.1.7-cp39-none-win32.whl (849.4 kB view details)

Uploaded CPython 3.9 Windows x86

resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

resp_benchmark-0.1.7-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

resp_benchmark-0.1.7-cp38-none-win_amd64.whl (915.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

resp_benchmark-0.1.7-cp38-none-win32.whl (849.5 kB view details)

Uploaded CPython 3.8 Windows x86

resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file resp_benchmark-0.1.7.tar.gz.

File metadata

  • Download URL: resp_benchmark-0.1.7.tar.gz
  • Upload date:
  • Size: 24.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.0

File hashes

Hashes for resp_benchmark-0.1.7.tar.gz
Algorithm Hash digest
SHA256 f4903ccade2cf4b279f85b7613f460c7ff0fd914adae7ed548386f4d304a8391
MD5 015ac8a6f237f09706594aca80378728
BLAKE2b-256 f18e9e396222a5f4083bab2eefeeb735c87967443b1e038f02627e37c19ba162

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65edfd8e68df6931b0b96deb06ff5060f11c492a8cb1759e01dfc34c9d792ebf
MD5 a5eb1be8c758be1e399dbe2f8a2faeb2
BLAKE2b-256 4641aa7c3cc48693270180486284264e9826e2f9993af801a30ff147605ddf56

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efed04b3d8baef02ab44fc515c7e6fb01673e03598c0d5b2d506f7a7aed48bb9
MD5 4c2e3e6c0fa684b6685d82bfc1ecf352
BLAKE2b-256 da59d5c709bd647c8fcf857c05002b0226256fe008ce9b0b30614791ea7d7558

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c48621b0defff5130ceea0e545daa7fbae5974171a4176681537102e4e66ca09
MD5 faac0b4e5e306a062124d0a8fa275a59
BLAKE2b-256 c57cd8734399f663e5aac6bca05f22f61b1b0fbe2643968b34efd6343daa0854

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d2075f6282f776a1496c51a22f7f374aadbe9c8f86775e28e3814a26131b60a
MD5 4b4745681fea947a0ddf79c8ee4e5842
BLAKE2b-256 3fc8c3d52f9e621f5120d7b4eaa404b58f5dd551533f1ecaa7f0bac914a98690

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c15cf6c158fcf3c5f669efbbc129a962145614e2374d5c99b4e19920c04a2671
MD5 fa81495b1786a97083ca4a293783aa02
BLAKE2b-256 15baf1d5cbbfa24bd4020310ee4d6c77887ecce758344106a2c7b92694b24dbb

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 38b2b769c1620c0e9babb3bd9c17cf595c50d05e4ce5e740d9fc2cb36eaf98cc
MD5 d62d25122067a4d53c2b9f0d5d2e77d0
BLAKE2b-256 01a4cdee2af93c76be8eeeae65bc0924ac0cd8ee843a6c43dc28317bc95fe59a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9e73cb4363baabd1ef7168030af058cf640098ada25056c93c7cf8535f0ec8b
MD5 aaff4bc510bde1154b44cc47af23ea37
BLAKE2b-256 aef8f3a74f9d22cbbbdf6bae3686263f28868352298796e1e1e1be9c2fa63ddb

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 856b2230f4eb49170418137fcf97d8a82f5b6e38b5a48810945948dc9365f0b4
MD5 c3995ed654d5c7c58b5a8dddffa1709d
BLAKE2b-256 3c4d2520e1ec3baf3a18e486ffe0ae658cee7ee6ca15a5ccba1effbe7a415c2e

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50c34b585209a2c68bf32f2157dd7851300c6d15859febb7791e54356d50bee9
MD5 3b548f34b1d773c4728d4a6e9d2a0090
BLAKE2b-256 f696e8074c581c1845e2da7ec0dbecb019891ea0ac6241ecdf0862c1d091ba6b

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d538ca27d7976cc2204d4b8cf9f7a5343710808139348564be572aa156d0cb25
MD5 b29711075ae7fd21388514b1ac763aea
BLAKE2b-256 6900d3a581c5b3e432150d792b0a7ae2ddd6cec8d31018224acd6f55b2f9c495

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39d18cace47e0aabc325ec8dccf9335a729136cb1786cd60b50f7c1bb4666ae3
MD5 e06f355bb2bb8bc718586c532bf497fe
BLAKE2b-256 e22099d3443bb544341aefff94204d042ea687a3d29e437f2d7ab16208a2458d

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b315b5de9659d5916c907eaf1813cd2b702977c20384114194ac76495a8d3a73
MD5 81da2ed0ce7933cd23d4dd88a0a14a9d
BLAKE2b-256 44094638eda443b797ba69ef27f2e9646ebd2b516371bbab8704ce6b088c58eb

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8d355227bb71647aa058b9e3b08e0ef44c2bef20317dd54a6606fa412fe29319
MD5 58309029cfcd708a9f731bbd3353712c
BLAKE2b-256 1c2cb98538451d57c66f3730199572bb76193630b71bb4949cedd72a85f97e12

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0701d9dfb1e431db77183489660d6b6c12baed5cc31102782bef653e201d16f3
MD5 0533d924265cbe6907c222a28db94341
BLAKE2b-256 21095246988beeb448ffbd56266ea1c5a0e18e0075f6aa4b8cae23f3f9c367fe

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b2ed328062be6879d6f8d5e242f868b02be3b1755b0d05edb2319b773a73b94
MD5 3547b0de2d7d41675dcab9c352bf7283
BLAKE2b-256 81a168f82be236906616094b00014da3b5f3942cd526244c03640dbf17f6eec8

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 025bedf12c7f8161b8036c8b971c59c57b7fabb8e051bf44a099f5645936c4c5
MD5 cb2e48364ea1712ab6481d42e067dd69
BLAKE2b-256 119dd3fd3500f3f2e8baacc6364a0c3f3fbdb98e3674c0efb1072647e18461f2

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6d374aa7fa1ee3935dd9a28f8d4438ba5730da1049a66d4ee109a5ff988e962
MD5 3c62a657c7cbb8269f3771388bf25c28
BLAKE2b-256 abd22a1bdb8b58cfba94ac2be6b33e06fc80d4883a1160d26a365781b238ee0a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed88917e712fcddd3589bc8acb90cec5a7531243f3f0efa004f8721c789383e2
MD5 e44dda956a0d9510193def261cabf84f
BLAKE2b-256 ce44c8cea0935881b363e7fc43f159470752a8eabd1d89757986581ce0dcdef0

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b2f743a922d067613b2e8a5bd69aebefe9f1976ba529c2fcef565b5a1b3ddae
MD5 b470f40f2319e3e903b28329cb97cc81
BLAKE2b-256 d54f895b6bc562ee27da94767b74aa644870f44c242794198a654c866adf467b

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 585112a8e7b554f5900c204b57b9ff6333b96594793b8f901b58df6737841a01
MD5 e16d4a249c80372b225306327e30c25b
BLAKE2b-256 a59fdbb9d783f3afd0548d0ed645357a15fcc8ccc7570cd7faf5c33e55cf92a8

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af8cd356e76d26d0999e3a3962ae07d2ee76e875f9cd4b8fb54f6285efd97bc5
MD5 ed56123f7c139944fe6a650efb8ef7a5
BLAKE2b-256 5565234fd7811b2c1180a880e3998a577f8cda5d76ff3d0f70689aa59dd63690

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b58b992541bdcdddc453551085728cff7e1f407112c9c845c490cf9641b43ef
MD5 17f75c75d4e7cdb90df2a641abb9a568
BLAKE2b-256 08824b23f74e839737b1322582cb5c2e11a8a58d152b6e1c0e2767e2df8a5b78

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36e4eb08a1c80bd8b4bb56d622eae1e0801ec95c32b744977d2db50974260de0
MD5 54790c427fcfcb373a9a24b09593ed6d
BLAKE2b-256 5cb1d48345b8d7141ee4fd0419e61954417812177a798009c935e4deb772321a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6405f331ede088078be46c2d15273195ce886921b4e94e232ea9527632795ad
MD5 faa699deb26ba6c44bb47c82ba2b359f
BLAKE2b-256 93439951f2e2cbecedd01726a2300424843efa778473e3669038f8198b520c8a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93a053a105390259e77b52a9d437ae7fd15a7059b0e57899d7be355327efafb6
MD5 ffbca03ffa0f018611dca84edd448010
BLAKE2b-256 5af4ffeb11306b39add020a721c1113a86da6bd1689aa78e4aee89a3d42a3bb5

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3497e997383ecae5a25ddb560d3cf59f4bb9aef971b13b999278abda35d6b96
MD5 9503e378bd8f8cd2c62d4d71d966e930
BLAKE2b-256 c918daa4e0cf0d4d720937562aac1a91d638f6a401b4834eef2acb82b799d2be

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28ef4956123f423db1a915901aa558f5dd4b7437a04d439b15348e489646ab96
MD5 e31846b09733e7a5d736a02bb737ad40
BLAKE2b-256 f21cc28ae28ae97b1be0b024759ec51e6f3b006d123eaee216a5c15ce479fc90

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8763a7215b2afdfb75f9dbc6c18d799526dd005db3f7951ee9bcb1f7c7f6a267
MD5 1917c0972ac49c22e8e2d0a9f7968365
BLAKE2b-256 6a83c2982c3cf8407a53f782057977cdc15042dbfba8970df96e17d76dc3b7d3

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f8d999e41f05c13f1725a75c72b7734ef0bfffa510dbf6ae794bb12f818e1a8e
MD5 0aabe08710ef332c4881ab8334ee43a1
BLAKE2b-256 b6e96af8b38b12fad73ec886bbcac715df9e5a32339adb2738e5f4dff60b9722

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-none-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-none-win32.whl
Algorithm Hash digest
SHA256 0c6fc5db5881a2883d0ba72adb2e1801587297af85d95e3ae2c45f83c8ec7938
MD5 f58847f5692ea457de45185d1742b72b
BLAKE2b-256 9323afdb02d26cab780e8d147c862853ba3e0b15e40689413e15dfd7d33a85e4

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0f40a0d7962c3168c9542c58ca4b24d42a37bc9ec7e08af0cd76ff3c796d4f4
MD5 ddf3376168e735d7ff6a8ef1c2b78d46
BLAKE2b-256 a5131bdc8d751dc38f2283297f1bcbcc893b929d650068d6fe3ccd219e5205b6

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 423cc8c52d643dcbc41aa05bdd26cc711fad1ebff97ccc88a02cf43e0fc206cf
MD5 e79c8934567cbc2fe3b2aef5170afcbe
BLAKE2b-256 35b77ae698641044f0a5812f903eb59e5c3eb98d61c6927f61c9bad42d0bf603

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 514e3665566170b91164f29b7c514ddf39dd89455ffcecff0a5e728138b9d1a9
MD5 4bf1a5e17093c2041dd133de587bcac4
BLAKE2b-256 b34f40af7fee446c4c513e9edd4e426e2eac8af4195fc89bfd05ffe7f4811e70

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e1f63f94dd930f695d2fe616ed61570ce940e851cc2e956394da4a307be6ee5
MD5 6137b8be5d7ec609286ecb67a68fd05a
BLAKE2b-256 ebadd2218620d20e5052bbad01bc59b7f20af1bb8960d0326708081ac06715f9

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a24c73049ed9dab33e8791970b9d312f8548a94bf9acfda8197f8705ed4ee99
MD5 5f4f6573c19a86b1d8ca80603ea78ac3
BLAKE2b-256 276f6b22da6fe45a9ed3f441ce9850f3166633c7b3a853b05e7118574b4ba71d

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 881308f1ac274828e349728761e001ebabca146f9044968de31dcfce4b5648d9
MD5 795a3f74fec29d4bf4758893d77ca3bc
BLAKE2b-256 86676113a03a60d0526a168701dd42080a53277040a94a70900a8e8ab253f9ce

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e386857a167b2396d3e47b32ad6336c2deee7794b607cd2c59803927fec32ef0
MD5 883d50c5c4d0c62c6a6967b1278f79b5
BLAKE2b-256 a7a7eefb5aac71e569a1cc789e36d4c7e12b583b6491f7c4ec751aa0638f79d8

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7cb74d6874115788ee95bcf392fe71aa9f435301cc25a62a30548fc1d216001d
MD5 c7dffc2a75cba43c7481e832fd144a32
BLAKE2b-256 4340a449e6b07614df76bb5cc6196a1b5586b83e8e288b5205d0bad2653034da

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cce74e6cb769381912b7ef029d32e880184d5ea2bcb4b6f8d836f0875b2afb33
MD5 39bdd8eb356de7d0f54abdca2dd821bd
BLAKE2b-256 d1f951eccf5e7645213dc7ee603917d2bcbf73728d91f20c69bac2ae88801f6c

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 984c129c119ad9c7927c5713b1dc2b4e3955866a598676b4ad07744cc86ad00b
MD5 b855b8a547756cbbac463be90e2f00b7
BLAKE2b-256 4174b6a72a71a3fa40788d2515edc2db5f50b43df39357e9fc1a44072a901e05

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7717e5ffa4f132ba02723cb30346b3c773b2579592a402f790bc90510f1c65a
MD5 4f846af84cf2d753cf15beec0f4e121e
BLAKE2b-256 af9a1354a52635c8900b268d823c67815fba682b195a9058cd19f31d724a3537

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93cec87797b72080639d9cb9b3b7fa3c64e95b4918dfe02e6e61b5d718d51cc5
MD5 75d2e96b86de5f309a895f843543c9b2
BLAKE2b-256 d6019d84f61fcd2eff75d4a9915a0e3dde24fd2332ec67bb57d926f18997ff08

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3da564f11a82167886798530d939b8d424970dfa96565752789c53a4d7d52cee
MD5 364ef07111050c5c0fcee007642b6033
BLAKE2b-256 3c00ee9a4fc6f20190adc6048173923bb22d0ed3c39d5659608838e1a19eb194

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-none-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 27cafed2958576319990d2bb40034f5456ae5e3df6ec093b7b056af7bc964553
MD5 158c94044c24e1cf623db781595093c3
BLAKE2b-256 cb6a7d17adee9713fe4d84675fe0e38fb430d7a2f8a9850fa2cc9f54e8b97b5a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c64dbaaaacc1498e0b6ee366723e0951a25189aaaa526d9419b36e6a9a7b61d2
MD5 9b52edceec4581373f1c00586c3a4a99
BLAKE2b-256 390f84043d64aa36236f87012f9f04239494003c970f63d961ea1230d6be042e

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cac6071fd6840bd79a00eaa52cc2512b0b60054a87dddaf67b8eb88a0ca2b8c9
MD5 f4a750e076facbb18c41ca9661042417
BLAKE2b-256 5e64bc876e8e287530d13eec5921af888b234bf58623d75732c9b879674286b3

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28df69b261647d77505a6fc0e0ced66fb259ba15f8ec6404c11046b6ae620f62
MD5 cc91d1c05eecb237427f9643c4a7784e
BLAKE2b-256 9f3fb8542e375f432dbe8d5e6647b2c98aeba1331a25fc0d8402652957523cfd

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81cccb570820bf004323f61b27fb8372674d40a185e5bb1ac4f1fba269ddf408
MD5 8997a53c2ae644cc23ca6cb806430b3c
BLAKE2b-256 e7a4bca86f3c8fa5593057c252e419c3d2f8dde4a07e7efae96d9fa3b6ee12e3

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1697903f5e756ae5cf353a60761700bec3911050c3f2a2e0cc2be92008af03e
MD5 5db6c04101a3d5b2a124079acbaf3194
BLAKE2b-256 4a1dadd8bbddb348f7e2b672a0c7b7a9270037b804c67793fe3e923c6cd43fb5

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3220695ea51349b9890d5481644f2b6a814c41ad6ce957ec95188dd1efe5a72c
MD5 5cc54dc49edb06613f950a64023e4df0
BLAKE2b-256 3a11fe12adad0f1f09e723f5b3bc3f303f34fd654e286adeb42b492b7c23e46c

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4834c421774058365db45abc2b8ebc186759cbd8c77163a926d273623da3ff9c
MD5 2a3e0eae956c30a73136ad3946e0240a
BLAKE2b-256 6d90f300b388e9f8afbe0dca84948b48d9e0837f8fc720e7c7aa458e56f2b3c0

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12c3c5494b39ac1eca08f95c7e83c3e5d24077b06dd1b0125b5e0a0ac98e9b62
MD5 e609d5ab48203a31cda56e33dcb9249a
BLAKE2b-256 e5f3fc01bc1e7f2db629905046af67d27bb9f6cb46294778992e3d76f823296a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86a3012d37775ab5f61e0acec11ebe8d33ff793a9c7c356f053c2172196a8fed
MD5 67543d5bb179bef1c4eddb19b13f3b7f
BLAKE2b-256 1e0c3063cd60411ff81f622bf871ad00021b6253c6dd2903a2540d175fe003fe

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da60e93348b67cd8f3d4317e4ce6f53508ae1a110ba6ddf2ed2c2e1922f57728
MD5 7d86fc014c8afcf1cb224c257484c05a
BLAKE2b-256 42932251133dd4e62a2519fceea6db2cf515ae6e935c23f3bd05a641d1fffad6

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fbc2b524a5530f7e581745ff7694ce74f73d554b36775c641266cdb8d9583c3
MD5 e9d63f3509b7a156026b69eb6cae21e9
BLAKE2b-256 d338bb76827698a748f85628c08995e219f02010887fd07da487eaea4efd6a9c

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae9431a1aa3c1298b904b117771348cf9408d61e68da6d1d2d4cab89a5a7af14
MD5 d97de09d38cdb07047fbe86401974ed4
BLAKE2b-256 811a20af950e9d84b3a5cdc9ca476e5b430fa2531a70cc69babf1c7da9953601

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5bc8f1c2a08470faf56c8b097def830ecc5408802fc0d07b971ac46ead253b94
MD5 66f463e65561c8017a05ecb9fc23d41c
BLAKE2b-256 c1426d9b359f25f946d8dad97ad3f64a5b46b5d65c66a4ec2d9fa75598e8e742

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-none-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e5ecb94d50c65be28aabb3535b78db44f4ec335bb20686382d6e72c2f26af8dc
MD5 a0d5407e322210e22ee91770cdb9e670
BLAKE2b-256 c181240d112648d19ff17e974c6da42bd129ed19e2435df1af5ca1da5a0ef9d4

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0230d888316dc1e3b17f2bceaf9025c103b58f59eb5067ea16ce6fbd1934675
MD5 9c4632151d1b77e77d465573843451fb
BLAKE2b-256 0dcb9c18e0b583bb0e34049265ed80eee8bf57e85a92192fecdee93c80fd5397

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 298098e41e352627a9d2dd6a41d250a80b8003f5db2c6a41cb97b34fee3f45ca
MD5 31b0efac03d6f31256cf1dd30575a6d9
BLAKE2b-256 86209da56be12bfa4430eea2034505ee3eadcc251640a8c4e5d1bda7234cb87b

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c65fd98937d28ea4c18e04e59b2143161998e13ed7432c0fa1d6b485cb009fb
MD5 c0d50a94c1e1915c329312ceaccb90f3
BLAKE2b-256 ff9ec8c7f17eaa9b503d03f971ec1ed0cf25d7c32eeed3e741482adbc344bc7a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfbb2425ff701ebb13b1a928cd8369b4ffe7870154cadfc36ecbead8539e3ef6
MD5 cf0191b64f088e13e7bb48b8781a5f24
BLAKE2b-256 dafce8913255e30af2a7bdfeec5819f1c2278ae41604c83e8bc60864306f238b

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 917c74d8496328217a27b1ce3c521f85a510f53a4459fe2608aa54a510e60b5d
MD5 5ceb0e38eb17fa58aac031728c0990cb
BLAKE2b-256 743037568f929e2b566371c343ee3e88cfec607246b0ce805e2470328797d14a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49fb3899d6041dcf1fbdbce826ef4e4c7d33a8dc573447a93048d32d67c53e75
MD5 2d1c0b353d45fda5d8f14e1eb144e773
BLAKE2b-256 2011df94d2ebc896bd8bbdd6dd0948ff5c98e45db74117eb34199eb1efd7021b

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85bcf1152ed215943475d3beb318c6864538ec6f5747f98a064c3a41879c7abe
MD5 b833c5be7b62b937808b69e74efe70d8
BLAKE2b-256 4971b241780bf6e6316db400f2b3ddcd01518ffd77f81a20fe354dc0fe1c119e

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6681a2e62f36e7c3d0fbb9c3430e47bcaebecce6f5e25f745504e288856110c
MD5 7fa7eb4cd68ab6df392c7d240cdbc521
BLAKE2b-256 88dd2009e0b7ec0c9dc12c02f35b23bded886a3e11cdd102ca0313ce7145e626

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63b85a1095cbef51563a6c0c733fa078106134ade283729ae167f624ffff3c1f
MD5 3e105ac6354bfc61c01af2c1bd953a83
BLAKE2b-256 b6b3bb6f6d9263d52e70f694927b2ca8474a3e1c51dde0f76831961ff8d72a27

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf55e666ba291f6d632444b620f9de823dc61ebb886fd9fc1bf453249f4e490c
MD5 496e146f851ae72fedf34a9ad776e1d9
BLAKE2b-256 e007c53f674abbad82a772de304c32897908121661c9380d6381ef5e1033e42f

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5686850f2e82e94bbaaba1e5ba2335a598353cfebe291a2bcad0b129836e7b35
MD5 bae49118e027f3ad3a29c3ed6dfa915b
BLAKE2b-256 d96cc5d70b138e3f8f64e7329a5d89ecf99a5a153384056123d174eaa8018292

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 4bd94e6fea3008dbc1f6654e81dd9a931d091755adfdb046af71138adaf92ce3
MD5 df50c31555a51483b857c9d417d4db44
BLAKE2b-256 ef409984edcf65b3f5fc6a701155aeac02048d5f89b3ed703d72e2b7918a6b67

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-none-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9c6c8f6035a80ec7462044d6e3fd7da17f7dc9953e9d25f45a9d9bd8866d651c
MD5 0493d815ca99af9089f7ae0c0ac74302
BLAKE2b-256 f46ca39378c3ce5d5fb01f9727c4e5d39912a3d7f62aefcd7006943177bf3a0d

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d87a30d5bbf3850ea4ad1b25f4bc13c6c55c0b3af82f6d50530eda97227ffed1
MD5 f4e87dea0c88e19d0d0df913d103f1ba
BLAKE2b-256 cf7bd8ae2e258ebe95e60a0f4623c281c0ce77454f3c7e074c3306d2471fb097

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 213cf3d15379888384effdc5dd6ad9cb09d59e05509a0074ca7d258a9ae070c7
MD5 502415d3908e0b4a681ca3ca64f23df0
BLAKE2b-256 1cbd6595d7bed448d3d4096f32af464204e2d377f63bb8d1fa49e2c310d0d78b

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bab5ec1070f46ca9aa6fcee5af699d4fd45091bc100847d63857a381d119fe90
MD5 645ef5cd8e6246f63eaab505e1313641
BLAKE2b-256 037b16a19a4c7708190a276e3a78f2428ed732d6135847f83991b8c5d0f52497

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c212ee09af634b2edab765a27790ba6298c19247fd7e33e420143404529ffe8f
MD5 634ce4b16cd09d0c976be3567ca41fb7
BLAKE2b-256 d36f5eb65ba88c104c11df35207d6f11f3e7c6062da9deca67e8913458b4d117

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f57324fd51a3c58f8519ef86cbecbd1d0995dd51e108152e0aba1454580aa830
MD5 5740c51c046be0c88120bdad7643eedc
BLAKE2b-256 2ddd386761085e7971cae0e338e9d7140f005d73c7a351e910f67f3eaf9ccd64

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81b34e55b6dbad551e788ae881842a98a3ff553c62828cf725ccfc29c7738514
MD5 605db761a1720c2c8e67f8bdc14b413e
BLAKE2b-256 530c5b003b5f8fae82232477c4fdf77abe6394a9db376979dd98f60e0a8dc65f

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49623a7310f01b59bdd0633df0e6c87382e6afa06ce7ddad14f3661be8945596
MD5 f5e758704e56ed0da79c5d8e804e6d8b
BLAKE2b-256 3ffe6897bce97d2dff2bc6d74f0aec7132b5c8807fe4bea44501793a523cf77a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79ec98b8e86c1944af2e218007c40ce3366a27f61a9b49199514f66b68af75b7
MD5 d486bb030769163b751688c813b8d48a
BLAKE2b-256 98197fc24a4e35d613373ccec6d0d56554fd96b3fdd73cd3e470793d2082146f

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 282395c21f2cea2cfbca610919dd4575174ec8f5f16852e3da3c16d4fffdb4ae
MD5 c99510760afe6ed830c8ee56d2137674
BLAKE2b-256 2567e46f7ba29584afaccec7485511589d05036a348b5cd01eb8ae73a002e628

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f63d1aecbfaca9fcc09068b442a67f88bbd25fa3ff5976d33ab4cb75b617c43
MD5 dc623cacf4d6cf86ce2b5d18bce5da8f
BLAKE2b-256 dfb5ba3e3e2eac0238f56137977a5a33b8978bb6a96b6652879e298a43661cfb

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 263da10984ad0db99a56b8e9c75248be6cd45bdb60fbbce71a16666108ae046d
MD5 3e740ba121078b9133bc675058d6909c
BLAKE2b-256 7667ac02d969cdb72153f58a7a50c863f8eb9e208869ca34ff45251cae562111

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5dc0dd0e8c59df49273854f9501d0cafc285858c56348b7d92766c7a40a14f54
MD5 a62deb7a3006f1f6b7de66ca0772e6ba
BLAKE2b-256 d53efdd6d194cc4b4d46b88ddde95d16126f6d9c494a5cd3cec918d07e2b5ce2

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-none-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-none-win32.whl
Algorithm Hash digest
SHA256 abc7a4aa7104f299bb0c21768b38ec703e4da5b5edcfb3047f7fce1f8fc7cd8a
MD5 0542271c6a546ff4aa93a068f9d981d6
BLAKE2b-256 cc08e312386521512638fbe1448275afa97af8d66f425e3ff6d8b6f9f2a5c65a

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 395515f0bd167b4cb5b26fc8c5aba8f857df3e00a51a7f595e716c59cf9496cc
MD5 ac935643b1bcbf12e1e161cba1bcdbf8
BLAKE2b-256 12e5b0d35a91ab6524fd4c9defd40fab3a788f30f906736bec7f06e88eb92c09

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d34fb3cbddcee378fc5154cdc8bb9f05f08cea735199f403e0949e22905f211
MD5 80bfa19d29e9901ea01980dcf01a3017
BLAKE2b-256 286a0ebea1093123d0f7565e0a223a016bdc6ca6b9a6c758e43297cf1453406d

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abfea4a849a4043fa2176ed43b0bef96b02ca62ef0381f27c23300c48a2e1f76
MD5 60e666f8685bfb7799a0b4ecd8eff880
BLAKE2b-256 596d9aa65d182ca4f7d138c3377685defc68cf08d68568553e9929c45ddd9724

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b65ecf7154bbf7cef3169b0e657d062ef2350aead9e6a5ad67eab8e90dd9f8cf
MD5 5c6454146d65e6df01ce2836024e6a35
BLAKE2b-256 ce0a81a5140ca353839d2890955fe79cd77325769476937d995805bc7bdee145

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 313af1f4b8cf422e3cd7f617557a0ad0375e5323cb7cd56fa3a69c08e60141b2
MD5 3fb923371c8749a23b06d9312075be89
BLAKE2b-256 51165654d9b6664d879c8afffd6e200965570e71d586f3c74053024ef77a92d2

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6141fbd22c989bc1951e2e1858c6c4baf17b902af2bf2d8a8bda9510a6d0f646
MD5 4b7e7569dd7847fa0f84d2e23cac3a39
BLAKE2b-256 148e8cb14322d645d59ed8d0a5e715353713d6e6cc49194c6408a20fd147b339

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 862b2c08f93301a03baea9d7f2774aed77e2ff04ae5940d1830c1b84d6551705
MD5 9790aa6d09c494a77feb22b2fbeda43e
BLAKE2b-256 4be84c764dd9d966c89e0baba3817152c3d48ec1fde866403d0d9afacd17640c

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1982f8a1a32c7f16ab4935b26cd5de2a9b25fb364bd81022402edbbbf69a37d7
MD5 dc40f1c622052e94b45f0506b9d997f5
BLAKE2b-256 3e627931de54030ba831aa26601fbda49dbf847cbecadfcd04bdbd10dc75e3cf

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d842d978c61ff69cf4896bde29df5d11b23c96bed869ea44af300c85fa0623e
MD5 4ccae43bf80421a07703d2351f18f9c4
BLAKE2b-256 29e98380988cf3fbb399035e33ad42dcfd247e256a7e48c29be9d951d5149829

See more details on using hashes here.

Provenance

File details

Details for the file resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d455bc68b390c18bd0b1a1f2e3c4679c9ad165383fef3d32542978852c8f8f03
MD5 12f051c3fff10933293f375aa2bc7b94
BLAKE2b-256 afecb2108836d1f2ba04e7a72303069155136de7c550b39c0c77df0c77471c30

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page