Yearly Goal Sheet is a short python script that generates an A4 size calendar image for a given year. It's intended to be used for following a single goal throughout the year by checking off each day.
The main code was developed in a notebook but it's also exported & adjusted into a script.
python sheet_generator.py -t "This is my Goal"
It also works for couples who want to work on the same goal.
python sheet_generator.py -t "This is our Goal" -y 2024 -p 2 -i "TL" -c "#7e3a91"
-t, --title, Title of the Goal, required=True, type=str
-y, --year, Year of the Goal, default=datetime.today().year, type=int
-p, --people, Number of People (1 or 2), default=1, type=int
-i, --initials, Initials of the two people. String of length 2., default=None, type=str
-c, --color, Color of the Sheet (Dark), default='#2c5c74', type=str
A single person wants to follow his/her's goal.
A couple Tom and Lisa want to follow their goal.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.