Metadata-Version: 2.1
Name: ctable
Version: 0.0.4
Summary: Curses Tables
Home-page: https://github.com/tslight/ctable
Author: Toby Slight
Author-email: tslight@pm.me
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# CURSES TABLES

``` text
usage: ctable [-h] [--columns COLUMNS [COLUMNS ...]] data

Display a typical API json object (a list of dictionaries) in a curses table.

positional arguments:
  data                  json data.

optional arguments:
  -h, --help            show this help message and exit
  --columns COLUMNS [COLUMNS ...], -c COLUMNS [COLUMNS ...]
                        Specify which fields you want to translate into columns.
```

## Keybindings

``` text
j, n, down  : Move down a row.
k, p, up    : Move up a row.
f, d, pgdn  : Move down a page.
b, u, pgup  : Move up a page.
g, <, home  : Go to first row.
G, >, end   : Go to last row.
v, i, enter : View row data.
q, x, escape: Exit.
```


