gspread icon indicating copy to clipboard operation
gspread copied to clipboard

Added `set_records` and `set_record` to update sheet via records.[Issue #677]

Open muddi900 opened this issue 1 year ago • 1 comments

Fixes #677

muddi900 avatar Jul 21 '24 13:07 muddi900

thanks for the implementation!

I find the test hard to parse, would it be possible to write it with very explicit objects? e.g.,

table_before = [
  ["header 1", "header 2"]
  ["value 1",  "value 2"]
]
table_after = [
  ["header 1",    "header 2"]
  ["value 1",     "value 2"]
  ["new value 1", "new value 2"]
]

alifeee avatar Jul 23 '24 14:07 alifeee