我一直在努力尝试将google表格与django集成,我试图使用gspread。我可以使用python filename.py
查看数据,但是当我运行python manage.py runserver
时,我不断收到此错误:
IOError:[Errno 2]没有这样的文件或目录:' key.json'
由于某些原因,我没有认出看到我的json文件,我也尝试过使用' key'没有.json,没有运气。我一直在谷歌上搜索,这里有什么想法吗?这是我的代码
***************************下面的代码****************** *************
import gspread
import json
from oauth2client.service_account import ServiceAccountCredentials
import os
scope = ['https://spreadsheets.google.com/feeds']
credentials = ServiceAccountCredentials.from_json_keyfile_name('key.json', scope)
gc = gspread.authorize(credentials)
wks = gc.open("RAMP - Master").sheet1
print wks
cell_list = wks.range('A1:B7')
print cell_list
答案 0 :(得分:1)
如果V3
与您正在运行的文件位于同一目录中,则正确的语法为:
key.json