python-scripts/scripts/19_tsv-to-csv.py
2016-12-17 09:22:43 -07:00

17 lines
386 B
Python
Executable File

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])