Django无法识别或看到JSON文件

时间:2017-02-28 22:33:25

标签: python json django

我一直在努力尝试将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

1 个答案:

答案 0 :(得分:1)

如果V3与您正在运行的文件位于同一目录中,则正确的语法为:

key.json