An open API service indexing awesome lists of open source software.

https://github.com/zaibacu/csv-delim-converter

Convert CSV delimiters, eg. `;` -> `,`
https://github.com/zaibacu/csv-delim-converter

csv delimiters

Last synced: 7 months ago
JSON representation

Convert CSV delimiters, eg. `;` -> `,`

Awesome Lists containing this project

README

          

# csv-delim-converter
Convert CSV delimiters, eg. `;` -> `,`

Example:
```bash
python -m src.convert input.csv -d1 "," -d2 "\t"
```

It takes `input.csv`, converts it from `,` (csv) to `\t` (tsv) and stores into `input_output.csv`

Custom output file can be set: `--output output.csv`