google calendar simple api
1.0.0
Google Calendar Simple API (gcsa) は、Google カレンダーでのイベントとカレンダーの管理を簡素化するライブラリです。これは、公式 API 用の Pythonic オブジェクト指向アダプターです。完全なドキュメントを参照してください。
pip インストール gcsa
詳細とインストール オプションについては、「はじめに」ページを参照してください。
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('Breakfast',start=date(2020, 7, 16),recurrence=Recurrence.rule(freq=DAILY) )calendar.add_event(イベント)
提案: beautiful_date を使用して、プロジェクト内に日付と日時のオブジェクトを作成します (それは美しいからです... あなたと同じように)。
setup.py のテンプレートは kennethreitz/setup.py から取得されました。