windows10のVScodeにてpythonファイルを実行しようとすると下記のようなエラーが発生します。
dataの中身をjson形式で表示させたいのですが、思ったような結果がかえってきません。
原因と解決策をご教示いただけますでしょうか。
python
1import gspread 2from oauth2client.service_account import ServiceAccountCredentials 3scope = ["https://spreadsheets.google.com/feeds", 'https://www.googleapis.com/auth/spreadsheets', "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive"] 4 5creds = ServiceAccountCredentials.from_json_keyfile_name("creds.json", scope) 6 7client = gspread.authorize(creds) 8 9# pythonというタイトルの最初のシートを取得しています。 10sheet = client.open("pythontest").sheet1 11 12# 全ての値を、dataという変数に代入しています。 13data = sheet.get_all_records() 14# dataを出力 15print(data) 16
エラー内容は以下のとおりです。
※python sample.pyはsample.pyが存在するフォルダ内で実行しております。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/24 09:51
2021/01/24 10:08
2021/01/25 05:58
2021/01/25 06:02