I got a comma separated csv file from Scopus. Each row of the file has such a structure:
"A, B, C,D","1111;2222;3333;4444;","A,B,C",1111,"ABCDE","XYZ",,,"338","347",,,"11.10000/111-2-642-35236-2_34",Conference Paper,,Scopus,2-s2.0-1243213123
Although it is comma separated, in some fields (like the first one) there are internal commas which raise error when I use pandas.DataFrame.from_csv
as pandas cannot distinguish separator commas and non-separator commas. Is there any way that I can load such a csv file into a dataframe?