使用python覆盖Google工作表中的数据

问题描述 投票:2回答:1

我一直试图写到Google表格,但是我想这样做,但是我不想修改和添加越来越多的数据,而是希望数据被覆盖(在同一位置删除并替换), m使用python,尽管并不重要... R-PI。

# import many libraries
# -*- coding: utf-8 -*-
from __future__ import print_function  
from googleapiclient.discovery import build  
from httplib2 import Http  
from oauth2client import file, client, tools  
from oauth2client.service_account import ServiceAccountCredentials  
#import bme280  
import datetime

# My Spreadsheet ID ... See google documentation on how to derive this
MY_SPREADSHEET_ID = '...............someID.....................'

def update_sheet(sheetname, my_list):  
    """update_sheet method:
       appends a row of a sheet in the spreadsheet with the 
       the latest temperature, pressure and humidity sensor data
    """
    # authentication, authorization step
    SCOPES = 'https://www.googleapis.com/auth/spreadsheets'
    creds = ServiceAccountCredentials.from_json_keyfile_name( 
            'client_secret.json', SCOPES)
    service = build('sheets', 'v4', http=creds.authorize(Http()))

    # Call the Sheets API, append the next row of sensor data
    # values is the array of rows we are updating, its a single row

    values = [ [ str(datetime.datetime.now()), my_list ] ]
    body={'values': my_list}
    result = service.spreadsheets().values().append(
    spreadsheetId=MY_SPREADSHEET_ID,
    range = 'PCEM SHT.1' +'!A2:A7', 
    valueInputOption = 'RAW',
    body=body).execute()

def main():  
    my_list = [['a', 'b'], ['c', 'd'], ['e', 'f'], ['g', 'h']]
    update_sheet("PCEM SHT.1", my_list)

if __name__ == '__main__':  
    main()
python google-sheets-api overwrite
1个回答
0
投票

代替append()中的service.spreadsheets().values().append()方法,请使用update()。更多信息为available in documentation

© www.soinside.com 2019 - 2024. All rights reserved.