codingame-tools
Solve CodinGame puzzles and author CodinGame contributions from your own editor, under version control — instead of in the browser IDE.
📖 Read the documentation — guides, a
full command reference, and an API reference generated from the source. Or run cg doc, which opens
the docs for the version you actually have installed.
Highlights
-
Browser login — CodinGame has no API tokens, so
cg logindrives a real browser and captures the session. Works with any sign-in method, including third-party identity providers. Credentials are stored per profile; a headless--manualpath exists for CI. -
Async client with structured API wrappers —
CgClientexposes 22 service endpoints as typed methods, with dataclasses for every request and response, plus a helper layer that handles retries and the CDN timeouts that heavy operations provoke. -
Puzzle manager — a local working directory for solving a puzzle: import it, edit one file, run its test cases, submit. Language switching restores your own previous code, since CodinGame stores your latest source per language.
-
Contribution manager — a local working directory for a puzzle you're writing.
data/is a real git working tree withmain/server/version-databranches, so syncing with CodinGame is a genuine fetch/rebase/merge workflow — conflicts included — rather than a one-shot overwrite. -
A CLI exposing all of it — 148 commands, from the two workflow groups down to one subcommand per raw API method. Nothing is library-only.
-
Local validation — run your solution against real test cases with no network access at all. Output comparison reproduces CodinGame's own rule exactly, measured against the live service, so a local pass predicts a remote one.
-
VS Code integration, including debugging — generated run/debug configuration, breakpoints in your solution, and a test-case picker. Compiled languages build, run and debug inside Docker, so C++ works with no local toolchain at all.
-
The protocol, documented — CodinGame publishes no API spec. Every endpoint here was reverse-engineered, wrapped in dataclasses, and documented with what it actually does — including the parts that contradict what the name suggests. Where behaviour was confirmed by probing the live service, the docstring says so.
-
Fully typed —
mypyclean across the package and its tests,py.typedshipped.
Installation
pip install codingame-tools
Quick start -- solve a puzzle
cg login # opens a browser, saves credentials
cg whoami
# pull a puzzle into ./puzzle and make it the working puzzle
cg puzzle import --language Python3 ./puzzle temperatures
# implement a solution
$EDITOR "$(cg puzzle where)/data/solution.py"
cg puzzle play # Test locally against downloaded test cases -- no network
cg puzzle submit # graded submission
Quick start -- author a contribution
# Create a new contribution and make it the working contribution
# (purely local; nothing exists server-side until pushed)
cg contribution create -t PUZZLE_INOUT --language Python3 ./contribution "My Puzzle"
cd "$(cg contribution where)"
$EDITOR data/statement.cgmd
$EDITOR data/input_description.cgmd
$EDITOR data/output_description.cgmd
$EDITOR data/constraints.cgmd
$EDITOR data/stub_generator.cgstub
cp $COVER_ART_1920x1080_PNG data/cover.png
# Create a reference solution
$EDITOR data/solution.py
# Create a suite of test cases (both local and validator)
$EDITOR data/tests/**/*
# Validate the reference solution locally against all test cases
cg contribution play
# Push the contribution to the server
cg contribution push
# now it exists on server
Quick start -- use the async client directly:
import asyncio
from codingame_tools.client import CgClient
async def main() -> None:
async with CgClient() as client:
for c in await client.services.contribution.get_all_pending_contributions():
print(c.public_handle, c.title)
asyncio.run(main())
Documentation
The documentation site has all of it: the guides linked above, a command reference generated from the CLI itself, and an API reference generated from the source.
Every link here points at the docs for this copy of the README. Each version is published as a
complete, independent copy of the site — dev for the tip of main, and each released X.Y — and
these links are rewritten when a release is cut. So a PyPI page documents the version you installed,
never whatever shipped afterwards. To move between versions, use the version selector in the site's
own header.
cg doc does the same from a terminal: it opens the docs matching the cg you have installed. Add
--url to print the address instead, for machines where a browser cannot open one.
The API reference is site-only. It is generated at build time rather than committed, because its value is the cross-links: several hundred references inside these docstrings become real links only once the site resolves them, and a committed copy would render them as dead text.
Caveats
This talks to a private API by imitating the web client. It will occasionally break when CodinGame changes something, usually as a clear error naming the field that moved. And some operations are irreversible or publicly visible — submitting creates a permanent graded submission, pushing updates real content, and running a server-side test durably overwrites your saved code. Commands that do any of that say so.
Supported Python versions
Python 3.10 through 3.14.
License
MIT. See LICENSE.
For development and release workflow, see CONTRIBUTING.md.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file codingame_tools-2.0.3.tar.gz.
File metadata
- Download URL: codingame_tools-2.0.3.tar.gz
- Upload date:
- Size: 499.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0911f618fff914f9536464220c730d5c278485f5571e3f8cc9fa67a99d6dc7e7
|
|
| MD5 |
2940f259c13e595b00806a5845efabee
|
|
| BLAKE2b-256 |
33961acf8384ff1e11e75b0a0fdc68ab236c8215941c307899a8133af0adca00
|
Provenance
The following attestation bundles were made for codingame_tools-2.0.3.tar.gz:
Publisher:
publish.yml on mckelvie-org/codingame-tools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
codingame_tools-2.0.3.tar.gz -
Subject digest:
0911f618fff914f9536464220c730d5c278485f5571e3f8cc9fa67a99d6dc7e7 - Sigstore transparency entry: 2479570692
- Sigstore integration time:
-
Permalink:
mckelvie-org/codingame-tools@42e28eaab045633e0206de67a041db1ee58580b1 -
Branch / Tag:
refs/tags/v2.0.3 - Owner: https://github.com/mckelvie-org
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@42e28eaab045633e0206de67a041db1ee58580b1 -
Trigger Event:
push
-
Statement type:
File details
Details for the file codingame_tools-2.0.3-py3-none-any.whl.
File metadata
- Download URL: codingame_tools-2.0.3-py3-none-any.whl
- Upload date:
- Size: 465.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cd3d1e01358aeae24259ebfe21ca9ad497712e846868b5f1f59e0af984ab7fc
|
|
| MD5 |
cc6cd898dff6183414fb89fb0d7d5fea
|
|
| BLAKE2b-256 |
8d1e53731f38d5d8aeec340227967a7fa81d7387d3151b72bd02ace10fbf766b
|
Provenance
The following attestation bundles were made for codingame_tools-2.0.3-py3-none-any.whl:
Publisher:
publish.yml on mckelvie-org/codingame-tools
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
codingame_tools-2.0.3-py3-none-any.whl -
Subject digest:
3cd3d1e01358aeae24259ebfe21ca9ad497712e846868b5f1f59e0af984ab7fc - Sigstore transparency entry: 2479570724
- Sigstore integration time:
-
Permalink:
mckelvie-org/codingame-tools@42e28eaab045633e0206de67a041db1ee58580b1 -
Branch / Tag:
refs/tags/v2.0.3 - Owner: https://github.com/mckelvie-org
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@42e28eaab045633e0206de67a041db1ee58580b1 -
Trigger Event:
push
-
Statement type: