├── .gitignore ├── .pre-commit-hooks.yaml ├── LICENSE ├── README.md ├── TODO ├── check.sh ├── docker ├── Dockerfile └── README.md ├── pgsanity ├── __init__.py ├── ecpg.py ├── pgsanity.py └── sqlprep.py ├── pyproject.toml ├── test ├── __init__.py ├── test_ecpg.py ├── test_pgsanity.py └── test_sqlprep.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *\.swp 3 | *.pyc 4 | dist 5 | build 6 | MANIFEST 7 | pgsanity.egg-info 8 | -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/TODO -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/check.sh -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/docker/README.md -------------------------------------------------------------------------------- /pgsanity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pgsanity/ecpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/pgsanity/ecpg.py -------------------------------------------------------------------------------- /pgsanity/pgsanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/pgsanity/pgsanity.py -------------------------------------------------------------------------------- /pgsanity/sqlprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/pgsanity/sqlprep.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_ecpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/test/test_ecpg.py -------------------------------------------------------------------------------- /test/test_pgsanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/test/test_pgsanity.py -------------------------------------------------------------------------------- /test/test_sqlprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/test/test_sqlprep.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markdrago/pgsanity/HEAD/uv.lock --------------------------------------------------------------------------------