AoC2019 is a python package implementing solutions python solutions for the
Advent of Code 2019 problems.
To solve a specific day, you can use solve, passing in the input file for
the current day using poetry.
poetry run aoc2019 solve inputs/day01.txtOr pass in multiple days to solve multiple inputs.
poetry run aoc2019 solve inputs/*You can automatically download the input for a given day by setting your
session cookie in an environment variable (or in a .session.txt text file
in the working directory).
export AOC_SESSION=[your session]Then using the input command to get today's input:
poetry run aoc2019 input