Skip to main content

CLI client for judge.nitro-ai.org

Project description

Nitro CLI

CLI client for judge.nitro-ai.org.

Features

  • login using Nitro's JSON API
  • list contests with page controls
  • list tasks for a contest
  • view full task statements
  • download task data files
  • submit solutions and wait for feedback
  • list submissions
  • inspect submission feedback/details
  • interactive shell mode when run without arguments

Requirements

  • Python 3.10+
  • no third-party Python package dependencies

Login

nitro-cli login posts to Nitro's /api/auth/login endpoint and stores the returned access and refresh tokens.

Behavior:

  1. saves API tokens in the local CLI state file
  2. refreshes an expired access token when a refresh token is available
  3. asks you to log in again if the saved refresh token is no longer valid

Example:

nitro-cli login --username MihneaStoica --password '...'

Installation

With pipx:

pipx install .

With pip:

python3 -m pip install .

For local development:

python3 -m pip install -e .

From PyPI:

pipx install nitro-ai-judge-cli

Usage

Direct commands:

nitro-cli login
nitro-cli contests
nitro-cli --api-url http://127.0.0.1:8080 contests
nitro-cli contests --page 2
nitro-cli contests --all-pages
nitro-cli tasks algolymp/algolymp-preojia-ix-x
nitro-cli task algolymp/algolymp-preojia-ix-x 1
nitro-cli download-data algolymp/algolymp-preojia-ix-x 1 --out-dir data
nitro-cli download-data algolymp/algolymp-preojia-ix-x 1 --category statement --output TASK.md
nitro-cli download-data algolymp/algolymp-preojia-ix-x 1 --category test_data --output test_data.zip
nitro-cli submissions algolymp/algolymp-preojia-ix-x 1 --mode both
nitro-cli submission 3a009d767bd5 --org algolymp --comp algolymp-preojia-ix-x --task-id 1
nitro-cli submit algolymp/algolymp-preojia-ix-x 1 --output submission.csv --source solution.py --wait

Custom backend:

NITRO_API_BASE_URL=http://127.0.0.1:8080 nitro-cli tasks algolymp/algolymp-preojia-ix-x
nitro-cli --api-url http://127.0.0.1:8080 tasks algolymp/algolymp-preojia-ix-x

Contestant Cloud submission proxy:

nitro-cli --api-url http://127.0.0.1:8080 --submission-proxy tasks algolymp/algolymp-preojia-ix-x
nitro-cli --api-url http://127.0.0.1:8080 --submission-proxy submit algolymp/algolymp-preojia-ix-x 1 --output submission.csv --source solution.py

--submission-proxy sends notebook file paths to the proxy so the Jupyter server can fetch, prejudge, and forward the files.

Interactive shell:

nitro-cli
nitro-cli --api-url http://127.0.0.1:8080 --submission-proxy

Example shell session:

contest list
contest list --page 2
contest list --all-pages
select 20
tasks
select 1
show
task download-data --out-dir data
submit submission.csv solution.py --wait
submissions
submission 1

Shell commands:

help
exit | quit
back | unselect
login [username] [password]
status
contests
contest list [--all] [--page N] [--page-size N] [--all-pages]
contest select <index|org/slug>
contest show
tasks
task list
task select <index|id>
select <index|id>
show
task download-data [--category CATEGORY ...] [--out-dir DIR] [--force]
submit <output.csv> [source.py] [--note TEXT] [--wait]
task show
task submit <output.csv> [source.py] [--note TEXT] [--wait]
submissions [--mode partial|complete|both]
task submissions list [--mode partial|complete|both]
submission <index|short-id|full-id>
submission view <index|short-id|full-id>
task submissions show <index|short-id|full-id>
set-final <index|short-id|full-id>
unset-final <index|short-id|full-id>

Notes:

  • select is context-sensitive: at top level it selects a contest; inside a contest it selects a task.
  • back / unselect clears the current task first, then the current contest.

State

Login state is stored in:

~/.nitro-cli/state.json

Override with:

NITRO_STATE_DIR=/some/path nitro-cli login

Publishing

This repo includes a GitHub Actions workflow at .github/workflows/publish.yml.

Behavior:

  1. Builds the package on pushes, pull requests, and manual runs
  2. Runs twine check on built distributions
  3. Publishes to PyPI when you push a tag matching v*

Recommended release flow:

python3 -m pip install --upgrade build twine
python3 -m build
python3 -m twine check dist/*
# bump version in pyproject.toml before tagging a new release
git tag v0.1.3
git push origin main --tags

PyPI does not allow re-uploading the same filename for an existing release. The workflow is configured to skip already-published files on reruns, but publishing a new release still requires a new version in pyproject.toml and a matching new tag.

For PyPI trusted publishing, configure PyPI to trust this GitHub repository and the pypi environment.

Package name on PyPI: nitro-ai-judge-cli Command name after install: nitro-cli

Before publishing publicly, choose and add a license file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nitro_ai_judge_cli-1.2.0.tar.gz (18.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nitro_ai_judge_cli-1.2.0-py3-none-any.whl (18.9 kB view details)

Uploaded Python 3

File details

Details for the file nitro_ai_judge_cli-1.2.0.tar.gz.

File metadata

  • Download URL: nitro_ai_judge_cli-1.2.0.tar.gz
  • Upload date:
  • Size: 18.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nitro_ai_judge_cli-1.2.0.tar.gz
Algorithm Hash digest
SHA256 e9b30e77e550b28757d29eb5a4abf77dc38359c4c598a11c13da32af9e0041a3
MD5 eb22f7b16b030ad0b4eb42e40b381a32
BLAKE2b-256 95a0c4a824335734c71fe97e281e8558816cba7af298436f38dfb2b761196b16

See more details on using hashes here.

Provenance

The following attestation bundles were made for nitro_ai_judge_cli-1.2.0.tar.gz:

Publisher: publish.yml on MihneaTeodorStoica/nitro-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nitro_ai_judge_cli-1.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for nitro_ai_judge_cli-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1b2e5c77e1d53ed5d297c62659792b5ad22ef0cf3b027370c6ea2b7f0e0bd4b0
MD5 6e7b5b5fd25f02e2f58b607116024381
BLAKE2b-256 2706d487afed05a7c06c89b344411b7d909b114b6cd6e9f71de5720bb2e04b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nitro_ai_judge_cli-1.2.0-py3-none-any.whl:

Publisher: publish.yml on MihneaTeodorStoica/nitro-cli

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page