1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/csvpy.md

14 lines
306 B
Markdown
Raw Normal View History

2016-01-21 18:04:00 -05:00
# csvpy
> Loads a CSV file into a Python shell.
> Included in csvkit.
2019-06-09 00:05:32 +01:00
> More information: <https://csvkit.readthedocs.io/en/latest/scripts/csvpy.html>.
2016-01-21 18:04:00 -05:00
- Load a CSV file into a `CSVKitReader` object:
2016-01-21 18:04:00 -05:00
`csvpy {{data.csv}}`
- Load a CSV file into a `CSVKitDictReader` object:
2016-01-21 18:04:00 -05:00
`csvpy --dict {{data.csv}}`