I am writing a script in Python to add rows into a spreadsheet using gspread.
client = gspread.authorize(creds)
ws = client.open("my spreadsheet").sheet1
...
for xml in for xml in soup.findAll('items'):
item = {
...
}
ws.append_row(item)
This work until I reach around 100 items and then it gives me an error
"error": {
"code": 429,
"message": "Insufficient tokens for quota 'WriteGroup' and limit 'USER-100s' of service 'sheets.googleapis.com' for consumer 'project_number:644051582230'.",
"status": "RESOURCE_EXHAUSTED"
Any ideas on how to write this in a different way to avoid that many requests or a way of not getting this quota limit error?