You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have observed that the sheet_append() function does not handle concurrent writes correctly, which can result in issues where concurrent writes overwrite each other's rows. The Google Sheets API v4 already offers method spreadsheets.values.append (ref) with parameter insertDataOption="INSERT_ROWS" to manage concurrent writes effectively (also see here). Since this functionality does not appear to be available in the googlesheets4 package, I would like to formally request the addition of this feature.