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
-
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):
![main_py_—_TimeSheet_project](https://private-user-images.githubusercontent.com/110410327/318791943-846f734c-8776-46a9-9dc2-facbf9233332.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0NTAzNjIsIm5iZiI6MTczOTQ1MDA2MiwicGF0aCI6Ii8xMTA0MTAzMjcvMzE4NzkxOTQzLTg0NmY3MzRjLTg3NzYtNDZhOS05ZGMyLWZhY2JmOTIzMzMzMi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjEzJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxM1QxMjM0MjJaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0zMGJjMmIyMzUzMjJhNDc3YjFkYjg4MTFkODVhN2ZiMmQxZTQzNzZmMDkyMzY1ZTJjNzA4YWNlMmNhMjMyODhhJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.S0-NzlRUXiAHl4EvOEU91gdCQJ6yEm-U3O1ThtPk_hA)
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