Skip to content

codingame v0.3.5

Compare
Choose a tag to compare
@takos22 takos22 released this 10 Dec 22:42
· 474 commits to master since this release

Version 0.3.5

Changelog

  • Add support for ids in Client.get_codingamer.

    import codingame
    client = codingame.Client()
    codingamer = client.get_codingamer(3877165)
    print(codingamer.pseudo)
  • Add CodinGamer.followers_ids and CodinGamer.following_ids to get information without logging in.

    import codingame
    client = codingame.Client()
    codingamer = client.get_codingamer(3877165)
    print(codingamer.followers_ids)
    print(codingamer.following_ids)
  • Add CodinGamer.clash_of_code_rank to get the CodinGamer’s ranking in Clash of Codes.

    import codingame
    client = codingame.Client()
    codingamer = client.get_codingamer(3877165)
    print(codingamer.clash_of_code_rank)
  • 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