elo
elo copied to clipboard
Documentation
Can we get at least a 5-7 line example of how to use this?
Sorry for no documentation. Currently, I don't maintain this project. I recommend you to use https://github.com/sublee/trueskill instead. It's a much powerful and well-documented rating system implementation.
There's only 1 example on PyPI:
>>> from elo import rate_1vs1
>>> rate_1vs1(800, 1200)
(809.091, 1190.909)
Or you can see the test cases in https://github.com/sublee/elo/blob/master/elotests.py.