python-scripts/scripts/19_tsv-to-csv.py

17 lines
386 B
Python
Raw Normal View History

2014-10-16 17:35:23 +02:00
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])