An open API service indexing awesome lists of open source software.

https://github.com/javascriptdude/sqlpp

SQL Pretty Printer
https://github.com/javascriptdude/sqlpp

Last synced: 9 months ago
JSON representation

SQL Pretty Printer

Awesome Lists containing this project

README

          

# sqlpp
SQL Pretty Printer

Takes an input of one or more sql files and outputs the sql pretty printed

usage:
```
sqlpp [-h] [--verbose] file [file ...]
```

Installation on linux:
```
git clone https://github.com/JavaScriptDude/sqlpp.git && cd sqlpp
python3 -m pip install -r requirements.txt --user
echo "python3 ${PWD}/sqlpp.py \$@" > ${HOME}/.local/bin/sqlpp
chmod u+x ${HOME}/.local/bin/sqlpp
sqlpp -h
```