google-calendar-api

Cannot List ALL events for a given day using GCSA

Cannot List ALL events for a given day using GCSA Question: Firstly, new to Python but have 32 years of experience in mainframe programming in z/OS REXX. Surprisingly both are very similar and the learning curve for the basics was small. Having said that the issue I am having is with the GCSA package/library (not …

Total answers: 2

Google Calendar API / Python : I can't delete event

Google Calendar API / Python : I can't delete event Question: when I want to delete an event with a "[email protected]" with this command (below), it’s work with my primary email but not with this "[email protected]": from __future__ import print_function import httplib2 import os from apiclient import discovery from oauth2client import file import oauth2client from …

Total answers: 1

How to return all events on a specific date in Google Calendar API

How to return all events on a specific date in Google Calendar API Question: i am using Python and Google Calendar API to build a calendar. I would like to get all the events that exist on a given date. The date will be given as a string ‘yyyy-mm-dd’. I have created a function that …

Total answers: 1

How to auto refresh Google calendar token in python

How to auto refresh Google calendar token in python Question: I’m using the following script in order to get all today’s events from a specific google calendar. the code works for me. The only thing is that the token expires after ~60 min. How can I make the token refresh automatically? import requests import json …

Total answers: 1

Google Calendar Integration with Django

Google Calendar Integration with Django Question: Is there a fully fledged Django-based example of a Google Calendar integration? I was reading through Google’s example page but their link at the bottom is outdated. I’m specifically struggeling with the refresh token as Google’s examples focus solely on how to get the access token. That’s what I …

Total answers: 5