通过Python gspread从SQL数据库到Google工作表

时间:2018-07-17 19:31:27

标签: python sql google-sheets gspread

我正在尝试使用python和gspread从我的sql表中填充一个已经创建的google工作表。

我可以使用for循环一次更新工作表一行,但是我有很多数据要添加到工作表中,并且希望一次或多于一列。

这是我一直在使用的任何建议,但出现错误:'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)

1 个答案:

答案 0 :(得分:0)

我不确定如何使用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)