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

English | 中文

一个基于 Rust 构建的 RESP (Redis 序列化协议) 数据库基准测试工具,提供 Python 绑定。用于测试 Redis、Valkey、Tair 等 RESP 兼容数据库的性能。

主要功能

  • 支持自定义命令模板和占位符
  • 多线程并发测试
  • 支持连接池和管道操作
  • 支持 Redis 集群模式
  • 提供 CLI 工具和 Python 库接口
  • 内置 QPS 限流控制

安装

需要 Python 3.9 或更高版本。

pip install resp-benchmark

快速开始

命令行使用

# 基础基准测试
resp-benchmark -s 10 "SET {key uniform 100000} {value 64}"

# 加载数据然后测试
resp-benchmark --load -n 1000000 "SET {key sequence 100000} {value 64}"
resp-benchmark -s 10 "GET {key uniform 100000}"

# 自定义连接数和管道
resp-benchmark -c 128 -P 10 -s 30 "SET {key uniform 1000000} {value 128}"

Python 库使用

from resp_benchmark import Benchmark

# 初始化基准测试
bm = Benchmark(host="127.0.0.1", port=6379)

# 加载测试数据
bm.load_data(
    command="SET {key sequence 1000000} {value 64}", 
    count=1000000, 
    connections=128
)

# 运行基准测试
result = bm.bench(
    command="GET {key uniform 1000000}", 
    seconds=30, 
    connections=64
)

print(f"QPS: {result.qps}")
print(f"平均延迟: {result.avg_latency_ms}ms")
print(f"P99 延迟: {result.p99_latency_ms}ms")

命令语法

resp-benchmark 使用强大的占位符系统来生成多样化和真实的测试数据:

键占位符

  • {key uniform N}: 从 0 到 N-1 的随机键

    • 示例: {key uniform 100000}key_0000099999
  • {key sequence N}: 从 0 到 N-1 的顺序键(适用于加载数据)

    • 示例: {key sequence 100000}key_0000000000, key_0000000001, ...
  • {key zipfian N}: Zipfian 分布键(模拟真实世界的访问模式)

    • 示例: {key zipfian 100000} → 遵循指数为 1.03 的 Zipfian 分布

值占位符

  • {value N}: N 字节的随机字符串

    • 示例: {value 64}a8x9mK2p... (64 字节)
  • {rand N}: 0 到 N-1 的随机数

    • 示例: {rand 1000}742
  • {range N W}: 范围 N 内相差 W 的两个数字

    • 示例: {range 100 10}45 55

命令示例

# 字符串操作
SET {key uniform 1000000} {value 64}
GET {key uniform 1000000}
INCR {key uniform 100000}

# 列表操作
LPUSH {key uniform 1000} {value 64}
LINDEX {key uniform 1000} {rand 100}

# 集合操作
SADD {key uniform 1000} {value 64}
SISMEMBER {key uniform 1000} {value 64}

# 有序集合操作
ZADD {key uniform 1000} {rand 1000} {value 64}
ZRANGEBYSCORE {key uniform 1000} {range 1000 100}

# 哈希操作
HSET {key uniform 1000} {key uniform 100} {value 64}
HGET {key uniform 1000} {key uniform 100}

命令行选项

选项 描述 默认值
-h 服务器主机名 127.0.0.1
-p 服务器端口 6379
-u 认证用户名 ""
-a 认证密码 ""
-c 连接数(0 为自动) 0
-n 总请求数(0 为无限) 0
-s 持续时间(秒)(0 为无限) 0
-t 目标 QPS(0 为无限) 0
-P 管道深度 1
--cores 使用的 CPU 核心(逗号分隔) 全部
--cluster 启用集群模式 false
--load 仅加载数据,不进行基准测试 false

高级特性

连接自动扩展

当指定 -c 0 时,resp-benchmark 根据系统资源和目标 QPS 自动确定最优连接数。

CPU 核心绑定

将基准测试线程绑定到特定 CPU 核心以获得一致的性能:

# 使用核心 0, 1, 2, 3
resp-benchmark --cores 0,1,2,3 -s 10 "SET {key uniform 100000} {value 64}"

速率限制

控制请求速率进行渐进式负载测试:

# 目标 10,000 QPS
resp-benchmark -t 10000 -s 30 "SET {key uniform 100000} {value 64}"

管道操作

使用管道进行批量操作:

# 每个连接管道 10 个请求
resp-benchmark -P 10 -c 128 -s 30 "SET {key uniform 100000} {value 64}"

集群模式

使用自动槽位分布测试 Redis 集群:

resp-benchmark --cluster -h cluster-endpoint -p 7000 -s 30 "SET {key uniform 100000} {value 64}"

性能优化

最佳实践

  1. 预加载数据: 使用 --load 在基准测试前填充测试数据
  2. 适当的连接数: 从 -c 128 开始,根据结果调整
  3. 键分布: 读取使用 uniform,写入使用 sequence
  4. 明智使用管道: 批量操作使用 -P 10,延迟测试使用 -P 1
  5. 清洁状态: 测试之间清除数据以避免干扰

示例工作流程

# 1. 清除现有数据
redis-cli FLUSHALL

# 2. 加载测试数据
resp-benchmark --load -c 256 -P 10 -n 1000000 "SET {key sequence 100000} {value 64}"

# 3. 使用不同模式进行基准测试
resp-benchmark -c 128 -s 30 "GET {key uniform 100000}"    # 随机访问
resp-benchmark -c 128 -s 30 "GET {key zipfian 100000}"    # 真实访问模式

完整示例

