从 SQL 数据库到 Google sheet 通过 Python gspread
From SQL Database to Google sheet via Python gspread
我正在尝试使用 python 和 gspread 从我的 sql table 填充已创建的 google sheet。
我可以使用 for 循环一次更新 sheet 一行,但是我有很多数据要添加到 sheet 并且想一次做一列或者如果可能的话更多。
这里的任何建议都是我一直在使用的,但我收到一个错误: 'Row' 类型的对象不是 JSON 可序列化的
#!/usr/bin/python3
import gspread
from oauth2client.service_account import ServiceAccountCredentials
import dbconnect
#credentials for google
gc = gspread.authorize(credentials)
worksheet = gc.open('NAMEOFWS').sheet1
cell_list = worksheet.range('A2:A86')
#connect to database using dbconnect and grab cursor
query = "select loc from table"
cursor.execute(query)
results = cursor.fetchall()
cell_values = (results)
for i, val in enumerate(cell_values):
cell_list[i].value = val
worksheet.update_cells(cell_list)
我不确定如何使用 gspread 执行此操作,但您可以非常轻松地修改代码并使用 pygsheets,它允许一次更新所有列。此外,我不确定您的数据是什么样的,因此可能需要更改以下内容,或者您可能需要稍微更改您的数据集。希望这有帮助。
import pygsheets
gc = pygsheets.authorize(service_file = 'client_secret2.json')
# Open spreadsheet and select worksheet
sh = gc.open('Api_Test')
wks = sh.sheet1
#update Column
notes = [1,2,3,4] #this is the dataset to getupdated in the column
wks.update_col(4, notes, 1)# 4 is the number of column, notes is the dataset to update, 1 skips the first row (I used a header)
我正在尝试使用 python 和 gspread 从我的 sql table 填充已创建的 google sheet。
我可以使用 for 循环一次更新 sheet 一行,但是我有很多数据要添加到 sheet 并且想一次做一列或者如果可能的话更多。
这里的任何建议都是我一直在使用的,但我收到一个错误: 'Row' 类型的对象不是 JSON 可序列化的
#!/usr/bin/python3
import gspread
from oauth2client.service_account import ServiceAccountCredentials
import dbconnect
#credentials for google
gc = gspread.authorize(credentials)
worksheet = gc.open('NAMEOFWS').sheet1
cell_list = worksheet.range('A2:A86')
#connect to database using dbconnect and grab cursor
query = "select loc from table"
cursor.execute(query)
results = cursor.fetchall()
cell_values = (results)
for i, val in enumerate(cell_values):
cell_list[i].value = val
worksheet.update_cells(cell_list)
我不确定如何使用 gspread 执行此操作,但您可以非常轻松地修改代码并使用 pygsheets,它允许一次更新所有列。此外,我不确定您的数据是什么样的,因此可能需要更改以下内容,或者您可能需要稍微更改您的数据集。希望这有帮助。
import pygsheets
gc = pygsheets.authorize(service_file = 'client_secret2.json')
# Open spreadsheet and select worksheet
sh = gc.open('Api_Test')
wks = sh.sheet1
#update Column
notes = [1,2,3,4] #this is the dataset to getupdated in the column
wks.update_col(4, notes, 1)# 4 is the number of column, notes is the dataset to update, 1 skips the first row (I used a header)