def csvComment():
'Module for data to be fetched and parsed into csv'
print 'started'
with open('sorted.txt', 'r') as f:
for line in f:
line = line.strip('\n')
durl='http://fisheye.com/cru/'+line+'/reviewHistory.csv'
print durl
testfile = urllib.URLopener()
testfile.retrieve('http://fisheye.com/cru/'+line+'/reviewHistory.csv', line+'.csv')
评论列表
文章目录