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. `;` -> `,`
- Host: GitHub
- URL: https://github.com/zaibacu/csv-delim-converter
- Owner: zaibacu
- License: mit
- Created: 2021-05-11T19:03:06.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-11T19:48:08.000Z (about 5 years ago)
- Last Synced: 2025-01-18T10:29:43.118Z (over 1 year ago)
- Topics: csv, delimiters
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`