aiocodingame

⛔️ DEPRACATED: Asynchronous wrapper for the CodinGame API.


Keywords
deprecated
License
MIT
Install
pip install aiocodingame==1.0.0

Documentation

⛔️ DEPRACATED: aiocodingame module

Use the codingame module instead.

Install that module:

pip install codingame[async]

To create an asynchronous client:

import asyncio
import codingame

async def main():
   client = codingame.Client(is_async=True)

   # if you want to log in
   await client.login("email@example.com", "password")

   # get a codingamer
   codingamer = await client.get_codingamer("username")
   print(codingamer.pseudo)

   # get the global leaderboard
   global_leaderboard = await client.get_global_leaderboard()
   # print the pseudo of the top codingamer
   print(global_leaderboard.users[0].pseudo)

asyncio.run(main())