From a4c759c029d30c8716ec2a4a98fa73b745cbe446 Mon Sep 17 00:00:00 2001 From: Aarush Gupta <51494575+ag2718@users.noreply.github.com> Date: Thu, 26 Dec 2019 18:32:08 -0500 Subject: [PATCH] Change apiclient.discovery to googleapiclient.discovery Since the Google Drive API release a new update, the module apiclient has been changed to googleapiclient. Therefore, the import statement must be changed. --- pydrive/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pydrive/auth.py b/pydrive/auth.py index e0b7e58..8b604ee 100644 --- a/pydrive/auth.py +++ b/pydrive/auth.py @@ -4,7 +4,7 @@ import oauth2client.clientsecrets as clientsecrets from six.moves import input -from apiclient.discovery import build +from googleapiclient.discovery import build from functools import wraps from oauth2client.service_account import ServiceAccountCredentials from oauth2client.client import FlowExchangeError