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)calend.
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