Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
litecli/ | H | 15-Mar-2021 | - | 4,247 | 3,274 | |
litecli.egg-info/ | H | 03-May-2022 | - | 80 | 58 | |
tests/ | H | 03-May-2022 | - | 2,363 | 1,833 | |
CHANGELOG.md | H A D | 15-Mar-2021 | 1.9 KiB | 80 | 47 | |
LICENSE | H A D | 21-Jun-2018 | 1.4 KiB | 28 | 22 | |
MANIFEST.in | H A D | 12-Dec-2020 | 221 | 9 | 8 | |
PKG-INFO | H A D | 15-Mar-2021 | 2.7 KiB | 80 | 58 | |
README.md | H A D | 26-Jul-2020 | 1.3 KiB | 55 | 34 | |
release.py | H A D | 27-Jul-2020 | 2.9 KiB | 131 | 95 | |
setup.cfg | H A D | 15-Mar-2021 | 355 | 24 | 19 | |
setup.py | H A D | 27-Jul-2020 | 2 KiB | 71 | 57 | |
tasks.py | H A D | 14-Mar-2021 | 3.9 KiB | 131 | 63 | |
tox.ini | H A D | 02-Dec-2018 | 173 | 12 | 10 |
README.md
1# litecli 2 3[![Build Status](https://travis-ci.org/dbcli/litecli.svg?branch=master)](https://travis-ci.org/dbcli/litecli) 4 5[Docs](https://litecli.com) 6 7A command-line client for SQLite databases that has auto-completion and syntax highlighting. 8 9![Completion](screenshots/litecli.png) 10![CompletionGif](screenshots/litecli.gif) 11 12## Installation 13 14If you already know how to install python packages, then you can install it via pip: 15 16You might need sudo on linux. 17 18``` 19$ pip install -U litecli 20``` 21 22The package is also available on Arch Linux through AUR in two versions: [litecli](https://aur.archlinux.org/packages/litecli/) is based the latest release (git tag) and [litecli-git](https://aur.archlinux.org/packages/litecli-git/) is based on the master branch of the git repo. You can install them manually or with an AUR helper such as `yay`: 23 24``` 25$ yay -S litecli 26``` 27or 28 29``` 30$ yay -S litecli-git 31``` 32 33For MacOS users, you can also use Homebrew to install it: 34 35``` 36$ brew install litecli 37``` 38 39## Usage 40 41``` 42$ litecli --help 43 44Usage: litecli [OPTIONS] [DATABASE] 45 46Examples: 47 - litecli sqlite_db_name 48``` 49 50A config file is automatically created at `~/.config/litecli/config` at first launch. See the file itself for a description of all available options. 51 52## Docs 53 54Visit: [litecli.com/features](https://litecli.com/features) 55