Metadata-Version: 2.1
Name: atcoder_helper
Version: 0.1.8
Summary: automation cli tools for AtCoder
Home-page: https://github.com/yuchiki/atcoder_helper
Download-URL: https://github.com/yuchiki/atcoder_helper
Author: yuchiki
Author-email: yuki.imai77@gmail.com
Maintainer: yuchiki
Maintainer-email: yuki.imai77@gmail.com
License: MIT LICENSE
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# atcoder_helper

atcoder出場を手助けするCLIツールです。

## install

`pip install atcoder-helper`

PyPI: <https://pypi.org/project/atcoder-helper/>

## 使い方

### 最初の初期化

`atcoder_helper config init`コマンドにより、 `$HOME/.atcoder_helper` 以下に設定ファイルが作成されます。

### 問題を解くときの流れ

問題を解くディレクトリの中で以下の準備をします。

#### ディレクトリの作成・初期化

`atcoder_helper task create <コンテスト名> <問題名>` コマンドを実行し、ディレクトリを作成して初期化します。
たとえば、ABC160のA問題であれば `atcoder_helper abc160 a`のようにコマンドを打ちます。

このコマンドにより、問題を解くための雛型が生成されます。また、ビルドコマンド・実行コマンド、問題などの情報を記したタスク設定ファイル`.atcoder_helper_task_config.yaml`が生成されます。

#### atcoderにログイン

`atcoder_helper auth login` でatcoderにログインしてください。

#### テストケースの取得

作成されたディレクトリに移動し、`atcoder_helper fetch`コマンドを実行します。
取得したテストケースはtestcases.yamlに保存されます。

#### 問題を解いているとき

`atcoder_helper exec` で以下のような実行結果を得ることができます。

![出力画像](docs/exec_result.png)

### 言語設定ファイルについて

デフォルトでは、~/.atcoder_helper/config.yaml に設定ファイルが作成されます。ここに追記することにより、自分独自の言語設定を追加することができます。
各言語設定は template_dir フィールドを持つことができます。template_dirフィールドが設定されている場合、初期化時に、template_dirに指定されたディレクトリ内のファイルが初期化中のディレクトリに展開されます。

- 使用可能な言語の一覧は`atcoder_helper config languages` で取得できます
- 現在デフォルトの言語は`atcoder_helper config default` で取得できます
- デフォルトの言語の変更は`atcoder_helper config use <language>` で可能です

## tips

- testcases.yamlのtestcaseにexpectedを指定しないテストケースを作成すると、そのケースはJUSTSHOW扱いになり、正答との比較はスキップされ、出力結果の表示だけが行われます。
- 新規にディレクトリを作成せず、その場のディレクトリを初期化する atcoder_helper task init コマンドも存在します。
  - その場合、 task configファイルを自分で設定するか、あるいは `atcoder_helper fetch --contest <contest> --task <task>`のようにすることで、特定の問題のテストケースを取得できます。
- 現在、古い時代のコンテストに対応していないことを把握しています。

## 開発

- [リポジトリ構造](./docs/about_repository_structure.md)
- [プログラム構造](./docs/about_program_structure.md)
- [設計上の決定](./docs/decisions_on_architecturing.md)
