def getRcommandRankList(self):
'''????????'''
res = getHtmlFromUrl(reommendRankUrl)
companyListObj = getJsonObj(res)
if companyListObj:
list = companyListObj['data']
cList = []
if list and len(list):
for item in list:
li = item.split(',')
info = CompanyRecommandRankInfo(li[1],
li[2],li[5],li[6], li[7])
cList.append(info)
return cList
return None
评论列表
文章目录