字符串操作

# 基本 SET/GET
resp-benchmark --load -n 1000000 "SET {key sequence 100000} {value 64}"
resp-benchmark -s 10 "GET {key uniform 100000}"

# 大值
resp-benchmark -s 10 "SET {key uniform 10000} {value 1024}"

# 递增操作
resp-benchmark -s 10 "INCR {key uniform 10000}"

列表操作

# 构建列表
resp-benchmark --load -n 1000000 "LPUSH {key sequence 1000} {value 64}"

# 随机访问
resp-benchmark -s 10 "LINDEX {key uniform 1000} {rand 1000}"

# 范围操作
resp-benchmark -s 10 "LRANGE {key uniform 1000} {range 1000 10}"

集合操作

# 填充集合
resp-benchmark --load -n 1000000 "SADD {key sequence 1000} {key sequence 1000}"

# 测试成员关系
resp-benchmark -s 10 "SISMEMBER {key uniform 1000} {key uniform 1000}"

有序集合操作

# 添加带分数的成员
resp-benchmark --load -n 1000000 "ZADD {key sequence 1000} {rand 10000} {key sequence 1000}"

# 分数查询
resp-benchmark -s 10 "ZSCORE {key uniform 1000} {key uniform 1000}"

# 范围查询
resp-benchmark -s 10 "ZRANGEBYSCORE {key uniform 1000} {range 10000 100}"

哈希操作

# 填充哈希
resp-benchmark --load -n 1000000 "HSET {key sequence 1000} {key sequence 100} {value 64}"

# 字段访问
resp-benchmark -s 10 "HGET {key uniform 1000} {key uniform 100}"

Lua 脚本

# 加载脚本
redis-cli SCRIPT LOAD "return redis.call('SET', KEYS[1], ARGV[1])"

# 基准测试脚本执行
resp-benchmark -s 10 "EVALSHA d8f2fad9f8e86a53d2a6ebd960b33c4972cacc37 1 {key uniform 100000} {value 64}"

Python 库 API

初始化

from resp_benchmark import Benchmark

# 基本连接
bm = Benchmark(host="127.0.0.1", port=6379)

# 带认证
bm = Benchmark(
    host="redis.example.com",
    port=6379,
    username="user",
    password="pass"
)

# 集群模式
bm = Benchmark(
    host="cluster-endpoint",
    port=7000,
    cluster=True
)

# 自定义配置
bm = Benchmark(
    host="127.0.0.1",
    port=6379,
    cores="0,1,2,3",  # 使用特定核心
    timeout=30        # 连接超时
)

加载数据

# 顺序加载(推荐)
bm.load_data(
    command="SET {key sequence 1000000} {value 64}",
    count=1000000,
    connections=128,
    pipeline=10
)

# 带速率限制
bm.load_data(
    command="SET {key sequence 1000000} {value 64}",
    count=1000000,
    connections=128,
    target=50000  # 50k QPS
)

基准测试

# 基于时间的基准测试
result = bm.bench(
    command="GET {key uniform 1000000}",
    seconds=30,
    connections=64
)

# 基于计数的基准测试
result = bm.bench(
    command="GET {key uniform 1000000}",
    count=1000000,
    connections=64
)

# 带管道
result = bm.bench(
    command="SET {key uniform 1000000} {value 64}",
    seconds=30,
    connections=64,
    pipeline=10
)

结果分析

# 访问基准测试结果
print(f"QPS: {result.qps:.2f}")
print(f"平均延迟: {result.avg_latency_ms:.2f}ms")
print(f"P99 延迟: {result.p99_latency_ms:.2f}ms")
print(f"使用的连接数: {result.connections}")

贡献

欢迎贡献!请随时提交拉取请求或开启议题。

许可证

该项目基于 MIT 许可证 - 详见 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

resp_benchmark-0.2.0.tar.gz (33.8 kB view details)

Uploaded Source

Built Distributions

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

resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

resp_benchmark-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

resp_benchmark-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

resp_benchmark-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

resp_benchmark-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

resp_benchmark-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

resp_benchmark-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

resp_benchmark-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

resp_benchmark-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

resp_benchmark-0.2.0-cp313-cp313-win_amd64.whl (913.2 kB view details)

Uploaded CPython 3.13Windows x86-64

resp_benchmark-0.2.0-cp313-cp313-win32.whl (856.8 kB view details)

Uploaded CPython 3.13Windows x86

resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

resp_benchmark-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

resp_benchmark-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

resp_benchmark-0.2.0-cp312-cp312-win_amd64.whl (913.8 kB view details)

Uploaded CPython 3.12Windows x86-64

resp_benchmark-0.2.0-cp312-cp312-win32.whl (857.1 kB view details)

Uploaded CPython 3.12Windows x86

resp_benchmark-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

resp_benchmark-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

resp_benchmark-0.2.0-cp311-cp311-win_amd64.whl (911.5 kB view details)

Uploaded CPython 3.11Windows x86-64

resp_benchmark-0.2.0-cp311-cp311-win32.whl (857.1 kB view details)

Uploaded CPython 3.11Windows x86

resp_benchmark-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

resp_benchmark-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

resp_benchmark-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

resp_benchmark-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

resp_benchmark-0.2.0-cp310-cp310-win_amd64.whl (911.3 kB view details)

Uploaded CPython 3.10Windows x86-64

resp_benchmark-0.2.0-cp310-cp310-win32.whl (857.2 kB view details)

Uploaded CPython 3.10Windows x86

resp_benchmark-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

resp_benchmark-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

resp_benchmark-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

