insert(tableId, media_body=None, encoding=None, delimiter=None)
Import more rows into a table.
insert(tableId, media_body=None, encoding=None, delimiter=None)
Import more rows into a table.
Args:
tableId: string, The table into which new rows are being imported. (required)
media_body: string, The filename of the media request body, or an instance of a MediaUpload object.
encoding: string, The encoding of the content. Default is UTF-8.
delimiter: string, The delimiter used to separate cell values. Default is ','.
Returns:
An object of the form:
{ # Represents an import request.
"numRowsReceived": "A String", # The number of rows received from the import request.
"kind": "fusiontables#import", # Type name: a template for an import request.
}