Get all calendar meetings at the date. #1289
Unanswered
ashcycling
asked this question in
Q&A
Replies: 2 comments
-
|
Sorry, I reread documentations and found that I need:
But it returns empty value.
Where is I wrong? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



Uh oh!
There was an error while loading. Please reload this page.
-
Hello
I am trying to get all my calendar's meeting at special date, but I have problems with recurrence meetings.
It is simple to get all non recurrence meetings at 2024-4-1(1 April 2024):

recurce = []
for item in a.calendar.all().only(
"subject",
"start",
"recurrence",
"reminder_due_by",
"categories"
):
if item.start.year == 2024 and item.start.day == 1 and item.start.month == 4:
recurce.append(item)
_ = system('clear')
for item in recurce:
print(item.subject)
I can get all master recurrence meetings, but they have "start" date = "create" date.
My main question is how to get recurrent meeting at 2024-4-1(1 April 2024)? Could you please share parameter for filtering or whole code?
Beta Was this translation helpful? Give feedback.
All reactions