python (3.12.0)
1 """For when pip wants to check the date or time.
2 """
3
4 import datetime
5
6
7 def today_is_later_than(year: int, month: int, day: int) -> bool:
8 today = datetime.date.today()
9 given = datetime.date(year, month, day)
10
11 return today > given