使用python gdata批量更新特定的Google电子表格单元格

时间:2013-09-29 20:30:10

标签: python google-sheets gdata google-spreadsheet-api batch-updates

我找到了一些关于使用python gdata库一次更新几个单元格的信息here

但是,示例代码引用基于单个索引的单元格,例如仅更新电子表格的第一个条目:

batchRequest = gdata.spreadsheet.SpreadsheetsCellsFeed()
cells.entry[0].cell.inputValue = 'x'
batchRequest.AddUpdate(cells.entry[0])

假设我想要知道其位置的特定单元格,例如R1C3R2C2。我该怎么做呢?换句话说,如何用cells.entry[0]替换访问特定的行和列?

This related answer很有希望,除了所有的链接都已经死了。

0 个答案:

没有答案