Skip to content

codingame v0.3.0

Compare
Choose a tag to compare
@takos22 takos22 released this 20 Sep 15:24
· 538 commits to master since this release

Version 0.3.0

Changelog

Add login with Client:

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