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.4.tar.gz (15.8 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.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (737.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

scors-0.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (816.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

scors-0.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (819.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

scors-0.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (656.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

scors-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (732.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

scors-0.2.4-cp314-cp314t-musllinux_1_2_i686.whl (807.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

scors-0.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl (811.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

scors-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl (650.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

scors-0.2.4-cp314-cp314-win_amd64.whl (416.3 kB view details)

Uploaded CPython 3.14Windows x86-64

scors-0.2.4-cp314-cp314-win32.whl (415.6 kB view details)

Uploaded CPython 3.14Windows x86

scors-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (735.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

scors-0.2.4-cp314-cp314-musllinux_1_2_i686.whl (809.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

scors-0.2.4-cp314-cp314-musllinux_1_2_armv7l.whl (815.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

scors-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl (652.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

scors-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

scors-0.2.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (543.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

scors-0.2.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (617.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

scors-0.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (546.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

scors-0.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (482.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

scors-0.2.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (606.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

scors-0.2.4-cp314-cp314-macosx_11_0_arm64.whl (447.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

scors-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl (488.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

scors-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl (732.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

scors-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl (808.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

scors-0.2.4-cp313-cp313t-musllinux_1_2_armv7l.whl (812.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

scors-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl (651.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

scors-0.2.4-cp313-cp313-win_amd64.whl (416.5 kB view details)

Uploaded CPython 3.13Windows x86-64

scors-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (735.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scors-0.2.4-cp313-cp313-musllinux_1_2_i686.whl (810.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

scors-0.2.4-cp313-cp313-musllinux_1_2_armv7l.whl (816.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

scors-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (652.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

scors-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

scors-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (543.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

scors-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (621.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

scors-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (546.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

scors-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (481.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

scors-0.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (607.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

scors-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (447.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scors-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl (488.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

scors-0.2.4-cp312-cp312-win_amd64.whl (416.4 kB view details)

Uploaded CPython 3.12Windows x86-64

scors-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (736.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scors-0.2.4-cp312-cp312-musllinux_1_2_i686.whl (810.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

scors-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl (816.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

scors-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (652.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scors-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (538.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

scors-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (543.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

scors-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (619.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

scors-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (546.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

scors-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (481.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

scors-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (607.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

scors-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (447.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scors-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl (489.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

scors-0.2.4-cp311-cp311-win_amd64.whl (418.2 kB view details)

Uploaded CPython 3.11Windows x86-64

scors-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (736.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scors-0.2.4-cp311-cp311-musllinux_1_2_i686.whl (814.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

scors-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl (818.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

scors-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (655.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scors-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

scors-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (544.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

scors-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (624.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

scors-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (548.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

scors-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (485.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

scors-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (608.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

scors-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (449.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scors-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl (491.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.4.tar.gz
Algorithm Hash digest
SHA256 d4c3241f92a4b7ae9faaa36dc78cbe9d6d1bf39cea9f3160835246a3d9153261
MD5 bc11bf7f38a5ca439db8b5f3d814ad1e
BLAKE2b-256 afe1e4c18ecb21254137a6827e04b95242de5cfbcf686868a54cee8a2a98d189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7229c94a1be907666cfa01399a3f34f809ac60b313fd3bcae8379fe6a92f0a5
MD5 9e9700b43c80584d73e70788ff6bb883
BLAKE2b-256 686e2dd053f95db9487b39da9e021a3754a0e59c61196120b659e2e2f30c1ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58155604eb2f69448bf6f00f4263dbffe5ff8ca159a688dee44de280ceb322a0
MD5 83298cf7839936b185bc12a388d7c8cc
BLAKE2b-256 b434378cf169892b90fc3b27ab7c5145609a7f569ab4e40526e6f73818b90fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bca257b180e7984c8894ae8aefbd6b476d800f6cf2670a4251697692b9088ed
MD5 611839e22f0e3c8ed7cbc81aca59db46
BLAKE2b-256 1e5080d28d0c63b340e1804d5b041590b787dbc0dba28effc581ca9e91dfdf4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 663a4815e5a6f717325832c2bc026ea6bac7e101c32d100a223d30518ed7312d
MD5 7563cd207def31c7dca991b8c3ac6044
BLAKE2b-256 b4c0b567c9c851933ad86d2e94e253f2c968d8d7ce8a57e8add0ba45b72c256d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fd1fd65002b35c4155e140cba14c0dd26894b16c4382952234d8fe04805e556
MD5 141a029d057d9ef7dedd141023a09974
BLAKE2b-256 bfad2f0c7a9c019759d1b5c3c54bb7df4c552d8ef682bf37587556d76c628fd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9577f34b8f1029dfb389ed0be81c9c6c3d3a7df54ad833a2bf7f0df91aece9e
MD5 f09a441101b9b18861f251bee0ec74ba
BLAKE2b-256 10a4e155658de4b4a71717611734598a55a0b34e94a89c2fbd900ac971e9cab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f269455a53643f589a996b04469e6225250c79736213d48b038fdf2e20f739c
MD5 2fdb7090da7148fa53e2c0d9fede89f5
BLAKE2b-256 b6157f17ae532b82aa971b96f7da82284c48189996fa44724840d08d82217045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edf70bea3371f759cb20416add3a46f66417e6c224d2765e2f988294e794effa
MD5 ece2f21c5e47d1ced60e151fe2e3c86b
BLAKE2b-256 7e477d13168ae829f0f686c9139c4f1ce070357c4252e4fa3d8fe295af144fb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 416.3 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.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c3f7356f5e483848c43c7911170c0d8720e6b5d628548283c86d6a676dc92664
MD5 723a63286c0c083648a3723a076f5618
BLAKE2b-256 29f408d61987825bd80cee1189df7be7ba44d97a30e0f2edf4f073009f6e5248

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for scors-0.2.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 76f4666900a5b6104c8a1fd9d13d9fafa71643cdaac8dc4f1cf167815cb2bf02
MD5 df6cecca1251b7498b2823c19c237981
BLAKE2b-256 aac7ec4b91b5a308a6f30405ca989629a158e2897873c699503c3652d94c43c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58acd720de7da8d0a4a6360188a7672f9d75e884a91e5ea349cfbe9a9810825e
MD5 873a7126c3dc2cfa4279ed7811242306
BLAKE2b-256 0df2671d060ceeee7285ffff5467316a10b7ebee30e1156f6e5790406fb3d8a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26ecd15d27822b5e6aa7e781e7dc86f73df8fc0e993c1e5d50b01697f780aa5d
MD5 708ca0cb15eb94fccc2a396062f93c6a
BLAKE2b-256 ff2e053ae64dc9e1237c2e80cbc9dcaf492dc52460fdc026224c240c283fb67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b31395e62c3c21a2e3a9bb415a0960c8024d8841886fba8749cf8db22a5840a
MD5 edc2d7ba8880275ae66fa0588ba0cfb1
BLAKE2b-256 d0118b21bcf37cb9092a82624df91e8e086e24310f76a33a03bcfb3b64a52fdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5f7129ad984a409b1e7e9264f7c5db4c77a54914108c785eb2dfa1d34c19f25
MD5 eac5110bc780ab733c622ac9fe3ba00e
BLAKE2b-256 ba049059eba7c0d9f8201fd7c3eb8255605d19eac141e9dcb2ab4bfee8c83b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd28f00597f56032a34d8c38961efc4993aceec3ac9e07ba03778076b27649bb
MD5 e8b0acf266ea9e893047f996df8091f0
BLAKE2b-256 16ff66898e0bfa5d42bf7386afaa6a60266d456133dfc0f4f158f71f1423ee68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8fbf7efe16c88f584ec96aa8992b28cd1b92e2961f6026782aa6ed2ad53d5410
MD5 53daa67462d877809784c1b78d6704e3
BLAKE2b-256 b3ece8b9ac4174d3b75326b8ae0bb34f211ec1476cb0a9d10ce9ebbea2b08e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b504ddbe19534ce115895ff32c571394c4fe3663ffc68acc73e63069c9d0dd8
MD5 faae9af157743e804c2ea08c37e453db
BLAKE2b-256 eb8ac7d3981dca1849c5d533c026d8dcc910d99cf1e17f14044eb3deaae934dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 096cba126eb17fd2813c02fc37f88b6d598f0d491d3a40ee30c7706642209557
MD5 a0e74690c3530f32f760b3fbfad30c3d
BLAKE2b-256 821d04e1724aa1132e4a92cc580d81edc2d840f0c633172e6e574941507b0bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e7702ded1c980ff5598afbe90bfc2316be73169ea25fa80719f7c5bda8e66a7
MD5 0d2d67c6060e8ab289c50e8386e79b99
BLAKE2b-256 a9f83e88ef739b5763cb2de1621682b20be5e02208fcbec32ad9125b6125bf5a

See more details on using hashes here.

File details

Details for the file scors-0.2.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 16d8ded37024fa9321d7c7e07212711115aa9dac3bb65240266c810873378334
MD5 ba1523822e667fcf6053618d628862c3
BLAKE2b-256 fb305dec4faf7393caa92c007a58c8a1c5c70d29efb5684516abbe127109f520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5759323fe2aa93580a4fc1f5dee6c231b85883c36fe5d2ac0070028e9e6d054
MD5 bb351898a899079b7df7cc809a84d167
BLAKE2b-256 fca76fa8c94f5ec98d2975422370158c851ec37524d4e5b19f30a53bdb10acfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fef7ba7b12d18be7cf211cd9591fb03fbe564d0e600ab850a43253e543aed93f
MD5 cce01ecbed382674c18279e1cee486b9
BLAKE2b-256 1e681ac6c72e1e7452e8cab78521d09142a64d51e2d046597bfe7324e1552003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97cf2a954e0898a46ffa97b250d9414dc31bfb7c4fd8f5176287e1111e7af169
MD5 02cbdb1a52dfe720c75f8a9ebf9ce4ca
BLAKE2b-256 4ea4f2022df0aa31fb907102112d13885b38f6d765a9fc1e52e8448dfdc813cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb18818dd4da08f0b50d9f2a8de8796b76064e9385004830c3f14253e0032bac
MD5 0b2867364e79b9e8866c2c000528bdf6
BLAKE2b-256 be83df765ce9f928998ac0e930954900ee082963f39c40d254b42d603129bf0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 182c177a33b41318971455490653881ec6e46ed2fb6e2527c8f3c6921559db87
MD5 6f7774e6f7fbb19920b06d23d820020a
BLAKE2b-256 d8b432a95aa0ac52cf674f1a598e6cb83d96e3d9f97aaaa55fb1884ab1b55bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51bd040da8b1e271a07b637fd95a47f40fd97dfd22d2b3d3459b5db2ddd4d423
MD5 99ccb980fb3512d79a8f0ad5fd329905
BLAKE2b-256 3150d06de2988fdfd5f45e193cca5e62fbf90cc7de72bfb3fb428ff023e93061

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 416.5 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.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5231af8557079ec3db61bea2f05e556fa551cb1d62a16c8e386cb3ce3f58a165
MD5 da98a4f5defb7c754ee4424c429cf2bd
BLAKE2b-256 ae075cc8eb4b0aa56c9ccd853862b1ff1fb5610ac1752c60fb3c402ebffcb2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f1e7c2e6d14bc7b428b10d7cc671f050f46a622cae7c8fefe72d2d7deec5644
MD5 ae530a40d7c3b56b59660325795bec7d
BLAKE2b-256 b1cda03e436cd0dd06543c6a6dccb27cdb7ca8785d2134dfb602b3f832489716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2c5594a694245f8d446dc13b456d3f2f55a97dd6212c30d03e1dedb5e659ba3
MD5 49313b16afad50dcf0f86729cf2156dd
BLAKE2b-256 6e5abd44d0395126aecbf034fe3e3c98e381977f44368e537b0446aab73f1987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0241ba7350238e5b32ebf9a1ed91b12343c5a5d2ea13be5851f35e417c261018
MD5 c33932658f2d76f36fdb5375c1bc655c
BLAKE2b-256 27b3b2905d9c17821d0141d4f30d8a8f3df9a8a5feb27207d97ab620b213b0c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17a2533dc1e99be499f5e35e296ccbb2261b25bb3c84e35e4ef4adba11b47ef5
MD5 377abc634441e96778568e2ad72bea71
BLAKE2b-256 1ae54d70e384596ca165496b768f458ed132985480460efecfb459e366c30dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e0fc5db678895dc2e22045a60caa898fb6fe353cb9636d0bc67506af7e275ca
MD5 1157ac40d1420bd003e0db4a500bb922
BLAKE2b-256 3e6f43a9934aa2f94c9c2b89d2681c7d5264a114dc61947f2abd8cddb3107977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cefd7019b774b2f60611f9c2740584b565a80efe42e746c98243ec80677dc519
MD5 7b7c9b9490a6d266338fa0d6841e4ae3
BLAKE2b-256 7dd2f2723a00f950f7e9a85070c3434a1091b56e4a2f739df78f014f22d366d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cdd0c8641998550f53e317520efcaf79fcf011da50665f3f8340158200eb8756
MD5 6c7a870feca910a172c33163b1085896
BLAKE2b-256 0424caa44c44fda8dcfb48be265ca925e1592d699230d7381a75f1ab8443c5af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7eab3a3156197183fbc4c397698a482f37d555ae46a9a6379a0b7474bbf32956
MD5 4605070ba2d9d270fd9cb0e01f1018be
BLAKE2b-256 283a022398563a0c0815cdf1ec544be53ea991823fadd9648b174e9ba0293315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 697017f58ee0ecc253981529dd5549754b5dfceb01b77b4919174ca148ddbb7a
MD5 300fc6f64df2e243ed001606e92ebef6
BLAKE2b-256 2c78d80d76d3cb55b83f1c1b4b4a41d7e24bd03b4fe4a8fcd31518625a54f6e6

See more details on using hashes here.

File details

Details for the file scors-0.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 583bc792f6e1d6da817bf5afb7d99c346012fed1dc5e2c1b667bf3f2c387ba9e
MD5 61364e93212f0b3d04ef97904468b2d3
BLAKE2b-256 dd748cd23cb4d8bf130a0d22c3a68afed68c4b7f2de4157c9ca56938be9fb250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65a6dd088eaa392b4e9820b3c0dc4ff2ef4a0f3681ac84b1a5989fbbe02355af
MD5 d4133f4d20ed9017b474dfb318b55aaa
BLAKE2b-256 16274feb124fbcd653a3bce23f2d7be2fae05f66b70a0023284c0d2f3ead7172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9323f8b82c7614457b417c58df1963f70bd1168e64b50bad0e501f8daa0845e0
MD5 47dfba8df9eb4489f6779ab848385e35
BLAKE2b-256 1574fdb982437f56b297e3597af214b6e55bbf88153ae384a08f56d9ec0ba124

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 416.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.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5d77d3676a9725d417418f5276ca5fb345ba8bcffd0622b4e8ecf3bfa07a844b
MD5 b9a0f26a001d27334f762c86900d1bc2
BLAKE2b-256 19edf37067825be41a424b60339e02d8de87f76acf61098a6b9bc6424543792b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 444bf3fb0bc355d5ee671d083a24b718cc7a9868a87be2f005b3689ecf611fb3
MD5 e8bf2f1c737a90bfc5e387f1306edd72
BLAKE2b-256 81c608c24841f3ea507f75facc21b0ded32d0aa6346bf61e07a75864eb3b93ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fb502c339bcf6aa49bcf0831e79db9a8bef8c1f9a1ac367f355844b8384cd6c
MD5 106d14681486c86f8563a8e4560e433e
BLAKE2b-256 f53375e7572ed6eddbc3352b60533f5073f86594f8c8266bfe3970042096a49c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9534197907819efbd99082918a1d9dd978a7a5efe802b89481e66bd887b81692
MD5 8387bfd19d2fd4fb7025b6695d2ad1ae
BLAKE2b-256 637b7c2191ca97bb77181708b819fd0d50148e1a8ea723daed2b6409bf2c724e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c76d1c43d00576154fd9ae5c0a114ee9795f4415ad7727f54d3f31a9c0a8798
MD5 8271799c7d80e434925ffa251f837114
BLAKE2b-256 baa977639cf3c9f60ce5fb8ffee9323018bb565ee353061720b14e5dfe4360ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 953e6e1d92545c1dca5d6f859296a17ac762a0915d7ebb2017070e56c9b78649
MD5 17c4c3af05340d5d9c3d2114e9fa69ae
BLAKE2b-256 93281c5634c87b2c87c26d3726ed3f98d6ed585036a5d7df63a954ba79084646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 554d4fb8975086d8778979e8e5bfc05d8a346f92698df090cac8ef6c86dc3c0d
MD5 fd959e77aab83cf5b77c4728a4a796aa
BLAKE2b-256 a7e59e67b48dc68c37553696fdc0f20018b4ab05ab76793f1b59a24b8b7a2600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36a4390814fe4c46b3b8a3165cba56713cf2d5a2345ea3813f0361ea0ff5f773
MD5 e4b15bef4d3d4408e8dee32f601c73f7
BLAKE2b-256 d574aba563b3499d7fe206d0779258ba4764574ea5c15ec63faaec3e2f47f405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4359923a21ecd08747b4e364e1897430e4353a2e5a17c92f2b0985531416a2f
MD5 e60da0f495a1bc6b3752a3ead76a0387
BLAKE2b-256 24158df24ecacf48dc761a949b461568cb4d319f8945b4fa917abdad9f3f45a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c7354a5b8b3ad88a9231c7fafc0404e7233e887240c1478510712aea421df01
MD5 058df7514e868519badb1d2b1f64eea1
BLAKE2b-256 f9ba2328e19ee2a61134699422966ad72684b7c8ea34e9fdcd2209e8e8af0a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3cea6db787021a9c5f72144b95dbb6e017320ae32b4981f3f26abc30b815302
MD5 0ef3f0cbd6be28677b0378ac273339e8
BLAKE2b-256 44dfb0b4a91e60707cf82be16f9d5d2c2dafef96872945180fff2f7c691f4427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa8fd31d10ee683710fe80187b0d2842f99ed854c219cee66f67bced01ed582f
MD5 752a1132b5f575c800658e8f56ee3609
BLAKE2b-256 09436adf244d67f26f5792ea4229c603bf6b6f5d7bf47e130ac5712bb70e0ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a1fe2efbdcb4662ed89cddb6ddc538692647c18af618717a9dbf39554cec028
MD5 5433eb795c7a0f1fe769748d6786cc6f
BLAKE2b-256 057a9164bfd60ef89fc4aca3ecda6c04bc288dcc8dd978010db7abc51726447e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: scors-0.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 418.2 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.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 115c87723ff2b9eadda43e77a6f39b320e41e4d8a8f501841f12021702c3be91
MD5 66295f7b1b48116fcd7ba695b2e6fa5d
BLAKE2b-256 420d9923a2538d9a547a2a05e2acddf799957dc2a18d913deda6b7400c993489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02a8746a07a4cdc3cd2aac8d15d96c51f6b120754154acd5eb5ee5c0b367d1d8
MD5 073c0f5675c90a4a883e9bab5b6bd0ea
BLAKE2b-256 3d5a2b65c8465cbbfcbf90e6a9ef349e126d2d0ec9188a63f76efee95147d82b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ca11a6206e8d83b4072e9e68ed22a0f0892141a26e0c4c33fdfb5d777b89689
MD5 cf783cfbdf1e6169c3bb19ddbc6c39f4
BLAKE2b-256 18e10966e5a06dac846d11190b355105327b5b5255e6474f4c1ffa9d5452eb1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2e5e6a0baebbd45eb7515da6944d8ce299c58b38ce214163eab303c95fc04d66
MD5 a2da962d3edd286fcb0fa30f68a6ef48
BLAKE2b-256 971ce73ba5480016b8ae60d0f7e8187388ab89248713a07e37fbedeb5b5da451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce0d2b6e2e94d3799690542a115808a605dc291ec57869f25fa6759b7170ba2c
MD5 7821ff1967feb47d2389a6efe3a467ee
BLAKE2b-256 4b17b51441337e774a5122491fd64a310226a0a375dc3b85a065df24c63e45b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de2f3b57e41f942e08997f259cb6b0661f510f45adf9e0d149f81bfc8f9911ea
MD5 2e77567b2617df76de43df1c3fb4049b
BLAKE2b-256 6b6097655586076ab82434e67bbb7c17cd0ea852137b00089da23c7b8e0743de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 491342fda18952e981ebc3a5a2490f4edd392522e9e89ecc8b054a5ae5848b46
MD5 7c08107a00d1617ff969a7ec16d3ed8a
BLAKE2b-256 0949d71cf522fa0ff87e021fe8cd0701048c683a81088769f6629903c20d1e19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 972f543817fba9bd2c1fb684cd55562c22f37cb9ca15589e6e1f2504e6a2d411
MD5 425eeaabfb1284b75833faaa199576d2
BLAKE2b-256 24200d768fe26183ceffe39ef5c4eab39561d0ef3d9292d570c947d31606c688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 404642032bfe638860f48b6d06a821a9988a6cad8d03feb778207a20ebb551ab
MD5 6ee29c578f19ffb77dbbcfb4773858ec
BLAKE2b-256 f6ed51fc0da47a19fc4894dda238b1d2570b63a022fb580f3447195b735ca287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 867b2f5da42134b8890025162999f25cec2508d0c0edd36577da16a0ab23ce62
MD5 dc79de58ada59aaa104926982447b21b
BLAKE2b-256 fc99771e343444b835a19763e4d5fb37e29506e02f7dae2c8ece62739452ed9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1f1f72a32b992fdbaa48ddccdff3a31b6dddaf4c4db7b7f9af26df833cf38ed0
MD5 94774f5105508e97f0a9fe8e2a647b36
BLAKE2b-256 125e4297c325975a5d29c463581eeeda69160f80a52e96331267f78394e4b262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b56c6e4785a478a2a4ab6dd7e0c345598eb214d3d53f50e8eca9e4610337be6
MD5 e5a99300d454e19e362c09d71887c820
BLAKE2b-256 c37aced099847d3998460a05a1d9103ce32d586a599a39ec9931b8cd42426992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for scors-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f990600aa85e3689eac717477ed3d165a5c3af21777c1a422be34693887b825
MD5 3bca7758d16ea578ba0cea35d74abdad
BLAKE2b-256 cf5d3ed356c6f05a506344f76f083048cb326f177e766f62dade8dbafb949aa6

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