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.3.tar.gz (16.6 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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (692.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scors-0.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (768.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scors-0.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (782.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scors-0.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (643.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (533.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (528.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (628.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

scors-0.2.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (597.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

scors-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (692.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scors-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (768.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scors-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (782.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scors-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (643.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (533.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (528.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (628.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (462.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

scors-0.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (597.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

scors-0.2.3-cp312-cp312-win_amd64.whl (413.9 kB view details)

Uploaded CPython 3.12Windows x86-64

scors-0.2.3-cp312-cp312-win32.whl (400.7 kB view details)

Uploaded CPython 3.12Windows x86

scors-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (690.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scors-0.2.3-cp312-cp312-musllinux_1_2_i686.whl (766.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scors-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl (782.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

scors-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (641.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scors-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

scors-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (528.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

scors-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (626.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

scors-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

scors-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

scors-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (598.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

scors-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (432.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scors-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl (481.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scors-0.2.3-cp311-cp311-win_amd64.whl (411.8 kB view details)

Uploaded CPython 3.11Windows x86-64

scors-0.2.3-cp311-cp311-win32.whl (399.9 kB view details)

Uploaded CPython 3.11Windows x86

scors-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (691.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scors-0.2.3-cp311-cp311-musllinux_1_2_i686.whl (767.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scors-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl (781.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

scors-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (642.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scors-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

scors-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (528.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

scors-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (628.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

scors-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

scors-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

scors-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (597.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

scors-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (435.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scors-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl (484.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

scors-0.2.3-cp310-cp310-win_amd64.whl (411.8 kB view details)

Uploaded CPython 3.10Windows x86-64

scors-0.2.3-cp310-cp310-win32.whl (399.9 kB view details)

Uploaded CPython 3.10Windows x86

scors-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl (691.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scors-0.2.3-cp310-cp310-musllinux_1_2_i686.whl (767.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

scors-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl (781.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

scors-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl (642.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

scors-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (533.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

scors-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (528.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

scors-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (628.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

scors-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

scors-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

scors-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (597.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.3.tar.gz
Algorithm Hash digest
SHA256 20d94c18203547bbc528379bbee5d8fe20318525eeb33147b145dc9a9ea0be37
MD5 89abe599af40575e206a8c3c79d1d289
BLAKE2b-256 de7491356f99791a0cbc43b9acdeba35634147653b9d7593dc7964bdece36084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9aff580b9a32f32b2d6d4daaa9ae705f8dc2b5a00e81bbc66a4dc1423fab6ea
MD5 7b33a70b0092b8a5bac86d9659f29dc8
BLAKE2b-256 919dfd5785d503f25d36038a34bf05cc0f86520dbc695f3735de83562b7b4152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a6f57dca434598208dd7e9743e72023bfc3bf4b453ba4cf54d517427f1719f5
MD5 447d9789cacf346fb116c6b2aa5cf134
BLAKE2b-256 d997c487588356b9f786d81706126375ca6730b82b5c45a37592ad69476931ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c9a040e5a5f0d2209f8188bd9ec0c6e90efa9bb3c247151caef32e1e89f0b4a
MD5 b34f20a7cbb3f2f5fbf88b31376fb021
BLAKE2b-256 bd4191daef7b02661c3999ed4b45f8038b2d582351feb7283cb6bb395a9eb5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8268a20c722c0dcd592373c8f3d4792169b9429ab6799944a5e017f925a717e7
MD5 833255a05593267ee5007450790c47ee
BLAKE2b-256 b33ae7a58e59e30d665c38df9a1ab8bc9d6b7913b75d949e1b5cc7888bffddf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2d109fdeebd1bce553e52b20eb5fcdfdb20dc2db92e2e4d55b1959a916ab436
MD5 a6185bd42b3ca2fae34f37801bf75322
BLAKE2b-256 b6ceda7f38f350b7105f70ae8b05face83ab8886395ecadfbaea7cc1382f9a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a93001a45351500a8d87e7680e06cb229096595477fb6ea6ab191fc390f55e8
MD5 2bf73af595ad2c6f166bd239100f666f
BLAKE2b-256 9283b89698b43f01d00434fe2b0ea01e11affea31d545a2ba514273dfef5a56a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c753ff6f5cb3660e37f95789acc439a0cdafc009257da05adba041a027b57f1c
MD5 95d33501ff0008085d747eb39f62f657
BLAKE2b-256 53c52dec689b08465fe0c575724cb3bbb668fb91c1b6572cf2c1ee5adfb38ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb34965f5f00aaf407e5c59b3b9fe43b5528cd17c98496ec28649f5316fdfbc8
MD5 007222dc5b750e825d08c5ac8e1f1975
BLAKE2b-256 c8c04a8756fef2c243be65d50f0a27e5d3c0b0ce6fe7f7c08bd4c9a4c0894c3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2f5dc969c3e8aef66700429804bc4cf6e2dc2c2b354aebe97a03fe5a627ecc1
MD5 5f47ce7d3aab51a7f01c187721f20b7a
BLAKE2b-256 bff21a5a577b6357162fe7c6e91d4aee8dce064868093871a00f921cda9263c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb03a6e23be93eacb69de0084c4fc8da6329fcfeb7d9ee1af03e1675d3a20c03
MD5 44b699b0770dc43842124f04b82172bc
BLAKE2b-256 73e44fbb5fbd46df2c5daf69aeaa573f0503529a54561b5d52a7da040b896d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a19230e57a5c27c7e8317687c0039250a38d6e4cf1918a8e640ac2199ae6e4e6
MD5 cc22e8cbab0e7fac7f8ffa76480c2cef
BLAKE2b-256 d3ae2e0d9f2d07e89801787e0a3dc248d0c9b84137609c066c5e0085ca8316d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f60f0c868a506d7172b12ed7809c502d8d74b70482b98547d6307e7b1ee5fa38
MD5 56a3a5335d2f73beb471f24fdc204933
BLAKE2b-256 f52b08ceb72a39a9addc1e87cea4e5aee4e2fc694c8bd4c5a35177f018735059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ebf98b22313fdd731d4e88be0e64c90b5be12d95c13b08411a89e123beddf15
MD5 31d0b90b9a7af209ca9887e8b964ded4
BLAKE2b-256 0f7f1d7188f54226ae85702397a4a885d47db928621843b0f0a9a301a540ea1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20e56ca326fe6caf95d9bccff3cc3bc9458dbe2f0a6af2b5e1cdcafaa6af73af
MD5 1a0995a9f7f97690bd4143ccba9348c1
BLAKE2b-256 2e747f994b3b1896ba9c52e10fb8f20256098e556210effbadefc440b01ec06a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c2bdbc9b83d705b80e7fa2ed9427029091ce58242bf2f1994bfb391209b61f4
MD5 fb5bc34d7944c266614f5d9961b3cf9b
BLAKE2b-256 d7039c22d6dbfce936e17aad1d06548137f351cfdf6afb923ee4ade010a1cae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e8374a917a1263c981150287dcc872e34d67ef0c74d8a975737528c4c6ef1eb
MD5 79ddee94ae8d4d5256e8899c8bb37a25
BLAKE2b-256 a2f4825c8a537f7066ce084358c0cfa8af5706ed36a8ee7da09267484ba63610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2d2784abf92015bbbd0a6ad95436b14f6d7d48d62ad40b34a5301a0adc734b8
MD5 5d58a6772bf5dd7aa9643e727746a017
BLAKE2b-256 99eb83bd0ef6faaf071913a2432efcbcb8692c59f238f445a2bb07051dce523d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 892eb7d778e70efdb95e81cbb2ba1e88160c49e43402580947dee68be325679e
MD5 2875a104dc562aef3569594ec3913a10
BLAKE2b-256 f5bd68fbcb6bc0f276fb3ebb398306bea6084aef656a6eea402889f4c12412a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94ec04b31f889f32e9bf7046597c7c841b7b54a68695bec2b06e30ccbbe80036
MD5 0de0b1a73bbefa98a26de1da899b68e7
BLAKE2b-256 7fcb811283598c935bc969c8e08df2538a208e3c38c5332a502ad921c4df95f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 165d3328e6c49f921a33602d9694c1f96880495059b48e369ee42d3df485c494
MD5 c0f7b1f62803bc10457d6887d3725bab
BLAKE2b-256 76c2144c6ef3d9ecb360f0964028ffe65fb6a4b4e59a35f0a0575e1ed8ae4f26

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9432d955545c5e167a87240c658787c1c5694c8fdc303f15ff7444946edec842
MD5 2a950c8fae8119e4a55acf97c5db2213
BLAKE2b-256 9d0e8ad41782561b535990d4b7928029d824977d141096ba14be9dbb8532d4fd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 98cca8311a7103b4d274df37fa052807b77415de72013720209b6a9a8467b8bc
MD5 207866f3dc1117f447c5d74ceadd8a4b
BLAKE2b-256 8191204d319a16898dd46f5164fa59ae6ab57c6dc1024a05cd4683a445b9d983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38e3fbb1f93d16eea4e0758e439b2fbc672433310bf895e710ecea15b05e2462
MD5 a3114b42cfeac133bc9070d46efb8932
BLAKE2b-256 e65b63fcaab4dfb51076634c63f5afd86502bf834538a9d441ebaa1cfa411086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0776489f3237287d09020bd252cccf63a9de28a4f51933410d19bdd8a79702c2
MD5 0a7c173c74bd5d9c53d1c49a5636daf0
BLAKE2b-256 1d22a97233f6e934a5d86dbc3e367b8fccdaeee6b34ea8a24a9b6f290fd4107f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb0940655f117f0732c46725f01ce4262e32fb52b18b63c0744b28e12d92f1b8
MD5 40aaeb8e4f6b5ab3c9c62d1c84491e49
BLAKE2b-256 d53c9a73ce4e5adbc78e0cd78fe4467dc0db5af2885ce55e80a2b9bed16629bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31fd8f4d4aa4dd4a074972b2fa9c9c8b35858462fe8a8842666c9cf7ea1250d6
MD5 5ec806476ee4ab08cf913dfb1ad9e35d
BLAKE2b-256 a65b0e97992809cc5bcbf6ac6e64a70b1056ba8e0f01d82a705721cba2af280a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87ee60e7cfbb8ec1d31969206fa88af2a9b928c118585870bda68652fe728372
MD5 e66988ba7496842db94ed3a3d41684d1
BLAKE2b-256 30ec59cba1fd47db356bfd3cf0cd847751fc41b70ed672ec5d9294e262050c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd337569fc2e2c0277a4b1f22f8ad24a6569ffbca40f61fc50c0f6404a92548f
MD5 7a6e4c01dec2ebf82149c50ed88b3018
BLAKE2b-256 532c8c6268be763000a30889b8a9263fc89be6f90089272b1618f2acca340172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0660497ab2f08979408eba3cbf5fee3be681261a0c7624dd6c26b5725df677ad
MD5 fdffec15815432550157d7be76e692dd
BLAKE2b-256 4cceaddc1ae6778d24bf77370f10a7c14e4f40eff8503cd13007fc95dfae8a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e39e7d65c24b5ccb3a75f2262b81c316fa1d2a37eb008b51696267ae69fcaa99
MD5 8e7e41433db8cb9d81aea2925a36226a
BLAKE2b-256 58dc792aafc1c34b654d3fb5cf283fc4d0f5b401419471fdbaaeb8a78ddfb466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 113d3ddba4d24c71cbe3a9f816d05739a745d592d54fbf4c1a5d4198eede8475
MD5 7d7d823d1b3b2084ce753728e2514ec0
BLAKE2b-256 daf89b0b0c2e8f24618b4ad50a9410edc5260ea5634c2411ef57bdf4167a719d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 367a81b802705720432f43a7b6b001aef8d4c5e04b73e4f7c3692da059ff0dac
MD5 27ad3e62c2cb83ab2f5b6a07e3002b52
BLAKE2b-256 7a7c88eb5590fee8ba8188a1fc2097b826f72ba97a4b7bb1fc6e53dc1f1c24fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3ef7d71ed3b3319caaec386391d157a2b515af019e25f809183841b6e0baa3f
MD5 2461c66bc9d77b4168a391f68e1ea7da
BLAKE2b-256 a8f9247fdbc9c3a6f6779636d7fe9a50e23b7fd44ff829675e6702620251200c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0da322932cb61d836b44fccd9ee48827a50fb3b89e9126263a75acef12d37d11
MD5 d90265fbda153c378ba22a9aa162e71d
BLAKE2b-256 3dd7351f5fc4ff6979606cac71c32f68e185dd61da12f9948a5abcc12598a692

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8d67cb7a1a473e59389588a44b94bfbd50365f0467d6371edece263493b4d33a
MD5 28e4e880937d2b712f57e4f04484bc7f
BLAKE2b-256 d078dab07176359941ece0f30c046fa64939984f7aec456d35d8877d716a2860

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b69b65eea2583a1736e0b822962e478a7d78fcea1789b4ee936c29aaf54ca9b9
MD5 4c46fae1412284ce316a08111a324047
BLAKE2b-256 9d2f7d223b7a49c4e74c552ccf40ac7e7d170c4ed7dbcba8e778396fe4088aed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afdab236ed0d3bf3208b1fc86d6d467a789af07b47be54f9ef7fc78465fb9a5e
MD5 070ff9cbacb26f9ec88a02914d1f9645
BLAKE2b-256 71dad56cc972ab03a02c1c99f43ccb6712941c7699be5212a2a42aa2f3bf85e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18c337634c5a683af131bd57e493f71d5df9c98df27ca59158f05a933bd508f9
MD5 ec8243b96ed78418786ca7c85aa14b14
BLAKE2b-256 a7311ff5cf46b49857754917d4c8e714ef0225efe8dcebd1417b4ac8bf0ba122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8116357b38afb6187c99c829c4e97d574b2e8244fcd07e8b661fc41a3d1c28c0
MD5 346844d7b812409d8e4f225bb71bf29d
BLAKE2b-256 fe7ad2a66e50a26fe78406ee4eef20bb48b9312cdb791dbebf269d0f9b698715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 626b15ad4e69f68057c8af3073902c60c9ede1b8a8a33960d996d2c974197e4e
MD5 46e4b21704ccf06e6c351f6dba8572f8
BLAKE2b-256 346fd5bec37695310192f8a4600350f20899778660d08d10ba148c0648aafc86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 967e1a734a9eeef0ec63636d9485a9c36d68a7e17a3451cf22f4a0a50eb633f6
MD5 dbc38caa3b2581b7ba1ee2ead437c8a2
BLAKE2b-256 9dcd02329d2e8a6a43f9e7401fb50084e4c2441a40fb2591522dc5be7c247695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 764a7d0fa131f7ee028be58674d4d0749f46a8ff4052d4d0ba8920de47511473
MD5 561ccb93d8ab7ab9eccd35a92d55a21d
BLAKE2b-256 24f88a09e9634f84457c5de74dbb82f5cb79b1dc313436eae559feecbbb6bb94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 792140057008162eee9bce0244e6beced3681bd6187fa0e8bf7fff7330691c53
MD5 9c59658aefb93db8b9a8d1f6a2028be9
BLAKE2b-256 d7c0e865ce0e5d24a582611ae21180c9e384674e0504bf8e2a45e04f1c83bc7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f045d1e789491eea8caaa619a25cdcdadbaf882e4a67dc453d678f1cddd70ea
MD5 925423432f161760a3a4613c4a7b5974
BLAKE2b-256 54e31ca2f8ea48522b800fc5df25ce0e7efe7c8126886f60db1fda7f781e390a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4acd145befd282708fe4c76ad256d47e1ba082b463962ba91f72a2f811b7d40
MD5 225874885f36169796c9400d7c15aefc
BLAKE2b-256 6080b246c7829870e8f5daae486eb31defa96d220c4c0c33dfbe721c41578cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5142f2a04de9719469f93cdab56b2b6e9b7d27a4e86cb3e0b74a3ac3091f0018
MD5 f6d3735847b718e8bbc7dbfea1da613b
BLAKE2b-256 ab0d8ac5a6e3b0d353495d54828dc93024679cf9e11936eec5997566f88f5e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da1bc56e6992662429ce7a768d84f1f4f2b87ddba6071c6a1801add169cd65d3
MD5 044e0b81f6480932e11da3741107f149
BLAKE2b-256 e23c86eda2cf941b68d62fe28f5f5419ad87f933de6ae9f56dd51735372664e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1c142104dac3dd0eaef903ae786f0e8977d6bbcdf09bfbb59a322df13c86463
MD5 8055ebfc0fb7cc70c7b6fe8100c04b61
BLAKE2b-256 3bf6ef0fe0aa910fbbde7101b6b235bb25ebb66c24eef553aaa844185342a962

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad76b03081e5ebb4ae973db32647c5cd9c56b5ae1e680d0aa5e09761e1c6b564
MD5 2a77906d0a14ed79814ca6969fc8991f
BLAKE2b-256 9f24f8de2011916b5db8e17cf88b9c2e9ad35747944483628964c99acd05a3c2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0d44e694a41b477a01f11b4c5138e58d8d320ae943eef0aea8d1b9c66651b585
MD5 0760fa4d36a367527d5cceb98ac0e630
BLAKE2b-256 45d6afa2f70255762787d802f0445121f682f5e3c9cf941ad35e5a2670cb8788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65d6c8a2ae0bd3cbad306f5ac99d725c78ed768922a9d9398be6c78945687f1c
MD5 825402b731bccc001293c3984a5c8106
BLAKE2b-256 fb955ba1ca186e6308675b16abc339839669b2205b8cff57d6b33527cd0eb25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab7341d21609c2154dc0a8fc3b1092741394ef049c39f52977bd073ca0509782
MD5 5525059fe3625bdbc6183483e53108bd
BLAKE2b-256 fd336aec9966af78b5a008f8281b3b557241abc52c8a574a12ca88ce3fdd933d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7bc2ee593443cd75edc0c863ee8f7820ff759665693ab33ccc24367af6437d60
MD5 c0837c563792fe399cde0a8c35d45973
BLAKE2b-256 12d3965e15d69916cc726a16d149a05f847102ea032cbf41e3bec4ad8d08a3dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ab681bcbc56a00833d67ec83c99151e92951c56ff3ad0c763deb8d112b87799
MD5 c819eb39c3dbd4ac7b7081e3bc7da75c
BLAKE2b-256 af9210dcc650870d02763180db82280e90e8bad124aea55010c1f634e04f52dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18604e5ccd688163cf31d730a004b98ad3a3f327c15c08d3a4da1f3bdb88ccde
MD5 cba54299e7eed4090204d57a6c82a0ef
BLAKE2b-256 ce505f9cd835cd27c7e8d5f166a43f449f774563eed9ff15113080e4964c7cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de59538219861cd6faad7bfdd8efef72562e70ab5701fbb38f319438be65a8de
MD5 d3b7d1d850ed930567f977be8365583f
BLAKE2b-256 f9c62774f20dd988e24fdd4e7312abc5c0dd3cbb9a1f015aae2c74171af88e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35f3257a3b9c32e13e5f78e5868b25b09e88b706c828d6dea0e4ee314df882dd
MD5 1aa2e8e8a81d9bb3275cd9bb718d25ef
BLAKE2b-256 98c302ba931c1a54c8455011e4d80e978d2a849eaf360ed3f9f07821ee8640f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19d848e826616fa9074019b15b80e61bebd8f7b90bcba79dd277c0f0e249e40a
MD5 3007e741964413239e41c3239e95cb81
BLAKE2b-256 98373b65f976307fa3484cce97a6dcd146ba04726f4a16e78bf74d5a2e3ae7a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 967fb6a37c308ebc7120c59c7ac0f4cc0a545bd09c33e0c595aa95ebf0304ba8
MD5 601719b8c5f0c151f08bd0d709370596
BLAKE2b-256 def3d8423c93a74c12a72e1a38c004d83aa605059fc0de15fedd4bc15b6704f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 218e67c91d6750acf82bc4106888628a633e98c8d43d32e0fee72ab92b121dae
MD5 4e26511969c6ca758db697622c74d83e
BLAKE2b-256 cb6a532c036fba358872620c1d560b71fcdf3bae30a7181e28965936775861c7

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