python でのスプレッドシートでの軽い使い方

すごく軽くまとめ

#決まり文句みたいなやつ
scope = ['https://spreadsheets.google.com/feeds']
path = os.path.expanduser("json ファイルの絶対パス")
credentials = ServiceAccountCredentials.from_json_keyfile_name(path, scope)
client = gspread.authorize(credentials)
gfile = client.open_by_url('hogehoge')

#シート名を指定してそのオブジェクトを取得
worksheet = gfile.worksheet(select_worksheet_uni)
#1行目の内容を全部取得
value_row = worksheet.row_values(1)
#1列目の内容を全部取得
value_col = worksheet.col_values(1)
#1行目 の結果という項目が何列目にあるかを取得
index_item = value_row.index('結果')