3

有没有人使用过融合表 API 中的 importRows() 函数?作为下面的 API 参考, https://developers.google.com/fusiontables/docs/v1/reference/table/importRows 我必须在请求正文中提供 CSV 数据。但是我应该为 html 正文做些什么呢?

我的代码:

http = getAuthorizedHttp()

DISCOVERYURL = 'https://www.googleapis.com/discovery/v1/apis/{api}/{apiVersion}/rest'

ftable = build('fusiontables', 'v1', discoveryServiceUrl=DISCOVERYURL, http=http)

body = create_ft(CSVFILE,"title here")   # the function to load csv file and create the table with columns from csv file.
result = ftable.table().insert(body=body).execute()
print result["tableId"]   # good, I have got the id for new created table

# I have no idea how to go on here..
f = ftable.table().importRows(tableId=result["tableId"])
f.body = ?????????????
f.execute()
4

2 回答 2

1

我终于解决了我的问题,我的代码可以在以下链接中找到。 https://github.com/childnotfound/parser/blob/master/uploader.py

于 2012-12-28T16:35:45.533 回答
1

我解决了这样的问题:

media = http.MediaFileUpload('example.csv',  mimetype='application/octet-stream', resumable=True)
request = service.table().importRows(media_body=media, tableId='1cowubQ0vj_H9q3owo1vLM_gMyavvbuoNmRQaYiZV').execute()
于 2016-07-03T07:00:24.513 回答