I am attempting to read the following csv
so I can process it further but I am getting an pandas.errors.ParserError
. I would really appreciate any help on how I can read it. Can you help me identify what I am doing wrong?
My code:
import pandas as pd
logic_df = pd.read_csv("http://www.sharecsv.com/s/6c1b912f54d87d45f4728f8fb1510a5eb/random.csv")
I am not sure if there is something wrong with my csv
because I used csv
lint and it said my csv
is fine so I am not sure what the issue is.
I also tried to do the following
logic_df = pd.read_csv("http://www.sharecsv.com/s/6cb912f54d87d45f4728f81fb1510a5eb/random.csv", error_bad_lines=False)
with no luck.