google calendar simple api
1.0.0
Google Calendar Simple API หรือ gcsa เป็นไลบรารีที่ทำให้การจัดการกิจกรรมและปฏิทินใน Google ปฏิทินง่ายขึ้น มันเป็นอะแดปเตอร์เชิงอ็อบเจ็กต์ Pythonic สำหรับ API อย่างเป็นทางการ ดูเอกสารฉบับเต็ม
pip ติดตั้ง gcsa
ดูหน้าเริ่มต้นใช้งานสำหรับรายละเอียดเพิ่มเติมและตัวเลือกการติดตั้ง
จาก gcsa.google_calendar นำเข้า GoogleCalendarcalendar = GoogleCalendar('[email protected]')สำหรับกิจกรรมในปฏิทิน:print(event)
จาก gcsa.event import Eventevent = Event('The Glass Menagerie',start=datetime(2020, 7, 10, 19, 0),location='Záhřebská 468/21', minutes_before_popup_reminder=15)calendar.add_event(event)
จาก gcsa.recurrence import การเกิดซ้ำ, DAILYevent = Event('Breakfast',start=date(2020, 7, 16),recurrence=Recurrence.rule(freq=DAILY) )calendar.add_event(กิจกรรม)
คำแนะนำ : ใช้ beautiful_date เพื่อสร้างวัตถุ date และ datetime ในโครงการของคุณ ( เพราะมันสวยงาม... เช่นเดียวกับคุณ )
เทมเพลตสำหรับ setup.py นำมาจาก kennethreitz/setup.py