2017-10-08 10 views
0

への書き込みに問題:PythonのGoogleスプレッドシートで私は<a href="https://developers.google.com/sheets/api/samples/writing" rel="nofollow noreferrer">https://developers.google.com/sheets/api/samples/writing</a>ここで、GoogleのAPIの指示に従うと、このブロックに問題 を持っていますシート

PUT https://sheets.googleapis.com/v4/spreadsheets/spreadsheets/d/\ 
    spreadsheetId/values/sheet1!A1:D5?valueInputOption=USER_ENTERED 
    values = { 
    "range": "'Main'!A1:D5", 
    "majorDimension": "ROWS", 
    "values": [ 
    ["Item", "Cost", "Stocked", "Ship Date"], 
    ["Wheel", "$20.50", "4", "3/1/2016"], #new row 
    ["Door", "$15", "2", "3/15/2016"], 
    ["Engine", "$100", "1", "30/20/2016"], 
    ["Totals", "=SUM(B2:B4)", "=SUM(C2:C4)", "=MAX(D2:D4)"] 
    ], 
} 

which gives PUT https://sheets.googleapis.com/v4/spreadsheets/\ 
spreadsheets/d/spreadsheetId/values/\ 
sheet1!A1:D5?\valueInputOption=USER_ENTERED 
     ^
SyntaxError: invalid syntax 

This is copied directly from the API documentation. Help! What is wrong? 
Thanks. 
+0

これを「PUT ...」にするPythonコードはどこにありますか?それなしでは助けられない。 – glenfant

+0

これはPythonコードではありません。 Python APIを提供する[別のページ](https://developers.google.com/sheets/api/guides/values#writing)があります。 – roganjosh

+0

間違いなくPythonコードです。開始手順については、https://developers.google.com/sheets/api/quickstart/pythonのこちらの指示をご覧ください。 – swatchai

答えて

0

writing guideこれを使用することを示しています:

https://sheets.googleapis.com/v4/spreadsheets/spreadsheetId/values/Sheet1!A1:D5?valueInputOption=USER_ENTERED 

あなたはこれを使用している:

https://sheets.googleapis.com/v4/spreadsheets/spreadsheets/d/\ 
    spreadsheetId/values/sheet1!A1:D5?valueInputOption=USER_ENTERED 

URLが似ていません。あなたのURLに望ましくない'\'文字があります。

関連する問題

 関連する問題