Django app made to integrate generic events that create notifications that can be sent to users using several backends.
Project description
Django app made to integrate generic events that create notifications that can be sent to users using several backends.
By default, it integrates push notifications and email to send the notifications.
Made with Python 3 and Django with :heart:.
Quick start
1 Install using pip:
pip install django-snitch
2 Add “snitch” to your INSTALLED_APPS settings like this:
INSTALLED_APPS += ('snitch',)
3 Create an events.py file in your app to register the events:
import snitch
from snitch.backends import PushNotificationBackend, EmailNotificationBackend
ACTIVATED_EVENT = "activated"
CONFIRMED_EVENT = "confirmed"
@snitch.register(ACTIVATED_EVENT)
class ActivatedHandler(snitch.EventHandler):
title = "Activated!"
@snitch.register(CONFIRMED_EVENT)
class ConfirmedHandler(snitch.EventHandler):
title = "Confirmed!"
notification_backends = [PushNotificationBackend, EmailNotificationBackend]
# Custom configuration for email backend
template_email_kwargs = {"template_name": "email.html"}
template_email_async = False
def audience(self):
return get_user_model().objects.all()
4 Use dispatch decorator to dispatch the event when a function is called:
from django.db import models
from django.utils import timezone
import snitch
from snitch.models import AbstractNotification
from tests.app.events import ACTIVATED_EVENT, CONFIRMED_EVENT
class Stuff(models.Model):
"""Simple stuff model with status."""
IDLE, ACTIVE, CONFIRMED = 0, 1, 2
status = models.PositiveIntegerField(default=IDLE)
activated_at = models.DateTimeField(null=True, blank=True)
confirmed_at = models.DateTimeField(null=True, blank=True)
@snitch.dispatch(ACTIVATED_EVENT)
def activate(self):
self.activated_at = timezone.now()
@snitch.dispatch(CONFIRMED_EVENT)
def confirm(self):
self.confirmed_at = timezone.now()
Custom Notification model
You can, in the same way that django.contrib.auth.model.User works, swap the Notification model, to customize it.
In order to do that, you should create a model that inherits from AbstractNotification:
from django.db import models
from snitch.models import AbstractNotification
class Notification(AbstractNotification):
"""Custom notification."""
extra_field = models.BooleanField(default=False)
And after that, specify it in the settings:
SNITCH_NOTIFICATION_MODEL = "app.Notification"
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 django_snitch-3.2.0.tar.gz
.
File metadata
- Download URL: django_snitch-3.2.0.tar.gz
- Upload date:
- Size: 23.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | deed8eb31f3ac34b9bea5a666638f9bc881be9bb2fa6cd990c02c4f6ac4ec3c6 |
|
MD5 | b89907d7824f97989a826cfd3ef784f7 |
|
BLAKE2b-256 | d36d13aca0acef30d7eec703f99246fdf689d2c5407138129d884281a286d909 |
File details
Details for the file django_snitch-3.2.0-py3-none-any.whl
.
File metadata
- Download URL: django_snitch-3.2.0-py3-none-any.whl
- Upload date:
- Size: 33.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfe2c8018fe59855e9f7bbda412564e9b671200a96635f0625bf75c9c269932a |
|
MD5 | 780ccd7e069495f762a418646f671c14 |
|
BLAKE2b-256 | ba1911dbd00a6e921369776edba1297d407ee45f1cd1b561642b4782744d2416 |