_csv.Error: field larger than field limit (131072) how to ignore more code example
Example: _csv.Error: field larger than field limit (131072)
#your .csv file ist too big, increase the max file size
import sys
import csv
csv.field_size_limit(sys.maxsize)