Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
5.1k views
in Technique[技术] by (71.8m points)

google sheets - Python gspread - Requested writing within range, but tried writing to row [x]

Here is the problematic line of code:

   master_wk.update('A' + str(master_index) + ':' + 'G' + str(master_index), [[1], [2], [3], [4], [5], [6]])

where master_index is some integer and master_wk is the spreadsheet

And here is the error:

gspread.exceptions.APIError: {'code': 400, 'message': 'Requested writing within range [Input!A7:G7], but tried writing to row [8]', 'status': 'INVALID_ARGUMENT'}

I'm not sure what is causing it. I looked up other answers and they seemed to be an issue with columns, but I'm dealing with rows here. Any ideas?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Fixed it. Instead of writing [[1], [2], [3], [4], [5], [6]], I should have written [[1, 2, 3, 4, 5, 6]]. This inserts all on the same row whereas the previous code tried to insert 6 separate rows . Its funny how the second I post my own question I figure it out ))


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...