pgnotify | Easily LISTEN to PostgreSQL NOTIFY messages | Notification library
kandi X-RAY | pgnotify Summary
kandi X-RAY | pgnotify Summary
pgnotify is a Python library typically used in Messaging, Notification applications. pgnotify has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. However pgnotify build file is not available. You can install using 'pip install pgnotify' or download it from GitHub, PyPI.
Easily LISTEN to PostgreSQL NOTIFY messages
Easily LISTEN to PostgreSQL NOTIFY messages
Support
Quality
Security
License
Reuse
Support
pgnotify has a low active ecosystem.
It has 55 star(s) with 10 fork(s). There are 2 watchers for this library.
It had no major release in the last 12 months.
There are 1 open issues and 1 have been closed. On average issues are closed in 1 days. There are 2 open pull requests and 0 closed requests.
It has a neutral sentiment in the developer community.
The latest version of pgnotify is 0.1.1561372201
Quality
pgnotify has 0 bugs and 3 code smells.
Security
pgnotify has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
pgnotify code analysis shows 0 unresolved vulnerabilities.
There are 4 security hotspots that need review.
License
pgnotify is licensed under the Unlicense License. This license is Permissive.
Permissive licenses have the least restrictions, and you can use them in most projects.
Reuse
pgnotify releases are not available. You will need to build from source code and install.
Deployable package is available in PyPI.
pgnotify has no build file. You will be need to create the build yourself to build the component from source.
Installation instructions, examples and code snippets are available.
pgnotify saves you 96 person hours of effort in developing the same functionality from scratch.
It has 244 lines of code, 12 functions and 7 files.
It has low code complexity. Code complexity directly impacts maintainability of the code.
Top functions reviewed by kandi - BETA
kandi has reviewed pgnotify and discovered the below as its top functions. This is intended to give you an instant insight into pgnotify implemented functionality, and help decide if they suit your requirements.
- Block until a given channel is received .
- Return a connection to the database .
- Create the wakeup signal .
- Start listening to tables .
- Quote table name .
- Log a notification .
Get all kandi verified functions for this library.
pgnotify Key Features
No Key Features are available at this moment for pgnotify.
pgnotify Examples and Code Snippets
Copy
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 c
Copy
from pgnotify import await_pg_notifications
for notification in await_pg_notifications(
'postgresql:///example',
['channel1', 'channel2']):
print(notification.channel)
print(notification.payload)
Copy
pip install pgnotify
Community Discussions
Trending Discussions on pgnotify
QUESTION
Making postgres do a blocking wait
Asked 2020-Nov-02 at 10:13
I thought it might be interesting (and useful) to create a blocking wait() that could be used from a plpgsql function. I got it working, but I am not certain that it is well conceived. One interesting issue occurs when using datagrip. If I call my pg_wait() from a function:
...ANSWER
Answered 2020-Nov-02 at 10:13Did you try declaring your function VOLATILE
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install pgnotify
Installable with any python package manager from the python package index, eg:.
Support
For any new features, suggestions and bugs create an issue on GitHub.
If you have any questions check and ask questions on community page Stack Overflow .
Find more information at:
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page