My solutions to https://adventofcode.com/
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
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.