36 lines
950 B
Python
36 lines
950 B
Python
from __future__ import print_function
|
|
|
|
import os.path
|
|
|
|
from google.auth.transport.requests import Request
|
|
from google.oauth2.credentials import Credentials
|
|
from google_auth_oauthlib.flow import InstalledAppFlow
|
|
|
|
SCOPES = [
|
|
'https://www.googleapis.com/auth/calendar.readonly',
|
|
"https://www.googleapis.com/auth/youtube"
|
|
]
|
|
|
|
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 main():
|
|
creds = authorize()
|
|
|
|
if __name__ == '__main__':
|
|
main() |