resp_benchmark-0.2.0-cp39-cp39-win_amd64.whl (911.7 kB view details)

Uploaded CPython 3.9Windows x86-64

resp_benchmark-0.2.0-cp39-cp39-win32.whl (857.2 kB view details)

Uploaded CPython 3.9Windows x86

resp_benchmark-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

resp_benchmark-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

resp_benchmark-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

resp_benchmark-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

resp_benchmark-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

resp_benchmark-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

resp_benchmark-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for resp_benchmark-0.2.0.tar.gz
Algorithm Hash digest
SHA256 535da650e6198711f931553ecd443d0c2028840e130035c351fe4fcd20933311
MD5 dbb0feff552456863365b1c70e79ee88
BLAKE2b-256 89bed1b8caff32a9c31d2e0df65eeb8ba45b249eef290ef6644fbe491a3dde40

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25f0cdb70557199cde5ea6d7fe5802d40e76c04f75e716adee222b998ba8e762
MD5 21bb70502a61df0c6f1ddbb2a94d0d29
BLAKE2b-256 779d9fc7e492636e7e470b98b20b0194f6c82fc90212e6c33862716a4ee92af6

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08bc43c425c29e00ca8866f3d12ab5d733dce906514f74e34f275cd005267035
MD5 63ddd9db4acb2e059b9cb73abdfd326f
BLAKE2b-256 c39a0b72b7d0ece04eefbe7cab0d5ce4134e739664069c63604581fe3ecc3b26

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d80c39c7ed90c02dea8479a8d125ac6a1bc7348f070044575a2cdc7588b705e4
MD5 fb1cbab1ab44070c7cb593c937f20647
BLAKE2b-256 d5e5207977b2510232023c516808c1940c1873550a70b63e972992a68c22f9b7

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7283ccf1a12ff25d8a78e769478ee94a86be8a6193e11917da79d6c8a3621696
MD5 45be7cbd5c3b3df5e9b309dc75978c74
BLAKE2b-256 e2833fa60e871b05e7020d505030495b77a85398ebef952fb814140b56bf461f

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40cdf9f2c0e629a256e843b6db309137ff75dda2dcaa104462466f9ad9be6645
MD5 fc35acef447a76edbc8f0d009a56b362
BLAKE2b-256 c530f754a891cfbdcf195a9e88c85909786016707446fe4a60e676c4ca94b03e

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7834839fda3a3a27b24fcbac07f38edbb92525093a059e6181205d549f5ca524
MD5 4985a51a9b05d9aa3b16396090ccc267
BLAKE2b-256 2dcb5f86231590a3ec3dbe88b980f573dd72bbaef401d6df1ec0ad3b3139d7ac

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04fcfb4476d4818d2d635c86d7eb9ba44da3c419795cba47d50f6237af454558
MD5 fa6e6afef8a62fd3266a77071273a51f
BLAKE2b-256 c790bbef78659b1deb2436093655fed38e383b0ed4c816ba0f689a6bd94006a4

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e1cceb0db1b947a876aba382da894b394460637a389152c72055a89d612d035
MD5 61b21d78c08880eeb5baf7eb774e74d1
BLAKE2b-256 81e881f4be287a4dee8c3bcc331b1dd52923f99096a9b12891dbd5a125676d4d

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a53841159dc01e85a5b1d538bab0f1a30709e4629a9f899c916765a08fd3be39
MD5 426627e6c19b9d7aca7035d4291b5fa0
BLAKE2b-256 55c9e1e4b33000acf1fa93c3e7fdd31156e0b0c70d86904eb21c981d1fea8572

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12907c8942af70a905718fd2819bb68a48df3fa69a88997b0914514756be9588
MD5 24585bd35c25aca16cd33c4f23e38ec2
BLAKE2b-256 cd52492aac8499c47644e405ec3f3953920dfe7b8ff1de3802b873f5b1be7b2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54349a5ba8a77234aecd643fea24db811c2175bc77dfdc314a783c8677f5110c
MD5 6cf0740c53118008d010d53057d7ae38
BLAKE2b-256 e11264d0d1e10f5aa4a5797b8b710b31f958af371fcfb8dcc5ba17e1744a3857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 153c78d08173b2ff16b3a09da912b4a0e0defcc7dbeeacd6f4af9f4ffbe08aca
MD5 6fa405d73833c0b1d25f8e6464acd33d
BLAKE2b-256 4ea646ff6ff6aef15a37c5016476da200caf8f8d55a6fea167c5bb1e89ec3cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6da9f4bfcc954c082f9133b988502c3813203e11ad7a53933fa5b2928f205807
MD5 665f5aa7fa60bebd11cff1b8b79a1a01
BLAKE2b-256 aab575af9c3d4488041b2b95eaa33744055c5617265124f43b4426eec386b94d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0725774bdead82a3c23ab62aed85411a6324f69057a24e47671157c9e33c5967
MD5 7880451070e81ec9d388d1b97bbf0cb1
BLAKE2b-256 564480d5721e6120da1daa3616cb977038906c4f4c82d4ec0945fdaa5479d491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7b39c5ece037aedddea63909bb4c89197cb99f35fb83ed4cfdf8b9a26351080
MD5 60d37ef41b485230956b83f8535cc84c
BLAKE2b-256 1e8b830d7398690aa8443043fffca81ebc9617718edf7abc4046f3702e878df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3a2e5c1377225633c4e5d5026c784a7248e4c2db712eb293a142e8efff0f4fd
MD5 dbb2217ebb7b46a354753720de27b7ee
BLAKE2b-256 e0871f525c3f598f70186a6623ed89217629d207165ff97b2d470e061d512165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c6558b91defa3551dc50cf9ba865e8da749fdac0ad0be5e90fa8ccb365c0f35
MD5 378abc318a3e1c2d7826d0de113c2365
BLAKE2b-256 8216330b90d9bae0ada971f96828ad59be07e90860f3e3dc6d66bb51393141dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37399070a8724ef37ef242a561de22aae339d6c65feeb0d1bfa29e55e1664b8b
MD5 7e19e6611c9c1b8f0540620182a828f5
BLAKE2b-256 faf2fcdbb7d6b24d706bf22bd2093164ece5aa3553c3213925831b7e14c8dac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c99df34761dcec4befde0b24d0e85dd71d874917c6e94a281c0cab5fc135e2a0
MD5 abe752aef480791a26dd05f6df194ba2
BLAKE2b-256 ead70ec06ef5d6743b228d1625957be29e750121e8179ff893f4c6c58a8e907c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c5e8bcf07faa3cf4fd85e12e4906921900e9613b1adde34c30b255622faa794
MD5 b35d2f0d836752b1a3da5a1c965d2001
BLAKE2b-256 a428da8dbc40de246c421cde5967bb74a18d8f5107f4bad65f86caee26912587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad2d7425aa04f73b318e7ed32801f564250ce2dfd6f9fb5d7b8e7ab9b15c2588
MD5 e69fa0a09468439ab950506ae4869923
BLAKE2b-256 f47291b6fe63cf3f1278ad79dab540de2f3588fe5f8d2fb19fe93ce83a353e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 930f95fc830dcab3c226abc0e48d48a3142872a7a4d65ba6d4413adfca6b45a7
MD5 ae91e4e31b79a88c79b7d483f9075ad6
BLAKE2b-256 048de9ac6c48c38c62729acb665ffd8d1c87181433b58a2f6ae8e1675d3d10a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6572a98d6c627be498458a41ba83b30993aa09477e64fe16d246316fae37b863
MD5 927f66b9af5cd13feec44777bf73beb0
BLAKE2b-256 d17b394d6a18f785cd35074d9cbd479493d17edc7d783df6ef5591891f6f6f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 540d942497d4de4a7df3c6e3bcc2c90dc28484c6b70cd96dd0ab265ed1f11a31
MD5 19a2a390363fab2a5f905fb4e59be4dd
BLAKE2b-256 8a5c3b9e58e256af1be02e71acb265eb9c8bff2ec9cc0c2839e87e04068dcc3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e850d4f980d04ac3424c530bd9b237d3d63238d22b8fdff40112581678a2261
MD5 b67f1eac95ccda58a051b969b43f30b1
BLAKE2b-256 f39680aeedf2828c0d05f7bb7a4205ad55cd0d56a2802a6bca84a3c40cd7314b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2330e9b94938afa9aa8e3153b60d5e089b51a7b71a7c133478c9822197f277b
MD5 cf1063a2fd650bdb389b0a76d61f2dfc
BLAKE2b-256 eb2d2153b34ae59e686feb2bed120e5b9c2885625fa996b11a4985254e567952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45903612a8665b6c1acac6eecc566226a36a80341be108be3391b229557f49b7
MD5 095267de8762fc9391fc355a81df71b2
BLAKE2b-256 b06b89e2890e16960bdb88b6ea0208af3c4136815bb651e015a5a0cf0c051332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc5ae6f58bed7bb6b0430f5f2775032c3b3e7c8f16b36b4475f0616042f403c9
MD5 58708569c3034bf72cba038c60e35ded
BLAKE2b-256 2ccb16d25d5a73fca89573d8a9d8c4469067c6c4095178b9e83fd70bd8aff89a

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 082fa739660dd31e59d84bd208d7741f5f74d6f37ab90fa93d279dc5c96997d2
MD5 2ead6afb825401d83ba6d156b1db0d05
BLAKE2b-256 88b4e0d3babc9574c564012e9a780fba4f67754b35433cbad6e71e9cd1d4e136

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ecd924aadfbeb8930f493a487f2800e6467da9a5bcd98be37579693a046557c
MD5 4ebdc39306ce4a9136330ff1663a2225
BLAKE2b-256 f9e2eca048a59b52f7399d93717e06bfb9a88a1dead5c8e86b4ec767244f0b62

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4684897285e6bd41bffec348fa82aa853450e83049d97c52513d7d10e9d9821d
MD5 3f34ed490ca6adbba3c44eed9bcb9805
BLAKE2b-256 3fd58e1a5d8aaf7ad7272c5d73b1df3f657c37068dbc779816f36be128f04bef

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae55b5cc049f8ec7ae64d6263a8d57c59cdd74231606eff28766a5b6b210f1e5
MD5 2cd0b125765155d256bd0ee2f929ef5a
BLAKE2b-256 939d11fad96cfbfe6d92d77816563a287e36d5cea933c1ed814568c9f1833fbc

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb2bd49286eaf5377f1098f6e621971ccda61268c15198d47b3b2419b2070f54
MD5 faa6629a10daa4ee9e3495ec0083a507
BLAKE2b-256 9202c3e6375dfd661fc0613f3d59938a34367cc279142c11401ea3b94ec36c41

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f987013c450e272797d38be91a840bd415a1d60263d136e92324d871b626666b
MD5 f8e368ce58beb9852deab85bb781e661
BLAKE2b-256 60dfed24d74d9d7e91d901188d3d99f2c7d00be1b748eeb9a5beb90dc291e600

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76d9dcede19d145292878d99fad7b7a7dfe8a537b9f9d3c82f45b73ab864d7a4
MD5 e01de1b033513384e363c78d8edd7316
BLAKE2b-256 ec303530367b25203ad529ac08aae6997874a58e438a3f37e77e14d6b77cefd0

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcd713b428a4b3116581715f9a0da3c7d545a1a6567e5fdfb60cf15d22ef0516
MD5 5ca8c945d6365ab22f2801cdfeda43f6
BLAKE2b-256 7becccca9c0b86f4d740740895ff3d04783cdc7bbc1b1461624c299b052352cf

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7367318f6eecd0f609eec2a7c75c1c18f37266fe44d84ed261f594f3441df71e
MD5 59dc2fbfac4dfdc1d32bb49d769e5669
BLAKE2b-256 e2f440f16af78303d2f83713bf717badced295890858574bb56432d8ff3539fb

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b82f37ae2b51117643bd1bb3e48a9f2647957ae978a465a7d7fd3f0c8888fb4a
MD5 3321ea96eb71fdbe5b44c7b5d2d6a71a
BLAKE2b-256 e40f1e560b02c42ef81d59acd5941e26ee0e514c0ee85dead8c1a919cf069b76

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b30d2d61fba60f4204e1d2c4307a3ec960db90e6df4d7d0ba6839d6195d20fdf
MD5 f0ea6752f7286bdddcd19fba8b8f64e9
BLAKE2b-256 a2aff246f3881b2cbbe76581f3778715ffce94d9b9874487125f3eddf27f26a0

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8fa1454b9e78e615025c3a2fe78694df14af93d758c63d7558e0590575f16d1d
MD5 43a25e155ca0259937087f33efaa8591
BLAKE2b-256 a1062aeedafc6eb082b2412f0b5d514dda0dac63844ec6338229ceab3b443e99

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c00b3dbf171224c8bb6f61f5eeadfd56d8c9415aef3cad129add6306f0cdf469
MD5 14f31aa6ec553c002bd2b83198ea567f
BLAKE2b-256 2ced034a6a3749768166620ab141efdbadcda9a46726977d44ef40a53f69c4b8

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f1a6a7c99295be59d872fe22b80294db83a917f30cc1395007c48eceebf5f2c
MD5 f535f5330c6ac2a3cc8a271c8ca59ade
BLAKE2b-256 7aab59cfb5f50587cb0df453e58a505690f7e9d0963410d645d97126f849eb3e

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0aea3ca97416be0f5774d96eeb86b8fce76612d86ddef6114bb0984e9d5bffc0
MD5 c4844fa3af1124c35ecb47f8a87eb069
BLAKE2b-256 8c73f01e9bc03008504d4c1de8804b121f319a87f4dcf701dbc5f323c5a69c79

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40642597bdf9ac684cf4060ca98b7e86f3b41c68c971f7b465db44b4dff5d1d5
MD5 275554d2b99cd5042509e9987dd578cf
BLAKE2b-256 7f189492298e60cfc41f824a977ac342cce20969e0b9b6649f1975e2d8900099

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62b4e8e3c016e8acb240d9969ba6bd909699234234f6ead096c92c2eff4c42ba
MD5 466bb2bf1da8814dc2bc8a45e39150db
BLAKE2b-256 c1467d24bfc5172a7d562fd4c95bf74ac169f2e669821c836786e1cb7a76d5ab

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b778f786759af617b3ec55de380be97aa9d2e9a0e23124b58d228775383266ad
MD5 882b0216974a1cba7e3ff2dc8f1d21ff
BLAKE2b-256 7aa30356e8d442624962aa280f89bfa3b76de888548f51c4732f4c8ae577bc16

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2777b9331c024bc3e5f9533e810ad8f1cf7c2c57891e257662517374123e37c1
MD5 0855dc46e09d62c3ec787ddd3fa63e21
BLAKE2b-256 af6d45b41a6b0d2e649abb6e56c05459435756134f0f8c8a8f96ae9dca059d7d

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b30a48823a71b501567b380614313bb511ba1f67f4ae2b08414a3cb2b9711469
MD5 c2ee0523720a869284bb1f2c7b40c4cd
BLAKE2b-256 c4d11ba940e093a5eadd9140aa3a583d917f26ba13ee98abb4ae9747a77d6e09

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1667c1e355950b9b946ec1c4c8f76421049178f86e3e51c0ccc691d6055406f9
MD5 e1bf57dee6cf2d097ce7cd63d6ecce73
BLAKE2b-256 320c72e6c129f440c97b84958d22f8674d2a52c398863e81fedc24f1da4299c9

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d40c1a4d9a2b73eaafec85fcffbb9507faa1d2ae382dfa94a8eb8064c7039149
MD5 b81d7f4e585915643e522f262693bf23
BLAKE2b-256 5d6c713f8ff4409f00b6d0d6bc08d4a6df2b6884868ab08e0c56d0455c0d3a47

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db5cc754c80081b6dca19dc88056e7fdafad7a61154327cd53d3d8736745e7bf
MD5 edfa400ad8d114d7d6f9eb77db530653
BLAKE2b-256 5c04c607c34437baa0b24cebbe0534509925daf525234be31359ceb42cdf0d5c

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3624750b2c9eb5e6dd50bb63fb6beceaf1b29e57dee319925058085c86726c21
MD5 d43a6dab3aab394658edd9bc807c358b
BLAKE2b-256 461ad3f2a4cff4f5dfef2374c9399a6fb6837f453fa5c8f0a2dd00aef13b1d1d

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3502e973111a560d19019fcb7f453e694d5d0664b9a1e5a9d7d27d013d7e3e1b
MD5 6e5d759aaa02bea987dfb8e199faed6e
BLAKE2b-256 bfa2a6c686033fc9cf70b0da7d4db016b4c54784159f84064855fc2397969f81

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b7e11c9600348ec3eb6435440d4d9cf369a8a29f814c4e833db44c447d848d0b
MD5 fc0c2ae6b3c5e9f30547f79cd410ba41
BLAKE2b-256 2874d2a62246a3885f00e35e4b567de4f290f0632cc82b8e5cd537443c92fe33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34ca34f25e23d55fb07533ab4ed066f6b95bf20f69bb23748974be92345f51b5
MD5 b0edcca8116dcc949440296c5ba5f74f
BLAKE2b-256 4f8487b02dd4f9a1da5f9fbe8f55c66694cd739cbff635aefa6bfcc68a8ad1ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df778a3c533b7209c3fc26af49c75d74fbfa25b3ededab03d4e881f4f02f63f0
MD5 b4c13886edac83b8a464695523bb0ef9
BLAKE2b-256 c254dcb8e0e003a380c5c55d73759c0ba98f7100187438447e70af14caf0670c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f112eda7e83ef600ac6e9450bc86827694e06011e284469352796b3f30ebef1b
MD5 648f6f84587ef02d80d599f335625aae
BLAKE2b-256 3e33ad2020563156f4312feaf1173df0e0d714307d3a727e3058ca6922d50a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d548f43edea896c56a0cde2891cd13c04cdb82d28a3d87e3c3b6e4809e74a22
MD5 b183b017a462027d85cbdb4cc9dbda67
BLAKE2b-256 46378954bcad9b16fc024bc0505186eef5b2a08783a55f9d38be10cad3e9c53a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 205e264e7aab142df1da5fe0cc58fddc21fff9a10450fa22fe51d72cbb1b8814
MD5 2a72f6395a11017b013961d8cb3b4bf9
BLAKE2b-256 5e456a549ae9fb7e61b462365c62d2a45e9498f6cec0bcabfffd9ec69b40132d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30a71f3f18105d2b6bb32052f68b2d8629acb54f2a04e23e0b8b45838d07dbb2
MD5 366458c112837215f74312366eb75f5f
BLAKE2b-256 c5aca3d2057dd9de8b44fde6e3a824cfeeb4f934069ed5ef86daa795be5d31b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1378a99461408bfba9f8fe62791fab410c48807378de5f56ce922a82dcee6047
MD5 0a467fa4797dc67b923b69bdc3f1afa8
BLAKE2b-256 b8180605176749d0fe3fb579715e503ad80304cf38cc0d117cfae65fa567d723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2fd62d38a1891e879ccd8179801c4e7accdb00608d1dcfc7ff7484024e26e41
MD5 1373d755a618ffc3c4ffeb0c43d60a1c
BLAKE2b-256 a238aba37fb14d069d94b6023bbf8b8267a8858f6614bf937797d611a03e14da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c2a53d19904f6959eef0ae369d2bca38a1158fffee6b67f7e137c71ab4645d8
MD5 4948ea24cd1fe4ce7f02ed8406aac6e0
BLAKE2b-256 db9d9e4a51ba28116f2384557724ffa14993213a6933027dd9c597b2849cad37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58ae79918b4c2ec9d8b173fd3ee16b5761c35b163a5871900044c3409b1aa17c
MD5 44de4b72e7301d8d29698aea8f81079c
BLAKE2b-256 08f47e4cb1e94aee5a671cae0c1d6f6bf42302958843daba90a1444b4148659e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d23bee80f784330e7e5d8099657e49c0768c689f1fc7159686c03a59166bb78
MD5 59fa313c9eccbbdd01ccb853a6be2774
BLAKE2b-256 a27e4eadaf93e8f13faac69e4385f6cf9c2aa0c71042c18debdee5867152ff8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 169af446449d8a22fd9c93fb4dadedfad916dfc22207f7352a390332656dccf8
MD5 b168475ff3265bf1b79c823d1c03d5d6
BLAKE2b-256 5628e382e4ddeeac0ed39ae91738f519274cd33a639b0746cdc34bfc334a11a1

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 580b46923fe56b85c95976f247d2d7ecab995a9c57200d94acf913d06e930dd9
MD5 6e67ba95de9215ae241a2a7a1ef4fe78
BLAKE2b-256 30635d50ef19d2646891d0b5560f6c369127543fc39136d33a97585aa313c560

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b2b61d5de1cd34817f0b2f498badb6c0054b8a897cc5a909fed21000d258f397
MD5 5d8d385bfcfdef2c07b3a22393dd07d0
BLAKE2b-256 87a8867e190bd60cb0bd80cc664808363d76eb657186116ebbb2ba7a293ada0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc3f5811c19d3cc221dc4a78604e5717d0a8adb2c0cb984f9f81cd8dbc285d9f
MD5 06441743bbd8f9a91523ae9bbed54660
BLAKE2b-256 95e8fa11895f5dcc323914cc3108877c07998db66709c272a24851ec2f6dca31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd9de709ac90fc1734285fb479f4d90971e5205e82491cbd6047d0673989bf4f
MD5 5f9d0767e558ff46df03cf4c5a2a0312
BLAKE2b-256 2611aaddc16719daa5d2f4fcaf26a66dd42acdc8aa2b9788a92af943b6d34f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa30d483c0d39d83c8ce9454fcaa75bbc4b02d0c41be721ef95ed4277124537b
MD5 d65420890022649eb07c0bb0c0011653
BLAKE2b-256 373359d104992c13044c4168c8d9e1a8fa7ebc97925d758242b00b0b0356a955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2985de5bd0756e25dcff945f44cfd624e8220c15ae6f26cc3d6d4c0ae58ee7da
MD5 df8cfa101f09ee414bc04c7daf12d335
BLAKE2b-256 557d7c2375a7c0cacaa778d9bdeebf466ce5ac39fe5158f524d26362da4a3db9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0875dcc60ad0f44a9fe824af2a829b2e26f3605897eb71d6afecf1d24fa511d5
MD5 34b928a41562ef3f29890633771cd788
BLAKE2b-256 2770e25c0ca4cd003b71c795e60df363354b9c281419cdfb1ef072a4714bfd59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 634ebad439d54e352f1cd4bdcf3b2cf3823bfc90cf10ae6769155462074d69e5
MD5 a8458967f9715896626f0ab6309b990b
BLAKE2b-256 60baa913453d3719df4c0a857106ca7832f7acc68b19709b0ce0a018abc9d769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f71e04f43e32533e9e588b1c190cb687ff1abde9c0f9850873cbb5cd6bc8b108
MD5 58e8007958ba82d296a9425da308118e
BLAKE2b-256 23899d78eaf80ddb8ec7270f632518e62e7833e9bb4964a2c010468a2d810556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01b42512a8b7b461d86fb8df26826908f67802bcdb8465c8520c79099548b6bc
MD5 ffbfa584d2ece688b72fd7cdd00ebe8b
BLAKE2b-256 e51c0ccd72133a451e431ca3c7190103a72476836222eec673ec3cc9047bbb36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2a57a65e933ce9768af762d5f3b449c6189735a2a780f1ed95eba6a2909c6fa
MD5 bddbb42b82e3adb2f8159ce03ff42305
BLAKE2b-256 d0b7be6885351b77665a495a6cdb6ab3a665a701bf65fc1399541ea85137c22b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ec6150b027b9937f1c18ad6271bad8f61ab20436dea6aeca40c260cad726484
MD5 c5e26ea22719ba195e26b9e53c6e4e02
BLAKE2b-256 4b1f92eb6d1f7c68558b262bf39d1eb7defd0f0ea17881e59696890a05419878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bfbfc492f45a30b651b1b2875f966f8ceee39862481694490c2e5bff88a229a
MD5 810a4ed5586fdb23955fc0c3755d9867
BLAKE2b-256 9a8bd68f249a9b7d42246abc047ceb826d4f81be8fb150a0ca5647ce80c0dd76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3568541b6106d12999ba7a3db0498546dd786cc897a533daa39c843464110fbe
MD5 82ac4c29b6dd0a36c62c3303d8f2670e
BLAKE2b-256 2e3ef70aa6d0c731f8172089fbd81f17c27c288cde549320dda5c4dac0853516

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 672ff3f34b0e22b293305742521b95c82fead7d4a3d336d84128a4486dbdd71a
MD5 e826528b3cb09f5ac14e7581f336a02b
BLAKE2b-256 a06da2d0f16d27588c4c6b684e283c609322388531c167a4969047160eb837ac

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3e6c4b93ac54abd475079a2b29b0e3e2a08dcaee2a570a8dfe5a0a1a8758b4ad
MD5 29d568efb85c305263d3f8b89cb09f32
BLAKE2b-256 465bfa674f662b2b9a12a027edd0dce991725cbd4a27dc5c20771a82e45f082d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b32d30ec0c3af43a40c186f34d9377c1a16076338ed65513da27e6e775ce9d5
MD5 9d302f3cf9efb9a64b15ae5753e0c4f4
BLAKE2b-256 33ee922c6551ca3daf8c29d27bb8655a57433b087ab7f1fd1d6fea6c6605d816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28cf96660f64313a38c2dd04d38d0d33972cfd22613ea86d0693dcee2282ef8f
MD5 a445abf90296d2b6b0417945f1d091d9
BLAKE2b-256 0c4d6e36cc7cebb245e69fe7de5aef68f0f2ad2af80ab305a5ca159a5844e994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88ea3b3172ca5a0185d1b034bef82720dc8099f41a16159784f5ef08b0526aeb
MD5 13339695427f7b3191209921454ffef1
BLAKE2b-256 104fc0ada583bf6048e582d0052e4240f5d53ff1be1c6db5d6fc695b7fddfe9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e449b20b8faadd3919cdca7b79ff182e6ff8370052f7a597a4cda09946f5b52
MD5 40df446b77551618c641c968854233be
BLAKE2b-256 0a26c498572bc74eac097ad42ff0b733056c9e0bcbb5b257cb90f6f9f941dd75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 731e3a0bfecdd9065918c91fac90e2aef50db6c7c8e7dab64a07c1ceebcdc3eb
MD5 be0f601b8d01f45e77159402edd7794f
BLAKE2b-256 7758d5fb16d28b28a7c3e7ea56197875c3902e696d05462373aa1734cd82387e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9870ce745dde2c6e0926235c6b6b7d0fe377ea10f5feb98eec7bf3540e29a0a8
MD5 902449a76ce49a3c36d358590db71c78
BLAKE2b-256 debfd357768c368848f5cae17057922f2bd8beebdbc22b67ef96fe6cc26c2106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b69d0cd4129feecd2faee08760ed17f01f512a424546819501939cbc78716bb1
MD5 131893ae5b5947815fa96bb3ef12aa94
BLAKE2b-256 f3c841e4ed3a6d8d07fe29a915a3dc6dd6029ad6f0d4fbd3218cb2c04e30639d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77e8aae69f2bf3ad4dc8b7e98509e7852dc7786ccb57cad25ad939b52e96ca5f
MD5 cb5254e81cfa07932c7fe020fc6e8cf9
BLAKE2b-256 399909f515a099d5a43b9211477944d6ee5cdfe5b4d759f84b75f326e2c585c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9a8864ce1c4991ed03c2dba8629206721a7b01a0ea6ea9c75239b7d3002fc0d
MD5 57b57d306b0bc537f2d5f1e29003d01f
BLAKE2b-256 3d75bdbad56c91e61a40363e64c7a5e408e1639d69a8da81e6e2fa7c89cad934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b313893d1f474a14057a5400d982ed6d2c655561b67575feb63d144bc835060
MD5 d5fe2219ec072c1f6f442f2d476c440e
BLAKE2b-256 b8afa5e26effdd5cf52d77c584a5d22c6f5fb631fd600932549c26e52c76c070

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c72c642d9e09bc3cebe08b7dc500381edada19f2719a384413d3ebe1b91208ac
MD5 3cefa4225e8ba010cf497c4f465c29e4
BLAKE2b-256 fbe3119b469ef3174dc73a7a11f70ff83b2e982159c13e2bfeae26164f1e5fee

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c021b2636259483128dc4f6b2dda9c4c9bfe745157408a6308546b2862e27fbd
MD5 08ac6c0aa1bef0ee806817f1959ad2a1
BLAKE2b-256 2c5c8acd59d3cabd0ae7e6c3e1a5b6bad527c48c08e19c7ec94ae22a34a80f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f46e6640225179b487d4eb80157658a0f529066a8761bbefd1bfabff597e4944
MD5 92adc0c6a130aece142326df58dc3836
BLAKE2b-256 a4b4dc867d60ddc51e12b3f13eca753a1524f1cd50f1b127440aa130fb06e944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5256cbcb211105213dc40549ede9cf0269bc26e125d74254e0a47c8723132af
MD5 2e0494965c2c3561b2b7bdd61a92532a
BLAKE2b-256 b818e1c1b431c3db274556e840833b2d65a6603a99c3750e2d4a2d60f50ae8b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdd6fd5b635565f0e2bb3bba860de9800f19e9ed22e41264972d66c340263fb0
MD5 597dbf1748ac843c3e024b05eeabf485
BLAKE2b-256 99eef26307969ec6ea40c1e25f66bfd65f5f291f82a3fc1e4b1291240166c4d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e67b1c612db0bd36cc20ecc05333a5748b6462e14f1822dd195ef0d2a263dfdb
MD5 481b78ac8b88a9dd4fa8ae83c40ef457
BLAKE2b-256 21cdde73a97207bd94c7c0c90d7c2c0359c6e9d090c0b139fe55346549dcacec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 598308349ad6f030f3dfb62c4b1036569077235b10004c0a2eab16e2818ef07a
MD5 d54958a5db6bc33c49220a9fdbf26cff
BLAKE2b-256 dc44bdb47052d38807a47dd84aa8427ca36ab443be537e3afc2714d52b9eea3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d931249bb3a9340ec19e8ccf2930534575bf2de2d63c974d69a23815f2db132
MD5 97a1118152308354dac5943e1b13e1ed
BLAKE2b-256 b0471b00da0dfc3256a5da659147907505fa1b5698958e8f7527df015e886ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57c7cc5e0a4638e31fc3b6962d5f9e824e5ebbcf70f6ea27e3eaaf518ec7ff07
MD5 463eeac2d42abd7e94dba6af366ed1ef
BLAKE2b-256 7bb268522e7da39b61bdba52e39c3b9cedfc16c2b713b4f0de9019f46539bcd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9012a21b54908875cff4b662d55bc3f729fc8552e27bba415f43d50da9f3d7d4
MD5 e7e508c5490fb574e7df549b921652ed
BLAKE2b-256 420d2d6f9c7bb39b412a6e3150ba2806e6af29840137104a56ed032d63b7cd49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed06b9c183d92dfaef02599809e4b8c50b60e16e6f3a121948e4014cee89a7e5
MD5 28bc0ef59db9744dd11343e7e6e045ce
BLAKE2b-256 1766176cf977c408103fc8790b58b2f1e6a35bf9b511daf27dab2b9f35d87d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c035f7c8b97f3ab464d05b73e9191c5b3e529ce4b39ff50102202e3fb6e43f92
MD5 eeb34ee3f224498f3e247ab74597b0a2
BLAKE2b-256 93871eaf8ca52b48eeaa4366c29306b789d2f33aeacbb3846fc30b74bf9f9726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cea633398a612387cf78697f75a9b31e5e1708811c17bac7ce50e0792ed408b8
MD5 1dbdd5e2e8531a822a5f788b16aefee7
BLAKE2b-256 3d4e4a6867b54ab291765c708f9d8986062b5659f489c529268e252fb19199f8

See more details on using hashes here.

File details

Details for the file resp_benchmark-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for resp_benchmark-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efec6f980ff11f2c7df7481c253358eafc92312dc1dd3f5c2134bd62554ceaf6
MD5 ef86e725908aef15100a00b70f15cf1a
BLAKE2b-256 7742f04de94fae2ee6a7cd782a64188d81295acdab804c02ecd07dc0c818137c

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