Location for storing output from: https://adventofcode.com/
# create venv in dir
python -m venv advent
#activate
source advent/Scripts/activate
# install stuff once activated
pip install -r requirements.txt
pip install ipykernel
pip install jupyter
python -m ipykernel install --user --name=advent
jupyter notebookAttempting to hold myself accountable to unit testing. I am just storing tests within specific day's challenge folder. Once pytest is installed testing is pretty easy:
# basic test
python -m pytest test_day01.py
# below could be used to help with
python -m pytest test_day01.py -x -v