def getThreeDaysMaxStockList(self):
'''???????'''
res = getHtmlFromUrl(threeDaysMaxPriceUrl)
companyListObj = getJsonObj(res)
if companyListObj:
list = companyListObj['Results']
cList = []
if list and len(list):
for item in list:
stockInfo = item.split(',')
cinfo = CompanyInfo(stockInfo[1],stockInfo[2])
cList.append(cinfo)
return cList
return None
评论列表
文章目录