google calendar simple api
1.0.0
Google Calendar Simple API 或 gcsa 是一个简化 Google 日历中的事件和日历管理的库。它是官方 API 的 Pythonic 面向对象适配器。请参阅完整文档。
pip 安装 gcsa
有关更多详细信息和安装选项,请参阅入门页面。
from gcsa.google_calendar import GoogleCalendarcalendar = GoogleCalendar('[email protected]')对于日历中的事件:print(event)
from gcsa.event import Eventevent = Event('玻璃动物园',start=datetime(2020, 7, 10, 19, 0),location='Záhřebská 468/21',minutes_before_popup_reminder=15)calendar.add_event(event)
from gcsa.recurrence import Recurrence, DAILYevent = Event('早餐',start=date(2020, 7, 16),recurrence=Recurrence.rule(freq=DAILY) )calendar.add_event(事件)
建议:使用 beautiful_date 在您的项目中创建日期和日期时间对象(因为它很漂亮......就像您一样)。
setup.py 的模板取自 kennethreitz/setup.py