gumol
gumol

Reputation: 117

How to export a schedule to Google Calendar?

I'm writing an app in Django, I would like to be able to allow users to export an event schedule to Google Calendar.

I was thinking about exporting the schedule to an iCal file, but I would have to use some unpopular third party libraries, which sounds like a lot of trouble. Does Django have a functionality like that?

Upvotes: 0

Views: 279

Answers (1)

Ron
Ron

Reputation: 6551

You can export it as CSV, much easier, and Google calendar supports it as Import format

Upvotes: 1

Related Questions