2023-06-14 15:57:12 +00:00
|
|
|
|
2023-09-05 15:50:38 +00:00
|
|
|
"""
|
|
|
|
Reading Material:
|
|
|
|
|
|
|
|
https://developers.google.com/calendar/api/quickstart/python
|
|
|
|
https://git.imsam.ca/sam/ThermalTodos/src/branch/main/application/sync_calendar.py (readonly application of previous link)
|
2023-09-06 15:39:44 +00:00
|
|
|
|
|
|
|
Choice:
|
|
|
|
|
2023-09-07 00:25:18 +00:00
|
|
|
* Google Calendar or iCloud or both
|
|
|
|
* Both would be more work, but would allow for more flexibility
|
2023-09-05 15:50:38 +00:00
|
|
|
"""
|
2023-06-14 15:57:12 +00:00
|
|
|
|
2023-09-05 18:37:21 +00:00
|
|
|
from skills.skill import Skill
|
|
|
|
|
|
|
|
class Cal(Skill):
|
2023-06-14 15:57:12 +00:00
|
|
|
def __init__(self):
|
|
|
|
self.trigger_phrase = "calendar"
|