我正在python中使用gspread包。
我尝试将csv导入到Google电子表格中,但是出现错误。
我的代码如下:
import gspread
from oauth2client.service_account import ServiceAccountCredentials
spreadsheet_id = '1tFhK2-zebkG1fZFF6Xe5LHyONkh97ANOkcf'
scopes = [
'https://spreadsheets.google.com/feeds',
'https://www.googleapis.com/auth/drive'
]
creds = ServiceAccountCredentials.from_json_keyfile_name('./credentials.json', scopes=scopes)
client = gspread.authorize(creds)
file = open('test_csv.csv',mode='r')
csv = file.read()
file.close()
client.import_csv(spreadsheet_id, csv)
我得到的错误是:
---------------------------------------------------------------------------
APIError Traceback (most recent call last)
<ipython-input-264-eb5d4ce7bc69> in <module>()
----> 1 client.import_csv(spreadsheet_id, csv)
~/anaconda3/lib/python3.6/site-packages/gspread/client.py in import_csv(self, file_id, data)
238 'convert': True
239 },
--> 240 headers=headers
241 )
242
~/anaconda3/lib/python3.6/site-packages/gspread/client.py in request(self, method, endpoint, params, data, json, files, headers)
77 return response
78 else:
---> 79 raise APIError(response)
80
81 def list_spreadsheet_files(self):
APIError: {
"error": {
"errors": [
{
"domain": "global",
"reason": "notFound",
"message": "File not found: 1tFhK2-zebkG1fZFF6Xe5LHyONkh97ANOkcf",
"locationType": "other",
"location": "file"
}
],
"code": 404,
"message": "File not found: 1tFhK2-zebkG1fZFF6Xe5LHyONkh97ANOkcf"
}
}
但是,当我尝试直接在单元格上进行读写时(例如,使用update_cell
函数),我没有出现任何错误,因此电子表格确实存在并且可以在其上书写。尤其是import_csv
会引发错误。
我已经通过Google Drive Web界面创建了Google工作表。然后,我将来自credential.json(blabla@blabla-220209.iam.gserviceaccount.com)的client_email添加到电子表格的授权邮件中。
有什么建议吗?
答案 0 :(得分:0)
我通过与凭据JSON文件中的“ client_email”共享文件来解决此问题。尽管我没有对此进行测试,但我也怀疑将电子表格设为“公开”(网络上的任何人都可以看到)将解决此问题。
干杯!
答案 1 :(得分:0)
通过转到工作表并将共享选项更改为具有 链接可以对其进行编辑,修复。
这是我使用的代码:
import gspread
from oauth2client.service_account import ServiceAccountCredentials
scope = ["(some scopes)"]
creds = ServiceAccountCredentials.from_json_keyfile_name("creds.json", scope)
gc = gspread.service_account("creds.json", scope)
client = gspread.authorize(creds)
sLink = "(link)"
sh = gc.open_by_url(sLink)
sh.share('<example.email.com>', perm_type='user', role='writer')
答案 2 :(得分:0)
确保您使用的是最新版本的 gspread。那个是例如与 Google Colab 捆绑已过时:
!pip install --upgrade gspread
这为我修复了 gs.csv_import
中的错误。