My solutions to the puzzles in Advent of Code.
Make a virtualenv
python -m venv .venv
source .venv/bin/activate.fish # For fish shellInstall the package into the virtualenv
pip install -e .With the package installed and the venv active, use the aoc script.
aoc [--date YYYY-MM-DD] [--part PART] [--debug]Args
--date YYYY-MM-DDthe date of a puzzle to run. If omitted, use today's date.--part PARTcan be 1 or 2. If omitted run both.--debugturn on debug logs. If omitted INFO level log messages are printed with no special format