如何使用python在google电子表格特定单元格中写入?

时间:2018-05-23 09:40:17

标签: python google-sheets google-spreadsheet-api

我正在阅读谷歌电子表格,并希望回写到特定单元格中的同一张表格。以下是我写的代码。

 RANGE_NAME = 'Latest Records!A2:L'
 result = 
 service.spreadsheets().values().get(spreadsheetId=SPREADSHEET_ID, 
 range=RANGE_NAME).execute()
 values = result.get('values', [])

 testurl = (row[1])
    import requests
    from HomebellAutomation.System.Config import myconfig

    testurl= myconfig.URL_webpagetest

    r=requests.get( myconfig.URL_webpagetest + "?url=" + testurl + "&f=xml&k=" + myconfig.apikey_webpagetest )

    xmltxt=r.content

    #print (xmltxt)

    testId = XML (xmltxt).find("data").find('testId')

    print (testId.text)

    test_id = [testId.text]

我想将test_id打印回google spraedsheet,请帮我解决此问题。

0 个答案:

没有答案