├── .gitignore ├── README.md ├── cal_setup.py ├── create_event.py ├── delete_event.py ├── list_calendars.py ├── list_events.py └── update_event.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.json 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenapp/google-calendar-python-api/HEAD/README.md -------------------------------------------------------------------------------- /cal_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenapp/google-calendar-python-api/HEAD/cal_setup.py -------------------------------------------------------------------------------- /create_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenapp/google-calendar-python-api/HEAD/create_event.py -------------------------------------------------------------------------------- /delete_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenapp/google-calendar-python-api/HEAD/delete_event.py -------------------------------------------------------------------------------- /list_calendars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenapp/google-calendar-python-api/HEAD/list_calendars.py -------------------------------------------------------------------------------- /list_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenapp/google-calendar-python-api/HEAD/list_events.py -------------------------------------------------------------------------------- /update_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karenapp/google-calendar-python-api/HEAD/update_event.py --------------------------------------------------------------------------------