In Python how do I find all the missing days in a sorted list of dates?
Put the dates in a set and then iterate from the first date to the last using datetime.timedelta(), checking for containment in the set each time.
set
datetime.timedelta()