๐
advent-cli
advent-cli is a command-line tool for interacting with Advent of Code, specifically geared toward writing solutions in Python. It can be used to view puzzle prompts, download input, submit solutions, and view personal or private stats and leaderboards.
Installation
Clone this repository and simply run:
pip install .
(PyPI installation coming soon)
Configuration
Before you do anything, you'll need to provide advent-cli with a session cookie so it can authenticate as you. To do this, log in to the Advent of Code website and grab the cookie named session
from your browser's inspect element tool. Store it in an environment variable on your machine named ADVENT_SESSION_COOKIE
. A fresh session cookie is good for about a month, after which you'll need to repeat these steps.
Full list of configuration environment variables:
Variable | Function |
---|---|
ADVENT_SESSION_COOKIE |
Advent of Code session cookie for authentication. |
ADVENT_PRIV_BOARDS |
Comma-separated list of private leaderboard IDs. (optional) |
ADVENT_DISABLE_TERMCOLOR |
Set to 1 to permanently disable coloring terminal output. (optional) |
Usage
advent-cli can be invoked using the advent
command, or python -m advent_cli
.
Download a question
$ advent get YYYY/DD
This will create the directory YYYY/DD
(e.g. 2021/01
) inside the current working directory. Inside, you'll find part 1 of the puzzle prompt in prompt.md
, your puzzle input in input.txt
, and a generated solution template in solution.py
. More about that here.
Test a solution
$ advent test YYYY/DD
This will run the solution file in the directory YYYY/DD
and print the output without actually submitting. Use this to debug or check for correctness. Optional flags:
-e
,--example
: Test the solution usingexample_input.txt
. This is an empty file that gets created when you runadvent get
where you can manually store the example input from the puzzle prompt. Useful for checking solutions for correctness before submitting.-f
,--solution-file
: Test a solution file other thansolution.py
(e.g.-f solution2
to runsolution2.py
). This will assume you already have a working solution insolution.py
and check the new file's output against it. Useful for testing alternate solutions after you've already submitted since you cannot re-submit.
Submit answers
$ advent submit YYYY/DD
This will run the solution file in the directory YYYY/DD
and automatically attempt to submit the computed answers for that day. After implementing part 1, run this command to submit part 1 and (if correct) append the prompt for part 2 to prompt.md
. Run again after implementing part 2 to submit part 2. Optional flags:
-f
,--solution-file
: Submit using a solution file other thansolution.py
(e.g.-f solution2
to runsolution2.py
). This can only be done if a correct answer hasn't already been submitted.
Check personal stats
$ advent stats YYYY
This will print out your progress for the year YYYY
and output the table found on adventofcode.com/{YYYY}/leaderboard/self
with your time, rank, and score for each day and part.
Check private leaderboards
$ advent stats YYYY --private
This will print out each of the private leaderboards given in ADVENT_PRIV_BOARDS
. Also works with -p
.
Solution structure
advent-cli expects the following directory structure (example):
2020/
โโ 01/
โโ example_input.txt
โโ input.txt
โโ prompt.md
โโ solution.py
โโ [alternate solution files]
โโ 02/
โโ ...
โโ ...
2021/
โโ 01/
โโ ...
โโ ...
The solution.py
file will look like this when first generated:
## advent of code {year}
## https://adventofcode.com/{year}
## day {day}
def parse_input(lines):
pass
def part1(data):
pass
def part2(data):
pass
When the solution is run, the input will be read from input.txt
and automatically passed to parse_input
as lines
, an array of strings where each string is a line from the input with newline characters removed. You should implement parse_input
to return your parsed input or inputs, which will then be passed to part1
and part2
. If parse_input
returns a tuple, part1
and part2
will be expecting multiple parameters that map to those returned values. The parameter names can be changed to your liking. The only constraint is that part1
and part2
must have the same number of parameters.
If part2
is left unmodified or otherwise returns None
, it will be considered unsolved and part1
will be run and submitted. If both functions are implemented, part2
will be submitted.
Credits
This started out as a simple script which was inspired by Hazel and haskal.
License
advent-cli is distributed under the GNU GPL-3.0 License.