tsv to csv

This commit is contained in:
Michael Herman 2014-10-16 10:35:23 -05:00
parent 648aa0a58f
commit 5631b3cc4c

16
19_tsv-to-csv.py Normal file
View File

@ -0,0 +1,16 @@
import os
import sys
import csv
def convert(input, out):
if os.path.exists(out):
raise ValueError("Output file already exists")
reader = csv.reader(open(input, 'rU'), dialect=csv.excel_tab)
writer = csv.writer(open(out, "wb+"), dialect="excel")
for row in reader:
writer.writerow(row)
if __name__ == "__main__":
convert(sys.argv[1], sys.argv[2])