You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there are three columns in particular that are trouble , I just made a small change to get around opening the file in csv although all columns could do this in case more of the json columns are added.
try:
if key == 'executed_notional' or key == 'last_trail_price' or key == 'dollar_based_amount' or key == 'total_notional':
csv += "\""+str(fields[row][key])+"\""
else:
csv += str(fields[row][key])
except:
csv += ""
Not an issue with code but How do I correctly open/import the csv file in excel the data is skewed due to json in the data which is also a csv data.
The text was updated successfully, but these errors were encountered: