gmailtest.py 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # Copyright 2018 Google LLC
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. # [START gmail_quickstart]
  15. from __future__ import print_function
  16. import os.path
  17. from google.auth.transport.requests import Request
  18. from google.oauth2.credentials import Credentials
  19. from google_auth_oauthlib.flow import InstalledAppFlow
  20. from googleapiclient.discovery import build
  21. from googleapiclient.errors import HttpError
  22. # If modifying these scopes, delete the file token.json.
  23. SCOPES = ['https://www.googleapis.com/auth/gmail.readonly']
  24. def main():
  25. """Shows basic usage of the Gmail API.
  26. Lists the user's Gmail labels.
  27. """
  28. creds = None
  29. # The file token.json stores the user's access and refresh tokens, and is
  30. # created automatically when the authorization flow completes for the first
  31. # time.
  32. if os.path.exists('token.json'):
  33. creds = Credentials.from_authorized_user_file('token.json', SCOPES)
  34. # If there are no (valid) credentials available, let the user log in.
  35. if not creds or not creds.valid:
  36. if creds and creds.expired and creds.refresh_token:
  37. creds.refresh(Request())
  38. else:
  39. flow = InstalledAppFlow.from_client_secrets_file(
  40. 'c:\\keys\\client_secret_392946835471.json', SCOPES)
  41. creds = flow.run_local_server(port=0)
  42. # Save the credentials for the next run
  43. with open('token.json', 'w') as token:
  44. token.write(creds.to_json())
  45. try:
  46. # Call the Gmail API
  47. service = build('gmail', 'v1', credentials=creds)
  48. results = service.users().labels().list(userId='me').execute()
  49. labels = results.get('labels', [])
  50. if not labels:
  51. print('No labels found.')
  52. return
  53. print('Labels:')
  54. for label in labels:
  55. print(label['name'])
  56. except HttpError as error:
  57. # TODO(developer) - Handle errors from gmail API.
  58. print(f'An error occurred: {error}')
  59. if __name__ == '__main__':
  60. main()
  61. # [END gmail_quickstart]