I have been using gspread
with no problem for a while. I recently went over 50000
cells when updating to Google sheets. I'm getting a
File "build\bdist.win32\egg\gspread\httpsession.py", line 81, in request
raise HTTPError(response)
HTTPError
Did it take so long to update that the connection timed out?
My cell range to update is A1:CL560
. I sliced the output to just under 50000
cells and it the code worked fine.
the code I'm using is just what is referenced on github:
cell_list = worksheet.range('A1:C7')
for cell in cell_list:
cell.value = 'O_o'
# Update in batch
worksheet.update_cells(cell_list)
everything seems to be fine under 50000
cells. Not sure what to do.
This is the error: error: [Errno 10054] An existing connection was forcibly closed by the remote host
I've tried to keep the connection alive, still doesn't work.