Skip to main content

No project description provided

Project description

score-rs

Find the seven GPS points of a single flight whose straight connection gives the maximum total distance. There is one constraint: The finish altitude must not be more than 1000 m less than the start altitude.

The algorithm does the same optimization that WeGlide does to assign a distance to every flight:

  1. Build a distance matrix between all points
  2. Build a graph with backward min-marginals
  3. Traverse this graph to find a solution (path)
  4. If this solution does comply with the 1000 m rule, the problem is solved.
  5. If not, all possible start candidates and their maximum achievable distances (without the 1000m rule) are calculated and they are checked one by one (with many optimizations) until the maximum achievable distance of all the remaining ones is lower than the current best valid (complying with 1000m rule) solution

The code is based on the excellent aeroscore-rs library, but differs in three points:

  1. Instead of the full distance matrix, only the triangular half matrix is calculated, minimizing the memory footprint. This comes with the caveat of only allowing for backward min-marginals (optimization is only possible in the backward direction).
  2. If the 1000 m altitude is satisfied by the best result, the optimization is similar. If not, this library uses a caching system to quickly determine if start candidates can give a better solution than the current best without traversing the whole graph.
  3. Also look for potential solutions by adjusting the start- and end points of a given solution and keeping the middle points constant. This is not used to find the actual solution (as it does not guarantee optimality), but it speeds up the optimization by helping to find better intermediate results and discard candidates that do not offer a better solution

Develop

Python bindings are generated with maturin. Create a virtual env first with

python -m venv ./env && source .env/bin/activate

and install numpy in your virtual env:

pip install numpy

To develop, run

maturin develop

or for a (faster) release version

maturin build --release
pip install .

Test

You can run the tests with

cargo test
python -m pytest

Bench

cargo bench

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

score_rs-0.0.1.tar.gz (975.4 kB view details)

Uploaded Source

Built Distributions

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

score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

score_rs-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

score_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

score_rs-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

score_rs-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

score_rs-0.0.1-cp312-none-win_amd64.whl (199.3 kB view details)

Uploaded CPython 3.12Windows x86-64

score_rs-0.0.1-cp312-none-win32.whl (188.8 kB view details)

Uploaded CPython 3.12Windows x86

score_rs-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

score_rs-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

score_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

score_rs-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

score_rs-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

score_rs-0.0.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

