Get Advent of Code inputs easily.
Note: You'll need your AoC session cookie to set this up. On the first run, the program will tell you how to get it. Or you can google for a guide.
Examples:
import aoc
# get today's input
input = aoc.get_input()
# get input for a specified day
input = aoc.get_input(day=23)
# get input for a specified day and year
input = aoc.get_input(day=23, year=2023)