A rating system for chess tournaments
Project description
An implementation of the Elo algorithm for Python. Elo is a rating system among game players and it is used on many chess tournaments to rank.
>>> from elo import rate_1vs1
>>> rate_1vs1(800, 1200)
(809.091, 1190.909)