score_rs-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (267.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

score_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl (327.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

score_rs-0.0.1-cp311-none-win_amd64.whl (200.8 kB view details)

Uploaded CPython 3.11Windows x86-64

score_rs-0.0.1-cp311-none-win32.whl (191.8 kB view details)

Uploaded CPython 3.11Windows x86

score_rs-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

score_rs-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

score_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

score_rs-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

score_rs-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

score_rs-0.0.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

score_rs-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (347.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

score_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl (329.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

score_rs-0.0.1-cp310-none-win_amd64.whl (200.8 kB view details)

Uploaded CPython 3.10Windows x86-64

score_rs-0.0.1-cp310-none-win32.whl (191.8 kB view details)

Uploaded CPython 3.10Windows x86

score_rs-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

score_rs-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

score_rs-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

score_rs-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

score_rs-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

score_rs-0.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

score_rs-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (347.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

score_rs-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl (329.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

score_rs-0.0.1-cp39-none-win_amd64.whl (200.8 kB view details)

Uploaded CPython 3.9Windows x86-64

score_rs-0.0.1-cp39-none-win32.whl (191.8 kB view details)

Uploaded CPython 3.9Windows x86

score_rs-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

score_rs-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

score_rs-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

score_rs-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

score_rs-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

score_rs-0.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

score_rs-0.0.1-cp38-none-win_amd64.whl (200.7 kB view details)

Uploaded CPython 3.8Windows x86-64

score_rs-0.0.1-cp38-none-win32.whl (191.8 kB view details)

Uploaded CPython 3.8Windows x86

score_rs-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

score_rs-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

score_rs-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

score_rs-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

score_rs-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

score_rs-0.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

Details for the file score_rs-0.0.1.tar.gz.

File metadata

  • Download URL: score_rs-0.0.1.tar.gz
  • Upload date:
  • Size: 975.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1.tar.gz
Algorithm Hash digest
SHA256 c802a0f0871bc583c4905f03535d15a4bb47575bfe63f2cea99fd9dd6f456d98
MD5 ef12bb24bf0130d9ec9db50e0519ba7f
BLAKE2b-256 32b49700f73de2dadcb35995b06433c84ecaa00f1b2555256016a7cc9bab4e66

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90d41dec1058735cd6f4f08f3be5ef0bb06bbb5f4041a8ce53c2f21560238760
MD5 1d021b9d5da8d0b11fd18968a8cf5254
BLAKE2b-256 af1adb60f13846fcd9451b92e230d9cf339138460c01d0c0e7d69ca74dbdbbe0

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25cea7b4878a60a3e12849f13886cbfdc1d579675bc5ec8e1dfdc9cca459c584
MD5 05b4fac72b761b17ee1e19fff666d1bd
BLAKE2b-256 907317dcb93e3c7462eeff871a2ccb663e564b58c11675f50be2f415d1d29864

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d43fcd9f64371c343bb00def38346ff77da65bbe82d99ebb39761a6daf58cc6f
MD5 7d4ad70b95c75100cbe953a3339b4cc3
BLAKE2b-256 9387132359f835bb215cc27f7239b8366a23cdbcd49c909c31b4b8a5bccf9917

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17809a6e190cca3277b4af6e15db7b91efbe31d0368fb44ac0769c0c738ee640
MD5 89bdaa1c918d0552e204dffc5447cc77
BLAKE2b-256 0a990fad260245dc161e41b5ca1027b03f802c30a8d847317966fea9aab34df0

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8a83bdf4756f061aca395e56fe5a1b640ee20c956cf4df700ed55fc3f5b9fec
MD5 bcb342de8d0e3f08d662d15693961ea6
BLAKE2b-256 8e7ba57dd965192b5474e8f735993a74618354a0db52a080b2ff2ab47a02bae8

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 513b58fc358c121fbbed0e27034cbe7c220a23bd4eec2a4a75ac72aecd816af8
MD5 7859eaef2512d59f3165259cbba01a41
BLAKE2b-256 bf03ee70947b5268032dec9b4512335e5289f88147bf253a937f42f99773c23c

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 027f68af3e032a12d2db2e0ca3d87f3e5a01e2e2802a4e6e5aec37130ae3b33c
MD5 dcf8880e4d53485a5cf8f1a25374cf9f
BLAKE2b-256 0a1647c0f3b4988037f51df83923cfe57b84d74020617e2c5ef88c3f595983ed

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c65189af5c59f0a1c78d76b530d550a695691bad0119dde6c697707606ed5e4e
MD5 5dfde8fc69664692754c56fff90893dd
BLAKE2b-256 19224899897dd2ef095bb5e6fc8d15dabbf7987d8a921fd3dfd6731068fc238a

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14e1cdd3a29f3169986daa1af010b824e64b791672e1acf3578f918f172a5cf1
MD5 a2505f62bd3c7901b896ada2e8c5679d
BLAKE2b-256 da44c77786553022ceb36cb6d6ebf89f3e4aaa3b38f99af76c09fc093f2dc1ab

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ac66fe686326cc7559a9d77db9a6bd755109c30818b2fbc77e95ad4e60574ad
MD5 bd3238c68524aa1403becf2b087bb7e4
BLAKE2b-256 0bd4a1ad7407a16b5ae868b3e43a4ae322c7695b72bae873a4158887d9aaa473

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4676cde7987820ae5b240b1515e68644ad3c32a0cab6772d1752131643e51b2
MD5 fe8f61b0a84e9c48c2ab00c61505855a
BLAKE2b-256 0069fefab75b2377cd24f8f1dfb65d0936659df470019a8e2ba90d31f72170c6

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ee0a6d464604dd8dcc92101ea35b86a519adfd1973f01c802b7d8193af74622d
MD5 8985f9fbb6ff9ea8000f658660c7f96b
BLAKE2b-256 99f3f0706ab5ac02d00b456756d8936bcae99e4625568c517f5d14d2fb9c8a59

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca3d2acfd933eefa40b2480aeb0bb4f63b852cb1549d86658ace0a4f1fa881c5
MD5 a9f52766b4f16f7a1da251b8fde149aa
BLAKE2b-256 6e813a17a023c6f0aebad5be408446ec36c2ad02903b5a12afe5f84485d84c0d

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ef9766391eec528592756377a71f08cd5f95a6ea753382bd5e1bea479b47ee3
MD5 9e09a9e0dafa5e071330f9a2000011b1
BLAKE2b-256 00ff4dc65cff043765237fad7a5c6a3c54215516bdfccd3b2cbbd62f1009ac61

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dcbdfea1d10b97cde1104dd9b34ef4cd8f60185e2e4f864de771cdbd02d609fd
MD5 40c7242f9e32514dffdf9d4c290ed662
BLAKE2b-256 1a30c1034d825aeef9e69e73e915d9003ea116655e759b5e4aee544f13d0087a

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c6c24d8ef8fbd09655e75ad6e5ab6fe6e418e22ba6c43f6e297380e7a40434c
MD5 eae7e1105ac84def58d8ad17220360c5
BLAKE2b-256 d13b6652266e5edb91401bbd9dbfeb58616466755ca426e02ec0c43dfaa46451

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6cc154f19eabad6498260f3ceebc1c8c98a324cbd83eaed444d42332fe35118
MD5 d779f496abf2008cd1a99166f5d08cc3
BLAKE2b-256 e8225d7d43768ea7fa34aca7ba23f57125bb2aaed32a085d12628ea17ce78c14

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 249327d6f61b496e14146cdbf29d6137a502514ccae838fc1040a772f419a1f2
MD5 0c0f75fca756130b8bb5508a30693ee3
BLAKE2b-256 4c314f08d9abc8226855263fc883be4ce1ef08a473e228c2fa021f87afd30d06

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d9ac0f3825e1cc803d1b175bde980a2006b908411a7821fd6b2c43291a8a524
MD5 21355632f784d9333073e2b2d45da1d0
BLAKE2b-256 0c97dbc9900f0903a0a34dc61bacb99b320883357c81a82b93f671525d793bd2

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b68ab3a8d16968898a604d7ae974e868631a2290773a953f0247b35b4710966a
MD5 3732d70279ce601fdb0751e2600a3d33
BLAKE2b-256 2ea998ee6e46a040519e87b2c44f4a1fb8d052513d174b6dd9bfcbfdb985ea63

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b8f197144fda339b0c4f9eb18141eec2061396a7ea4329ebb1327b02ced3def
MD5 63b77e1ce071d8c7663afbfeb180c15c
BLAKE2b-256 fd988141b65e9aa8ef7a82729f49e2c9f04ce6ba211f6f78777ed711dcc4b187

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d79914b9595fe372e913aeed92b9b960e47b7453d1764d16646091c8426f9dc8
MD5 ae24418c213552b749b7fec2a5c9bbdd
BLAKE2b-256 61b9edd026068a26b1252d5e24a73f7964b51cc6195886561e88f45f3b010a64

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-none-win_amd64.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 199.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 92d2845cb4e7545ec6e4082a9c3a62bd11a0b5fcf148ce7605ae820b9206b9d8
MD5 078097fc1c045dd412641d8c3eea2da8
BLAKE2b-256 7174a7395d2879782cf3401680eb77fe09ad76313c059e5b28ca8345fdd5efa0

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-none-win32.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp312-none-win32.whl
  • Upload date:
  • Size: 188.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f8638148205364e4a13a3edb011fc907a04164146f6645a945d15df2316b1618
MD5 8117b02c52797e9f7ad16739a511ed36
BLAKE2b-256 67600d1dbf1dba3a5df22dc9dfbdecc1b94ba922266878d73fe4cfe0c81c663e

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3457a2a114a15c8ff8ec09312402e432a6d49a3311386249c8d422080f0a6dd
MD5 a9cbe71b9337e89866bc8a6b64abe2cb
BLAKE2b-256 409ccfed766d5fe2f494e57bd7dea721be6856b5bf79d38a37b6af8c48110b61

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06d6b19e4bf5da758e4f5ca00843f15e462c55543affd430b44bd69a18683766
MD5 c4e7309534b4b9cf4ccb3e8c4a43fdad
BLAKE2b-256 a25bc33cd2d4a31ed351062979f102f1bcdb131d8f4d82d65523e55cee01bfd5

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9c07f5ca1b9b1758fa6de57792352acb2ec3e7948c6d97d4cd84f8ba23f8b63
MD5 6aa27659529ba8e636c089fe6a63479f
BLAKE2b-256 e67db003847419fc58f0beca85770cd3b214ed0e7402bd244064c835fbe71894

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b41c339b84ad8ad1ea391734de9ccd19b77af416ff61e343e8b6f9c7b79a743b
MD5 14dbd0335382dbc62bf09aa4ea4b6785
BLAKE2b-256 0c067d0c7a858ba3528f6c2211aa460233631777ea1cd2efe87cf0f8ca075f3f

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c89502b9f57196b169c7749ceb0acb27ed897eadc81b3f7bcfc2363c85b0a2f9
MD5 19a71751221e9cebef8d2be1a9c9eaf5
BLAKE2b-256 a51a29faa18cff9b8cd4feed3783db59cc2b0b872e70750a596aae7e81ce8b71

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b3de5cbbc49944d22a14890682ec97bbba959772f5dba320cb6e2f1e1e807c74
MD5 8fa6f21ef72478d5b8a14ee375eae317
BLAKE2b-256 7af8c8a1a82dfec69099163151b343cde0a1c02e42c56f96103efa850f15f3dc

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d8b7244f5c036496f10dde63df0a954512c33577dc3692d12c62d1a781f951b
MD5 53d065db43bf7643f6dc41801f78dcb3
BLAKE2b-256 c8441506cc6d53ba5ab672b6aa8fbff598919cf90d3574dc6ec369e25a3e6df8

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53fb101e27d60f3e40d73bef50e3d534385fa496313c7ecb95213c9fd98346d3
MD5 55377bac8b5ae0ac8ea1c46e0e789b9c
BLAKE2b-256 f63a96110cd32e764335e97c4b9cce716e19cde566673fca17b0a21a81123284

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 200.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8e30116bfadf141f26e9678088322e4057d41e9e809904f919581cfb370e0704
MD5 ab778f9ef6f459d8f39066889ac117a7
BLAKE2b-256 fe7aab6bb3926ea656cf970a83f57419b7bba6f1cb2864eb299d9df4bd14049c

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-none-win32.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp311-none-win32.whl
  • Upload date:
  • Size: 191.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 20f24d6431d4f027a9a271258c8d354530cccd7e0b63b43968bd74696e06b571
MD5 0b65ff0354c453d90b7bc073904c98f8
BLAKE2b-256 1494eb27d61466915d33e2d686153f91bd9f01ba6ec3b690d0c38a05b7d93d11

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 241ec255d5eb6584b5a810dcfa08d76787d8c470a5f4eb50fadf139baa38a2b0
MD5 e6dbb4242725da593c57ba122c9be41e
BLAKE2b-256 70da51227d1936481943652795fb50b52e755767b001907910e6151a9a612d8b

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4fe1a7ac100ddf742307492f9f7e56efa47daae9aa364ebdb89c4f858b0a9ac
MD5 a0330a3787d245c75e6a5409f4f5dc8c
BLAKE2b-256 486876e2e673a9b35ed25423bf0eb90302d4bd31992d2d49d0f6b6e23dcc2239

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ccff2d1a68abed1fd371fbff06540d3cddb154ea3e4d370645bf2d98c7dafa8f
MD5 9ab730d80a3733450805d5503ba75ea0
BLAKE2b-256 27dee112c4068938beb9ea11b49f995cf95d667911f48c8864d2b6be8013ef0e

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3d1a5a844da23b64dd8d7487a52f28441456a1b1081e8539ea246bfda41f965
MD5 c2de024a6b959b88e129e2cc8bf5b8c3
BLAKE2b-256 4662d2339cb263eea73608a0d38c3e351a2ecff416db682674d05ae5c762a5c9

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 464e6c93781d6b411177142f5219a18853b6a4064b0e91d185f9e51463f37cec
MD5 11a21c476e29c178601768522ac35373
BLAKE2b-256 5031329467276cf243d0551242ea4f894c0d12e70a78915d911af8df24ca1a31

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1b880775f661158534ee785ddc9ba6f5fd54c93da052a24a9eee0c0ea31648f2
MD5 53ff39b56d8c472460ae952ce93b652e
BLAKE2b-256 dd2b6498017fe38fb0243b2279eac3d82ee6d01da52ae2101adf809f24a91d99

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd2b851e40daaae0128fa81f95b02ac99949f1b647efcfc896caa2ce9d5e707b
MD5 b154c2867666d3b64a0e91ec7eef0341
BLAKE2b-256 08a7b8805940f3c1d0970c268eb4987138e12f6751d9c075a68251230f6e1335

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38ea0061ca72eea1d827e9b38cbd83cb684967f4cad90d291e89477cc82976e4
MD5 a4cd7234faf92e9f27a5b8a6f301d7f9
BLAKE2b-256 3891128c4f068208e464ccd6ded2dd7bb237ee528249da6fe4cc6ecff2cbb079

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 200.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7a5a27c8419c0255458eac57effeb61760154ea879aec622907c2857df57a345
MD5 0e01b07c0fe190f2214ea919ccf767d1
BLAKE2b-256 6ef1193ad4db623d809a35e8e9f85e9f532c71be51335da0a552d6492be141af

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-none-win32.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp310-none-win32.whl
  • Upload date:
  • Size: 191.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8a6d64dbd9a1f592c8a16e7994ae5a7d132a5e244750d7082ed81e78205e02ea
MD5 1b7c9e54f77f6ff40b2903e15e18d57e
BLAKE2b-256 d437437b985d15187ab39492fd98e489faeafac9d41bf459ea67863a6c79c4a2

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6ce1884ab5f62e5c6a79fac53786e62ce89001ee8595b22c4b15175dbb355e2
MD5 5f4b6c6ef16c7fff41590fa54322aff6
BLAKE2b-256 2f170a2af61ae6fcf18f70159389e8bd150ac0636f50d2fed1df4a41cbb45650

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 548e350df35e264e63dbcc9ec666082a55e139f825cbe171dc79bcc526d983a0
MD5 f894d26b8f3f1acc388feb2935679508
BLAKE2b-256 0e2916bd4c6f5b0dec73965c06b929072264abb3672aab4dd183228693e178d5

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63adc1b7cbbb2762709b0924ce20e9fdbc2ef03304d9c5c37d68db98a25c3e9d
MD5 12cd1baa2116d0f3ea09b9db55a07239
BLAKE2b-256 147a2589e2b64d6df3e5f00fef110fadaa5ca12270d03e22508e484476fc78c4

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c73d7ce79c3b87a2b6212694e8d6ebb3695d84ad8b5a2fe26edc5651f6a36d5
MD5 1632270d28b42026d08c3ac4df72143a
BLAKE2b-256 4bd5ce35b409b24495c481994019eb1fd2dd8389d617c7147f88bca0ed252b2c

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1dd5f84c400ce77e5a649b3bb7f61ad4bd626e46c1c499062a682853613af2b
MD5 394d9cc7c2077a60180c3a28cfe98317
BLAKE2b-256 164525e9c6616aeb29e7b57326276d21e5e6cd7254a6edeed710b779077c16ff

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ca88da3054c605b2309373de90a2cd883f219fbf67aa3517db17c81cee0404d8
MD5 d66e913645e03af855d478deca094e25
BLAKE2b-256 e42775ea8c5f6e4816e5129e3850cee337710adcc527fc314db6beda37928534

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b4e06d935ca61f71aee21e422316fec305c46a95a84f34cd5d1e3975f4f6a3a
MD5 b013246ca99aa0d0a5485689e10161b7
BLAKE2b-256 8d17b6688f1d18fa16dc8720710a981a1a9f30744713bcc17b6f4eb803bdf889

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af43fc2d842376f534c649f5790c477b8569aee88a4425b1035091ef252d2e6e
MD5 6fcf917cf9113976501ea69be33fffec
BLAKE2b-256 2807ff23e076680896aab2fb6d2caf727437ec3400af8803d12139b1217e16ce

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 200.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d6e306c1f25649f2bd642cb61f03ef36a99038ea14ec7e59347bc442b481049c
MD5 d2c82724fe5e3b45d35a4183d7302bbc
BLAKE2b-256 aad2aa637c7ae91b78a8a43cdbc085fe52a7315e137a3d33880993b56aa2287d

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp39-none-win32.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp39-none-win32.whl
  • Upload date:
  • Size: 191.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a3737911171de78a8b044a1200512f3a45b499b9692f429aac99de51eccb4b16
MD5 b37e43892469a88ee2a6ab00692b3792
BLAKE2b-256 f303da76b5019454f96600092a574f549503791ebb5c4672aa87bb071256009f

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f405947ef590878e3c8120890adb877bd3be53f610588c7c35bc557dd81f8566
MD5 5d66715a2424119b19380bcb1d69a145
BLAKE2b-256 1b6fd4f05fcf3525e4f0337c2851b9ccde86fe111be8c3ea9131ca572d7860cf

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5be6f96445e3688368e0afef11c66b4d1c499155363f92eb0bdeedec2201f9a
MD5 b7b854e06badf12e5df8a2c2b3d685de
BLAKE2b-256 36010b151e97265661fba9ba02209eaf7733d60c98be77f20a04833dcc42ba90

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ada6ab7af330bb3d39b5ebe9243aa95adcd0c34536039fe92d14c886c9afcd1a
MD5 7a1b5ef53a671f0ba79f5e5fde822317
BLAKE2b-256 ba291783aae5e19a980312b9e813070ed7f3803724e53783fb0ed16943a2269b

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 526921591014e14ef9f5df3fddda94d18616b060a6c267cd3982f112f3fed04f
MD5 f0c78b5756623f24bee53e325200b283
BLAKE2b-256 c9dd4402d3deb04771f9990221492a37c2388b34360401e444dcd5dd1e81e0af

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e6cf536f741c1e01f0af84047569e35fb6049bfcad2f619ec8a4ca3676649ea
MD5 7d1d7cf325cc9c141ec57ffbd7489dac
BLAKE2b-256 6e8718789d506dbbf65068f87f12922662f05ae2b7c576a9e3b69dd7b38dc571

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bef7f6c0e7b9e7df115d12a954707c2e64d9cf13a19eb677a4699ad14f7ed61b
MD5 13a1fc6416dafb5e16e84bc175130353
BLAKE2b-256 e7062e0a586fd337027027bd1d3dc15579fbc5fdba732f0f62578706d42a42e6

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp38-none-win_amd64.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 200.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 fc1ae76c50cadc856d4e7c79188a886289b9416d00556d3ba995094f60fcdd24
MD5 d167a0476b0dcbfb2fbb6c69ebeb4d95
BLAKE2b-256 3a600a8261dc1f8152d68ea84dac0c1057e4ca9bec01e8541909546d5cb79448

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp38-none-win32.whl.

File metadata

  • Download URL: score_rs-0.0.1-cp38-none-win32.whl
  • Upload date:
  • Size: 191.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for score_rs-0.0.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 99d54067b4fc5e9c812e0f2d817e041d769efbc0fe265a39dc2f06e229c06aa5
MD5 5d42aedb00305a3f5a59f473b2ae0b4d
BLAKE2b-256 3b520ff031e78eab5bc98f0f6f55aa29234a99747aa5a8b8aae475e95e0522f2

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e5530d14c801b5f3738791ddb744cd4183f154e5d33a3cf45137561d0490a57
MD5 ee3edfc620155de78a3ffd4f7fa64212
BLAKE2b-256 a4b3ea79b1ae41415ebeb5acd88d37c131954863ef0062c991f82bab19a07740

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88d49681d2ab34f4d23ea5240924d6ecd40237b83ad9b0dfc282137d20d6071a
MD5 af461151a7bcc96b090756c279cfbf5e
BLAKE2b-256 63c367d49740e1df624f603a26d0532eda670a836cd684fd77dde5684cbe37c5

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e829bd4ab41f9d346364d8763f2a851001a44b6c8d156ee5d318e17ba87f6ea
MD5 906dd6d38b050c73954d3fc49d79b666
BLAKE2b-256 d5f8654af05f1cfe2d06c3e7c7b7cb2a3ab3986a0855358498d3fac553759f25

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55f3735919982236495b462ee8f0040e6511311cc0cdd4fcabb9c47fb1ba1b05
MD5 d5e87afeef2734978e05aedf688a13a8
BLAKE2b-256 0b2d8ed0b2b463e0b4cfdae300b1b31d243b2ab46c47e280a2c05a9fcb090a4b

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7caccc8eeca8b727636070a199f842b6fb42a234b9ca3aa854a7a969e7fdd805
MD5 9898fcb066f6ff5f5e3e2c33a6702c69
BLAKE2b-256 09e026bd7a0bf0a640c1f55a7f2f25418da86835d7c556ee3dcff5e5d7a58c1c

See more details on using hashes here.

File details

Details for the file score_rs-0.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for score_rs-0.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 61b1ae84284f4d2333c0ddea77ba9eb64cf25c14e41f1e2bbe7901de5bacfba1
MD5 0f69ded1545370d0c507918197ea9eb8
BLAKE2b-256 08b86f97ac7e761ee6f1e1e8f2f4d92b04e96032dfba9827f0596f2c31f99c44

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