User rate limit exceeded after a few requests
I am using Google Drive API through pydrive to move files between two google drive accounts. I have been testing with a folder with 16 files. My code always raises an error in the sixth file "User rate limit exceeded"> I know that there is a limit for the number of request (10/s or 1000/100s), but I have tried the exponential backoff suggested by the Google Drive API to handle this error. Even after 248s it still raises the same error. Here an example what I am doing def MoveToFolder(self,files,folder_id,drive): total_files = len(files) for cont in range(total_files): success = False n=0 while