EloPy
EloPy copied to clipboard
A python library for the Elo Rating System
Hi @HankSheehan, Thanks for sharing this repo under a public license! If you're still actively using an elo rating system in your work, I wanted to share another implementation with...
after installing, i can't import the library, can you help me please ?
In line 80: k = len(self.__getPlayerList()) * 42 Why the value of k is depend on the number of players? Thank u.
Hi, The library works very well, thank you! One problem: python3 setup.py install only installs meta-data and no scripts.
Prevent the addPlayer method from creating more players with the exact same name. Updated to be compatible with Python 3.
I have a list of 500 players and after my first match, the loser loses over a 1000 points. In this equation: ``` k = len(self.__getPlayerList()) * 42 ``` comes...