├── .gitignore ├── LICENSE ├── README.md ├── pg_channels └── __init__.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickdmoore/pg_channels/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickdmoore/pg_channels/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickdmoore/pg_channels/HEAD/README.md -------------------------------------------------------------------------------- /pg_channels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickdmoore/pg_channels/HEAD/pg_channels/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg2==2.7.3.2 -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickdmoore/pg_channels/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickdmoore/pg_channels/HEAD/setup.py --------------------------------------------------------------------------------