def init_csv_reader():
# Hack
csv_max = sys.maxsize
overflow = True
while overflow:
overflow = False
try:
csv.field_size_limit(csv_max)
except OverflowError:
overflow = True
csv_max = int(csv_max/16)