Skip to main content

A Django package to handle notifications using Django Channels and WebSockets.

Project description

A Django application to deliver user notifications made with django-snitch using WebSockets.

PyPI https://codecov.io/gh/marcosgabarda/django-websocket-notifications/branch/main/graph/badge.svg?token=EY6DV8O6ZT https://img.shields.io/badge/code_style-black-000000.svg Documentation Status

Quick start

This applications works using django-channels, so, you need to integrate this with your project before to integrate django-websocket-notifications. So, to make the quick start as quick and simple as possible, we’ve made the following assumptions:

  • You already have integrated django-channels

  • You are using a channel layer, like Redis

  • You have a routing.py file

  • Your project uses DRF to deliver a RESTful API

1 Install using pip:

pip install django-websocket-notifications

2 Add “websocket_notifications” to your INSTALLED_APPS settings like this:

INSTALLED_APPS += ('websocket_notifications',)

3 Add the routing patterns to your routing.py file:

from channels.auth import AuthMiddlewareStack
from channels.routing import ProtocolTypeRouter, URLRouter
from websocket_notifications.routing import websocket_urlpatterns


application = ProtocolTypeRouter(
    {"websocket": AuthMiddlewareStack(URLRouter(websocket_urlpatterns)),}
)

4 (Optional) In order to test the integration, you can add the following view to your urls.py file to be able to access to a testing view:

urlpatterns += [
    path(
        "websocket-notifications/",
        include(
            "websocket_notifications.urls",
            namespace="websocket_notifications",
        ),
    ),
]

Now, you can access to /websocket-notifications/listener/ to check the integration.

5 Add the ViewSet to the DRF router:

from websocket_notifications.api.rest_framework import NotificationGroupViewSet


router = routers.DefaultRouter()
router.register("websocket-notifications/groups", viewset=NotificationGroupViewSet)

6 Integrate with django-snitch:

from websocket_notifications.snitch.backends import WebSocketNotificationBackend


@snitch.register(EVENT)
class MyEventHandler(snitch.EventHandler):
    ephemeral = True
    notification_backends = [WebSocketNotificationBackend]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_websocket_notifications-1.3.1.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django_websocket_notifications-1.3.1.tar.gz.

File metadata

File hashes

Hashes for django_websocket_notifications-1.3.1.tar.gz
Algorithm Hash digest
SHA256 84378cdcaf7b2a4a2558934c88de03d6c52e10ce39d79b4d71e0d529216c94f7
MD5 9fe32d27b6a8a0597d086d00f2f72a9b
BLAKE2b-256 11abb88068a8b454b5477016e75459f764632e8023f8c3a89a119c738cc8f9d8

See more details on using hashes here.

File details

Details for the file django_websocket_notifications-1.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_websocket_notifications-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6fd0d042111432a26716bf65d0ccf6865c40a93abd0fdf09b24aa7fe30827bb3
MD5 bcca73bdd36abfdf4cdfc494a4c3124d
BLAKE2b-256 62c153408576a5f4e21d4d5051a63f6efeba072f7b895c927b0e7bacd67747d7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page