def fetch_tsv_data(gid):
base_url = 'https://docs.google.com/spreadsheets/d/' + SHEET_ID + '/export?format=tsv'
url = base_url + '&gid=' + gid
logging.info('GET ' + url)
res = urllib2.urlopen(url)
return res.read()
评论列表
文章目录