├── .circleci └── config.yml ├── .flake8 ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── deploy └── vbump.py ├── example.py ├── pgnotify ├── __init__.py └── notify.py ├── pyproject.toml └── tests ├── __init__.py ├── conftest.py └── test_pgnotify.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/README.md -------------------------------------------------------------------------------- /deploy/vbump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/deploy/vbump.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/example.py -------------------------------------------------------------------------------- /pgnotify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/pgnotify/__init__.py -------------------------------------------------------------------------------- /pgnotify/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/pgnotify/notify.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_pgnotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djrobstep/pgnotify/HEAD/tests/test_pgnotify.py --------------------------------------------------------------------------------