pythonからスプレッドシート入出力を行う。
DriveのAPI設定をhttps://gcbgarden.com/2018/04/04/python-spreadsheet/ または https://gcbgarden.com/2018/04/04/python-spreadsheet/ または Quitaを基に進めていて、jsonファイルを秘密鍵としてもらい、その後、
credentials = ServiceAccountCredentials.from_json_keyfile_name('ダウンロードしたJSONファイル名.json', scope)
の部分で起動しなくなりました、jsonファイル名をどのようにしたら、または、どのように配置したら、エラー回避できるか分かりません。 そもそも秘密鍵はどこにあるんですか
```python
import gspread
import json
from oauth2client.service_account import ServiceAccountCredentials
credentials = ServiceAccountCredentials.from_json_keyfile_name('(省略).json', scope)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\a.sakata\Anaconda3\lib\site-packages\oauth2client\service_account.py", line 219, in from_json_keyfile_name
with open(filename, 'r') as file_obj:
FileNotFoundError: [Errno 2] No such file or directory: '(省略).json'