Skip to content

tcarreira/adventofcode

Repository files navigation

Before starting

git submodule update --init --remote  # fetch and init submodules
python3 -m virtualenv .venv
. .venv/bin/activate
pip install -r requirements.txt -r aoc-to-markdown/requirements.txt
echo "SESSION_ID=<session cookie>" > .env

Start a new problem

You may automatically fetch the data with:

./start_aoc_day.py

and refresh the README.md, after completing part 1, with:

./start_aoc_day.py last

You may use other arguments. For more information type ./start_aoc_day.py -h or visit aoc-to-markdown repository.