Skip to main content

Binary classification scores in Rust

Project description

Build Status Crates.io Version PyPI - Version

Scors

This package is a Rust re-implementation with Python bindings of some of the classification scores from scikit-learn (sklearn), restricted to binary classification only. Scores generally have 3 input parameters for labels, predictions, and weights, with slightly different names in sklearn:

sklearn scors
y_true labels
y_score predictions
sample_weight weights

Functions in scors have an additional parameter order that can be

  1. (default) None to indicate unsorted data,
  2. Order.ASCENDING to indicate that the input data is sorted in ascending order wrt predictions, or
  3. Order.DESCENDING to indicate that the input data is sorted in descending order wrt predictions.

Other parameters that may be present (e.g. max_fprs in roc_auc) follow the naming and meaning as defined in the respective sklearn counterpart

Why?

I want to improve runtime performance of scores for my use case. I have a single large background sample that I combine and score with each of many small foreground smaples. For the rank-based metrics (e.g. average_precision-score_), the data is sorted, which has complexity n*log(n). Exploiting the structure of my data helps me avoid this cost to boost performance. But even without assumptions about structure in the data, I found ways to improve performance. This is a summary of all the optimizations I implemented (or plan to):

  1. Add option to assume the data is sorted. This allows the caller to exploit structure in data that is already sorted/mostly sorted.
  2. Remove checks on labels. When stepping through the debugger, I noticed that the sklearn imlementation uses safeguards like np.unique to check the validity of the data. This can be helpful to ensure that assumptions are always met, especially in a library a huge audience and general scope like sklearn. But it also has a performance penalty. I decided, to place the responsibility for data validation completely on the caller. The caller can add or leave out data validation as appropriate
  3. Minimize data allocation:
    1. All current scores are implemented as single pass over the data (double pass in case of ROC AUC with max fprs). 2 For ordered input data, no allocations are made.
    2. If the optional weights parameter is not provided, no extra constant array filled with 1 is created. Instead, the Rust implementation uses a constant value iterator.
    3. TODO: For unordered input data, I currently create sorted copies of all of the input data. That is a total of 4 (3 if weights are not provided) extra allocations for the index array (for sorting), labels, predictions, and weights. Instead of creating copies of the input arrays, I consider creating index views that simply index into the original arrays through the sorted index array. This may provide another performance benefit, but I still have to benchmark this.

Currently Implemented Scores

sklearn scors
average_precision_score average_precision
roc_auc_score roc_auc

Is It Actually Faster?

TODO: Benchmarks

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

scors-0.2.0.tar.gz (11.4 kB view details)

Uploaded Source

Built Distributions

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

