mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
20 lines
470 B
Markdown
20 lines
470 B
Markdown
# Pretty CSV
|
|
|
|
This script pretty-prints CSV input into a table output for easier readibility. The script reads from stdin and writes into stdout for pipe compatibility.
|
|
|
|
## Examples
|
|
Read from local file
|
|
```sh
|
|
python3 pretty-csv.py < csv-file.csv
|
|
```
|
|
|
|
Read from `curl`
|
|
```sh
|
|
curl -fsSL https://people.sc.fsu.edu/~jburkardt/data/csv/cities.csv | python3 pretty-csv.py
|
|
```
|
|
|
|
Pipe to `less` for better navigation
|
|
```sh
|
|
python3 pretty-csv.py < long-csv-file.csv | less -S
|
|
```
|