I'm trying to change color of cells in my google sheet through api, and it just takes wayyyyy to long to do it (after 10 minutes of a single cell i/my laptop gave up).
google_worksheet.cell(column + str(j)).color = color_orange
the column is 'A' 'B' ex, j is the row number, and color_orange is a tuple (1, 0.6235294117, 0, 1).
it just freeze over this line for couple of minutes untill it gives up.... (disconnect from the network).
Does someone know a better way to update cell's (/row's would be even better) color? or why doesn't it work?