Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 927 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 927 Bytes

pgls

PyPI License

CLI utility to display postgres database information as a tree.

Clickbait

Installation

pip install pgls

Usage

Basic example

pgls postgres://user:[email protected]
# shows all databases and all nested entities

Sort by size

pgls --sort=size postgres://user:[email protected]
# shows heavier databases and tables first

Hide some information (also this speeds up gathering)

pgls --hide-columns postgres://user:[email protected]
# shows databases and tables without it's columns

pgls --hide-tables --hide-views --hide-indexes postgres://user:[email protected]
# shows only databases