python-gamelocker === [Private mirror](https://git.schneefux.xyz/schneefux/python-gamelocker) [GitHub mirror](https://github.com/schneefux/python-gamelocker) Python wrapper for the Gamelocker API. Currently supports [Vainglory](https://developers.vainglorygame.com). [Private docs mirror](https://docs.schneefux.xyz/python-gamelocker) [GitHub docs mirror](https://schneefux.github.io/python-gamelocker) Example usage: ```python >>> import gamelocker >>> APIKEY = "aaa.bbb.ccc" >>> api = gamelocker.Gamelocker(APIKEY).Vainglory() >>> m = api.matches(limit=2, player="TheLegend27") >>> m [, ] >>> m.rosters[0].participants[0].player.name "iiDruid" >>> m.rosters[0].participants[0].stats.kills 10 >>> m.rosters[0].stats.acesEarned 2 ```