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.1.tar.gz (12.0 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (527.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scors-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (577.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scors-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (637.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scors-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (526.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (359.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

scors-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (409.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

scors-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (527.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scors-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (577.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scors-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (637.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scors-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (526.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

scors-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (409.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

scors-0.2.1-cp312-cp312-win_amd64.whl (216.6 kB view details)

Uploaded CPython 3.12Windows x86-64

scors-0.2.1-cp312-cp312-win32.whl (228.1 kB view details)

Uploaded CPython 3.12Windows x86

scors-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (526.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scors-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (576.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scors-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (636.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

scors-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (525.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scors-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

scors-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

scors-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (495.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

scors-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

scors-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

scors-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (409.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

scors-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (309.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scors-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (323.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scors-0.2.1-cp311-cp311-win_amd64.whl (216.6 kB view details)

Uploaded CPython 3.11Windows x86-64

scors-0.2.1-cp311-cp311-win32.whl (227.4 kB view details)

Uploaded CPython 3.11Windows x86

scors-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (526.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scors-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (577.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scors-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (636.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

scors-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (525.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scors-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (359.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

scors-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

scors-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

scors-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

scors-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

scors-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (409.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

scors-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (313.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scors-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

scors-0.2.1-cp310-cp310-win_amd64.whl (216.5 kB view details)

Uploaded CPython 3.10Windows x86-64

scors-0.2.1-cp310-cp310-win32.whl (228.0 kB view details)

Uploaded CPython 3.10Windows x86

scors-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (527.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scors-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (576.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

scors-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (636.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

scors-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (525.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

scors-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

scors-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

scors-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

scors-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

scors-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

scors-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (408.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.1.tar.gz
Algorithm Hash digest
SHA256 de2b411c8764dc99528a4f4e4209b19940638f793dfb97d140ba2e98cb02a801
MD5 a2679ca932b4c1211daa9dc63609c3e4
BLAKE2b-256 338c8e0196525eb8d900abbb6e10c50b20e303ef8726bd5668602bd95b9bcf25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a80cb0c3f3f408949eec6eddc4fd07717351b501285b8fc935a1809b74517f6c
MD5 24d24d5702138859c253f6d934c8c50c
BLAKE2b-256 db04f054061533be27aaa2bdf8df03e868a02d800bea1c66cebfd3f15c18cbee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9afa894b3a2578ab85dfdaf9077f92a7e74db2d4dce389dbfa8fbf511aa54e3
MD5 cba6ccfe124f83cb4d37baf4eaa3288a
BLAKE2b-256 ed1f07bafa350c2df2a01422c7c3fe1bd2c22aaf49c2ddc5821580135f9e6ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d12be839c46eafabc26a24490547a1d52e941589eb1a2818238a7426d7b1853
MD5 69b3a5042952adb50297d81b86f3b55b
BLAKE2b-256 973b0f70d68d5da061ce76928fdc429e4586755016fb50f7ef3147741224b139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11eea7a2bd435976d68e1447a857ec96991f0259bac92798f313f3e5966e0553
MD5 e6c0f447db2bf54cd4be935348489412
BLAKE2b-256 b9849293a950c74228e1d703c48fcf03f2f0995a13677cc989e99a5c3114ede7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13468730b800b86163b16040449336324ece2274ba839ed9f028e7e396d2a863
MD5 47a6adbc42b6afbacade68378a8f5fc6
BLAKE2b-256 b49dddffc25f102feff25ae2e357849fdcaae49734a5b410d8e5c6cdae90a525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a5ada017724c69d4a4e34eca70961cadbc7f37cd3b0a6a3a36fbefc19cebf67
MD5 010c27629bf1f6677cb89ca65c1eba4f
BLAKE2b-256 3bea79c20ab774c6410e6c968e62d7a1c08197a9350a0af94797614386aedcad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e97678edd57ced4d8e5eb31aca7b3c08bafb18353ed08d2b210746dfc61cb6ae
MD5 b3e86fe5b17a77e1e76e70580b7109cd
BLAKE2b-256 4d5bae9d890a59b0d4cf5b9fbf4d83c9f40f2064f50563eb8d0861073eb2bf84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60cec72de6d9d8af59410857dd3994961eaa920019403ab2d18ccda21f426238
MD5 7ea7d64a6158ed06e8832cd8b03ec89f
BLAKE2b-256 2c351b12d5295bbf51289e916c711928ed9a9714980f36359aa59c68a8051a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5490a73880f456439aa3f637ce7e5716a5088e8640290646261f097a0875761
MD5 a6d25db7f6b942edceff012ab48fa490
BLAKE2b-256 2dfbc97ec422d5e4fdf4ec1d445409f12d03f3cf880341cda01ff65cf013f979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d57f931174a24922eaa7db5c7573a4a6e55d1b768807b7986e41947a09fa0ca
MD5 9bb567eb612579aa9cd13ce7718b95b8
BLAKE2b-256 bc61104637710d82b70d7e6c942bbbfaf75bb48af4604e800cee0028196fd1a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 491673b37a6585b79b4b076bf9c66ed7ba58b5975c51ec66995ca9505c24a5a6
MD5 c5c3545dd009aa9afcdc76722c787b29
BLAKE2b-256 2c284e0102afb09d6ac576f74433319e1bd656601b1af538c248aed6a368a716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7ffddb12d87155d3900861665d811f984442e7446ff3ce131c8de0a1b730b38
MD5 0d97e804a2d94e5df3825bfc457e4df4
BLAKE2b-256 fca44a643ebe1530b61bb6ff143788c8affeca32f12de8c4da4cd58339ab3802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b697ea26da21733db7c706215019c76da9328e9303adf138017edeb8af31e172
MD5 a189102a6678d50b5aaf7c83dfa7ae52
BLAKE2b-256 240afd287d106d185a375188f66a0ee58600aad787d49a6ae41b1cab27ce6f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 785e02e58c0dd7085bf6e2ac10097babfb0d44f2ce657c1dfc937926c49bf0b7
MD5 4909ca153cc3b7515b2741109396ed73
BLAKE2b-256 cc1c19633864bef0caf51a910d65b8a7c525bc17aebe05a82e4af01cd4661cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c044afc4485564be6e95d2ec2f1a03c5f4f579eb5f29dda5aff64a6729ad5ca
MD5 2fac55adbabb29e26df479399bb61112
BLAKE2b-256 cde59dc71c2a9faaf9bb81720a7a26a90889d3a42db18e36f8fb77c33b3f8d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aadac21fb0f5c88d17151ce48a65ce40d4bf11fbbbfa23f40cb20664aa572201
MD5 f5ef2a43f296a1552443746a365e0566
BLAKE2b-256 e90fb4885a2d80ce04f28921fa238d9c38546082caf7fc82a5aa509f5fa8ffca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81b0b4ef00a58a1e7e68fe8874fab58008723e7f66b17192b91ea45a4c7518a7
MD5 c375a55208829d0e4bdf701e7b0abd31
BLAKE2b-256 1ec9461c991043a9ca15b7205c71f23febb3836969166ad163948ddff76965ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38e8c253f0cebb943b60ad7dee6784ca9b62eefab096dd97579563d13178efc3
MD5 800fabcfacf6a20dca621848191476da
BLAKE2b-256 07fc0fd369edac063aabb31a3a726ff28ff49b3314154d9fc15e59ed4e960fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31a7aecf1393ac87d711dfec4bead0f862c38c1a3798f7bc2ab37536c3b28b6f
MD5 522b202327e74e3cca960b8dfcf06be2
BLAKE2b-256 343c0d863f69dd5d6609c8488941dbe35e6059bcf0fc0ccbe1cb9d959cdaf618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef408d073528061922e81f8f1c3e282a710294572e639089546a56c9264e9119
MD5 b89a4d1b0ce261545cd6c85529d9a5b2
BLAKE2b-256 9317792e7a27c9b3233609a4f2ea0e183a72944cec8046b1cc570e041419c455

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 216.6 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33454988e547471c86511b3d10cdb0f4b8610f22ef22026074255a5868ff7957
MD5 810e654edc41166c9dae512ba21ec693
BLAKE2b-256 a6e157f2ed3905203ef6df1a1677b55cf21534d9a00ccc23b97c1c4b9802d358

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 228.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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4d3befef964f19a49db378e6950ced85668ec6e8d0c96f7524eb190bb8741604
MD5 0c7570e22403e805ffb6b74a8627e63b
BLAKE2b-256 6cc741b6b02730edafd3e34baa3ae5d1350b0cca6b4ded634bcfcdb864eabfc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 190b5c9846d6eaef6010846357ed81d1ba666b97d66b8fbc74a77a35385cfaf5
MD5 ce67df05181aa1e4dd1c095af601338d
BLAKE2b-256 10d91fb72736aafd18c9b86566961303af79d724719f5989b1d1c75d7cf204c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 772c035c128afa34db5a28da8be89f295036c562d7922b1eefa9cbd37ca8099d
MD5 bd4f7605e968ab7436c40398d7d4b57a
BLAKE2b-256 c140e5bd6152ed7e17015e706bec4107d535a039f24872186e1a6852e294daeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb8f88ab6672861c4ddb865148e840c680909ef153ecf5e713811011903c169a
MD5 ebb412ea823e4430432e348d56cfaefb
BLAKE2b-256 05f15db8ac08faf51faa2bda956ae90ffa592d4f0787329b94310f0610da184a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c374294b033fcc85a32dd9d44bbecf0aae23bd3b5d5ceb94e3801e5318a9deb5
MD5 0bd02415717be1747f067c5687a3c338
BLAKE2b-256 056cf0371d15bcd4d0dcda04ac2748b51eab1118d3fb045120ee10a6b959442b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 480c643196cfe81018590d07d88c760a1328e8a3d68558a60179bb9a27b1806d
MD5 08c91adfe713cc1ec1fcc115d5280da8
BLAKE2b-256 ceec93ae968f8f969246fd65c7ee2e762bed6fe4af1fb818b740a914c4d373dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf6894011b90109089ed517ec98ec07a91b6250dc8c4831b6844f6fa2f2d6595
MD5 f91f06be6e6380e74cdf52ea89ef071f
BLAKE2b-256 732bd705a243c0e47240dffc6f2c00411f62a1fcce4b88059287c664850fa620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a64fa94ea78708f788a351176ba66b5ba36985cc69f48d236f57e42df687d5ef
MD5 aa0c67c04208815a36572db19daa6034
BLAKE2b-256 742c728ace26761f8b9cd4cccf0d075f4cd56f0b3fa4f30bf22fc48c8bceda4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 282db42885a41265ece1d5127f5af82dfd0825c66614e2a82a80c4571d93f78c
MD5 98450a5fc88e3b8cd4be0f22bd230e1e
BLAKE2b-256 89ccb16e751f1890797e75754dce079591722cf964feb4b974116396eaa080ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6aaf787a8337fdaa930acdcbc5f3c98aab864319db875da6404c344f1b55db71
MD5 6a02be79c972c152777525e3b76d628d
BLAKE2b-256 5b20730a5c74020341b25dcd4d11abe4407f678b0c25b30476d2bfc7772ee711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 acfc6c927b762b25fdcf38d1e4d41c700f2a044f9f5629cf86ef9ac9c87f7dfb
MD5 36e3a0a3b580c867eef4beb49edb59c4
BLAKE2b-256 29991cf35ff8e11677d53cc28a2a3d7f26a7eb667df7a916ca5c8f003f21ce87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9dfa3d6ed574771ba865461e68865636e6be7da3653550587f75420fc54637a
MD5 e999825ed5b8cc1cab2f89169c7b9550
BLAKE2b-256 a69e41156096ae815bd23a0d9262fe6c26000276c045d7fff021c22896f97665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 824c4c50e029308426a630f174f90d4bbbf062b6b4588f1f9ccfa3522daaef3a
MD5 a73ad01219efa37687cefdd26e2ec3fe
BLAKE2b-256 bddf1ed6c2b38a8d588c12ba77a35638b17ff0b0972a3395b31feb20cf376d62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 216.6 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7cf428c3da6da5a35d6c75e52e544fba7687289d1eda8d6f47d210f36b464902
MD5 4d506aeea85b82a2a04c264a0b7c3013
BLAKE2b-256 43616adabfd1ee8a0041745c29d9730bdbb9f61fb085a94426e7955c8798fd9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 227.4 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 257d9c1b50b099a14e6b1f06a3f20d90f01dcf309fda0cfa1d953ba713293557
MD5 eabdbfb3cfde944ec74d874a5da4ebd5
BLAKE2b-256 80660941f0626c5708e8df77bc3eb476336c5177b082ff9e813605600b9f6ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 569a314b9f6be55e2855fbbd4d8f89be950784e8e57d402572085302ede8b166
MD5 3c90a90cf7db44fcd9f0825e81fc46d5
BLAKE2b-256 ed7aebd5ee7fd6b60273450785860ffbbd02258748a2f7a7238a2c0e7d75bd40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e5f609f03702b34c1c417f66a195f83d3e9b97866737ac27af734f056a3f882
MD5 c1b9c51c0725db363f8f0f6adb03d431
BLAKE2b-256 76a9ab49ed17b1a9af1241e270fb05b3d712df2eec3202a8b132a4f5ae7ac6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5352b7ed14364ef3ef65098dd6d6761aaa077e782115130ad6ba2d4d0a1af89b
MD5 241b0b8950a240aa57399a9a9e769462
BLAKE2b-256 f0db169d945ed34b734894e8ff90cf1813b4798fc354281986f912e4359f6b0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8b1ce0ee3558e9e77216e7b31956aa60c4391b4ca43d56b57de9c15828c1711
MD5 faac75818a92c121b2093855e81070ce
BLAKE2b-256 e6e514fd7d09388d9ad877e80ea63e7f08958249503a69cf1e8a6c270d43c5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3c0642bdcde6d152b4b2eb00abcc121eac71b1ecc88c571aa24fe7eb8ffeafc
MD5 bbc6140075dcc61c4d9386a9ee2cb164
BLAKE2b-256 e3d9ed08c56d9a37d675cd2e93585c9ad40445b3356fbdaf17503d369ab038e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 985ae7f036e2b940054e7dc2cf4c1103f7b1340329f5ae945e0e3ce7f7d44211
MD5 ec33ac60969184000052614a76278a96
BLAKE2b-256 aaddb8f73d1e4e8517769ed4b5e32f7df48424797576c828cee33eaac677c2e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e63f0bc22a32b21951f9b56a202edf90b4aaee0c04ea9b15431063dc585256a1
MD5 65f082f9c0ad4f840f69f276bfa09583
BLAKE2b-256 07a670546e75798f9b4ab6ba148d3a437acf3b68b5c5f5e5022e96915bbbd8dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9df22e5f9c2e6c391ff7bc919ce23deccf8a59940c50ef1bd6ede6b66956701b
MD5 4d8487d8a6465eb4ca31c3eea6e31ee8
BLAKE2b-256 fed2f6613a715d3b38c740767cb9ff4956a423b3b235331e3c0ba770a635e077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1b74546de30d8041fb53bd2e21d30b6ffe430d0ee625c307e2db24c23afce31
MD5 d9ed123b23f57fb6df519f1b92e2853b
BLAKE2b-256 d0b66201ec47d5fcf8b576c12f733f82f0dd280d08a5dc9830800cf969015ebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2adeceab0a37ee7691f88f6f393f9e299afadfe32b58be5732fd4e08a3d622f5
MD5 cbcdb52a505ac37fb1d62d718e19397e
BLAKE2b-256 0d87abd37c255a1efcac098b3b446ea89167b1be338e1795f92b173b557f5161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e58f0e2f4feecf5c1ae7e30ad4e7b4af5a47f9d2a7cf1a3fddbcc18bda188e99
MD5 2f436264d1cd5573321a6418036808e8
BLAKE2b-256 fcd0dbf6378dd774e1fdae65e39d00849886674874f3070647eb9920caa7a2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c52761ab4c981dce0cf713849f134b3a59ca308a4c350d2273dfe2e997802f6
MD5 d7a4f34fc3e4cd6995064fe03f95fa30
BLAKE2b-256 f716df0f65817038b8ac27b1c4d5e07f55dbd6c8da9fbfe841178e555c837448

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 216.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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e2191af9eb69cd44a54fb9222d736eafa929b9d328289aae664c4e0a9faa7fa2
MD5 e40b1bf8fdf4cc244544e0d78e29c1db
BLAKE2b-256 a069bea78d2ec3b666f5274d69dee9cf447bd9835cbd8fb968a14d6652292669

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 228.0 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5cf350a8850370f0eeb36643018aad580d7ea23559dc1633fee3894695dcec37
MD5 7c1ddae3c889f450f46a39a68aa5bf04
BLAKE2b-256 8dbd530a24de55dbf359fd79b042b0092d29a16d54c47e52f0182f5fa96a9e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 888154383df94d1433417a360054ef8ff5c304893195155a7f95667ac31b44d9
MD5 7f79ea5a3c070369f10d9b07bebcf36c
BLAKE2b-256 2ce61fab7936510638f13b4316b8b33b9109fa8965a6123823a52e2590624408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 031228a070a33905ce6792c7ab195130222b59b91e2d342d3daff900a74ada5e
MD5 05ad3379917dfb9685f2c2f2f5df90f2
BLAKE2b-256 5a629096b41c316b54a330f0a9662fdfd54e6820636be6fa6f784fe7fb14e6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb3c3a6006dfc68541bb6c5adc9945b13b05e19fc5c3b71ff3293b911c5eb1a2
MD5 8e2dbf09da3f16250b56b1485401226f
BLAKE2b-256 5214ecc0c31f9cc81d9d14728d552c260c1b1d9a23f3ac4047eeb27134a64f8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a6df7cfff01e4fb606a5871c5d1d7a432030e6b846de5641ad95a3feb4be3d3
MD5 a4d488bda95ee39a4056ce0bdaa05faa
BLAKE2b-256 a3cc002148bba48fae2fc3cf40c79009aaa6257acc31d6bc0eb4038f17d76777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c2013ebca64d150e4bd30aa28b59c5a9ffc56823fd2fc39f4e944c2fb4ade73
MD5 0cf750f0c22ee7e73ced916d61be27bc
BLAKE2b-256 3f54f18182aabdc0c03da3231be9557d4cb453df09aafaa9c795fa6125bfac45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90e27332e7e373180f57dcbf3a8c9c0501842cb6c4f96bf4bbe7ed4a4f4bd373
MD5 6c0905e7574acf68e6bca35c7d0ab36e
BLAKE2b-256 f3f59d980533c72ccc69e5d7051d1844042c7d300bdfa8b03e8606c7ff46e77c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78fcbbebb6f73196ab99758040988523b35ff80fac8f979deb87ade01dab28bb
MD5 8f98f389b56645a79c94dc040952df59
BLAKE2b-256 b68146913d3263650a050dd047af164a264634faf17f7f2b789781be2d5ef7e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d3d0ee3319ae1173882b186f1b8575c9eaa64782edd778d22cc09afc6b03a428
MD5 860dd4be9ee67679a74ca245d05b2da1
BLAKE2b-256 8614132189457a14efd117caad65fdc61566c2ba3f1fdcca03312b6f9559c223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98de0667d3fb631768d77a527501c85fc4fe670d4ab04ddc31380d5d168314de
MD5 286e7f04c9d452f33ed5c00d7b3d11ce
BLAKE2b-256 46a813ef9793031f39d265d1a71afd07930a528848d7286f590785b5183db33d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 899c57dff9db939b79152ce6f07c05672a8a9ff608b909022b3f1ab273dc2df6
MD5 f3a18b8906c0ddc2e17adbad08d73ce8
BLAKE2b-256 afb6a104026aff09b21703f89f58503eb3ef4e532e638409a5fef935c299446c

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