Google Spreadsheet Python API读取特定列

时间:2014-11-05 15:19:56

标签: google-sheets-api google-api-python-client

我有两个关于谷歌电子表格使用python的api的问题。我的Google电子表格如下:

a b 2 1 2 3 3

5 6

当我运行下面的脚本时,我只得到

root@darkbox:~/google_py# python test.py
1
2
3
4

我只想获得第1列,所以我想看看
1
3

我的第二个问题是考虑行之间有空格我的脚本没有得到第二部分(在这种情况下它应该是5)
如何获取指定的列并忽略空格?

#!/usr/bin/env python
import gdata.docs
import gdata.docs.service
import gdata.spreadsheet.service
import re, os

email = 'xxxx@gmail.com'
password = 'passw0rd'
spreadsheet_key = '14cT5KKKWzup1jK0vc-TyZt6BBwSIyazZz0sA_x0M1Bg' # key param
worksheet_id = 'od6' # default
#doc_name = 'python_test'
def main():
    client = gdata.spreadsheet.service.SpreadsheetsService()
    client.debug = False
    client.email = email
    client.password = password
    client.source = 'test client'
    client.ProgrammaticLogin()

    q = gdata.spreadsheet.service.DocumentQuery()
    feed = client.GetSpreadsheetsFeed(query=q)
    feed = client.GetWorksheetsFeed(spreadsheet_key)
    rows = client.GetListFeed(spreadsheet_key,worksheet_id).entry

    for row in rows:
       for key in row.custom:
         print "%s" % (row.custom[key].text)
    return
if __name__ == '__main__':
    main()

1 个答案:

答案 0 :(得分:0)

忽略空格: 建议你切换到CellFeed - 我认为列表提要在点击空白时停止读取。对不起,我忘记了细节。但是我很久以前就放弃了List feed并切换到了cellfeed。