A Python implementation of the Glicko-2 rating system, used for ranking players in games like chess or esports. Current version 2.1.0, requires Python >=3.7. Maintained, release cadence irregular.
pip install glicko2No compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Create two players, simulate a match, and print updated ratings.
Call update_player and then access the updated attributes on the same object.
Only call update_player with non-empty opponent lists and corresponding scores.
Use the Player class and its update_player method instead.
Use 'from glicko2 import Player' instead of 'import glicko2'.
Provide both opponent list and scores list, e.g., update_player([opponent], [1.0]) for a win.
Ensure opponents list is non-empty before calling update_player.
No dependency data recorded yet.