I have a CSV file that have this line:
"Venta presencial",53232907737,"[{"was_pin":false,"pin_validation":"pin_not_validated","integration":"none","is_fallback":false}]"
When I read the file with read_csv
:
df = pd.read_csv(filename,encoding='utf-8')
I expect 3 columns, but I receive 6 columns
I need to ignore the separator "," when its inside of double quotes.