Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 523 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 523 Bytes

GCalManager

GCalManager is NOT a good Google Calendar API Python implementation.

Example code

from gcalmanager import GCalManager

calendar_id = "c_6qimrdfv0qrf@group.calendar.google.com" # not an actual calendar id just an example

gcal = GCalManager(calendar_id)
gcal.create_event("Test event name", "Test description", "12:00", "17:00", "2022-12-01")

Features

  • Get next events
  • Get event
  • Create event
  • Create event based on text
  • Update event
  • Delete event
  • Move event to another calendar