Easily LISTEN to PostgreSQL NOTIFY notifications
Project description
pgnotify: A python library to easily LISTEN to PostgreSQL NOTIFY notifications
Install
Installable with any python package manager from the python package index, eg:
pip install pgnotify
LISTEN to and process NOTIFY events with a simple for
loop, like so:
from pgnotify import await_pg_notifications
for notification in await_pg_notifications(
'postgresql:///example',
['channel1', 'channel2']):
print(notification.channel)
print(notification.payload)
You can also handle timeouts and signals, as in this more fully-fleshed example:
import signal
from pgnotify import await_pg_notifications, get_dbapi_connection
# the first parameter of the await_pg_notifications
# loop is a dbapi connection in autocommit mode
CONNECT = "postgresql:///example"
# use this convenient method to create the right connection
# from a database URL
e = get_dbapi_connection(CONNECT)
SIGNALS_TO_HANDLE = [signal.SIGINT, signal.SIGTERM]
for n in await_pg_notifications(
e,
["hello", "hello2"],
timeout=10,
yield_on_timeout=True,
handle_signals=SIGNALS_TO_HANDLE,
):
# the integer code of the signal is yielded on each
# occurrence of a handled signal
if isinstance(n, int):
sig = signal.Signals(n)
if n in SIGNALS_TO_HANDLE:
print(f"handling {sig.name}")
print("interrupted, stopping")
break
# the `yield_on_timeout` option makes the
# loop yield `None` on timeout
elif n is None:
print("timeout, continuing")
# handle the actual notify occurrences here
else:
print((n.pid, n.channel, n.payload))
Further documentation to come.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pgnotify-0.1.1541160430.tar.gz
.
File metadata
- Download URL: pgnotify-0.1.1541160430.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.5 CPython/3.7.0 Linux/4.4.0-137-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 530be4a579f3ea3d21f3a0e09ada655948d9187e583e24347838c90f1fe24c34 |
|
MD5 | 244872cc95b55cc20563e44e61d34626 |
|
BLAKE2b-256 | ace5a98934a4fad0dd488fec888f74096f53d0770c1747bd9d5be824d2e11ba1 |
File details
Details for the file pgnotify-0.1.1541160430-py2.py3-none-any.whl
.
File metadata
- Download URL: pgnotify-0.1.1541160430-py2.py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.5 CPython/3.7.0 Linux/4.4.0-137-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3519ec1d55f07fa4c9b11819146a393719f821e39ea262aff766ef978d73193a |
|
MD5 | 5d90f552998b38abda3a330ff177919d |
|
BLAKE2b-256 | ec55126f00ca9e4ac4a4749c6a04cf79c495c00df4717ab97dd69b697fb3c645 |