We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code works when executed in Google Colab. The code is, in fact, copied from one of the official Google Colab tutorials, the one titled External data: Local Files, Drive, Sheets, and Cloud Storage.
from pydrive.auth import GoogleAuth from pydrive.drive import GoogleDrive from google.colab import auth from oauth2client.client import GoogleCredentials auth.authenticate_user() gauth = GoogleAuth() gauth.credentials = GoogleCredentials.get_application_default() drive = GoogleDrive(gauth)
However, when pydrive is replaced by pydrive2 in the above listing, and the code is executed in Google Colab, the following error messages result:
pydrive
pydrive2
--------------------------------------------------------------------------- MessageError Traceback (most recent call last) [<ipython-input-4-3254a9bed9fd>](https://localhost:8080/#) in <cell line: 1>() ----> 1 auth.authenticate_user() 2 gauth = GoogleAuth() 3 gauth.credentials = GoogleCredentials.get_application_default() 4 drive = GoogleDrive(gauth) 2 frames [/usr/local/lib/python3.10/dist-packages/google/colab/_message.py](https://localhost:8080/#) in read_reply_from_input(message_id, timeout_sec) 101 ): 102 if 'error' in reply: --> 103 raise MessageError(reply['error']) 104 return reply.get('data', None) 105 MessageError: Error: credential propagation was unsuccessful
Why doesn't the code work with pydrive2? Can pydrive2 be made to work with this code? If not, is there a simple alternative?
The text was updated successfully, but these errors were encountered:
PTAL here #187
Closing as a duplicate
Sorry, something went wrong.
No branches or pull requests
The following code works when executed in Google Colab. The code is, in fact, copied from one of the official Google Colab tutorials, the one titled External data: Local Files, Drive, Sheets, and Cloud Storage.
However, when
pydrive
is replaced bypydrive2
in the above listing, and the code is executed in Google Colab, the following error messages result:Why doesn't the code work with
pydrive2
? Canpydrive2
be made to work with this code? If not, is there a simple alternative?The text was updated successfully, but these errors were encountered: