├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── pg_bloat_check.py ├── stuff └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | ignore/* 2 | *.swp 3 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithf4/pg_bloat_check/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithf4/pg_bloat_check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithf4/pg_bloat_check/HEAD/README.md -------------------------------------------------------------------------------- /pg_bloat_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithf4/pg_bloat_check/HEAD/pg_bloat_check.py -------------------------------------------------------------------------------- /stuff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithf4/pg_bloat_check/HEAD/stuff -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithf4/pg_bloat_check/HEAD/tests.py --------------------------------------------------------------------------------