Crates.io | arrive |
lib.rs | arrive |
version | 0.3.0 |
source | src |
created_at | 2022-12-06 14:33:00.655482 |
updated_at | 2023-11-21 16:56:46.278213 |
description | A simple CLI tool for interacting with Advent of Code |
homepage | |
repository | https://github.com/tranzystorekk/arrive |
max_upload_size | |
id | 731188 |
size | 44,465 |
A simple tool to fetch your Advent of Code input and submit your solutions.
Key features and goals:
Directories used (see dirs for more info):
Description | Path |
---|---|
Cache | ${XDG_CACHE_HOME}/arrive or ${HOME}/.cache/arrive |
State | ${XDG_STATE_HOME}/arrive or ${HOME}/.local/state/arrive |
Via Cargo:
cargo install --locked arrive
From source:
git clone https://github.com/tranzystorekk/arrive.git
cargo install --path arrive
Set a new session token (see Token section):
arv token set <token>
Print currently stored session token:
arv token show
Select currently processed advent day:
arv select -y <year> -d <day>
Show current selection and day completion status:
arv status
Print input for current selection:
arv input
Save input to file:
arv input > path/to/file.txt
Submit advent solution for current selection.
If <solution>
is omitted, STDIN is read instead.
arv submit [<solution>]
For the web commands (arv input
, arv submit
) to work,
a valid AOC session token needs to be supplied to arv token set
.
To obtain such a token, do the following:
session
arv token set <token>
These tokens have long expiration dates, so you can typically set-and-forget once.
Deeply inspired by aocf!