从电子表格中读取单个单元格数据

时间:2009-08-10 10:57:57

标签: google-app-engine google-docs

我有电子表格,想要获取(读取)一个单元格数据,通过以下链接,我可以添加行,编辑行,删除行,电子表格列表等。我能够获取所有行信息,但我只想读取单个单元格数据,任何人都可以为我提供语法

我正在使用Python和Google App Engine

http://code.google.com/apis/spreadsheets/docs/1.0/developers_guide_python.html#AuthClientLogin

提前致谢

格利扬

1 个答案:

答案 0 :(得分:1)

You didn't read far enough in the docs.

从链接的示例中稍微修改一下:

query = gdata.spreadsheet.service.CellQuery()
query['min-col'] = '1'
query['max-col'] = '1'
query['min-row'] = '2'
query['max-row'] = '2'
feed = gd_client.GetCellsFeed(key, wksht_id, query=query)

检索第1列第2行中单元格中的数据。