Changelog
Add login with Client:
py
import codingame
like this
client = codingame.Client()
client.login("email", "password")
or like this
client = codingame.Client("email", "password")
then you can get the loged in user with like this
if client.logged_in:
user = client.codingamer
Add list of language ids accessible with `Client().language_ids`
Add `CodinGamer.followers` and `CodinGamer.following` for the currently logged in CodinGamer
Bug fixes
Update
Update the module by doing `pip install codingame --upgrade`
Links
PyPi: https://pypi.org/project/codingame
Docs: https://codingame.readthedocs.io/en/latest/index.html