Send asynchronous messages to users. Useful for integration with Celery
Project description
Simple asynchronous messages for django.
Questions
What problem does this solve?
Suppose a user instigates an expensive task that you are processing offline (eg using Celery). This library provides a simple mechanism for notifying the user when the task is finished, utilising Django’s messaging framework.
What’s an example?
You might use Celery to generate a large report and then employ this library to notify the user that their report is ready to be downloaded. The user will see the message you’ve sent them when they make their next request after the message is submitted.
How does it work?
A cache is used to persist the messages, and middleware is used to pick these up and submit them to Django’s messaging framework. All very simple.
Aren’t there other libraries that do this?
Yes, there are - but they solve the problem in different ways:
django-offline-messages - this provides an alternative storage backend that Django’s messages framework can use.
What’s good about this implementation?
It’s simple, fast and easy to use.
It works cohesively with existing Django cache and messages framework. It will work no matter what cache backend your are using, and whatever storage backend is used for messages.
What’s bad?
Only one message per user at the moment, lists of messages to come later.
A user may miss the message if they navigating quickly between pages.
Install
From PyPI (stable):
pip install django-async-messages
From Github (unstable):
pip install git+git://github.com/codeinthehole/django-async-messages#egg=djang-async-messages
Add 'async_messages.middleware.AsyncMiddleware' to your MIDDLEWARE_CLASSES. Ensure it comes after 'django.contrib.messages.middleware.MessageMiddleware'.
You need to have CACHES configured in you settings for this to work. As usual, memcache is the best choice.
Use
Send a message to a single user:
>>> from async_messages import message_user >>> from django.contrib.auth.models import User >>> barry = User.objects.get(username='barry') >>> message_user(barry, "Barry, your report is ready")
Send a message to lots of users:
>>> from async_messages import message_users >>> staff = User.objects.filter(is_staff=True) >>> message_users(staff, "All budgets must be spent by the end of the day")
Specify message level:
>>> from django.contrib.messages import constants >>> message_users(staff, "Boom!", constants.WARNING)
Changelog
0.1.2
Altered dependency on Django to be only 1.2+
0.1.1
Altered middleware to use process_response.
Better docstrings
0.1
Minimum viable product
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
File details
Details for the file django-async-messages-0.1.2.tar.gz
.
File metadata
- Download URL: django-async-messages-0.1.2.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d03a7c6e66b40c3a453a1c23dfc3ea62e84171280ac2c0ba1ba715e4521eaa28 |
|
MD5 | 93aa6bb4ce5b69fbc7a5e99d12c2062a |
|
BLAKE2b-256 | c03a57ef96979e665f628a0ce2849dc9f3128a1f54dc0468bc585afb4e796de1 |