pythonで、スプシの操作コードを作成

import gspread
from oauth2client.service_account import ServiceAccountCredentials
from pprint import pprint


#creds .jsonのAPIを使用 


# scopeには、このurlを入れると決まっている#2つのAPIを記述しないとリフレッシュトークンを3600秒毎に発行し続けなければならない
scope = ['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive']


creds = ServiceAccountCredentials.from_json_keyfile_name("creds.json", scope)

client = gspread.authorize(creds)

# スプレットシートファイルの名前
sheet = client.open("python").sheet1

# シートの全てのレコードを取得する
data = sheet.get_all_records()

/Users/nakamura/Downloads/gspread/sps_template.py
# 行を取得
row = sheet.row_values(3)
# 列を取得
col = sheet.col_values(3)
# 列1行2を取得
cell = sheet.cell(1,2).value

# 列3行2をスイルに変換
sheet.update_cell(3,2, "スイル")
# 挿入
insertRow = [3, "murai", "みかんジュース"]
sheet.insert_row(insertRow, 3)

# 表として、出力
pprint(cell)
pprint(row)
pprint(col)

この記事が気に入ったらサポートをしてみませんか?