Skip to main content

Send alerts, notifications, and messages based on events in your django application

Project description

[![Build Status](https://travis-ci.org/jiaaro/django-alert.png?branch=master)](https://travis-ci.org/jiaaro/django-alert)

## Installation ##

1. Install lib with pip:

`pip install django-alert`

**- OR -**

Put the "alert" directory somewhere in your python path

2. Add "alert" to your installed apps (in the settings.py file)


## Making Alerts ##

Create an "alerts.py" file and import it at the bottom of your
models.py file. This is where you will define your alert class. Every
alert is subclassed from "alert.utils.BaseAlert"

Here is an example alert that is sent to users when they first sign up:

from django.contrib.auth.models import User
from django.db.models.signals import post_save
from alert.utils import BaseAlert

class WelcomeAlert(BaseAlert):
title = 'Welcome new users'
description = 'When a new user signs up, send them a welcome email'

signal = post_save
sender = User

default = False

def before(self, created, **kwargs):
return created

def get_applicable_users(self, instance, **kwargs):
return [instance]


## Writing Alert Backends ##

Alert includes an Email Backend by default. But you can write a backend
for *any* messaging medium!

Alert Backends just need to subclass BaseAlertBackend and implement a
`send()` method that accepts an alert instance

You can copy and paste the following code to get started:

from alert.utils import BaseAlertBackend

class MyAlertBackend(BaseAlertBackend):
def send()


## Signals ##

When an alert is sent, a signal is fired (found in alert.signals). The
"sender" keyword argument is the Alert you defined (WelcomeAlert in
this case).

example:

from alert.signals import alert_sent

def do_something_after_welcome_alert_is_sent(sender, alert, **kwargs):
pass

alert_sent.connect(do_something_after_welcome_alert_is_sent,
sender=WelcomeAlert)

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-alert-0.7.0.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

django_alert-0.7.0-py2.py3-none-any.whl (22.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-alert-0.7.0.tar.gz.

File metadata

File hashes

Hashes for django-alert-0.7.0.tar.gz
Algorithm Hash digest
SHA256 71b1e00d1092829f92cfd3f2edc95107e1bbd25180809041f512100d96b72e34
MD5 513205f451cdfcae43ee7a4d570dd4a3
BLAKE2b-256 e1bb51a4acfd4997de0e4fa891c9d70daf7d0ce8a9d59cc1ffdb0d825c75213a

See more details on using hashes here.

File details

Details for the file django_alert-0.7.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_alert-0.7.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0ceb2618fb751cbd957eb959b7990d5475918d87627e41338a8ebcfeff5e3322
MD5 91c6a991f02d51a89d73b863d9bc9c73
BLAKE2b-256 a071f7358847744fbfaf623879ee4100cd4cbae9ede40c5dcde1017962ad5b93

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