https://github.com/javascriptdude/sqlpp
SQL Pretty Printer
https://github.com/javascriptdude/sqlpp
Last synced: 9 months ago
JSON representation
SQL Pretty Printer
- Host: GitHub
- URL: https://github.com/javascriptdude/sqlpp
- Owner: JavaScriptDude
- License: mit
- Created: 2020-02-26T22:49:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-25T19:29:09.000Z (almost 6 years ago)
- Last Synced: 2025-02-12T07:54:34.738Z (11 months ago)
- Language: Python
- Size: 13.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```