Pythonic wrapper for the undocumented CodinGame API.


Keywords
api, codingame, python, wrapper
License
MIT
Install
pip install codingame==1.4.3

Documentation

codingame API wrapper

PyPI version info

Supported Python versions

Lint and test workflow status

Documentation build status

Code coverage

Code style: Black

Discord support server

Pythonic wrapper for the undocumented CodinGame API.

Installation

Python 3.8 or higher is required.

Install codingame with pip:

pip install codingame

Quickstart

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.

Contribute

Support

If you are having issues, please let me know by joining the discord support server at https://discord.gg/8HgtN6E

License

The project is licensed under the MIT license.

Disclaimer

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.