lorawan/notify.py
2016-11-02 16:44:33 +01:00

21 lines
603 B
Python

import select
import psycopg2
import psycopg2.extensions
channel = "lora"
conn = psycopg2.connect("dbname=lorawan")
conn.set_isolation_level(psycopg2.extensions.ISOLATION_LEVEL_AUTOCOMMIT)
curs = conn.cursor()
curs.execute("LISTEN {};".format(channel))
print("Waiting for notifications on channel {}".format(channel))
while True:
if select.select([conn],[],[]) == ([],[],[]):
print("Timeout")
else:
conn.poll()
while conn.notifies:
notify = conn.notifies.pop(0)
print("Got NOTIFY: {} {} {}".format(notify.pid, notify.channel, notify.payload))