什么是gspread import_csv file_id参数?

时间:2017-04-24 18:25:50

标签: python google-sheets gspread

我正在尝试使用gspread Python package从命令行将CSV数据导入Google表格。

Using this guide,我让一切正常,并且能够读取和写入单元格。

然而,1-by-1更新单元格太慢,所以我现在尝试使用import_csv()方法。 The docs say

  

import_csv(file_id,data)   将数据导入电子表格的第一页。

     

参数:data - CSV数据字符串。

这里没有描述

file_id,我无法弄清楚应该是什么。其他一些方法也使用file_id,对于它们,它被描述为:

  

file_id - 电子表格ID(又名文件ID。)

我不确定我在哪里找到电子表格ID,无论我尝试什么,我都会收到权限错误。由于我能够使用update_cell(),如上所述,我认为我的权限正常,但我使用了错误的file_id

这是简化的代码:

import gspread
from oauth2client.service_account import ServiceAccountCredentials

scope = ['https://spreadsheets.google.com/feeds']
creds = ServiceAccountCredentials.from_json_keyfile_name('client_secret.json', scope)
client = gspread.authorize(creds)
sheet = client.open("SheetTitle").sheet1

# This works fine, so I think permissions etc are all set up correctly
sheet.update_cell(1, 1, 'Foo')

# Now try importing CSV data from a string
csv="""2016, 2017
1,2
3,4
"""

# Does not work
client.import_csv(sheet, csv);

# Using the spreadsheet_id in the URL as described here https://developers.google.com/sheets/api/guides/concepts#spreadsheet_id
client.import_csv('11x...', csv);

# Using the "#gid=0" value in the query string in the browser when looking at this sheet
client.import_csv(0, csv);

这是我得到的错误,不管上面哪一个我尝试:

Traceback (most recent call last):
  File "./simple.py", line 22, in <module>
    client.import_csv(sheet, csv);
  File "/Library/Python/2.7/site-packages/gspread/client.py", line 297, in import_csv
    headers=headers
  File "/Library/Python/2.7/site-packages/gspread/httpsession.py", line 82, in put
    return self.request('PUT', url, params=params, data=data, **kwargs)
  File "/Library/Python/2.7/site-packages/gspread/httpsession.py", line 69, in request
    response.status_code, response.content))
gspread.exceptions.RequestError: (403, '403: {\n "error": {\n  "errors": [\n   {\n    "domain": "global",\n    "reason": "insufficientPermissions",\n    "message": "Insufficient Permission"\n   }\n  ],\n  "code": 403,\n  "message": "Insufficient Permission"\n }\n}\n')

2 个答案:

答案 0 :(得分:7)

https://www.googleapis.com/auth/drive添加到您的scope变量中,它会起作用:

scope=[
    'https://spreadsheets.google.com/feeds',
    'https://www.googleapis.com/auth/drive'
]

您在范围内需要Google云端硬盘的原因是import_csv实际向Google Drive API调用发出了HTTP请求,而不是Google表格API。

答案 1 :(得分:1)

遇到了我自己的问题。虽然已经被作者接受,但让我分享我的2美分。 第一:是的,你需要在你的范围内拥有正确的路径。但要澄清什么是id:

来自gspread API参考: http://gspread.readthedocs.io/en/latest/

模型电子表格有一个id字段。这就是应该用于import_csv(file_id,data)函数的内容。 请注意,有3种不同的型号: - 电子表格 - 工作表 - 细胞。

从您的示例代码中,您实际上是在获取工作表对象。

sheet = client.open("SheetTitle").sheet1

哪个也有id,但我很确定这不起作用。

您需要获取电子表格对象并使用其ID。

sheet = client.open("SheetTitle") client.import_csv(sheet.id, csv);

您可以通过打印来验证ID是否与您用于直接输入的ID相同 print(sheet.id)