Lately when using pydrive from Google Collab like this
!pip install -U -q PyDrive
import os
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
from google.colab import auth
from oauth2client.client import GoogleCredentials
# 1. Authenticate and create the PyDrive client.
auth.authenticate_user()
gauth = GoogleAuth()
gauth.credentials = GoogleCredentials.get_application_default()
drive = GoogleDrive(gauth)
I enter the code and all but after that i started getting ApiRequestError when trying to create file. In the response i see Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.
How do you fix that?