Pythonic wrapper for the undocumented CodinGame API.
Python 3.8 or higher is required.
Install codingame
with pip:
pip install codingame
Create an application, in example.py
:
import codingame
client = codingame.Client()
# get a codingamer
codingamer = client.get_codingamer("username")
print(codingamer.pseudo)
# get the global leaderboard
global_leaderboard = client.get_global_leaderboard()
# print the pseudo of the top codingamer
print(global_leaderboard.users[0].pseudo)
See the docs.
If you are having issues, please let me know by joining the discord support server at https://discord.gg/8HgtN6E
The project is licensed under the MIT license.
This extension was developed as a proof of concept and as an exploratory project. CodinGame is not responsible for any content or security issues that may arise due to this module, if you do find any, feel free to open an issue or a pull request.