You are tasked with creating a scheduling tool for recurring events. The tool should process a list of events, each defined by a name, a start date, and a recurrence pattern (which can be daily, weekly, or monthly). Given a date range defined by a start date and an end date, your tool should output all occurrences of these events that fall within the range.
Input:
A list of events, where each event is an object with the following fields:
name
: a string representing the event's namestart_date
: a string in ISO format (YYYY-MM-DD) indicating when the event first occursrecurrence
: a string that is either daily
, weekly
, or monthly
Two dates (range_start
and range_end
) defining the window of time for which to compute event occurrences. The dates are provided in ISO format (YYYY-MM-DD).
Output:
name
: the name of the eventdate
: the date on which the event occurs (in YYYY-MM-DD format)Requirements:
Implement your solution in the programming language of your choice. Ensure that your code is well-organized and easily testable, as this tool could be used as a backend component in a larger scheduling application.