wireservice / csvkit

A suite of utilities for converting to and working with CSV, the king of tabular file formats.
https://csvkit.readthedocs.io
MIT License
5.96k stars 607 forks source link

Change the comma in in2csv to something else #226

Closed Enchufadoo closed 10 years ago

Enchufadoo commented 10 years ago

Hello, I'm converting a xls file to csv but I can't change the comma that separates the fields to something else, I tried.

python in2csv.py -d ; padron.xls > conv.csv

and without the -d parameter

Am I doing something wrong?

Thank you in advance.

onyxfish commented 10 years ago

The csvkit utilities don't support altering the output format. They only output "standard" CSV to maximize compatibility. There is some discussion of creating a special util for outputting other formats on this ticket:

https://github.com/onyxfish/csvkit/pull/220