I'm using read_csv to read a fairly big csv in chunks (just reading the first line to test).
data = read_csv('VOD_Properties.csv', nrows=1, low_memory=False)
print(data)
Result:
PROPERTIES
0 {"video_id":241338,"play_uuid":"0d293b16-566a-...
Original data in excel:
{"video_id":241338,"play_uuid":"0d293b16-566a-46e7-ac90-e3caa602a527","seconds":0.116,"current_state":"PLAY","total_seconds":100.032}
To test if the data's just simply not showing up, I converted into a string:
string_data = data.to_string()
and print the last few characters of the string to see if they're '...':
6-566a-...
I've tried playing around with the parameters but not a single improvement.
Thanks in advance.