1CSVLOOK(1)                          csvkit                          CSVLOOK(1)
2
3
4

NAME

6       csvlook - csvlook Documentation
7

DESCRIPTION

9       Renders a CSV to the command line in a Markdown-compatible, fixed-width
10       format:
11
12          usage: csvlook [-h] [-d DELIMITER] [-t] [-q QUOTECHAR] [-u {0,1,2,3}] [-b]
13                         [-p ESCAPECHAR] [-z FIELD_SIZE_LIMIT] [-e ENCODING] [-L LOCALE]
14                         [-S] [--blanks] [--date-format DATE_FORMAT]
15                         [--datetime-format DATETIME_FORMAT] [-H] [-K SKIP_LINES] [-v]
16                         [-l] [--zero] [-V] [--max-rows MAX_ROWS]
17                         [--max-columns MAX_COLUMNS]
18                         [--max-column-width MAX_COLUMN_WIDTH] [-y SNIFF_LIMIT] [-I]
19                         [FILE]
20
21          Render a CSV file in the console as a Markdown-compatible, fixed-width table.
22
23          positional arguments:
24            FILE                  The CSV file to operate on. If omitted, will accept
25                                  input on STDIN.
26
27          optional arguments:
28            -h, --help            show this help message and exit
29            --max-rows MAX_ROWS   The maximum number of rows to display before
30                                  truncating the data.
31            --max-columns MAX_COLUMNS
32                                  The maximum number of columns to display before
33                                  truncating the data.
34            --max-column-width MAX_COLUMN_WIDTH
35                                  Truncate all columns to at most this width. The
36                                  remainder will be replaced with ellipsis.
37            -y SNIFF_LIMIT, --snifflimit SNIFF_LIMIT
38                                  Limit CSV dialect sniffing to the specified number of
39                                  bytes. Specify "0" to disable sniffing entirely.
40            -I, --no-inference    Disable type inference when parsing the input.
41
42       If a table is too wide to display properly try  piping  the  output  to
43       less -S or truncating it using csvcut.
44
45       If the table is too long, try filtering it down with grep or piping the
46       output to less.
47
48       See also: ../common_arguments.
49

EXAMPLES

51       Basic use:
52
53          csvlook examples/testfixed_converted.csv
54
55       This tool is especially useful as a final operation when piping through
56       other tools:
57
58          csvcut -c 9,1 examples/realdata/FY09_EDU_Recipients_by_State.csv | csvlook
59

AUTHOR

61       Christopher Groskopf
62
64       2021, Christopher Groskopf
65
66
67
68
691.0.4                            Jul 23, 2021                       CSVLOOK(1)
Impressum