I want to find all dates between 2 dates the first date is unique_dates[0] the value of unique_dates[0] is 2021-08-30 and the second date is datetime.date.today()
unique_dates = list({a.date for a in attendances})
date = datetime.date.today()
How to do this ?