前提・実現したいこと
pythonでGoogleスプレッドシートを自動化したいです.
手始めに,スプレッドシート内の値を取得したいのですがうまくいきません.
発生している問題・エラーメッセージ
NameError: name 'worksheet' is not defined
該当のソースコード
import gspread import json from oauth2client.service_account import ServiceAccountCredentials scope = ['https://spreadsheets.google.com/feeds', 'https://www.googleapis.com/auth/drive'] #ダウンロードしたjsonファイル名を記入 json_file = '******************.json' #スプレッドシートIDを記入 sheet_id = '***********************' #スプレッドシートのシート名を記入 sheet_name = 'シート1' credentials = ServiceAccountCredentials.from_json_keyfile_name(json_file, scope) gc = gspread.authorize(credentials) sp = gc.open_by_key(sheet_id).worksheet("シート1") print(worksheet.acell("A1").value)
試したこと
原因が全く分からず試せていません
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
Windows10
python3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。