Skip to content

Instantly share code, notes, and snippets.

@sergeevyi
Created December 22, 2019 18:16
Show Gist options
  • Save sergeevyi/d5e7841c9bf0e1c105a59ef9e9b568c8 to your computer and use it in GitHub Desktop.
Save sergeevyi/d5e7841c9bf0e1c105a59ef9e9b568c8 to your computer and use it in GitHub Desktop.
service = build('calendar', 'v3', credentials=creds)
try:
calendar_results = service.calendarList().list(
maxResults=100).execute()
calendars = calendar_results.get('items', [])
for calendar in calendars:
calendar_with_id.append((calendar['id'], calendar['summary']))
print(calendar['id'])
except Exception as exception:
print(exception)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment