Summary:
I'd like to use a Python script to automatically download events from a Google Calendar.
Detail:
I am making a Kindle based Heads-up display. The Kindle runs a python script every hour, and downloads weather and event information from the web. I'd also like it to fetch events for my kids' school. However, they are all on a Google Calendar, and I can't seem to find a way to download the events using Python.
What I have tried so far:
I have tried the example code here: https://developers.google.com/google-apps/calendar/quickstart/python but it needs a client_secret.json file.
I tried the suggested Wizard: https://console.developers.google.com/flows/enableapi?apiid=calendar but this feels like I'm getting into something too deep.
Isn't there just a way to fetch some events from a public calendar? I would even be happy to just copy/paste the text from the Agenda view of the calendar. If my browser can get this data, surely there must be a way.
Added: I am a complete newbie using things like Google Developers APIs, OAuth, etc.