clidb

CLI based SQL client for local data


License
MIT
Install
pip install clidb==0.2.2

Documentation

clidb

screenshot

clidb is a command line sql client for individual data files, allowing these to be queried (even joined) and viewed. It natively supports CSV and parquet formats, with support for other file types available via the optional extras dependency.

Data Formats

The following file types can be opened as views in clidb without extras:

  • csv
  • parquet(.gz)

With pandas installed, the following are also supported:

  • json(l)
  • xls(x)
  • clipboard
  • ...

Usage

This package can be installed with:

pip install "clidb[extras]"

and executed via:

clidb

Arguments

If a filename is supplied as an argument to clidb then it will open the data file as a view.

If a directory or S3 path is supplied then the directory view will open in that location.

For example:

clidb data/iris.csv

or

clidb s3://somebucket/data/

The contents of the clipboard can be converted into a view (e.g. after copying from Google Sheets), using the --clipboard argument:

clidb --clipboard

For some data sources, it can be helpful to render lines that separate rows. This can be enabled via the row-lines option:

clidb --row-lines

Advanced Usage

New views can be created from an opened file. For example if iris.csv was opened as the view iris, then we could create a new view:

create view iris_variety as (select variety, avg("petal.length") from iris group by variety)

create view

Views can be joined together, for example:

select * from iris natural join iris_variety

join