You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the code I'm using.
file_id = '1hOx-rMFm03NXWhBJSojdaSqtXHoJ6izM'
dest_path = './test'
overwrite = True
unzip = True
gdd.download_file_from_google_drive(file_id, dest_path, overwrite, unzip, showsize=True)
The zip file test.zip is created, but unzip does not work due to it not being a valid zip file. Through debugging, I believe this is because the token is not getting set when
token = GoogleDriveDownloader._get_confirm_token(response)
is called. Any ideas on how to fix this?
The text was updated successfully, but these errors were encountered:
This is the code I'm using.
file_id = '1hOx-rMFm03NXWhBJSojdaSqtXHoJ6izM'
dest_path = './test'
overwrite = True
unzip = True
gdd.download_file_from_google_drive(file_id, dest_path, overwrite, unzip, showsize=True)
The zip file test.zip is created, but unzip does not work due to it not being a valid zip file. Through debugging, I believe this is because the token is not getting set when
token = GoogleDriveDownloader._get_confirm_token(response)
is called. Any ideas on how to fix this?
The text was updated successfully, but these errors were encountered: