I am using pygsheets to update and delete data in a Google Sheet. The data is refreshed by using the append_table
function to delete the old data and insert the new data.
Is it possible that two user make the same request at the same time, resulting in a combination of both requests? Or will the API first protect the work sheet and then perform CURD operations on the last request.
Below is my command:
worksheet.append_table(values=sheet_rows, overwrite=True)