├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── asyncpg_listen ├── __init__.py ├── listener.py └── py.typed ├── requirements-dev.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_listener.py └── test_version.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @anna-money/backend 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/README.md -------------------------------------------------------------------------------- /asyncpg_listen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/asyncpg_listen/__init__.py -------------------------------------------------------------------------------- /asyncpg_listen/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/asyncpg_listen/listener.py -------------------------------------------------------------------------------- /asyncpg_listen/py.typed: -------------------------------------------------------------------------------- 1 | Marker -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/tests/test_listener.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anna-money/asyncpg-listen/HEAD/tests/test_version.py --------------------------------------------------------------------------------