google calendar simple api
1.0.0
Google Calendar Simple API 또는 gcsa는 Google Calendar의 이벤트 및 캘린더 관리를 단순화하는 라이브러리입니다. 공식 API를 위한 Pythonic 객체 지향 어댑터입니다. 전체 문서를 참조하세요.
pip 설치 gcsa
자세한 내용과 설치 옵션은 시작하기 페이지를 참조하세요.
from gcsa.google_calendar import GoogleCalendarcalendar = 캘린더의 일정에 대한 GoogleCalendar('[email protected]'):인쇄(이벤트)
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에서 가져왔습니다.