views:

16

answers:

1

I want the easiest and simplest way to push events into user's Google Calendars from Python Django. I don't want to read their events or do anything else, just push the events they create in my application to their Google calendar once.

Secondary is to possibly delete events in their google calendar (if the event I push into it is deleted).

+1  A: 

Use the Google Calendar Data API. http://code.google.com/apis/calendar/data/1.0/developers_guide_python.html#CreatingEvents

Matt Caldwell