Skip to content

Instantly share code, notes, and snippets.

@prateek
Forked from gwenshap/cleancsv.py
Created March 17, 2014 00:40
Show Gist options
  • Save prateek/9592017 to your computer and use it in GitHub Desktop.
Save prateek/9592017 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import csv
import sys
import argparse
import io
csv.field_size_limit(sys.maxsize)
parser = argparse.ArgumentParser(description='Clean csv of in-line newlines')
parser.add_argument('infile',help='Path to input CSV file');
parser.add_argument('outfile',help='Path to output CSV file');
args = parser.parse_args();
inf = file(args.infile,'r')
outf = file(args.outfile,'w')
try:
reader = csv.reader(inf)
writer = csv.writer(outf)
for row in reader:
newrow = [col.replace('\r\n', '##').replace('\n','##') for col in row]
writer.writerow(newrow)
finally:
inf.close()
outf.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment