elv
is a command line interface program that lets you interact with Advent of Code API.
Advent of Code is a yearly event that happens around the Christmas time. Eeach day of the event, one
algorithmic riddle becomes available on its site and everyone can join by solving it and submitting
their answers to it.
elv
helps you interact with with Advent of Code via your terminal instead of the webpage. So far
elv
supports:
AoC
responses whenever possible, so you minimize your footprint on AoC
's serverscargo
cargo
is Rust
's package manager. You can use it to install elv
directly from crates.io
. Once you install cargo
, you can do it by running
the below command in your terminal:
bash
cargo install elv
After the installation, elv
should be available from your CLI.
You need an Advent of Code session token to interact with its API. elv
does not support authentication
to the API on its own, so you need to get your token beforehand.
You will need to log into Advent of Code. AoC site sends
the session token back to you using cookies. You need to inspect the cookies and get the value of the
one named session
. This is your session token you can use with elv
. The session token is valid
for about a month, so remember to get another one, once the old one expires.
If you do not get the session token, you will not be able to interact with Advent of Code API using elv
.
This works only while the event is being held, not all the time of the year.
While the event is not held, you need to specify the year and day of the
challenge explicitly using -y
and -d
parameters.
bash
elv -t <YOUR SESSION TOKEN> desc
You specify the day and the year of the riddle.
```bash
elv -t
```
This works only while the event is being held, not all the time of the year.
While the event is not held, you need to specify the year and day of the
challenge explicitly using -y
and -d
parameters.
bash
elv -t <YOUR SESSION TOKEN> input
You specify the day and the year of the riddle.
```bash
elv -t
```
elv
looks for your token in three places, starting from the first on the below list
and moving to the next one in case it did not found the token already.
elv
with the -t
parameter:```bash
elv -t
elv --token
As a live example:
bash
elv -t 01234567890123456789abcdefghi input
elv
looks for an environmental variable AOC_TOKEN
while searching for your session token. Example:bash
export AOC_TOKEN=0123456789abcdefghi
elv input
Despite the fact we have not provided the value for the --token
parameter,
elv
will pick the value of AOC_TOKEN
and use it as a token.
elv
creates a configuration file in your
home directory.The session token is sent to your http client (usually your browser) as a cookie, when you log into the Advent of Code web page. The easiest way to get the value of a cookie is using your browser's built-in inspection tools. Look for a way to inspect the cookies specific to your browser.