try except failsafe for ipo
This commit is contained in:
parent
3ae2e82d44
commit
3563daf9a1
@ -314,27 +314,30 @@ def updateIpo(api_key, logf):
|
||||
|
||||
ipo_list = []
|
||||
|
||||
if len(all_ipo['ipoCalendar']) > 0:
|
||||
for ipo in all_ipo['ipoCalendar']:
|
||||
try:
|
||||
shares = human_format(ipo['numberOfShares'])
|
||||
except:
|
||||
shares = 'N/A'
|
||||
try:
|
||||
sharesvalue = human_format(ipo['totalSharesValue'])
|
||||
except:
|
||||
sharesvalue = 'N/A'
|
||||
try:
|
||||
if len(all_ipo['ipoCalendar']) > 0:
|
||||
for ipo in all_ipo['ipoCalendar']:
|
||||
try:
|
||||
shares = human_format(ipo['numberOfShares'])
|
||||
except:
|
||||
shares = 'N/A'
|
||||
try:
|
||||
sharesvalue = human_format(ipo['totalSharesValue'])
|
||||
except:
|
||||
sharesvalue = 'N/A'
|
||||
|
||||
ipo_list.append({
|
||||
'date':ipo['date'],
|
||||
'name':ipo['name'],
|
||||
'shares':shares,
|
||||
'price':ipo['price'],
|
||||
'status':ipo['status'],
|
||||
'symbol':ipo['symbol'],
|
||||
'sharesvalue':sharesvalue
|
||||
})
|
||||
else:
|
||||
ipo_list.append({
|
||||
'date':ipo['date'],
|
||||
'name':ipo['name'],
|
||||
'shares':shares,
|
||||
'price':ipo['price'],
|
||||
'status':ipo['status'],
|
||||
'symbol':ipo['symbol'],
|
||||
'sharesvalue':sharesvalue
|
||||
})
|
||||
else:
|
||||
ipo_list = ['No Data']
|
||||
except:
|
||||
ipo_list = ['No Data']
|
||||
|
||||
ipo_settings['symbols'] = ipo_list
|
||||
|
Loading…
Reference in New Issue
Block a user