首页 > 解决方案 > 通过 Python gspread 从 SQL 数据库到 Google 工作表

问题描述

我正在尝试使用 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)

标签: pythonsqlgoogle-sheetsgspread

解决方案


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

推荐阅读