sublee / elo

An implementation of the Elo rating system for Python
Other
95 stars 22 forks source link

Documentation #4

Open birdmw opened 6 years ago

birdmw commented 6 years ago

Can we get at least a 5-7 line example of how to use this?

sublee commented 6 years ago

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.