Initial Commit
This commit is contained in:
commit
bbfa4921a7
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
credentials.json
|
62
complex_gcalendar_test.py
Normal file
62
complex_gcalendar_test.py
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import datetime
|
||||||
|
import os.path
|
||||||
|
|
||||||
|
from google.auth.transport.requests import Request
|
||||||
|
from google.oauth2.credentials import Credentials
|
||||||
|
from google_auth_oauthlib.flow import InstalledAppFlow
|
||||||
|
from googleapiclient.discovery import build
|
||||||
|
from googleapiclient.errors import HttpError
|
||||||
|
from pprint import pprint
|
||||||
|
|
||||||
|
SCOPES = ['https://www.googleapis.comd/auth/calendar.readonly']
|
||||||
|
|
||||||
|
def authorize():
|
||||||
|
creds = None
|
||||||
|
|
||||||
|
if os.path.exists('token.json'):
|
||||||
|
creds = Credentials.from_authorized_user_file('token.json', SCOPES)
|
||||||
|
|
||||||
|
if not creds or not creds.valid:
|
||||||
|
if creds and creds.expired and creds.refresh_token:
|
||||||
|
creds.refresh(Request())
|
||||||
|
else:
|
||||||
|
flow = InstalledAppFlow.from_client_secrets_file('credentials.json', SCOPES)
|
||||||
|
creds = flow.run_local_server(port=7384)
|
||||||
|
|
||||||
|
with open('token.json', 'w') as token:
|
||||||
|
token.write(creds.to_json())
|
||||||
|
|
||||||
|
return creds
|
||||||
|
|
||||||
|
def construct_calendar_service(creds):
|
||||||
|
return build('calendar', 'v3', credentials=creds)
|
||||||
|
|
||||||
|
def list_all_calendars(calendar_service):
|
||||||
|
page_token = None
|
||||||
|
list_of_entries = []
|
||||||
|
|
||||||
|
while True:
|
||||||
|
calendar_list = calendar_service.calendarList().list(pageToken=page_token).execute()
|
||||||
|
|
||||||
|
list_of_entries.extend(calendar_list['items'])
|
||||||
|
|
||||||
|
page_token = calendar_list.get('nextPageToken')
|
||||||
|
|
||||||
|
if not page_token:
|
||||||
|
break
|
||||||
|
|
||||||
|
return list_of_entries
|
||||||
|
|
||||||
|
def main():
|
||||||
|
creds = authorize()
|
||||||
|
|
||||||
|
service = construct_calendar_service(creds)
|
||||||
|
|
||||||
|
all_calendars = list_all_calendars(service)
|
||||||
|
|
||||||
|
pprint(all_calendars)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
65
gcalendartest.py
Normal file
65
gcalendartest.py
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
|
import datetime
|
||||||
|
import os.path
|
||||||
|
|
||||||
|
from google.auth.transport.requests import Request
|
||||||
|
from google.oauth2.credentials import Credentials
|
||||||
|
from google_auth_oauthlib.flow import InstalledAppFlow
|
||||||
|
from googleapiclient.discovery import build
|
||||||
|
from googleapiclient.errors import HttpError
|
||||||
|
|
||||||
|
# If modifying these scopes, delete the file token.json.
|
||||||
|
SCOPES = ['https://www.googleapis.com/auth/calendar.readonly']
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""Shows basic usage of the Google Calendar API.
|
||||||
|
Prints the start and name of the next 10 events on the user's calendar.
|
||||||
|
"""
|
||||||
|
creds = None
|
||||||
|
# The file token.json stores the user's access and refresh tokens, and is
|
||||||
|
# created automatically when the authorization flow completes for the first
|
||||||
|
# time.
|
||||||
|
if os.path.exists('token.json'):
|
||||||
|
creds = Credentials.from_authorized_user_file('token.json', SCOPES)
|
||||||
|
# If there are no (valid) credentials available, let the user log in.
|
||||||
|
if not creds or not creds.valid:
|
||||||
|
if creds and creds.expired and creds.refresh_token:
|
||||||
|
creds.refresh(Request())
|
||||||
|
else:
|
||||||
|
flow = InstalledAppFlow.from_client_secrets_file(
|
||||||
|
'credentials.json', SCOPES)
|
||||||
|
creds = flow.run_local_server(port=7384)
|
||||||
|
# Save the credentials for the next run
|
||||||
|
with open('token.json', 'w') as token:
|
||||||
|
token.write(creds.to_json())
|
||||||
|
|
||||||
|
try:
|
||||||
|
service = build('calendar', 'v3', credentials=creds)
|
||||||
|
|
||||||
|
# Call the Calendar API
|
||||||
|
now = datetime.datetime.utcnow().isoformat() + 'Z' # 'Z' indicates UTC time
|
||||||
|
print('Getting the upcoming 10 events')
|
||||||
|
#events_result = service.events().list(calendarId='383d4552e0f7c0b6c26b9c1facaffc4d4fd3de5c1bd98e6dfba21193701eb931@group.calendar.google.com', timeMin=now,
|
||||||
|
# maxResults=10, singleEvents=True,
|
||||||
|
# orderBy='startTime').execute()
|
||||||
|
events_result = service.events().list(calendarId='383d4552e0f7c0b6c26b9c1facaffc4d4fd3de5c1bd98e6dfba21193701eb931@group.calendar.google.com', timeMin=now,
|
||||||
|
maxResults=10, singleEvents=False).execute()
|
||||||
|
events = events_result.get('items', [])
|
||||||
|
|
||||||
|
if not events:
|
||||||
|
print('No upcoming events found.')
|
||||||
|
return
|
||||||
|
|
||||||
|
# Prints the start and name of the next 10 events
|
||||||
|
for event in events:
|
||||||
|
start = event['start'].get('dateTime', event['start'].get('date'))
|
||||||
|
print(start, event['summary'])
|
||||||
|
|
||||||
|
except HttpError as error:
|
||||||
|
print('An error occurred: %s' % error)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
Loading…
Reference in New Issue
Block a user