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.3.0.tar.gz (17.9 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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scors-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scors-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scors-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (935.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scors-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

scors-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

scors-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

scors-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (925.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

scors-0.3.0-cp314-cp314-win_amd64.whl (730.7 kB view details)

Uploaded CPython 3.14Windows x86-64

scors-0.3.0-cp314-cp314-win32.whl (661.2 kB view details)

Uploaded CPython 3.14Windows x86

scors-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

scors-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

scors-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

scors-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (930.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

scors-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (828.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

scors-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (874.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

scors-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (910.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

scors-0.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (947.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

scors-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (832.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

scors-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (756.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

scors-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (698.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

scors-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (759.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

scors-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

scors-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

scors-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

scors-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (925.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

scors-0.3.0-cp313-cp313-win_amd64.whl (730.6 kB view details)

Uploaded CPython 3.13Windows x86-64

scors-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scors-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

scors-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

scors-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (929.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

scors-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (828.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

scors-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (874.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

scors-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (911.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

scors-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (947.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

scors-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (832.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

scors-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (755.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

scors-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (697.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scors-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (758.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

scors-0.3.0-cp312-cp312-win_amd64.whl (731.4 kB view details)

Uploaded CPython 3.12Windows x86-64

scors-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scors-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scors-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

scors-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (929.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scors-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (829.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

scors-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (875.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

scors-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (911.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

scors-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (947.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

scors-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (832.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

scors-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (755.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

scors-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (698.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scors-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (758.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scors-0.3.0-cp311-cp311-win_amd64.whl (733.6 kB view details)

Uploaded CPython 3.11Windows x86-64

scors-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scors-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scors-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

scors-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (934.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scors-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (830.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

scors-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (876.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

scors-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (916.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

scors-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (951.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

scors-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (833.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

scors-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (758.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

scors-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (700.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scors-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (761.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for scors-0.3.0.tar.gz
Algorithm Hash digest
SHA256 48f44abdb6c26c1386de8e834a85ffa00866045dc9c08e8df82686fdba5da4e0
MD5 39c7efe93d5e44034f5b009a3228d5ed
BLAKE2b-256 cd7aa6e47f77da43413101a045ba621d3056493a630f82183c8fada39ae72d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a81d8c9a9ee5d46bdbeffae61ecefa9e90f56ea8c89909b27cc14a7ce73dcb36
MD5 2ab73250c017e0198d19bd989887c9d8
BLAKE2b-256 50d3311cd1f656646c62a967c2e2b02f832e447f3b360c398de583abdaf42b4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 115254ac9d427c0f0a7b580c035f11ab291e6e2b221189c9b46d075af782a4af
MD5 9624db8752abd43c386b2873b8389b28
BLAKE2b-256 da598558c3c8a1b6a0bad194d75afc9ee1c8b4bdc7a33b20d5b88a6b3c942d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 71e3d7520c232ee8461a6808082dcb8e6e93aa195160b3e3d402904dcad005b0
MD5 4048c38b87f448601b03c3f5db971555
BLAKE2b-256 d682b4277a69c663bc7d649553f80087b9f2466643fb5b621e5ba184cae2331f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7e8051759c3f80535f557f4b2441c800e8fcfdd85257b35c1a21f6a0df0e4ef
MD5 3b9bc82f04112a4d7947755444f11d45
BLAKE2b-256 1a57f9dacf0637e7664e65c666cc77904a9f44793ce12f9cdf2e543ad78274b9

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a22e92c4f90527d6c42787518c08555dbe69524942668e7635346625a809893
MD5 29ef2fe31291eddedc91ee2532f7e041
BLAKE2b-256 8e82a955ac597b97101fda218f282177de6e5549a1bb861910dac9fcfd9111d8

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35f429349eceaaddafd5fe33ea8fbb1adda64474263928c4585be12f6b788678
MD5 d8ca3a7b20723991c9db24550761f9c8
BLAKE2b-256 ec365606b83a02132f8b5641badb3c002b67dfa7a1c42484580c9751762fcc1a

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a997542b3525fcd8b0284b5e4dc0235daf6560f7b53732b3ab38854c93428ef9
MD5 e5b786855d8be35d8e566ef11b017ad2
BLAKE2b-256 0633df230b98c6453a2f365760019a1190de3108ab94b1bc9a123b7b4cf58dfa

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1a9df62e5eb04a2634bca1c7f9b2d7f06e09edaee3e3f96dfba58fbcf3ad1b2
MD5 334b2cf69bda22a60114b33404c3ca25
BLAKE2b-256 a4aad6f164bcc1dcbab1f9fb7fca3d8006a219a4483b79fe3c1be29d04e18d4b

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: scors-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 730.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for scors-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 56a57a0706d5fbe8707883ed11c37238df632f20b3220b619ba2ca3db5c04706
MD5 3eed381d314f83812d86726d447a3e28
BLAKE2b-256 5d916abd2d817f95c3e8c2e8782af0865d39cd954cddd9207602b799b9ef9c6a

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: scors-0.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 661.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for scors-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1dc3cc44d7dbd69fe0b782696d16df30ad146a1eeb981a8e98521c5b84ca55bf
MD5 35073c21a9c451cb1c5ad878208cfa8c
BLAKE2b-256 2f42b36e439fec893d0022397d50a3ddd72d6c7cc799f428c0979834c89c21bc

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59619d2365d45dc6220eeab91a24ef156a833dd43e8e594d73460718c3ced83b
MD5 9b24688d5281bd6c51d124bd62530a88
BLAKE2b-256 92e46e8876937bbca0ef04ba06c9df77fbe1f9bf04fff1b12f6b25717bd889fe

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f507a0daafe99c8b0b437fb2c01925f6678444cd594e4e28f344e85fd1b22ec
MD5 5e6ed96c9a1b8b84e166dba6c46ebd63
BLAKE2b-256 5ac2cca643dfa247e6d34a0c181489083801d56638be0001544c4bd207012650

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67506fe6a66bf5a6a1a1e01900305d8a420cb7fb486a5a8ec664e6a462e377ff
MD5 95a908b2473b17d2fce91c97b4272ebc
BLAKE2b-256 6559632587935f38bd17c80a485be8eb3221a974b2fbfd2bd2dacd15e0abf0df

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 884b885a9a807539886e7ee0825b7637a5925cc2653812f207e81613243cdbdd
MD5 3ec989b114350576cf4ee1ed974596a9
BLAKE2b-256 a8f76da87027c9447d1f08a813ed29edcebbef27eb06f8d51562fd3779e319e3

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42dfbba6350f84de5bf51e840b263f17b4b45d5b897867c7a0939e9cc605b618
MD5 b537e7e58910b9fc1a590463b6f5b449
BLAKE2b-256 1ef9f14aacef6ed08cde23a127b5ad5beb5efd8b17dd698c23d736f604993634

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1643943f9de54809fa60e112738ffedb5f01abacd293725a87c05efc0c383c42
MD5 4bedab312047c8e402ffc29b8f7b3b4d
BLAKE2b-256 31868693dda77fd6934430d3a6712f17e9d1829ca48a682608daf6b04cc4df10

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38adcd03e206b9c5f7f2094815f041d3815b2d873d969852c7c822b1daddce17
MD5 39c1ae050ccd854eb6521d55b9b3aadf
BLAKE2b-256 381eadd0f47dd047cfe46cceea3a657f0fed9da6bf3811215d5d234f7b0ffd14

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a774b7db126d46f71fd789271e591b20e36b338cf8257988986b84d2fffa216d
MD5 88cb9c4c7533fe0215cf3357e23e552a
BLAKE2b-256 5ae5259187933066401b33f8e1c893b691240a9a2bc8b830bf0f69e6b16618b1

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c3244f08c5a416393ab961b4923847dcadb6b027db68339f045de05efdc240d
MD5 a439ce6f95a60ebb4c252f12988427c1
BLAKE2b-256 5988c3772d613749cae4c032ddea90a074e14eb73d4af246632db3c75280e375

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff569d8abaed38e2be7bf3a605f75d5359271381ab6d02dab636cdd12fde0017
MD5 26065577be79d6dd454a9905cd5425a9
BLAKE2b-256 412165781e6869b81dc40f6bd0c5d9ffd41d532de48590be2f20deebf35659a2

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f57edcca28948a385709db51f77e7528566e91696dc02c2bf789e912006f6731
MD5 8123e662544e4a780e2b17c228c90a74
BLAKE2b-256 2c8fcfc161664e7cfd9f6287f053bcac50367e5cbc93fe4e40bbb875febae353

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c6a0f091574c5d2cb8fc3b6c2a9aea9267d0b139d118243b239a4b252f3da12
MD5 618aaae83d598ca1930db8658e22a30e
BLAKE2b-256 e3064c5550def58b3f47cf213eabf8269bb35eb425ef03b5e5de5f29e8320e49

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49eee6b8e76a49325ea727551809589c80bd4271a00c32246e1593abd42aec18
MD5 42268f2bb72cda3593a0bff89fa5c080
BLAKE2b-256 f9fd1bc179da3f5d59bb890f15a3810258d0a8c2d43cff666cb9c096b079357f

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76288b44290a237eb15e979c64e539c0193247a056cfa2049e4e01cfa165b7a2
MD5 2838665f8163a0a9390ded80b0775bbc
BLAKE2b-256 0e6bf8c410f19ba0b728f9415f4bd9c2728877356906816dfafec49e46a904ff

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f182ced10376584047a8c0c97cd718e13c1706f4952f01b1e970e832410afd5d
MD5 bff4fb4317a26a1e882a239e81777895
BLAKE2b-256 9e4945f2bc6b08ee71998a14d0ea01152f9f0c818f2997de0b359d76fbd6b12d

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ebcbf5d327170e58038b6aea1dff048f8d7ab579e0521941cc33ebe1d5df52b
MD5 121262b460dffcda99f248d8e6ec37a9
BLAKE2b-256 3a37b5dc439dfb114ab3994713913d9fc1e998e5d5f48457804269bb2572dc1e

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: scors-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 730.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for scors-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bfdd8a4e2e64c3ea12014d6243bfe183fc0278159783bce34220ea10d5d11b19
MD5 15a7f1f45036294698aa1ab4527c23e5
BLAKE2b-256 64ca6983980906a5f3f20d11e36a320b175a0d7f400c0bf3d18f6ac74af89588

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20d0a4bf0d65f7c90eb151ee561a989881c0dd77a9d62ca3287e377f92e6b94a
MD5 5f30e5dabaa301ee540eadaa4e4882af
BLAKE2b-256 f8a0726cdcf498086fcf921f47c16245a3f52188aa93fc3d8527d38a33abfddb

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e992810b29c882b8aa703cbe917fbd9a493a2dca38e5f3b3c265a89f5125e1ef
MD5 9b1627eeff8632aa015c83be80bab989
BLAKE2b-256 3b5353f2824e0d625323a58e421f1ccebdd3edd02516f6d545791456c36b3d90

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc28c3c2ef86135e5fad60396956a7c173ea8da542e7a04e1e1d08738181e929
MD5 5d2fa1a0a037d7e27d5941c5f1294825
BLAKE2b-256 2cfd1d461d3da56fe16a63fd8afdc048aee7b66c35d5fe6dadfd9b4344da1820

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 738dc76011d9b7de674728175319a66feef18da3e5792cb929ee9cb085e71501
MD5 42210cc916b9439bfb6a5848d69ee3d4
BLAKE2b-256 1afbc34417ed6105c92e913eb1718dda590c2deef377cf5a498009ee13c87042

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d5f74ce7e95afaf5f6e3fd39615cb396c6fe24cf4557ea524fca0704d663456
MD5 c54cfb1e29785f221c4d25cd7fc939df
BLAKE2b-256 661171a88f0f6768e4f2f05319df1eb72710e3f8882fd584eb5bdd1381d77218

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f17cb397a237db820bb396ba620e68d37fb02417a309b276f579c0490ce58742
MD5 cdd40ad1561bdc2fed103d975021feec
BLAKE2b-256 7085996ab322a754d72c9d862907d4e5d9b3be1997da6695a2135d0e52c192c3

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9a5be1fa20c598a91b702c670aef3b2fc9bedb2e15e34e992b2ac4d30aa1a7e
MD5 cc85b3fb7ec6b828843a5e8b4ef3ca8c
BLAKE2b-256 c832dc9fc5d57710d20d940e91d2cc554fc1c89c5ee502d0e7bae437473f5e09

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f44389f47e7970c6aa415b03359fb6fcfbb53119ba8aedbf8ed7d04850d1adb0
MD5 bd2aa2e88cf693cdf7e03cae8fc23d72
BLAKE2b-256 fce2c5af4f10d2599157ec8f2e4a83315e30bbedf991c041b90336c192968601

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ddd41151b0fa0957fca2587ef1e6a1706da55f4a85d0c8196fe4d5bc16ffe05d
MD5 8525c7eca324d5340d4542641c82d3ef
BLAKE2b-256 3cef96d54e74c62909e83070579eb70818e6bc9557389bdac4010184207ab9e5

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34d05ee45dec2e14e1f6337bf046f1eff64a749c457e51dc5a5a500d6a92b9ae
MD5 44346afa9a4b67a5993b0dcf58027a19
BLAKE2b-256 05c7841939dece418ab938d4135b130fe78dcb05f0f951642af9bd24f4a13983

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3403638921dabd25cd31999ff549695d45587edc429b98eb1fbe0c72c99cb891
MD5 465023241168bc610c36c0a41d392fb3
BLAKE2b-256 53c0492eb30bc80739b24d8340375beec4a0d72593f109d4348c5aebd3363e43

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8076b444a0f0b3413ad7d0de2d8bf001e13285463ffa90cec2ef0a9b5fe0e283
MD5 8851347633bc18275d8217e87ba868d7
BLAKE2b-256 8ef94779839c148541e2c77b32d9882f44105a419f7255220c52fb62f554c520

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for scors-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8365d06df9a15b346b8db738941eab75d0b5ca29307a1f415d9bc95fc96e28d0
MD5 80a51da9384891534481995125fdfaf0
BLAKE2b-256 432a2c6350db78c97af1082be8d4f1748abb0eb6979c610d65eb514186b7f316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a14d4d2942994abc3db7532f6f169e43e8f11577ab220f19c3abae44fda9596e
MD5 0d1a95e22239c5fe197bebfcf1b80d83
BLAKE2b-256 28f4c767e3ce10bc66aa8e2b2098efbd5c174f3000fd85892c2b962e4df0db04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42275e98af60e98e9a71da7caa5e0850e9fe7c34a82a145e69f3cc99e633e91b
MD5 5d40ca72dae4f81e88448b556f7e85fb
BLAKE2b-256 cad15955b65a641049903a84347e7fef9f55a4489d46c3aa245f5f3d1e48b1cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc390d5566cf68ececd9954c53c344e4656c6fb7567b04b61f9a16eb1c8404e5
MD5 25d4f6cb6ed4f52f79190646dcfea739
BLAKE2b-256 a4407671ddd1a6e101e1a47cc1985411042041c85979737de3f89d795b7d2453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29fd3229ce9e4d1661f439f1fab0c186aef0fa8ccb4e975b18b23042c20e1abc
MD5 91af3a7f546529118255a4be8f6297e3
BLAKE2b-256 5ae01b3f7575623f75bc6d11daded6d743e34ed37cd853ab7f4c700834772a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3151b6746866647677b61ea9faa7cd4d70181c9834fb9181a07a4e72244f087
MD5 da6dd2379ad47f3ed404c7a3404a1399
BLAKE2b-256 8039c1595e426382c3691d41a1fd98b181524a926bac7fb4b4d4e7587dfb03bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9999e4ddccb7ec8059cc6b7ee7293b9c3d9613c7d44aa0b1a02766f300e365fe
MD5 63d19442f02e98069acf9c2aa4f6f2c4
BLAKE2b-256 f6e3f4b594454b5930fd9ed7c1c56c3743d4e1e1867b81a3839fa877cb3e10a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0345a30e3e0f5dc1c1360abb19c98be4299747781b2858ec1e882e40f8634dfc
MD5 febb5cd5436320fabb2f6eb3c7fb4696
BLAKE2b-256 f0ad72a802d8ae3e52676db539ef0f2b42523437ddb641afd2c495a7ee634bd1

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e93ba775dab1060eee5bdb04c8d9eb383d1a05d0816dd3cec59b51f53871955f
MD5 eb543039c723bb0f012c007f7823dbde
BLAKE2b-256 fb71f3c2f4374e9c502b09d018b7e407b821d4559e521f983b139ec459e0bcdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bac7003034b889f1635a48d17686c0913497606310438b8c9d421cdb65d90f23
MD5 0218e87399af455c228b050a29d1a9fe
BLAKE2b-256 a79aaff7833d42e48a9f3f76515b5ed5b6edbbab1186f1dc2ed4ca265644b611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9a6be9cec19d808cfadf601700e9287408032f654ea68e62e93e39a1234d38b
MD5 cfcb7dfe2a2d47e210fe3634fb02026a
BLAKE2b-256 ac514282048b571856c521d64333bf0f1facb45fd69348f38c7b65e8bbd8f952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 664c7c3659124006cc8f7a5df2c58de225d3f6a370c0ce4aa18989d6c7864ab2
MD5 72f2a6a4de9ad00bb5830de4c2d26a09
BLAKE2b-256 ad068e94422de79b3fa81d335d18075ea4c9c8e3803da3dc95c390e30c97313f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39611a54d0e1c5112bb771d42c66e8222dd6404670cf876c5403ab23601a84de
MD5 c52f7f1f64122281d89643c3b13bd930
BLAKE2b-256 9c6794e04a217e800684b0801187f5fc03a1fbd97e8c76d2de3b346a52743ae1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for scors-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 953727d702e5eaf08cf25f309a5bca38b8bd95f2bf062c2086acc74e4d4c81f0
MD5 88013dd06aef5d18bff7b2b98acbb8a6
BLAKE2b-256 4c4fa155f5e0b61427a4a1dd73ca75991bd10ab310cef595fe01fb4e389bdf05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14cbef80a683c635ec4cacf7a6d2186876adb6bb51d7f15674b9ad30c3857f04
MD5 9e6cdfbcf397a39e9a9aeaf5df1c2ed7
BLAKE2b-256 596326935c8cf6f3c6c2b1154935b6ec383e66bc8723433c5b308f9018aeff89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2644ede81d1fa8e163d76b3f58f7d64d03c9eebddf3589b363ea20e3b49f017
MD5 12836dca998e0ab3e0478bb2c7171f3f
BLAKE2b-256 40fbddedc19910b73a7b79a172def747fee3a6a971a5ce24428ea1b2d97ba2bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c48c54400179bb49ae09cf38a5099fd99d763c9fd293675467bd50ea7df4d7d7
MD5 a2267b67b73bf44ce7385e329ce3c267
BLAKE2b-256 bc7eab85d19bfab4a0de872258fcccf92c0b3871780ca320dd2830b81b66bab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e9183e7e36da7660d18ffc25986145d144344cfcfaa859df4bca1214fa50e14
MD5 2a726e47904b90cc3e1fc3a9f6724692
BLAKE2b-256 3036beef61f74f42d3c96e4598049117f774f6281aa862c3a8dc05a4fb04fb19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 757a5e430b1f27e9c9c70d0646ff9782cc8a7bb87a9d5fc9f483e0195353bc08
MD5 cf0e7cb3d43c3c6c3f3f9f14ae291aaa
BLAKE2b-256 cf5c459416223b08b73ff664e4dbc75e4e7ca0b2bbf3d3e399c3fcfb7eb008e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34da5074837472b45d91509890e7fe746f6a7352a34a59f704288ca8c3d6f7d1
MD5 527122d9a0c1d3549f6164a764d47544
BLAKE2b-256 f0a375966bab78542ae31cbee4fa425ecc9ea2da06d91eac4a306e7c4fffb9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05233d0b9cf91bc52ac348307b9a96181d90be71f85533051f9c282bb99bf4bb
MD5 a631a2549c41d145995cba72ba51c656
BLAKE2b-256 c23b032334a72d51b53a8a1fd1f49ed953a1a9dbd18fd12faf066a9300ebd4ff

See more details on using hashes here.

File details

Details for the file scors-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ae9ec72fb0eb41f0bcb01a251d2369357de99213b1a93c8e4f10947638703c8
MD5 cfa1a314ab35377d07050911da272423
BLAKE2b-256 4723f86444b4dbc85a3182de82a1e0543862032cc228376e1368a65ae624a53d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3baba5399d567c5a2ad7466147201c41fcbca630a67570d516383f6495e454c8
MD5 0683ea8bd56866bcdf1dbb5392082e21
BLAKE2b-256 c453144b4f31f667eb4570a6619987610357d6142ab319f0e34713c283e23528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67a764967a63be35bfb6f45da78c44292f5ea1b330d09ee89ca09fddc9814b46
MD5 77b24783b434f02eda602a7243dd306b
BLAKE2b-256 ae00c0c88e99dd998395d12add93379f144e658df808d6bb463c9d0cdd378e87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85f82cf67a947212bd6741660c930cb1c861d33e7b0d86da30940b1862c1ff94
MD5 9eba29fe633e0f1ca999fc26fb0bec03
BLAKE2b-256 4628e04d5c36536c262115aeda1ca99acc13f5b9c226a3c18f6196a35fdee71a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9eae2a350df14a85ef68318fb4fa6faf3552c99ca4e3b05cd130bf6b918cf5b5
MD5 315e06dd7533c69939d8bfee58084f66
BLAKE2b-256 066ccb0e7e1afb2da2dd3342897f58f062acce4b16684f19085212950cc5f33f

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