youtube-analytics-api

In python, is there any way I can store a 'Resource' object so I can use it later?

In python, is there any way I can store a 'Resource' object so I can use it later? Question: I am writing a program about the YouTube API flow = google_auth_oauthlib.flow.InstalledAppFlow.from_client_secrets_file(client_secrets_file, scopes) credentials = flow.run_console() youtube_analytics = googleapiclient.discovery.build("youtubeAnalytics", "v2", credentials=credentials) Finally it will return a ‘Resource’ object, can I store this object? So that I …

Total answers: 2