Gspread - does .cell (1,1) make an HTTP request?
1 answer
Yes, it sheet.cell(1, 1)
makes another HTTP request . This is by design: gspread is a thin API wrapper and leaves data caching to the end user.
However, if you are changing multiple cell values, consider batching updates with Worksheet.update_cells
.
+1
source to share