• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

litecli/H15-Mar-2021-4,2473,274

litecli.egg-info/H03-May-2022-8058

tests/H03-May-2022-2,3631,833

CHANGELOG.mdH A D15-Mar-20211.9 KiB8047

LICENSEH A D21-Jun-20181.4 KiB2822

MANIFEST.inH A D12-Dec-2020221 98

PKG-INFOH A D15-Mar-20212.7 KiB8058

README.mdH A D26-Jul-20201.3 KiB5534

release.pyH A D27-Jul-20202.9 KiB13195

setup.cfgH A D15-Mar-2021355 2419

setup.pyH A D27-Jul-20202 KiB7157

tasks.pyH A D14-Mar-20213.9 KiB13163

tox.iniH A D02-Dec-2018173 1210

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