scors-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (523.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scors-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (581.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scors-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (636.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scors-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (523.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (374.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

scors-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (414.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

scors-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (523.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scors-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (581.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scors-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (636.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scors-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (523.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (374.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

scors-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (414.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

scors-0.2.0-cp312-cp312-win_amd64.whl (213.4 kB view details)

Uploaded CPython 3.12Windows x86-64

scors-0.2.0-cp312-cp312-win32.whl (232.1 kB view details)

Uploaded CPython 3.12Windows x86

scors-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (521.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scors-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (581.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scors-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (635.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

scors-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (522.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scors-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

scors-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

scors-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (489.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

scors-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

scors-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

scors-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (415.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

scors-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (308.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scors-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (321.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scors-0.2.0-cp311-cp311-win_amd64.whl (213.3 kB view details)

Uploaded CPython 3.11Windows x86-64

scors-0.2.0-cp311-cp311-win32.whl (232.7 kB view details)

Uploaded CPython 3.11Windows x86

scors-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (522.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scors-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (581.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scors-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (635.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

scors-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (522.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scors-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

scors-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

scors-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

scors-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

scors-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

scors-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (414.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

scors-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (312.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scors-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (325.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

scors-0.2.0-cp310-cp310-win_amd64.whl (213.5 kB view details)

Uploaded CPython 3.10Windows x86-64

scors-0.2.0-cp310-cp310-win32.whl (232.7 kB view details)

Uploaded CPython 3.10Windows x86

scors-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (522.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scors-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (581.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

scors-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (635.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

scors-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (522.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

scors-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (352.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

scors-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

scors-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

scors-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

scors-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

scors-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (414.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.0.tar.gz
Algorithm Hash digest
SHA256 1454dc0a1c5af36df7358e3ee121d363be4160f852538f1907713188dd6add84
MD5 4baa7a98331f55dd531011394933e225
BLAKE2b-256 96dd7fe5a6fffe70822e023f23b3f4354b9a78ec7ed3528d914c8c3c7bfed0f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b8f789f71fdd9cd213de67de198a74389915247ac7dc323f417515ca1ba6872
MD5 da983646106ba25de204a2fd50536a73
BLAKE2b-256 6e85b1b568bb0abd4139804e0c14338db623cf4c46eada871fe1635eeb41cc63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58824cba0fd161733b0ab599c0af8bd38c87736f9696e17baaad0ce20ffb0fb4
MD5 b0d234da96e2784e087997281ffc9361
BLAKE2b-256 350e2b09dddafa2689450189a29dc0648fc6b460bc51198e4ff7f11345e2a73f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4881e019f68ea5a44765e013a5c514aae036083b54b91194fbc8cb14d40447d8
MD5 f989c92c6a3e488e6f42118a58312312
BLAKE2b-256 9012fbaf83f56945c0f37cc3f6d46d988181eb63e16521b62a169505dc98a642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ede59a53532329a2f04f8f1d360bb4424af931c9b522071bc1609c6c9441963f
MD5 ce34527a324b100f56f2c58d9fabc638
BLAKE2b-256 b76ba717667a134ab02816148dee33b530f1c7743f132f1bab15a1815020f002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef88c508e2621034c9f8af46931a1222d7a222f9122d1398ef24382aab8c2077
MD5 731bb2ea0ee736346b6d01f82a978eb2
BLAKE2b-256 500445b0cb382f79a2bfc091c9894b9a9a05290a0c6e030aee2880ac030e3b44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ffc75c213a5ce506dccac1249c0d51894c04f1c92e2277f52ac0ade793ed7ef
MD5 990c08ce8436223e12e98c13c93d774b
BLAKE2b-256 013e67dc4191e9323e8d04bd7a1ad8953d43a31082a41e7387f57e1d31dd49e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e5b4a6e9e1434a4204e3a1f262fc28e6005af8e8aafaa4be4a8062e9d6d6d42
MD5 6f93e55c9349378d4b98190c31007400
BLAKE2b-256 0c95384c914378c4ce9d3861eb874d601b1b6810646c00fe8d54feef7d919518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4426c641f64ece5d85f8ce1745bb23752d98fcce83de64cc6b6b17450b25eb60
MD5 429c3fea0c76fe41f97f886ad8c038a3
BLAKE2b-256 ec8a2e30526417da8820ab54a39929301e6d79a69a1f447e5d5394c182e0db2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25791527072bd59a8bac9e518e94b1765ff6fecded981fae8fbb5db43a39b702
MD5 f1905b9c05271d7c36c6cd68f8be06b1
BLAKE2b-256 5477aa3a94ab938623c189261cb184ca431bd8f9c0a8278a97e88e876edc85b8

See more details on using hashes here.

File details

Details for the file scors-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scors-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c4d426ce8620b7c7b4d4eb853e22428894cc3cf1502e42a829325a627eeeda6
MD5 788d848ff00282d8b80ef039d6cad01e
BLAKE2b-256 42d2e67cab74e11b28894e387bf44c31f7128474f5a17668256e4c8ee140f7bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 667f88774255b611d30cc77c796cacba87d66f7a102a5a196adc4ca9aed1c146
MD5 e78418ab968cdf7dc812858831501c5d
BLAKE2b-256 f87c778bbd910b52d59b72dfc445ee7e8f44c2e274d403bc348d374f3fe00d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eaf9b4411fbb21f705a4a68a5dc780f0206a44aca472e33f82bd0e3a5b193cfd
MD5 74c58929411e43dfd6ee3f4af65c85c4
BLAKE2b-256 4534288dbebcce9292a9a0d7e1ab8b3fab83828e6b5c8cbdaf7cf96f5e20f91b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5862dafa7367b3a37c7343523489676ffe3b4e974543f9448b5624e709915e0
MD5 90cafaeb848df2292e2650db57ad4055
BLAKE2b-256 d38cc22584b530b5181756224d1a59135c5064e959632bf3fc90957e0a6867c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8e87ece44611bd1963933c630460fc5150fb03ff2887f96a670d8e42fc7d14a
MD5 c113c68dd96d6e7124d15654348e7ea4
BLAKE2b-256 76a88796b5cf179e07805c2dbc4341e91d04d8b384e34579d0bc78c666c0edab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27d488c9a7fbe8563138ca6ff47faca99b5395cb88456e6f592be17625307d8a
MD5 4c233218d79397bc955b87c2f4462e60
BLAKE2b-256 36077d35b1543bbf61773eebf4cef9c1a3fadee6818bfb8727a7e2fc092c1094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91d62ab0a4addb599e18486a5f3e1672d007403809abb0a52409e92b6137d149
MD5 fea36056dd79ca91cf83308df03d075a
BLAKE2b-256 594f93abe5bf1223ef485744c5d50fb1128ae42de5832599b87d6d81d510cd72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d1a736ee681d6863878663451cb19f45eca5a56bf18cd0ccd7c545f71a265e4
MD5 b9a74735622338c1aa6cfb74e780ee7d
BLAKE2b-256 e7caa3b3b33c992df2b99592fe346f6df8123d516f4758be46865212a8d3c08d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58af519c97a2c441a4b1b604d47df204e23ab235a144969ada16cb2cf15807a2
MD5 650908ce8cfd42fe7066506dab368eb5
BLAKE2b-256 f7f2cffef58791028557a6d9196c8831ff88a5e9d21d51206a607e14a88fa243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f82db15578cbf45f7ff99d97854278adf12207ad37037aa4d99d69d369be23bd
MD5 709ed6221f44f0aa529da9b06d9378c1
BLAKE2b-256 ccd5fa4b50bd99da1929486b6378180c4a1f75b113eddccd3ca480e45bd83279

See more details on using hashes here.

File details

Details for the file scors-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scors-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4cc4c678c6b2777bdc177d2691a74f410e663062c8e4cc8421f4faccf83fa23
MD5 d978a9acbbf0c56c016c94b49f5a16f0
BLAKE2b-256 6e552f054890794275f55371f74c87f6bce3750cd6e2ce1680295b5cda6ad35b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 213.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for scors-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5aeedc28324719199231038a51ed8557eceaf3a86fe8fa8b3ff4766504f6afa7
MD5 4d6faf9d642a528ae26f142bf0e46d09
BLAKE2b-256 d7f541acb42b0ad823198c8d03d2b8a483b314d549ba1dd3c300eeffbb240558

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 232.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for scors-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7cf521f92a96108e991d2de4f627c09916106cda32ae988beb491fff51aecf0b
MD5 69fd5397cbc72685f2f5f278d70a5da7
BLAKE2b-256 493cbd629d731c601155c2f801bb5c45cd2d5a6a17b70dfdd143ef0e13d84c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f5c36d9a19b1d9056406eeda369d21375d96e67a8ad02d27aaf7f4ea7c603d2
MD5 f1f4b1907a9d83e10b320b986a528c7c
BLAKE2b-256 01e6a3628769a3eb41a7ba2389914ed9fd94be7484cfd16bf61393bbb916dc7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac2001125c60d7beba4391c6ff409bc6a7959c1ce68c62c2716c29d71aadeb77
MD5 f11035a29f570df8d8e06c1836e8a832
BLAKE2b-256 9bb8aef908a7e4bead6958587d63664287f2078d4ba4e0aeee8a5c078fb42b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 747cb5ea2a0d6694477f3e72ca63451b5be6713a6e7c6cb9ccec7c3759d95d53
MD5 c8982ca08d25c57eba41c43e3250c9ae
BLAKE2b-256 bce19e237960f28ff5d3137b777f5018a8a88c5fea4bc7c8d7426a0a3b4c139e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 428fa3bae903463affc5b65a8788129440387e520b239f30c45f24fa32bc9f0e
MD5 5fbec468f536be93e7ab0065bd9cb654
BLAKE2b-256 e02ff9b3e081dcc1984a54d20a3e5236c4f1e3d6a85c8783aaee1b7c6c3f1349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a062174b8d0ff4aac567a55961a0c02bdff26e24dd2add9987e8e1d0f2fc9602
MD5 aee146de9a79699cdf0374cc2c11d4d0
BLAKE2b-256 ff51b0f626efe4a30f6d38d0719d1095e7a3a6a0b6eba92db293a710b6ff7a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ed40d580ec540382eb666d4c80e71f3f61a8a5a7ba694fe666165a59ae2f5ab
MD5 824c4768afa1b9cbbca8b84a8f5a81dd
BLAKE2b-256 38b533a2bd25e19a273b502a187283f2cf7ea47170369b1d2c549909337c07b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b84164e4a299b619d40e7d72c178696da68686a0e4ceb05571a28990cb17057
MD5 cffaec543bb64c01352f3f957b48f112
BLAKE2b-256 f8ff7721c2f901e149349907c32ada7b119ed4b02248ed516d48cd32bbb3b71e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f637c0aeb21cb373838381ba7b7ddc1045651daa88afa70aa2c7a8af6a3cdd4
MD5 8141ecfe164ca3d1e45555c1f538081b
BLAKE2b-256 9d567a4b0fbdaf15c6ef6f9fa28f48d541a6f57882187bcb7acf5eb7781e99b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d6f1c6efe5ee62357e76dbfeed31b309b46e147c730c8fddf013ed0fcb2cbb1
MD5 fc2f828694a224ea2b6113b392e207b9
BLAKE2b-256 4f39d2c1a6b6290754dd8f3f4320107ca504c8b834571da5a24b7df98390cd7f

See more details on using hashes here.

File details

Details for the file scors-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17ab1934b677258e219303beae116fdc7a01999a2a7d1aab2620bcc5fda21ad0
MD5 310e14fdf05ce32f20229302ec761e12
BLAKE2b-256 c4ecf8ac1b97853bffa85d4f90195cf75040c85b613dcae1752a41b54efd057a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a87d3d1d2c6cbb179eae7303379d4d2c68930502548a51bb052ebdd1b23f359
MD5 2fe703c92880033ea4109e9a8c1b2f02
BLAKE2b-256 65afefc7723dfe9934c181fe0c8d27b7b9efd24618b7db216422c346a047cc33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e00b66a1aace1f960fafd04751b086750f0a8c3e91b385fd01cbbcd83e37e90
MD5 2e9e45eb68e3df47756b3be34b1225f4
BLAKE2b-256 38be4d4df655a2c1c6e4ab1e0cd0c47033e6bccd8c130809c687519b2db41e9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 213.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for scors-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b4ed73db0c9bb2e0e6a77cd28bcb245ca0fdd0d856438bfb347e5eb331b81f1
MD5 95e28748451f3adde5bee43c13ed9a2e
BLAKE2b-256 71df6cbe27be17d9602f20a60afd70d05a7e3294048b4c0819a908a880ee265f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 232.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for scors-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 19f88069686a88b13e17367e80b9836b645bf96badabc1ea1fd430d84c191ac1
MD5 ab675ac47e0bc31bd708c5fdb48d3b50
BLAKE2b-256 a1bd9400a227724d003a1680636c9c5c3f2dc5da14bde68a1aab25dc0f56ded5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a6d6d2d650075db9d20240c02fcc0a5b876467519454ddbd574e9e42570c130
MD5 00e30bff3cde165376de951c02f624bd
BLAKE2b-256 11dc50666b4f8cfc11081705542b21a4af8230bbfbec796f8280803c434e592c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 caf24102e0136cefe6fdb26574c180b2837926d05cfa2f1f261586e089ad6b13
MD5 466360e15d6730f575da51bae9fb1ed1
BLAKE2b-256 c358b5873e0aabbdd746213eb601a897db58ea960b3b85f692502fc9da93abf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efa586c53238d990d233f396cba49e218517d3e0d90406804d9173fa1560e7e6
MD5 720f81cdda667f8baaf390b29129f596
BLAKE2b-256 47e480996261160cf1ebfa0f8b6a76877c55f02510164ff7359fc1809181d08f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9fd20bdab74a8951b783277dbffb0dfe54ff55f52d7d80b6f5d72719d8991b9
MD5 37e63743b9acc90f2486e7c1b97f14ee
BLAKE2b-256 967f69a853dab65860fcd18d2cb05f2fec9dcabbc5fd325a81b0e298c6914282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4df41efb93e4d66094357627403b529f4daa4740bb2d260b0ddff2f1355288b
MD5 0662f99f0e91033502cbc4be8945cbe9
BLAKE2b-256 54d167552476fd964a888fdf080c1be9526e61fd82776d3fc4c0000a61fdb96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f887e9e7557c87416e5e7c956d00e8c044abe85d78a0e864505b54df1aed1d4a
MD5 1b1c8659a0da622f5175c67c6b44d9f3
BLAKE2b-256 0d5705da28e86f6d24a38217ddf3dc3d5107d5691b1d69c27aff93a2e56cc638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b81b357d43c57e84b305651d46a4008cb438d74db6487e96c87301751d34c7d5
MD5 a99b1efeb0992618dbf99965023c0b96
BLAKE2b-256 ce0ec4387569899e611cd233a5e6bd7c096fd49addee13bd802da4f65200c9fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 48eca0ffd4f746ebac747252e0529f57350744f2991328868388293d71ee2e20
MD5 a0b6025ced308ed8fb01adcc8b13ca7f
BLAKE2b-256 d0aa0141c2c97642f6925918275e1bb6a56e6a90804b20fe961713ebd48a6b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 899e24716545343a7326e0442788155d546de8170a409fc07e10bc398122675c
MD5 d7c28abc5fa7093c54509444be3aad31
BLAKE2b-256 c0db44827ed193652679d6d9c2cb39b311a63e17f99148365204d3d40589bd46

See more details on using hashes here.

File details

Details for the file scors-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aad68edfbf93eed98e2c4e17248281c1248ed94b303fcb3022235ced0141e3b7
MD5 07bc851fd818ed6220821c1001b07930
BLAKE2b-256 d61a3520d3e129d21498de24cb20435276d1de992db66fa6947389d3a2fecd0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2774472d0f7fa218bc33a9d665b8a5d642eb889fbf30d671b27a8da34bbf5d7d
MD5 cfe545ad899fabba3b6c8cc360e05e5f
BLAKE2b-256 bf20a2235e449f286b3bf82dc57a3c40b5ab334cfda6bcc9f6aca6e708e996e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11acdf97ae68d34acf822c26d1e01b5825b80f3569deed1c98c39a4f911ff2eb
MD5 6853ff65665f6d10eb99522089446dc6
BLAKE2b-256 77ed1827576998582a0fc71f573cb9a720ed7f54acb036247821203ed858b4f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 213.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for scors-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d810e863b9a04dcd856bfaa7c9e2e1f84002f4ed9f49aff9a1723bb3923ac256
MD5 5ea53910b39b3c14b5c81075b7250fb3
BLAKE2b-256 f4be6ea41b9025a1756065a3867c8c83be71a70f29730d8e1bdfb4fec8776eca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 232.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for scors-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bd7d29a5ac459404478ec2fcfe6a5da642953479676027b7bf48553a8f28201c
MD5 f9a795c765be673811058dba1fd3baa2
BLAKE2b-256 1291e689ea94c6eab378198f08229f9076742505fd288cbbbc413bb80f1c73ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e242885439632b351d2ca23a8be72c08674125ee7956eee3e591b53e644b6d06
MD5 a72f2b97c15d03d311e76aa130d291f2
BLAKE2b-256 0cfd8edc14cb51d2cc63fd582adb0a15329662c9a3ebf75ae38f70f7c355c2c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b20e8265ab3ceb871609c8d8909f95d10c92c54d344e533ca93e3e8267b0cd67
MD5 31841d2d2c6a70f836a56c26473afa45
BLAKE2b-256 b252476c0fd5d860ec203cf581e4eb62a1b5f5da507e2924c2e7771e2bd5ef37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bcc83e03b9be52a9d17a2f5d9d30206e653d2e6d72a3ce4073815166caf6ab7
MD5 b3b528ac32d3ea64ce731f0973fd42d1
BLAKE2b-256 eb42cc876ce4462c12a3c3510c4698a6965a1d45e6c4dd2af567372ee5b30da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34ae293623c6b1f4f2fea6c68b285498b1246c1df987ce0f410c1410ea834dd8
MD5 cc06dccf82d3a2c0cc0e862664c3db64
BLAKE2b-256 1ed1146849feebad9fe10ef688742b1b283e3b2b7c82d00d2d302c730a3ccf3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f20e1fa20b4169e712265cd023b4d501f3b6a2f2291324d27de771f090c87a17
MD5 8fb338afb19c8534dd1280fbebb30b57
BLAKE2b-256 ad90d4fbf897c93ff243889390ad2ff5aa5851666f82eee5f5618fa40211751d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b19968656dab05a060575c547776a8decfafbe457d7823f9a791a38b8819c737
MD5 2be43ec8d3b6b95e21bbe46bfdab9d81
BLAKE2b-256 6830258915d55105f58b3c30b1136dc597ef83538ebd3700d5bbdce2c86fab7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af4692f806e16e4e914b9cf603bffa93947a572d2d1e8642d6e89946bf39fd8a
MD5 5a3e09f5e005297cee6af23575f60129
BLAKE2b-256 1fc2110ac925f8bf8560f69cf0c64b199035e7868c60a0558429c8a87e0c1c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e54293ce853af64f6ea01a36f8757ea1c5de3374b22655cc52468a6e11aa9078
MD5 ae67ef43c1055cd0a7e4061f9496bc47
BLAKE2b-256 82662d04355babcd0bb17b69d24bd86b7c4800fffe4ae3e6b8af38b51cc6bca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbcbc98e0bc4896d56fa169bc776ae88cbb9f543c4c6dc9398a6f7587b7485e9
MD5 785bfb6c08c95c7a3d7bf883dd6b1564
BLAKE2b-256 bfe9dc61e793a386917fe2137fe35b16adda8c3ee0e7c8adaa6c6e1acaecccb5

See more details on using hashes here.

File details

Details for the file scors-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scors-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b5bfafad2ece503450f73154d775102e9a01ac39c2f8ba5bbbb713377562dea
MD5 5eb770e4f78935522c7b1742cbb8b0cf
BLAKE2b-256 19b29afdfbfa06f63700eeea632e6ffaefcb519749bf3bbc356f610f55099ccb

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