I am creating my own .ics parser.
I am using icalendar python module. It works great but I would like to get list of datetimes for events which have RRULE set.
I have starting date as datetime object instance and RRULE parsed like this:
CaselessDict({'FREQ': ['MONTHLY'], 'INTERVAL': [1], 'BYDAY': ['4TH']})
But I cannot figure out how to make a list of datetimes from these two things.
Thank you