I have been trying to automate some event creations at the facility I work in. With Google Calendar API
I am creating events and adding attendees.
event = {
'summary': 'testing the calendar api',
'start': {'dateTime': '2020-06-04T23:00:00', 'timeZone': 'x/y'},
'end': {'dateTime': '2020-06-04T23:30:00', 'timeZone': 'x/y'},
'attendees': [{
'email': 'x@y'
}],
'recurrence': ['RRULE:FREQ=WEEKLY;BYDAY=FR,SA;UNTIL=20200615']
}
Here despite me specifying which dates the event occurs, I still get one event on the start date. I want to prevent creating the event on the start date unless it falls into the BYDAY
params. I tried looking for it on here but couldn't figure it out.
Any suggestions?