#api #caffeine #codeforces #cli-tool #command #user #accessing

app caffeine-cf

CLI tool for accessing the Codeforces API easily

2 releases

0.1.3 Mar 22, 2021
0.1.2 Mar 14, 2021

#531 in Authentication

MIT license

70KB
1.5K SLoC

Caffeine

caffeine logo

Caffeine is a CLI tool which allows you to easily interact with the Codeforces API from your terminal or from custom scripts.

Usage

caffeine [FLAGS] [OPTIONS] [SUBCOMMAND]

Options can be listed with caffeine --help.

Installation

With cargo Package Manager

cargo install caffeine-cf

Manual Compilation

To compile manually, first clone this repo.

git clone https://github.com/thud/caffeine

Then, you can build and run with cargo run. eg:

cargo r -- user info thud

Description

This utility uses the codeforces-api crate to allow you to interact with the Codeforces API from the command line or from within a custom script.

Functionality:

  • Full access to the every API method provided by the Codeforces platform.
  • Download testcases for any given problem.
  • Submit solution to any given problem from either a file or stdin.
  • Stores default settings in a config file.
  • Stores login details in a file for easier usage.

Authentication

As of the current version of the codeforces-api crate, an API key and secret is required with every request made. Instructions to generate these can be found here (in the Authorization section). To provide caffeine with your key/secret, you will need to either run caffeine login or provide them as arguments by using the --key/-k and --secret/-s flags (see caffeine help). It is recommended that you use cargo login instead of CLI flags since your key and secret may be visible in your shell command history.

Submitting Solutions

Solutions are submitted by using the headless_chrome crate. This requires you to have a chromium-based browser installed in order for it to work. If your browser is not auto-detected by headless_chrome, then you should try setting the CHROME environment variable before running. For Brave browser, for example, you might run export CHROME=/usr/bin/brave.

Submitting solutions also requires that you provide your username and password. You can provide these with caffeine login or more explicitly with the --handle/-H and --password/-p flags.

Examples

For an example use-case for caffeine, see the cpsetup (mostly POSIX compliant) shell script. It provides a comprehensive example of how caffeine could be utilised in a script to provide the user with lots of useful functionality.

Docs | Crate | License

Dependencies

~17–33MB
~561K SLoC