I have an rruleset()
that contains a base rrule:
rset = rruleset()
rset.rrule(rrule(SECONDLY, dtstart=start_date, interval=duration, until=end_date))
I would like to exclude a range of datetimes from this set.
For example: I want to exclude any occurrences of Mondays from 3:00pm to 9:00pm, is this possible with the rrule implementation or will I need to create a function to accomplish this?