A performance benchmarking tool for RESP protocol databases.
Project description
resp-benchmark
用来测试兼容 RESP 协议的数据库,比如 Redis、Valkey、Tair 等,提供命令行工具与 Python 库(方便编写自动化测试脚本)。
安装
pip install resp-benchmark
使用
命令行工具
resp-benchmark --help
Python 库
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=1000_0000, connections=128)
result = bm.bench("GET {key uniform 10000000}", seconds=3, connections=16)
print(result.qps, result.avg_latency_ms, result.p99_latency_ms)
自定义命令
resp-benchmark 支持自定义要测试的命令,使用如下占位符语法:SET {key uniform 10000000} {value 64}
表示执行 SET 命令,key 的分布是 uniform,随机范围是 0-10000000,value 的大小是 64 字节
支持的占位符有:
{key uniform N}
: 生成范围在0
至N-1
的随机数。比如{key uniform 100}
可能会生成key_0000000099
。{key sequence N}
: 同上,但是是顺序产生,用于在加载数据时保证数据覆盖。比如{key sequence 100}
会生成key_0000000000
,key_0000000001
, ...{key zipfian N}
: 同上,但是分布是指数为 1.03 的 Zipfian 分布,用于模拟真实场景下的 key 分布。{value N}
: 生成长度为N
字节的随机字符串。比如{value 64}
可能会生成92xsqdNgAyKcqtR4pyXz7j1GQAlRJQJ9TagOmCZ5xR3q3UCXl6B7QysZfgYd4Vmd
。{rand N}
: 生成一个0
到N-1
之间的随机数。比如{rand 100}
可能会生成99
。{range N W}
: 生成一对随机数,两个数字的范围是0
到N-1
,两个数字的差值是W
,用来测试各类*range*
命令。比如{range 100 10}
可能会生成89 99
。
最佳实践
压测 zset
# 1. 加载数据
resp-benchmark --load -n 1000000 -P 10 "ZADD {key sequence 1000} {rand 1000} {value 8}"
# 2. 压测
resp-benchmark "ZRANGEBYSCORE {key uniform 1000} {range 1000 10}"
压测 lua script
redis-cli 'SCRIPT LOAD "return redis.call('\''SET'\'', KEYS[1], ARGV[1])"'
resp-benchmark "EVALSHA d8f2fad9f8e86a53d2a6ebd960b33c4972cacc37 1 {key uniform 100000} {value 64}"
与 redis-benchmark 的差异
使用 resp-benchmark 与 redis-benchmark 测试 Redis 时,可能会得到不同的结果。常见有以下原因:
- redis-benchmark 在测试 set 命令时总是使用相同的 value,这不会导致 DB 的持久化与复制机制。resp-benchmark 则可以使用
{value 64}
对每条命令都重新生成数据。 - redis-benchmark 在测试 list/set/zset/hash 等命令时,总是使用相同的 primary key,可能会导致多线程 DB 的性能数据失真。resp-benchmark 可以通过
{key uniform 10000000}
等占位符生成不同的 key。 - redis-benchmark 在集群模式下,发到不同节点的请求都被指定了相同的 slot,可能会导致多线程 DB 的性能数据失真。
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
Built Distributions
File details
Details for the file resp_benchmark-0.1.2.tar.gz
.
File metadata
- Download URL: resp_benchmark-0.1.2.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b0c072039817e386e049d39b3a2f9b8149f1fbbe0c658e91a0eeea61a0154e5 |
|
MD5 | d1e049aba580981d5107c9dd9b6964ce |
|
BLAKE2b-256 | 6de4d41a8ff7dfe5f1289902affcd5a93ad15f307e0ababfbe1f710b5dd943fe |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cd180caca9a193cb873841c88d50dcf9d4ee51dd901ea7198644cde3e3bca02 |
|
MD5 | 7a67e85dabaed7e0961ff6ec485d6869 |
|
BLAKE2b-256 | e7a05e842da4e65cad445c299f100555ae4a87135220480530ee2bf74225a5f6 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21715f370410949a76f67da7c535b639e35729183c663abc3dffb260d3d7a4f4 |
|
MD5 | 6ac1c4c53eaa53b5283665d4338948ed |
|
BLAKE2b-256 | 7f17b7d5ae748331077ea963bd4b5ebf495c7dbbcfaed63d22ad11d6ffda4fa6 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02eaab0e43af04eadee6cca08e8ca30e902fbbd0be4f9e1e6bd3cd2c5fc8d498 |
|
MD5 | 2d0a6a585654cdb77322d3b5e4a73add |
|
BLAKE2b-256 | af225acd077913e3060502aeb8e619800533b8125f3a3f6a3432001cf0bdd3e3 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67c5830c6dec1edfd16ba0cbaa1c63e00b854fdca23c120da9cbf9049f4de1e8 |
|
MD5 | 0e5fbf8d081108c7fbb1dbda5ce1504f |
|
BLAKE2b-256 | a0407939d6fe5b3a58cd8f6d7c069715d995637565c5b38d166946bf0d1cb66e |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0cb61f15ade49f6e7e2b6ef4f1a145c145e5135892b72ef14155ed3da1d8549 |
|
MD5 | c2cd1eabc50d99aec1b0b2a7c5f3b8c5 |
|
BLAKE2b-256 | a372b9d9df7e48f1fee670923bc988e40927341f983663a8ef0b8d6f83880e9d |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7bcaef6846f19c8456c3691a419f8fa2e4bb70ec5d0987f10a12eadd2b09fc64 |
|
MD5 | c340a8f3aa5c688e4c45437a0b108631 |
|
BLAKE2b-256 | a09a59798d50be4962ae8e3abdcd2486976907713a8d10f888ea93385ae84f86 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5432dfe15bfc61be72a03c0a928864d4a3796e048bb5102294fef3d7ba4d8d6c |
|
MD5 | cd4d3ed262a3439fd67a5cd5d420d198 |
|
BLAKE2b-256 | 5080323ebe02c37c556c73a8a77171bf34b286a7430ba4e0c78497c7ecbbfc85 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d1c34eb6aa14d81313f26a1ee9c95d7714c85d01d7c1d84097d9a52dd71b3b8 |
|
MD5 | 5eff93a16f1a77ba71b238f3c7915d08 |
|
BLAKE2b-256 | 46631a52653e1e0da01dfee456543bd6453ec92b2352f4d89efac29313fb6b49 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba95e3ce9043c65e915e14b2d82e0816949a0c2c916f9b0527305dbc8da77737 |
|
MD5 | e059965fbcb22e4305069ef7528bc7b2 |
|
BLAKE2b-256 | 66cd45f7326c280f681bd4ad8b1139a67376bb9e297d2962dbfb96feb2646d4a |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73f78bddc919fb92a800ed6aa116fa88e4a8775f60ed39c96c9f91a82e893859 |
|
MD5 | 8de4592ff58c638f2c70cb2242f0d419 |
|
BLAKE2b-256 | ebce47cc2ec0c806f10b8f97ca43eaebf2de44ff33839e1b40783a530b15faae |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81caf7d3a48c158b6cf218db3c0393396336e4376f965866b69de670564629db |
|
MD5 | 0cab1233fc8b345865194c222e01b771 |
|
BLAKE2b-256 | 857ff96b4049b8063f568a9968ad574f864adf89a0d00d22d4972da07e4d8fd9 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26582bea47680da04d2c26c44af6f8f8e972e93f87128202f7fdeb168fd9e029 |
|
MD5 | 75ebdfd8c55f86d6a0b347583fcb5fa2 |
|
BLAKE2b-256 | 1e860e0e1f2de22ef9f0649254526ec71768139a51926316a562bae055ec7ac8 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bad07e54c3f4cd7878eae228a3abc02e125eb9fb7b6074b10afea6e7f0fc7c74 |
|
MD5 | e39aff39dfae46e9090957898f6eec24 |
|
BLAKE2b-256 | bfde2cea6fa93a4dcf6a9578c289f93107569ca0e71ee78dcd6fe0a448ec5de5 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 592ffed692be10ab95af51a32c56c5d3bef612525333ede29666177cf5837d0b |
|
MD5 | 449bb356fb5b03e788f1c546645c9baf |
|
BLAKE2b-256 | 318158d4583d3cb846ff6c84cbb851acdaf28fd20fcd994df85af50dc6417521 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9387d6fdb7c2706b83df89ce3212b832b11e49398fe9af87262ed4b2db61dd7c |
|
MD5 | 5d682c9be35091a2bed2bc0a7056df15 |
|
BLAKE2b-256 | d4b934afe713a6120924076fd78ae69cd7c2109940530e7ff6c4a8cf37096ded |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f44e326967a5182cbc732b70bf028cc1830fb87b5c8c05adcd0bae2e6ef5fd4 |
|
MD5 | 008ad6d691a9ad5b672d20343b447bf3 |
|
BLAKE2b-256 | f761fa1e4857aec72ab03b7e77c1e45744c3673dc64ed88b51ac6d21536da67f |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f5c162647d6856ef2f149f80ad330f34458f7118cd90c0915aa50f93fa4d381 |
|
MD5 | dc65ea1bd117a4a6b996de981d09078f |
|
BLAKE2b-256 | 1ec5668d030092a9fe56884599c7ed2142db1bd922dd2e2017d2b70ed0742369 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84a105f59e9ee6cc1029c201445ad3d3dd316007cd74e8d3d0beacf0a5829afa |
|
MD5 | a5da86964e8ecb4140914f8efa0b38fe |
|
BLAKE2b-256 | 358c02b45d184b5ed313e8286b0a86d36147f910dd331ae2c60d47c372ac0375 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56eead6b7e86502c8995a72826bbd0041491a0955c5b04fc8a3b5864d2158497 |
|
MD5 | 7c34b966762468a9422b829f06761b63 |
|
BLAKE2b-256 | d9cdf71efe41d26357fcdc48e20abff3b02a8e4b3516e7f7301b718064936f29 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66863343fed394127d44c17b093eb04bf2830c90faa03b870cde2b1de09a2419 |
|
MD5 | 97355d6c17bb9df132f87504e1e93de8 |
|
BLAKE2b-256 | 57d1f285cb77566c2ff74a5d67387cdcb99226398afe199abbffb444fb1bd0e6 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8088b87d9812a69c63f2421d7462a99243273df17f95657440a27d45284f9be4 |
|
MD5 | 0c3815a030dc33af138c6fddd6c1b66e |
|
BLAKE2b-256 | e0dba3022bd86c0bfc8be262ce369d82acbf67f86a14d4e7db233f3baaa54505 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fb9f9570fd1cd63fb9fee1615e0afee84dcc5524c4d465946be42bb79ff9f1a |
|
MD5 | 5208fd3abc37126629f8bf02179f3057 |
|
BLAKE2b-256 | b940e6b22c90fac136aaf382eb2b7e5f50aa248f54250b42c01e5872f0977e1d |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfba15b3177d4daebd5bc0df202bf4952039102c79d2bc5e11cedaed5e2727ff |
|
MD5 | 9ca7622da94ab76c8d380541e5ed83a6 |
|
BLAKE2b-256 | 92b350ff57304087304db57b645072601e10fda650f6860e2362d0bc218f3f84 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a11a8a36969bc0a803562eab3f006c0800e755810cc837bb30ee2e454e676cc |
|
MD5 | 31c1d12ce3cd7e7a36146e81efc2ce1a |
|
BLAKE2b-256 | 63d8a6c631e94e4a511b1e8c2f489fcd538834c2df6685f5126ab19c02d238e7 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 252b78b1b546e2fd60a84a18cad9b9336f4e65cf8a6e9f4890ed556a59f8bff5 |
|
MD5 | b15b3371e8797fdc9f2abd07a3eaebfc |
|
BLAKE2b-256 | b64edf441b8fed6098ec9a5b40f0b720b31e2585f3faccfe7f0ca1368c769f99 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cb036b4a7fe1343aab1f9b626e34e9770b4e4fbcdd41069a264b0fe8a4fff5a |
|
MD5 | 96dca7ad158f77d17af865a61a35368a |
|
BLAKE2b-256 | f1bb072ca66370c79ebca8f2bb93d47f84c682ba57337ac0887f6f1327fde121 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b1bbd4ed3adc626844b358eb9ab1d73d8498f4b81c2748e28f365675a58d0b0 |
|
MD5 | ff1a7329db2e729a3aed96240c65e084 |
|
BLAKE2b-256 | f7d1ce3e27c15ffa50f842ccc201bc34778c0eb204176f7661300729240faf55 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed97b83ff61455e420c72b1cd72cf7c1f65bfe1b0c5d50422a058a676e5fa0c7 |
|
MD5 | 229d92e2b6c66eb7da2d702529f08c8f |
|
BLAKE2b-256 | af660de31035397a6bcb43062dad260bdcaee1bc5885a8239d8f1c3c2019abf2 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-none-win_amd64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-none-win_amd64.whl
- Upload date:
- Size: 915.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 535f97ab44e70e7016c3012cb0496771c5d20b543bf8e4bed1c02e053f1547d4 |
|
MD5 | 0abc35ad4c85febee01f62fe061540d8 |
|
BLAKE2b-256 | 50455162d2c3f0fd4bac5a028b1af79663cbe54c1cdfb584ecec3cb49450fac6 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-none-win32.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-none-win32.whl
- Upload date:
- Size: 851.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | beac143c2515d0ca7a2ae6083b75f8c3c0545a02715f625ae63e565535a4dd0a |
|
MD5 | a6a0b93b18abc57c67344be35f37ec2d |
|
BLAKE2b-256 | 40a28d52ba16ce25138a1fdae616a570720a460dbd0ed052ebb4cb897b1db6dc |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62e1c824342bac6971261bebd3a7e9c20deffd2f060861792b55bb91b3d9471d |
|
MD5 | 2afa89e230df0689c132a1eb12978173 |
|
BLAKE2b-256 | 5e9aa9a5fe71eb2fa76977357decb8d3b2f818878c910b2c357b8ca86ef07b92 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ee6279d38d34381ce75b73a5279c134d0be6a5ed859df950879cdfef4d30170 |
|
MD5 | f3d2264e85934b827d3a77295f066e6a |
|
BLAKE2b-256 | a601e86417d744d4e703c096e6f53f9922c84360cc21af4bde01063bcbb02772 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4631e80bb1b1b615dd8d5f9a9aca0e302906f61d97dad81fce978a4d1d5c20a |
|
MD5 | df68d6749a4d755ccfb74e6a5b23d8a8 |
|
BLAKE2b-256 | 427a9a3dc126db58bab5cf3790f5394fd1ab9d941921985ac208ef14766c45a0 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e39d0ab45d56a137f1316f3285f3d9d7a413a76161e1e14ce5759d6e6dfaf08f |
|
MD5 | 173401332b3cf878c6d68c388eac9123 |
|
BLAKE2b-256 | 02b2539b5937b8d1d3c1d4edffca221309838eced6148b79f22dcf7a72ca2236 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd26201129035fc8186061a6402db25355b0f61dfe8dddf730f09b5f8857a512 |
|
MD5 | 9509d9d79f66f5e0071958b8a8d97c4b |
|
BLAKE2b-256 | 5df91462ffc58c206e4d2617f55257ff0dd9f481237c0560848264c49bedebba |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24fae1f6431d0eeabdcf78c2ca55780114a089e972843ab05c1afe66fee53bd6 |
|
MD5 | 5a411f8df8e10c0603a1b6a7e1f888a9 |
|
BLAKE2b-256 | 7ca326d16cf73f01bf82bda78ffa15b9c2fc98f783355c5c29653cf9481c3e4c |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1fc9d85d2831a4409fbb7a53d44b96de152994c598a05d629a239c5c8f22f91 |
|
MD5 | 65734909ee96f83c2be7b900bc97905c |
|
BLAKE2b-256 | 86624f96462161d10e94063167823741d29c55a54589388468e2189b05023b73 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7b28ed87148bd5667a8c50595b0d7ba4495e9531f491b7e9db06f1f003cc4c6 |
|
MD5 | 0cef546313a8162b765edf427ab2237b |
|
BLAKE2b-256 | 3f9baee34460cb8928be7f0589974ff11ab46e3a194e5ad5431edf000220be18 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae85466d910e7c493ef117fa5914abb96587e84afa9d70f41d4d48eb768adc6a |
|
MD5 | 7894a45e1641fa47255caea604ea2bc4 |
|
BLAKE2b-256 | 8fd1b5a61069e13170f20f1ae438944b649c458fa0a9ba4f5c3795a52cee6ef4 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c86916fc211c90fb6d979a734a7c40bfda210c34085dcc2ba6b87884932f0eb |
|
MD5 | dd9695b5f1cd2d33c3022428e3fe0faa |
|
BLAKE2b-256 | 28a08642667f1d05e42269dca01cd6137191fecd0d225052428b2ec18c89e23f |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f2d9cbacd0858bc7aa59696cb40da98101bb3a99685bcb8dbe58cd53a400828 |
|
MD5 | 9bb59cce3dc7bd0305c2998eadee5ea4 |
|
BLAKE2b-256 | ed4d185c86c90ba1c94c60020b9f4cc3bae06daddf91d5b03b1867c5ada21f8f |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efdc1062307a311a817beadaae583ad0c6f6a6ae776e291efce6dd788f44314b |
|
MD5 | d2b67370772b72f34f926f7a0a41255c |
|
BLAKE2b-256 | 65805297d8912512df1573d8698f5fd4178caf7bae7ba1b65209b9e26a81aaa7 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-none-win_amd64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-none-win_amd64.whl
- Upload date:
- Size: 913.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9a05440f40ba723e95f50c52e16176ef8be08f51f14f9ed93bb2395f818865b |
|
MD5 | f15337a4ff0ad2ccdcbe581094ea5162 |
|
BLAKE2b-256 | c801c21c36a2f902898c3ec49022aea4e90f3efffc653d6bc8ed7b52bd140d95 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-none-win32.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-none-win32.whl
- Upload date:
- Size: 852.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33bdc41e0df3dd674ad4e7b3f15284a3721560c5f5c9af1ea27af71b76c16a2f |
|
MD5 | 7e016d97f10389b252cd906c2226b0f3 |
|
BLAKE2b-256 | e29dc4a915d122b6493b59cd029d2f8b8dca3e9b414939df7215e563bd27793b |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c89b893196f1cd4f6463e9975e493a6f8afff71480096472bec5224fa6643119 |
|
MD5 | 26e78d1beaccbaff53106df6c0f6b801 |
|
BLAKE2b-256 | fa36cc96a979310b42f5fb67a9f92392f1256c8ba589fe995e739eefe414e09f |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb25a0913667880f8a8efbe133b2b4bf0a5dbb74074a7831d3c620d231b84d84 |
|
MD5 | e4e582db3fc461d449dda912ec006371 |
|
BLAKE2b-256 | 6340189a60594ffc074f9c6be26d8ce3c6983b46fa03eef24f5fe42b9a7dc0da |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94212562a0dc1ef1bab6cd95af2c1ab3b83597ccb4cabd5dccf33091d5ddcb49 |
|
MD5 | f7f59a0d38a424d9982de693748adeb1 |
|
BLAKE2b-256 | 6786c917ba23c29d6322465d67c246d7be40f3ed51aa0448b8db345ef95f8268 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dce0839f08fb8e64d8bde6f409fc245fe33e326fbdf625a2e8c63bb6bb54e625 |
|
MD5 | 4e7f40e0f5a9c9415a380141b3b4003c |
|
BLAKE2b-256 | 9a0bc130b3d9294f82324bb23262bd99c7a00c6732991317ba4bbe5e52674de9 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 598563ff7a1e33c8394bd70f6381903a36080ac35df5d89353b7d350f35159e8 |
|
MD5 | 35ac1202bda509c7385f2535d1127e1d |
|
BLAKE2b-256 | 38f2abb6fc8c0968cbe51b2cd683b75c57a515204d480d5650e02b45e40fc64e |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93e4bffa88cafd6af40bce8b597c145616db16ab155bbcfde16c7297b2e9a8a9 |
|
MD5 | f6f038628cf46f601f0b875a70721dda |
|
BLAKE2b-256 | 0d9f529469994d211e1a24ed0dc368149b0bfbe58047bab49f9f2d7f5f5f5c06 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c19894fad6c242a8108ec37b0b307e6d995e0d2081e3511d41c3ebadbe74ed4 |
|
MD5 | a178e79adb43d57d961fc588f140f5dd |
|
BLAKE2b-256 | c640b4d35bdfb45299babcebcc593d841cc9b0d0db8e59df285fefb7d7ec3e1e |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ffdb8b74afdc19947e3abe32dd6d938b4be53edd8987fd71474cccabd290566 |
|
MD5 | f955ad6cb91c86b82cf19483dc9b1063 |
|
BLAKE2b-256 | 8eeefdc8c6fb2545ee6984fd33718e5b9d393a196a34185e35f590b36ddc9ba6 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ccd5a3825e62756d5d6767fc2d2b837d14987482e552ce393e3294810bf3f6ce |
|
MD5 | f3b218dbeb51cbc9b7c02837a7e19124 |
|
BLAKE2b-256 | 33ba253a141c0cc1878b65c8e6ef9b8b1377f56611483a8acafdf76fa15ad140 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9154eb2b58ffaf57da93fb209cce6e13d20347e494a51ba29e0e0b7ec318c3f |
|
MD5 | 355ddd00887023cc859f2e293e5e738c |
|
BLAKE2b-256 | 8cab752b115ddb623c95ff336ae097e684a91ef22406e5c61229b700e2aee55d |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 943cd17ab3c71f16ec073043978d4edd17e54052e2ea398be96eb79561dbc95c |
|
MD5 | 9e110673cd2078c53bc8d0cbe490496d |
|
BLAKE2b-256 | 4e28a3fcda1710f34f5f5c0f1a06f267a8d3103e630dee67c06d3b39b7be3f4d |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | abc27c85a8b757676e8b61a5d467ef502eec99c54c39789b1919ae4b3e333f92 |
|
MD5 | 3f10604649be9c4cd83dc7781b4f5084 |
|
BLAKE2b-256 | ccaf1bc3ea77185967b7ad4b139a8c1218e234b4363b78713e3011f17a9a480a |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-none-win_amd64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-none-win_amd64.whl
- Upload date:
- Size: 914.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db98b454e56a6bf006db1045e15746e981276729a67ce0da544bfc6b352df35c |
|
MD5 | 5ebe69531dab53275a68752be9daebe6 |
|
BLAKE2b-256 | a6335cdde0c97aab8827d49f4296ff5c9097912b7f2e0dd5b86487c99d09369c |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-none-win32.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-none-win32.whl
- Upload date:
- Size: 852.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d19db8fb067f698b4ad7408a451dad12b192b6218916ed38c9ddeeef96f7be3 |
|
MD5 | 8bccafee196320d2411d669ff0c91e96 |
|
BLAKE2b-256 | 49e580adff032963791f7b624eb879750c66fb0ec63963314907e42dcd15b86e |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3589104e60c82e49e412856e99e8b12e205278816febc367ae2bb23994e2f6c1 |
|
MD5 | 372402308c764ebae7b9c7f53a88d162 |
|
BLAKE2b-256 | 2e2f353590401c8fe77aeeb9f3acda9bc86ce30ba872bcc4a1c9c74eccb602d9 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a697ee22bead4ca674f4ce45ca95c89d2d68bc07e5e1bcbddf2cdb52034bec25 |
|
MD5 | dcf6e0f5ea23bf5ffec87b88b4249972 |
|
BLAKE2b-256 | 6ebdd4d93079d4ae944d196d94df2700b19f6c4473c0ab7651a053ce040334c7 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19ab11201e1a42985400553981b04c79b7e35cbf610442ed58e443861e3ba637 |
|
MD5 | de2f400b758ab594db4ebd84d5982442 |
|
BLAKE2b-256 | 7240f85d828dbf6071f80f9a1e80f793484d17a9a2a267755bdf5fcde5e161a1 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45778a8a88113f251fd6a6cd5df709b4239322c8b5bd39b8bc22da6ab82d7b67 |
|
MD5 | e96737c1b80643b379e9c2b40be6ec42 |
|
BLAKE2b-256 | e691a4a74073a61debe783f6123d15918ec0cec1ee7ba4a978f25b72a7acf6f2 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0716f1c69e7c4fe647194ee5b8d52ce17462230507fc68a5662d7d93b382435d |
|
MD5 | 376f64e340b2b0bf0c8593049e700e05 |
|
BLAKE2b-256 | 046155c01b06487d8f23bc1f83702b572868cc9f1be734ac1c89e16de1358694 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9352c015b4495e58cfd942ffa8785cd87876c4a4275d3f508f2b4acdffe4eba4 |
|
MD5 | 18e3af4c4c4932c406ea9ad5aa4ea095 |
|
BLAKE2b-256 | 15ad27390be647fb5f9d30a1e33caae01b9e16fee62957b19e2a00e5ea45d382 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7a357cc8b17498b331805c8263301ff2a0e656383dc0c4769a34b9740136500 |
|
MD5 | eb804e11ef1c0878617965960c0dff7f |
|
BLAKE2b-256 | 251dd66c25631cc8dd588cce0b408618d498eafdb17451557d8d7666c3664317 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21b92d5441d07115e0d2ef253f8ea5622abac0b3f04119c374a894a5e2734e58 |
|
MD5 | 20899841c1c8288f6d09cc100234609c |
|
BLAKE2b-256 | c61d696e94dee64d7f002c26f21b1114eb343e6392085664eab42401a57d3ec7 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99a858d07b4a92608a211f4edc04d28c5f088d22418d2dd746645a7c8329a45f |
|
MD5 | c4bd96bc068e231973312cc640e2eb19 |
|
BLAKE2b-256 | 95fe3649e0d1992e8492f7d16373b57209aba2d7c4a7fd756db98cc0e5349143 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73653f71bcfead3a55f68b3cd43a670e1dc84bbad42d7bbc50101ad1e9b7f605 |
|
MD5 | cc7f58574e92868cae62b33b2c3099d4 |
|
BLAKE2b-256 | a9605b9e6c243e8e7a62039f9ca6d8dec4d5ba6fcdcefcb8be26963809f7f36b |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8fe2c5b3d521cb125656b2641546bdf547e10265dca4e0151e599b4c2408000 |
|
MD5 | e53ef875f1e559892c2a555f54c50811 |
|
BLAKE2b-256 | 9d7ed4b6b927a948fd4f53c6caa18215360b731611e76273587912998afbbb0d |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-none-win_amd64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-none-win_amd64.whl
- Upload date:
- Size: 915.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cb38b59383f16a6fbd7757412a48348afc37740c7bfd1251258cf18b271dd27 |
|
MD5 | d83bdb318f9de1a48b05deb8fcdad9ba |
|
BLAKE2b-256 | d2e2fd484969ba10294a95f2d47f75adb21048c1285ea1ec341897cf0d5a00c4 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-none-win32.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-none-win32.whl
- Upload date:
- Size: 852.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db8438e1d103d0776614c4bd57a0e8292da29f2bdca408288641dc0a738d02e6 |
|
MD5 | 8c86487bf62ce229c02d660f5f60b6d0 |
|
BLAKE2b-256 | 7a23d101b0c7f2284c92c86ad0806e94a170fd088a756866ace60ecdcab6723e |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 895b57e6760d3ec724145d14cb60d337c1061751874e749990a4e0edc2003ab6 |
|
MD5 | 35c2de96736d2128b808fd674709801e |
|
BLAKE2b-256 | af5984d30202ae28442a7a42718cdc79e8e9c3f9d6b4b1b59ed057ead2b865e6 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82ba97c9537a68ae2a91248f8decfc9459386c5c4da4bcb042cb3c835fae22a9 |
|
MD5 | 9c1eaa0c9e22b899d2c632e52af351ae |
|
BLAKE2b-256 | faa65f2b4d51c7ebec2c815ec178560bc1fc275c1c9b2a965aa525193e8e4a48 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 199bf754dcbc383ffb906fff8cf6a7b859f09d2d8ff9ac1b67e484e754a6682c |
|
MD5 | 319f4fa39a68aa6dcd068294d26bba5b |
|
BLAKE2b-256 | 7ba4235cbc2575ef2e3cdf06fbe4f334a45556239edbe5a75477678a37e6b774 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aee05f908cfc7f9d2e838ede652a0f37f5f9c455e27dae17d05f1c6497441e96 |
|
MD5 | 00af9512357f626eeadb50c163475c3b |
|
BLAKE2b-256 | d32195992af44624585a9d7f0998d4d820f2fe76bc0f87830306b04d32b2f5ea |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78ed1ef7f34c801cba5506f19daa5f32a80db35914ebef58dde8a8f61e017be3 |
|
MD5 | cf9b8cac0009b65f84c58a6b60f9de77 |
|
BLAKE2b-256 | 7e97cce5b83a418c2470b0078e83a462aeabc8b151f46816892073037ef04dd7 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7487ab8d763f64048fceb5f10608e8954a98af8602a52aa3dec48a19bb76ea49 |
|
MD5 | b020e5d39acc1608ad0d85e5c23625c7 |
|
BLAKE2b-256 | 33d842b4a237f6a077f1a3b80e8caf158dc7fb710f9f8e5935403d41cb1fde7d |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b2242aa4a49e338eee04b403a395c81e69f4648743210cf8311ff5fe2b9561a |
|
MD5 | 4821ed3f0c61cacb4a588f883674283f |
|
BLAKE2b-256 | 88bd89431c4d3264b4d9abf4c954b4ddea4b10492711f4daf5bc81da481ab028 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 437cab9270163fa7c3c4d5580ba2c07fdfe67d6b0bd8f6757270428a76e82944 |
|
MD5 | 59247b78628489a55c9930657186211f |
|
BLAKE2b-256 | 96d9517c8badb7fee882a53ff7160b0a8ec29af98efb3354ccfd9d6db2b39089 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7966a7a13f96ef3f567b4b454a2c388d3c058d252b40d3bf6ccf7eff107827fb |
|
MD5 | e7f9b36a0021c6d0516a417f94bef1c6 |
|
BLAKE2b-256 | c26eb623c324ed20bc86e4dc073fca4ec919cbb28228d1ee6b18d4887f70db4c |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afe2f9b23db8e2af110bc60f5ba498247fa58751e52c7cc237ee836fcd03096d |
|
MD5 | 716b11a2d27eed983187cb9fc7f15ee3 |
|
BLAKE2b-256 | 0056bc7b518a7a215d941912fcf94db6a0fe744130c4f3139cf2127e7674669a |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e022936c27770efc0efe3a9f89fafbb865ef513699cc4542386a8059a1f3a74 |
|
MD5 | 3a2ebce64724002f90e60d7af1400252 |
|
BLAKE2b-256 | a4c6ec92673207c4ebe89187283ab7fedb678b03016c1a128bba27f3c966a52d |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-none-win_amd64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-none-win_amd64.whl
- Upload date:
- Size: 915.3 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a904345ef8b64204dd720955df91d96c6645de9b2479db13c28e4d8b672c0437 |
|
MD5 | ee1e588ebb90094f8a022528b621c8b7 |
|
BLAKE2b-256 | 754dca78468c4469698d3a18c084d300c7d88c5a532f1f4874431e6410363ea5 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-none-win32.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-none-win32.whl
- Upload date:
- Size: 853.1 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 085940fe9ab14fa5097b87cdc4639b3981a342d7b7e7a168aeaae21a3cdf1e05 |
|
MD5 | 6f661f8acbdd46be0ba1a5b48a32a0be |
|
BLAKE2b-256 | 0ddae83b35f12f16d9ad39ef31698ed0fc9f64513ca554f9362fbb391e2cbb47 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eceb7d82712e07a94b9e4ffc27a3f1b0a116fa574e588d735e4974ada4df0ed3 |
|
MD5 | 65304e338e941f8155e8aed83b12e11b |
|
BLAKE2b-256 | f80e054e0c494f8e101b64a1e25e5ce886b1717161116adc1f56fb8e203a1bba |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9eaf8c1f9b986c83606354bc3d51afb1ac8dc3505fcd0a2b58bd66c27bcd7cb |
|
MD5 | d727a040469fad04422429ad81638cad |
|
BLAKE2b-256 | 22b84ce878e0d658110c3a553798c2920db0a6332ea404ea430007f8ef0a3aac |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3e9558d2e2f4fecadeae672199bde40041eba120bb2e30bce4bee631d2752c7 |
|
MD5 | 03c54e4b78a68daf5bfb9716a4c6b5de |
|
BLAKE2b-256 | 49e10a0463e7a40abe47dc16e17d2fbf0f708c9418ff5b3794435986c31beea6 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddfdd3252822dfd24a12ab3ec1e12d41698c1a86b7dedc72a4ccb4bd02ec8c99 |
|
MD5 | 4545aee90ad45399a9c40e058774f233 |
|
BLAKE2b-256 | fecee937838600ea33b46db6019af8bad22f2895d1fe2ddfcc54699571785200 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1aecab0e834f2e86d6936c54481b1999cd76e5b2044008454d5f365c0e20667d |
|
MD5 | 8eaaf0604f834d71b61bb5468f225805 |
|
BLAKE2b-256 | 515b211e7ff9fddc0c87189cf1710d3c33c3e0eaf934c367e32354746e2facc6 |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7148d16f497bc109cc810df1bf76ffca347b2a0344413f7bc11e5f993ddf9a1 |
|
MD5 | be6c6bb2d22342f7533f631d25cbf1ff |
|
BLAKE2b-256 | 4340865d5466008c6a0d7a912fa6d42487441ca311bd429c812f5228f65cdc7e |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12521b09716ebed94a0abccfb9ca022cfde6193656fe9b5150b25a5e05d3dfd5 |
|
MD5 | 20819e8cd2aa904bb17c935af2dd0b49 |
|
BLAKE2b-256 | 88ce2e52e95a5de8fc23863e47537fe6f009c600cb8ff062deeb0734f342ebba |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed5fa55fff2d2a06c50cac1b2f3af77795f89e0df38b9c422eaba24c2102184a |
|
MD5 | 3b72fa2503d9898c15f06382e449d412 |
|
BLAKE2b-256 | 5c8fdfd674a30337206c143182e49254932478877d57b314b7359c5bbc18389a |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b0e936d43b1fb50b5494d5159e00c21563d5906bbe27cf6f8eadcdab782365a |
|
MD5 | 12efc9a46d62f2289ca3d89b5264844b |
|
BLAKE2b-256 | 9405249dd75605dbe3e6f69c6a27832e075363f787a5f89244b129e53bff8cdf |
Provenance
File details
Details for the file resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: resp_benchmark-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aef70ef7159bbc6bb797bcb9c9fe4e3d6f3e916bc704b595f81c54563652edd3 |
|
MD5 | 74af0cf51694522bb9068567220a2c5f |
|
BLAKE2b-256 | 64f9c1747d2a978584c0ba5b174571d2eaa7c787dd04e0877b9a065beff0d95c |