Hi, The google python library for spreadsheets allows you to insert a row to a spreasheet using the InsertRow api.
Here is an example: gd_client.InsertRow(myDict, spreadSheetKey, workSheetKey) myDictionary is the dictionary you are inserting, spreadsheetKey is the key for your spreadsheet and worksheetKey is the key for your worksheet. However, I'd like to insert into a specific row in the middle of my spreadsheet. This API only inserts at the end. Is there any way to do this? Thanks.
