Skip to main content

An elo calculator built in Rust. Capable of calculating elos for 1v1 and multiplayer events.

Project description

Elo Calculator

An elo calculator built in Rust.

Elo scores represent the relative skill of a player or team in a game. The amount of points awarded is based on the difference in scores of the participants. For example if a player with a low elo beats a player with a high elo, the player with the low elo will receive a large gain, while the other player will lose the same number of points.

This elo calculator allows for 1v1 as well as multiplayer match calculations. For multiplayer matches, each player match up is calculated and the sum total elo change is applied.


PyPI Package

pip install elo-calculator

Python bindings expose access to the primary classes and functions

  • Entry → represents a player or team
  • quick_calc → calculate new elos between two players without using Entry object
  • update_elos_for_group → calculates the new elos for a single match
  • update_elos_for_sequence → calculates the changes in elos for a sequence of matches
from elo_calculator import Entry, update_elos_for_group, update_elos_for_sequence, quick_calc

k = 32 # this determines the scale of change applied

# create our entries using the Entry object
a = Entry(id="1", name="dk", place=1, input_elo=1234)
b = Entry(id="2", name="toad", place=2, input_elo=888)

# calculate new elos for our event
res = update_elos_for_group([a, b], k)

print(res)
# [
#   Entry(id='1', name='dk', place=1, input_elo=Some(1234), output_elo=Some(1238)), 
#   Entry(id='2', name='toad', place=2, input_elo=Some(888), output_elo=Some(884))
# ]

# add another event with the same participants
# note that as long as the `input_elo` only needs to be provided if it is the first occurance of the entry id
a2 = Entry(id="1", name="dk", place=1)
b2 = Entry(id="2", name="toad", place=2)

res2 = update_elos_for_sequence([[a,b], [a2,b2]], k)

print(res2)
# [
#   [
#       Entry(id='1', name='dk', place=1, input_elo=Some(1234), output_elo=Some(1238)),
#       Entry(id='2', name='toad', place=2, input_elo=Some(888), output_elo=Some(884))
#   ],
#   [
#       Entry(id='1', name='dk', place=1, input_elo=Some(1238), output_elo=Some(1242)),
#       Entry(id='2', name='toad', place=2, input_elo=Some(884), output_elo=Some(880))
#   ]
# ]

# simple function for quick calculations with the Entry object
print(quick_calc(1000, 1234, k))
# (1025, 1209)

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

elo_calculator-0.1.1.tar.gz (9.0 kB view details)

Uploaded Source

Built Distributions

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

elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (464.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (490.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (560.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (472.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (313.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (464.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (490.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (560.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (472.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (313.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (464.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (490.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (560.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (472.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (464.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (489.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (560.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (472.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-cp313-cp313-win_amd64.whl (146.3 kB view details)

Uploaded CPython 3.13Windows x86-64

elo_calculator-0.1.1-cp313-cp313-win32.whl (136.0 kB view details)

Uploaded CPython 3.13Windows x86

elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (462.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (488.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (559.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (471.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (355.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (293.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (311.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

elo_calculator-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (253.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

elo_calculator-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (259.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

elo_calculator-0.1.1-cp312-cp312-win_amd64.whl (146.3 kB view details)

Uploaded CPython 3.12Windows x86-64

elo_calculator-0.1.1-cp312-cp312-win32.whl (136.0 kB view details)

Uploaded CPython 3.12Windows x86

elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (462.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (488.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (559.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (471.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (291.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (355.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (293.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (311.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

elo_calculator-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (253.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

elo_calculator-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (259.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

elo_calculator-0.1.1-cp311-cp311-win_amd64.whl (146.6 kB view details)

Uploaded CPython 3.11Windows x86-64

elo_calculator-0.1.1-cp311-cp311-win32.whl (135.2 kB view details)

Uploaded CPython 3.11Windows x86

elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (463.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (489.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (560.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (471.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (355.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (311.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

elo_calculator-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (254.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

elo_calculator-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (259.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

elo_calculator-0.1.1-cp310-cp310-win_amd64.whl (146.6 kB view details)

Uploaded CPython 3.10Windows x86-64

elo_calculator-0.1.1-cp310-cp310-win32.whl (135.2 kB view details)

Uploaded CPython 3.10Windows x86

elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (463.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (489.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (560.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (471.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (355.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (311.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

elo_calculator-0.1.1-cp39-cp39-win_amd64.whl (146.6 kB view details)

Uploaded CPython 3.9Windows x86-64

elo_calculator-0.1.1-cp39-cp39-win32.whl (135.6 kB view details)

Uploaded CPython 3.9Windows x86

elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (463.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (489.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (560.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (472.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (312.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

elo_calculator-0.1.1-cp38-cp38-win_amd64.whl (146.7 kB view details)

Uploaded CPython 3.8Windows x86-64

elo_calculator-0.1.1-cp38-cp38-win32.whl (134.6 kB view details)

Uploaded CPython 3.8Windows x86

elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (463.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (489.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (560.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (471.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (356.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (298.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (294.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

elo_calculator-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (312.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file elo_calculator-0.1.1.tar.gz.

File metadata

  • Download URL: elo_calculator-0.1.1.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.3

File hashes

Hashes for elo_calculator-0.1.1.tar.gz
Algorithm Hash digest
SHA256 42a38d9a948fe7cb8bd3b0c02fd3c22e8537288ca078af4b953be3cf5e214ff7
MD5 61df51e1036b73a46120da2a671a8b27
BLAKE2b-256 4ce13e0e7e32cda16678966c3770802e5875cad34f661729147563c203bbfdb9

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebf01627724d5c1c1172f94e62c1d59f21fbe5cbc1b02d1979513650e862aaa5
MD5 b362800dce449881df13cc21939d457e
BLAKE2b-256 9a9f1c1237610b8f51941ae7a09ce49011fb2c358e4b38e8173e945196a39e6f

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb2fb0a3316f7d4e3547249dd778b7c996d7283d8113125f164ada1f0b489498
MD5 24ae2d84c5eb2725720d72e68e6424a8
BLAKE2b-256 81985dff583e4cf2d3913a22b2cb8829859d6fa2405cc3051bdd063be3944ba8

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 54fd4f69c0362047081a5782b6e3db3756c1d683252e0f4c4b0e2a89357c11dd
MD5 b6afe3b5c16275f5760cdc00fb5ca4d8
BLAKE2b-256 40b65ac06dac95c83bf4f0683bfa8dc9f0f2f375750ca73497eea836311b6e33

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba601c2d104f93ef3fa18d73ea2c9d8c712325f3d4afb3459fe1b3176e93e021
MD5 0c507f295c7685b24cab7604edc0a41a
BLAKE2b-256 793f70aa08f581c1f656dda20ab89c311330c753f6855dc7dd3021c446231b83

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1b91aaf50b436f3ddb071b2aa7e2b800d077308d48f40cc57330428f1de39ae
MD5 2254fc521aa59a32c0384dc145113dc3
BLAKE2b-256 bad9d8cc6893fb87e76df6acaea09103a7719eb46de1e3225edadf95fd9394a4

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1fb4a8c72f92d87cdb753dd7a36a67bdf1df5c452aee07cc0380e70b4523ccf
MD5 0f6e517969974f4cd5a2986fe52ec694
BLAKE2b-256 fa47385f474fca75475ddf6188c701054b59827c02dfebe874e1a0ba3453400b

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 320b3a8687d030f9ce8627110d4a4a33e18445f796a23aa851e4cf7ebbe55d50
MD5 54017c17292e14fae0f372ab7f1d68e4
BLAKE2b-256 5def141b15bb61db1bcbe7700f5e681c2899a2067d98c6d842f6259c582b8ea7

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c55da400c02c48d62f9c015e62e9baa132e3767fd77b2c92b3158d32b039c523
MD5 b43bc7156e1f4aa9a02bbb186cd4a29b
BLAKE2b-256 3cfccd7bb3ab1fb9488e065279bcdc1f17ff3e4437b63af3d9c2f1466baa384f

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be881c9636e616715e29f1643cb891c8ac8f4ee9ae5f0478aa95629d8a269192
MD5 6c9c82127a209ae987a9971ba82704e7
BLAKE2b-256 00d6bea85c215a858113be04197c6040b8001061dbb36f1d14ee94a094a7c2e6

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7f69e23ba7d663c3d58d78da9e854db58e90d313c207618b31718b722512d90
MD5 70d690f294a787b18fadb03c54612c7c
BLAKE2b-256 c2ac22f804f92b6c3e09966d6ecfbd1161bb78a72f283fcc12dec7d5779cba8f

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a250bed55a7fe0f9da61c688e011d30b83fb8bc2c3ce5979e3e5691788401267
MD5 a25e2b2cecdb530701626144da3a25b3
BLAKE2b-256 a44c850fbfde639cc8f9f2be565777658121b1aa0d350e999dc90adcd6ff853b

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1af7e1b40fb71a2acd4f1415cb7bbf51e3c721e38f09d2b85b051fc61e3fc0ff
MD5 02c73bdcd905790acbb232b7d39b5253
BLAKE2b-256 0e78262847b41e9a1334f4921878535cef8626b40e6651e430cd75d0ba7102c1

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72087c805b7fc8658bcc28e7d169c5bfe6785063bb051f8a701193e40c65368e
MD5 a88229ad26c5945304c56ad3db3f11e6
BLAKE2b-256 86fbf6eda605a8b6819412e8125619893bf940fadaed72053cb82b6eaec8ccbe

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 023bed6e49f08971b4f8e8fb26d64f25ab0429b976110def86aa67d6be243954
MD5 47416aaec4ae909adb857dc3ec9d65f6
BLAKE2b-256 ff9d56dff13c0ca9a43cb4d16076e59722d8144d1ea0dcdda1db307f6907e03d

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67356fa871bd0225aa5378815f6f62be94b257e4ed71f64402ca8dbb69e9bb43
MD5 4b083dde5a9d41220000142ca69069ef
BLAKE2b-256 21d3aca1737b64ac7e479a89f86eb1a3ef8f6a5c8726011f538b3b4d009785f9

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93ad664a167cc7d83bcfedcc9f289375af519b7e7f82c4517782bff1905c6f21
MD5 d8c1f2743f86018a22c7453405014855
BLAKE2b-256 8be4f20dda190463db1c1ee98c96cf572cac4f9a5ad236c58f4940a0d7bbdab6

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90cf771522deba40c1f1f9a95e0838ecf159c800e442e7bc7cc83eeeb85752fd
MD5 8ade67fb4d2c1581e35d0f53fcf0cf9a
BLAKE2b-256 25c905ba45d62cdd21556cb10ea1aa2acc9ddb6a69e86ec9cef2fe0e5d1069be

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b6d7dba223286103563fcbd7a522c2160fe6f6d02dd13d09e43dc360e9420aa
MD5 eb6421a2e918fcc51d0bbc30c49ebf19
BLAKE2b-256 4b3673c3a43e8379109e40f7f9b207720710824bdaae47d5d1089a2811e15270

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e4e9c4034d30ca1b86f4d5d4cc4a81f1cdc7e9e9b9a84cebf08abfd7f347deb
MD5 71f45b8e78104e1270a7820a4bdd925b
BLAKE2b-256 0ec49750296988eb5018cebede45174f51454da21a8d00f15fe382240a006007

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 184b29f5f5ea83399375733b2a1d17ce899f5ec5455218466ccbdbaec381bd52
MD5 2dad369051cbd32e95a397f09c51ef54
BLAKE2b-256 11f5880f25982454e763bc5f39a3eaabebfdc480131ada722240a69ece3c4349

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 29de9d542880578582cb937e1f4001438e5fd06ac6601b5ec956cdc21763d1cd
MD5 3559398a8f66bea756138e73ec8be2df
BLAKE2b-256 9fadb1a93bcd197cfb5bfe837a4386e72d75ba8f48114ba722cdf6c966161ab0

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e996a3fc5e2effdc967f2bf584e1566ea725005b93e2b32a40668f320efdf74
MD5 58a1aaae80e312d0d4e5991848e81fe0
BLAKE2b-256 34de2b00cc59bf57e64ebdd7dcf3ef370ea471a32bd67be3589a65214dd8fef6

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7e3b4e255e2b4d12f99fcaccbb20d678f2a240d04047e3b0a347619d560bc69
MD5 de33f9a4f67f231514dba52870aad1a1
BLAKE2b-256 52355067c85262f6c27f829284a27835d1136c8c145a53faa80153ec9bde9efd

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 725529d3b3b20a8350492b6ab6a722b0651e86fb1a35972bfdb992ed0676edc2
MD5 3117c1ef08d380e18ef4a42bc8b9cf49
BLAKE2b-256 258444349e7a3ec0fdf383416cb50c199591bdc55f668fb4bc800c28111683f4

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3fa60eef80f578146abce728f24ca9e57b494ad8d9bd858c0dfb88687bbff123
MD5 265e3be03d4417e5d2cd833f1abdfd72
BLAKE2b-256 7097548bd3bb6e1f867e5f23189341b121f1c02a19c3fdb637665cecb3c024a2

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fb70b3acd43c9b801777891a9b2df9e7d83167c376f93cb5df5d1e8edd3d5d9
MD5 1db8344bc721a8effd07a119c9866270
BLAKE2b-256 cb2fe3cbad1dbd97cba194a3c07ab115700fbf26bfc9a8bc2a1e3102a579bb86

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed0d5c6b6cb3bbd879aba780d8d9772023cf635359651c2b26d175ff1b6628a4
MD5 12beeef8bf75791ebcd0920fb4c109cb
BLAKE2b-256 9c0af30fa93a33a57e0b22820f85a1f18cd754c74b6cb90d3b882579b459bcbc

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74619d80b715062ce368e677c0854416008b4868cb22c93f66779947ea8c4c87
MD5 f434d03100a460b645649cc5ea1fcad7
BLAKE2b-256 eefe4dfde71365d73a242c3c845a9e0b8daf7ceddb79181994fe1be4b3d917d7

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c76c520c23d2960c16ade651b0090ade8f861edaf5250c2826b2236b75287995
MD5 e6c7b5b1591e84cde3e2fafcf729cb78
BLAKE2b-256 f29f1ce986aa8ca0913ac78ea5bee92c38dbae9f1409bf0fc63897d309e9204c

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3af8a0a4c50b0a24d6930e5720c5dca01dd098948518a1ea3d97b6381f661b3e
MD5 696fddb2ada03dd34182c50c2c47dc5e
BLAKE2b-256 ec42f5700550df933c450ef784b114ee569419770f0c59b65101c893c7a1efd2

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 080a848d5867f8f186b6be4dcb12ab6ad9390a1971a804cae694289cad8746d4
MD5 e8ef082ca343985b5cab3a391bfa45e4
BLAKE2b-256 a249154e09c270822dd14a236d0a0311286cd33feccac627796a37fdae9a9487

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3106a2555083869b651cf97bb04dcf581ccac636c9e47b6057d5ff94a313e95b
MD5 b58f2bd6d28f161abe3a0a267723b233
BLAKE2b-256 ca9193a45794e8aca38876973c3ee6ecd197d9251dc3e860292bdce274cfefdb

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d2e4759a056436f19034801249f186e220d388870671fadba697a23e149b2de
MD5 16578260060abe5df99a5737492be213
BLAKE2b-256 7bed1f7bb9905df9a20484081d53e5911d47510bfcc6340339d9f9890fcdacd0

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 876f4b6f827ed3f52b82881329f5879b28a11acc60520618c1c2756ad08b528e
MD5 0ef76c3a48949a8391bb0118f54784ce
BLAKE2b-256 a30720e3905d8c526568d39539c88256f52680693a6c2200d2308d881e348989

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c43f10b14afc5a03c6e2ed0924669129ae1e315a765fcf189f6ab599e8178d43
MD5 5b6bf857e33a60beada2920e856f2019
BLAKE2b-256 31a5705720ae635b58753282143a5de7f3b5497cfea832417ba583a08bb92e5a

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fa2929b70bf5f7e46707221d47f4c98d2c9af8e0a78150d02be6589e7480a35
MD5 0cd57e8e36b6c57a51d5ef0333eabad8
BLAKE2b-256 93d4c68997ff16133a30d7ce01be637b1ee69eef127bc4c89904c98f14691e70

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c52f98d28717d5de54775374022b76555c856aa00aa16680b12e90b50749e404
MD5 d6a41512a5259e5819ea4df8082d184b
BLAKE2b-256 b1fa9a2e3bd7de761bbfb2b9dec681b1075b70bba28a8e7fe358c1900140d5b6

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 697074445418865fb4f46182ecf87be61a4f28ffc548604c4963cb46b1bdf18f
MD5 0bedfd4456504ad107918715186738c9
BLAKE2b-256 9353cb820388632951edd5489f6957067d2d92927e52b1f617ea2dd3ac0a00a3

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4eea1eaf578920025e8b482775a58065802922b5e098cfd9fc1ce785136378e
MD5 f67a9b84633826ec60cefb3643c6a9bd
BLAKE2b-256 ae7856aac15f9744f0d1c741f553cdb59e300cb8b9947b6bef84692f29266bd5

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e2ad17b70c43718c90a9a50301b528cb0383601e5bfcc805f8a5c14608ecc3dc
MD5 dac56b8f9b56f72f26a7ed00271acc95
BLAKE2b-256 1188cf5a1bcd3d991f4d784b8c993f8016e8e788a7aa7a9bed4a01165e1ae747

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1eadf6bbeca3cf20fa4621a4b5094032345f78cc0080a42ee8587ca0e1b363da
MD5 386f0cd0014289ff3b9b1e88f8bc4783
BLAKE2b-256 1f7fc1bb9d85eef08e0b81174833a3a6ad2504c4a7241e4be464da5d563c6d03

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8378ffefda066e3eed36595f36eab8904d95cebdd1983fdba4e80ecea66af81a
MD5 14f6e4431d7378c129efd3763f3d99d0
BLAKE2b-256 6f34edfbda420fc85154b22f2192e5a74bbdf24d9d51df8d6c754c5cc4c1193d

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15f5ac7ad5bf6997b2835deb28dbd207e1f13f3f61a947efd35120b995abe29e
MD5 fb6c31e23781c1acea8a21797965b70f
BLAKE2b-256 9142283a02b12257a7d5b4b3a2f70370f52366ab62dea1e6aeb80e92f62e309c

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 973dd86b4be22e8998f867917f53c39d40402932b552f54dbc4a4caf7b103f75
MD5 ecc0764760e22a20fd93026479f58ed5
BLAKE2b-256 54e76b0c1ec945a2322eb9976d454388a122c3a6b494ff14690288f422b67b54

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54b4fcb1a8124f92753025622e073c1d328bff7a647e5788fa35c0d98236fb10
MD5 cbef22586f9458d805991a42e3c5a037
BLAKE2b-256 00748f62274911b15f281dfe61be2cb65a12b9d05de3ead8d89ff3294a85ba8a

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6cf40a372680a4aacabbf19a1efb688553d58add5477064c780bcd2367f6d12
MD5 e670caf280777d1420aa733be5d8a015
BLAKE2b-256 7352151bbfcfe22e912345808d8931a3f97e793b3d81ebe5f4b636d41f952212

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65fe9c0913154528d7d2b49e4e203dea699d33bab16f20d6fd438e457b64f604
MD5 1b91c2f2fcbe0a70169e1543e333376f
BLAKE2b-256 5badc0f8e66f07ed9992fb77d2bb74e59f2cd09231f85599d13dbfedb7e297c0

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f304056f53d6dc9236c0b03e0c10e79cd57890a4f69a342a7ba961c0f9a38726
MD5 f549ee048c2b098d000237911292c8c5
BLAKE2b-256 f4975ad32e88ebfcd002aa24749e170a618cba52ed8658badc6aceae093e76a9

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2114b213acc77ae5c923959be2fd0bbd8aa364d90d0e1dbc2cffa2b5024f1b48
MD5 05e9a564f3b44728443fd5cb4db64c70
BLAKE2b-256 2b87a7f89c1ab3049b415bd07a495b1ac7c0d5cc845568cfe9ac2954a71ad14f

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ebfcfe71ac490e16fdf5fc978f8bdfd6874efdd99d6ac1013cdd806ff35b853
MD5 b7da98cac2ca32a03c48efabd54f895a
BLAKE2b-256 a193d9e19f3c60af245ef5d957ea95114e671049eeb6d283f5e09616e6b9eac4

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b953e6ed1a58ed1e1ade7189326f266d2f40f1b0129f0d133a8679b4cf98aaea
MD5 c5a1bfdb11af86f1cf5face9949b8c1c
BLAKE2b-256 902df5e1c7401032c271161a589b3bef452d4b6e025ac4eac4d2a6bc9a12d6f3

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3218964f70494a6349690ab9a2408e34ed7d38e7dbffa6bdae6adf191bfb1a82
MD5 722d70f259f3909ba24ca289e6e132ac
BLAKE2b-256 404b63912da9f7c1c134728fd850e0aea54d6f505dbe59a9a98698c017dce4a1

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a24c7a24a30329a2455196c630663b173714bcf02a90aa437737907b4c18d8b
MD5 99b7e81596c8228d17970850e55025d3
BLAKE2b-256 b5140946c8945b30497991cf80c222edc4e85f13eaef08d934180d422ebff6c6

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 637fb62073ea733bf5e75dbae254c0b65d13a2a6431e0599cf11e5a7d0533fa2
MD5 113c7233c199f84bbae6a3a1e7728b80
BLAKE2b-256 52d22c450ef2e420906c1786651b01339798e6e7e2c87c06096837d994ce933e

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f214014e6f2e00d5c0eab062187c1b567bba005ec0fab4e95d5d75ad88409c4a
MD5 1ae0c6380d2d1a7ef96f16246f700e50
BLAKE2b-256 676b4b63353c6aa054c1bf74202a9db7e7207a242c5c8ed90b60a5393f49030f

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4f680fea745ef3acd274ff212619ab77c01083dbbf9a40adadb34af443e2a4b
MD5 c123b1b4ad93499f3afe80f64820a396
BLAKE2b-256 75bbc9ff891e1080b87195ca169aa608cd228dd495f0863980c4fa3a61e7f049

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60ac39361645b61e8a1a3aaeb9a4adf374458e72bd100bc86287bb0d6215738e
MD5 6ee3dbdc78a748915aeee9e74a606026
BLAKE2b-256 4296aadd1e22db819de6d72e29b5fd34a6e5fb35797a19ca7965b148987d8d0b

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7436e30fa6f20b0affaa27b0ae3f9693334a2a92e8bae6d44b25f0395ee2771c
MD5 abf9d82041846a80764c1558a774e92b
BLAKE2b-256 7e3e2ead001a04be901a7dca519b14b69af43444318e8aad99aeff292483b9dc

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 957eff5af277d1437590b6beaf03af159bb9f90036ca81ee618d63d35dacbbda
MD5 a2c0082d2422876b442980f9c6a873af
BLAKE2b-256 05bb4ff12e202b5ab465fbb142c7efcff58c1971d42b031882891d546305049f

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a99314f8e88dd6a4d6b4f4fb2ddc8129dfdc49c2822d918af64124baaca060a
MD5 37144c03533f18c684b4c0a390c545a1
BLAKE2b-256 ce2e59b8cf420992bc0af42cec138d806d42220f0c4c1f5d2ef66dc03d277415

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01e35c92f60e6dbfa8d4af199c773bf945cafe8ff502e34704545a586514ba78
MD5 4c9dec94f2cad3e8f6c7e9c5c3ebc480
BLAKE2b-256 9609cfb217a2e5789fc981352047b24c402dce270c284f54c623e80e245bf148

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8106f32a2b4caef7f23e182b8d79995e9ae673c5afbeb6ddb522183401381680
MD5 84677ed466aecddcf8732f0214ed17ec
BLAKE2b-256 7323d772bcee13832787f92cbe82b051002914cdb82a5364769b9517f2401793

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ad5e86164bd666cba4a26b852eb4456289633425d84053bc46e00b180e075c3
MD5 b23bd025d6df2ec8691957ec211d0c73
BLAKE2b-256 6f31746b222da688aeeeae9517419df23ede5a7489ad292cf7f90bdec6bb6f21

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f888fb785f27400a94be7c6819f33d89a1c93730fa7e28a1e05da16b181a024
MD5 2d617d1682a4807190b24910fb10e05a
BLAKE2b-256 49a43229e2199518e8521af610c83cce89ea294df648436b5ccc0fbf01ad5a55

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 900f1251b6b25e6f7a0bd017910f7ba4535e2724efd9a1437f0d939992a66cff
MD5 da46865c050ee15e3b8362713ba3d776
BLAKE2b-256 492a8491332674085a9e46d387eeab3b7e24828961212837eee7872435a5c11f

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f001b7134e98a8c9e0ccc79eeb113a8ea5c16c6ec22bebd8d314005d6918eb76
MD5 b6516552416095fb015bb0a0e08b86fe
BLAKE2b-256 0abc4918abb3a83a73e76f2b1581f86a3af8aadb5431aa6ee14679a2b6f0de5b

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49e8703f76a2cdf5bc5124bd68b3672eb38befae1f76eab15665544e5f63d6af
MD5 b11e3f69d8d219afe1bb7320bff0e95e
BLAKE2b-256 4e0eaffcd371e84d831c66165c8b5928a467a877a06a08dba3e2383ed4fc19c3

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4d013ea3f52d5e53fb58de6d2eae83214c1b318b26721d9e442920bcb88559f
MD5 9c4c0377746d6c3becd05f8862de21f5
BLAKE2b-256 6cc87baa9bfdb4b936c87657935a11720a6856d416cd94a9ac01563b5af65728

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 90424a040b57451b1aaaf55341041eae184e0ef265cbbf521fe8413821d2d0e3
MD5 bbf9b37c82852bcef137cc871b3bcf9f
BLAKE2b-256 3b4c02cb9fc410f1f54f739a20a071e6c30cbc3ad6ebd7dc169993e0e4401795

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b8576ed4105e519f30e2ac93ba2a02c6add9449cb98b5cf54f4b4851488a433
MD5 ef8e91cad17c19ae976a288d56b88715
BLAKE2b-256 992de62d6cccb5d84b0ed83e7a3106cee2f5d2725f8ec741cfc7e67032492c30

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dff28d419b121db96ae05e17f0c5a33da24d56fc243a1a0de01b1235a796d2e8
MD5 ab2aa358555f14550bb72dc14b67be78
BLAKE2b-256 2f9e616c4c3fc727fd7462d7e8c9997820a9a53048a1ed5cc90d90d020bf4098

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae3c5dc58011902434a61233292fc4401e14ae1b8ea42c961d38fcd4ba3d4cb2
MD5 ed77d26c163e27d17f87782554ffed3d
BLAKE2b-256 9bffa1a06b0cd6a6698b25b9adeaac79883a53fc07cc8e0e2e7555c2caf4e28e

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c15ca8db4314b36127c02e7d89a84e26a4bf86a4b76d72fa84ae709429598a5f
MD5 d0f9d7e3b52f384e5d9d241638d84292
BLAKE2b-256 2776efdef85bcc19d2921c3cb336b5ea44deda431bee05b6dc1aef25f18ee6d1

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 945afabfe47a9190eb26b211190305caaec27bebc5cc97096b43de0d14384376
MD5 5538d7f1309fe9da04d9e1b55881ad78
BLAKE2b-256 9de69c594d37e52029a4f626b80ce1c30cc47fb71a680d675696c930ceec5077

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8acdbfda21d4cdecb72c151727215ea84e7254c8faecdb4f247d563ad0064dc4
MD5 3e46cf3100fea846a7aeca2cdde28d43
BLAKE2b-256 09c52612e134404d44b548edc00bc5e3533e2a9f0ba46f3710159504f1a1a0f4

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6df2c486d68ce329d0f45f9aa8355d50e63a299acec574a3a60e5567e6d5e86
MD5 af902fc3cded8ff9f9b7f15b65b05d71
BLAKE2b-256 4c4bb194dd75081397eafb85da36c909a7462acf9915a2f3da867b703cd4f0de

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 023115d2f126039b7c1e0103a3fda1d5be2fd07c3a63c7629a5cedecc875bbbc
MD5 8fb0ba06c424578e27179d2e2f125876
BLAKE2b-256 7c844291856d45f90c6b97d77506cfe47ed358a90244912afc9b19c50558af1e

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44d846347a39ba6de3f273b6c3b3172160dee42abbaeb84d72358a5d68f300b1
MD5 8b080f90ce8c1c207a9ea346f393f293
BLAKE2b-256 e8d1b8fd8ed0312b0bedcb399be46464803614f73bbac995b4a8c431a1b01e22

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 896573557f3d5a6c9164502c17e1d8338ff9feb7ed9132aa1084ab199badf930
MD5 b06b5bcbbe9754dedfbf772de2d7e0d5
BLAKE2b-256 2abbdca6f931e7fe82c8900c5c440163d499ec0b0aacb51469853ee1f42dafd3

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5f8f8d4afb315e27c774af1f2f69b01a8c4e306e0a3b18f6234e3afadc2ea407
MD5 00f53a32bf3cc6c088708ad92a5ef5a7
BLAKE2b-256 a9cbcb72edd1b1d8f9e4594cd994fbc43c0711062c5844aa3459a62aac2d958b

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b50afd89be7229263a8200f835cc68f236a7ca4dd2f397743af0d7f89487bc00
MD5 494b918482933c5131545f2384315d7f
BLAKE2b-256 679447899207c9e48103cadac5f2ac0d930da5e72f0bc2729df138b295f1cc53

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb3e97cf7547bf234de67816f71220b9d4938c54c2d99e3157b2c3a068470811
MD5 773faf5cef939bbfbe7d7411a2e27d41
BLAKE2b-256 580c3b5ffe6c9c425559e1dc77f762d9c8a94a56221b3cadb7b4dc5ebcfbd105

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12be147f2a6a75663e0d3c6772dceb203a1a840b299e9d376de09df86785df07
MD5 74c3f791fc6c3bc58fb5ed1a715787b7
BLAKE2b-256 361689f51088d9f3337b0a998168a525163c376916832eee2bebcbfff2602ca6

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22eb5222c07b651d5fc4efcf58114e1f3c5d3728373b44fd8e5b30a9d4b88461
MD5 47b7822962acfd162ffc60a70dd54af7
BLAKE2b-256 b7c56e7f5a4fa33da8f193ba3b8ec9de207f96bad8c77ef74f4d2ae952998d83

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c12f1309ca0c9310f6ac088781dd743c4b67d56dd249054ebb7b54aa18dea9a5
MD5 36ebdbbf7797af01962644f7fc45ca4e
BLAKE2b-256 f61a57658087f3c9a5ff283c17f249842b9e1ab3f137032c1439fc8b0a10cd14

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6605dafad4ceae629d5bb1fc9d3f962bd812a93d9ea01d4b2727dbaafb53be7a
MD5 3d2df913d35e5a252eb1b6a9f866dcf9
BLAKE2b-256 21ade6c94ace213bbbb35ae87356e0c3168dc5aab3a2b8fcaec541a8383e221a

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f7110328606427cbf607710cee48823d99789b84fe8b7d9ae81eed7ed3ae3b7
MD5 bc54d10a38b7b4d14188e983be01aab6
BLAKE2b-256 a08d05b76d196eedcf2e01bdf2595a845b3e780a85978e004e70d8d8e67029b1

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b0942f0ca1871e88268803a205b3a87a9de22105fde3b8bf76de64cac0433f51
MD5 e076ec5e0c2b70c971b0f69a88c1923d
BLAKE2b-256 d6ca439f9bbe67fff30a3c7cb37c76487cb2b82c5baf5bd4427c68629389eb80

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47a1342655122ba8ba979ebf0d869dd22eee4968c9876dad7a1a3ce1c6f4923d
MD5 1a268010460ac09fa50f79abb14bf094
BLAKE2b-256 8270ed981df8c3d3d0948e379119cbeac8a590e8d0ce0daaa1a20ad686986215

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9c399b614a04e7ebae6c6b30efaec6ae6c4d8ae9087d96eee714a26402195f71
MD5 cc2d30992627c5b7b4f10cfbc0990261
BLAKE2b-256 03e80d3a09c9c7379fcccc5974302d372ce35afcf6f11f31a0ae85f104b0713d

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cbf389b07fb70cc964d6a3352f9b580aad68fc36a9f20dee5362bc50303feff1
MD5 0567672335f691e8ca025b4b416156cc
BLAKE2b-256 b5cfbf6f09d2d597424f7dbabbdc5c3da2172387a537a9fb01ede87a34f4bbdb

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 796698d032c887b05ae08dd18d4a3b050efcda72dd134a9b28a06773d94d527f
MD5 63387b2dcc51916b3905e62648057b28
BLAKE2b-256 f8a35d711da882ff2774414f2693ead6af92b0a0dfda7cc2912ac56d8eb70d79

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9328ef24f0b80d3a82a434383750811e33d71fabebda189dafaa4340fde778f3
MD5 4bd9564eafe08437b0a31f698147e14a
BLAKE2b-256 fd32a3950812666ce089c61ef25bee002420f0d04f10f98a242badfc8968a02f

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6dac3a8a572f51a9b306bf659ef4a5b86e9210dace7cda37c9d87c68390ae84
MD5 198d077cbf841937c8d4dc591700b5a9
BLAKE2b-256 a1a1d5f3c96f4451f260feac930d647ee1fe453d505098a5c55e8594a8722d54

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84bcc7b54c7f6c9a486b4cd5544d3a3f3b5e1c947f23078c5a1c156be99c3e05
MD5 51a2e669e6f47f86d9d0ec79dfab88ec
BLAKE2b-256 cce9e13349da5a0776438106daa7a0821472388d1995a77deb6f372c82c236ac

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71e1ebe1a0b7717162f5b551cf9b355cb613f2baa4e7405a288aef84cc8d3412
MD5 edabb8aac890f2a90de7d5998d92fe5e
BLAKE2b-256 6e4c8857ef42e6799534cc01d448370faa903488f73fea7647ef5389908b46ba

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea7e5fdd39b6705676da49384e41b9a0724f36f1eb4715dff34ca663ed88c0c8
MD5 0670db955b16faee63b4c185b74b03ad
BLAKE2b-256 645e4eef3cf9db756e782de76743e11460605a00c7d47bf54bfca3da0408a770

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b865a7d42afb7a7373cf78f83cc5810c5c7427c34f2dabcc700734027ce448a7
MD5 27d241b327a82351fdc3b24b68fb9c04
BLAKE2b-256 f46442df4bc7ae76fedacef08c32e04c572b3e699f44c09ec31fd62dd1b5c6d0

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d2168dbc3701d9ca359a4458fb5b3fb72fc33b9cd47c7c0104e796289e5cce7
MD5 2c8ac3e13069c742109ca397fbcd0375
BLAKE2b-256 6747a947529a791a3ead58bd13cf19dc7e4078e3340409ff1ae3e6a933529d38

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e272fe163b115b564ef760adbbbf6dae3eeb53616e1dc41029280067dfb41349
MD5 383d0d1510a8f036fa487cb9d288f668
BLAKE2b-256 c70ad68d50774ebd4be62c39c5be10972b2572867e01a7afb3a06b6695cda16b

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e323f813d80c5900e8f8d6c161a5ab8ae24c8cd8234220a890f7e978d5bf93c1
MD5 c8c5e4648fd4d275ed71e17af1c1ffab
BLAKE2b-256 53df85d8dc62836f0031c5a75304bee650af90333289b288731f28cfd201b59c

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5efff34b4cf6a031e3af91a0043e1655cd4991ff1d137507b1046307630151d7
MD5 8e7eca5819c107643abb870e91a8dc94
BLAKE2b-256 ce25108f1cd062c93ef89e07399392b59ea5afa6cdf187a5016b4c9fabb7176a

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1b8dee167afb67f581e37e5b97ee36389222bde4d22c1b3e1e35fa76296a69cd
MD5 e8cc783fa8f0a63cc25cf91d03306228
BLAKE2b-256 815375db3a9697e92ade3300fd3912a46f61ec22034a5b3272a0ecb4230d9ecb

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 50333043998bf3964ffe0567801de2981c6cd0dbfdfba159f2f8308ee32a837c
MD5 a73a712da0edd295258e96f3fa365d7f
BLAKE2b-256 7b39e47de1f5be3f46266fa45e5c6e1b0828ab818392793f30186f10f0f7102c

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9626a09230ae528e78ffed9310a9529ca6771276bd464b372a891706aaea9efa
MD5 0e0ce6adc352a2d78649a3537febe369
BLAKE2b-256 e909f16b067ec93ef09eeb08a6bae8c1c89a9e7637702230d230d681eca6277c

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 967d27eda328198782639d91d590ce8c8db4be0ca5ceabf550250d17e968a73a
MD5 41518a1c604bdbd2d832aae89ffcc75b
BLAKE2b-256 e5fcde7babdd4b06fc2b1bdfaafd8e2353e72c4f579c50942ba948a3ea1cca15

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0afb24899032f79e3f040759a9b34c191b713dc89c0fa680a3352b1a54918a42
MD5 1e99b068a75fcd58433b173465351491
BLAKE2b-256 ed40beaf9763fda6b410a92fba414aca92e371cd3bb1e2ca5890c66cbcf88413

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1126cc20e5805cc6bd1d1f2f47f7fa7f8951eab7dc264355ec8721eb956a36fd
MD5 bbad294a2aaa8d9a1e7d4f601c18ea98
BLAKE2b-256 efcb1282a83991de1c2b3c94636c94c81d529e7d81e18d2aae8861a7d41e058f

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c9fc101b511b54be8c09cbe1ee2cd8043a4d37e7d702241ed11bf3d695db365
MD5 ccc04b2ae1b3b61bd40ca5450f65586b
BLAKE2b-256 a5c5e59c60676cc94f332f6bdab117d44d4d4d9b2dfc1c037e24c44769d5d968

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00bc513744c830bdf507dafdf99f7e3e5c5e1ce8484dc56743cdcbae13e93e63
MD5 b5b2d49d53896c89ebaec42481b653b9
BLAKE2b-256 0f7313f0494c3fa401adb3f0ee02c095c49094e80e8ef9b7a0b019bc82298378

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c53995f2953019c55d18fb08b79819383fbd13fef018b7e7ee52aeb8c8e0c7cb
MD5 ee2de9c1953568cd41019037a68eb126
BLAKE2b-256 a894f3610d4cb94bea8702dc8b1bc784a57fd3bbc9214ba7e6b02c15a29b7cb3

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5e2c90bd9eaf447c0e406aa3a21b2a8cab65311cd464d7a2f36728a211a6675
MD5 2cf49a0085c62001a597fd2246b15423
BLAKE2b-256 6d5e69d9e4b70077172f2d3302f3ef9fc7c72f443b6260c8c3431abf04c1d06a

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4629a02f0d474c28a1c9919f6bb712a6f42aac7eea132bf25867447abcd77fa
MD5 f49a809609cbb374ee14d7395ced0a62
BLAKE2b-256 222c86159a2f7e416e586c9e1e0316a233d9b76ed3def0fadc21073f4ccfac5e

See more details on using hashes here.

File details

Details for the file elo_calculator-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for elo_calculator-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 55f403a0740333ed37e5a6825e33939e30c3ab9c614d285125452304567d3bec
MD5 e80a11417e38400a33d7a32c8226637b
BLAKE2b-256 88463d5b5b8a4fee1143fe5cb21df7955a59326a621fb89b49ad4237e9a42461

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