Created
December 22, 2019 18:16
-
-
Save sergeevyi/d5e7841c9bf0e1c105a59ef9e9b568c8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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