Metadata-Version: 1.0
Name: django-digested
Version: 0.1.2
Summary: Allows you to set up notification emails for your users, sent out either immediately or in regular batches
Home-page: http://unpublished.test
Author: Jerome Baum
Author-email: jerome@jeromebaum.com
License: See LICENSE file
Description: django-digested
        ========================================
        
        Using django-digested you can set up notification emails for your users,
        sent out either immediately or in regular batches ("digests").
        
        Installation:
        ----------------------------------------
        
            pip install django-digested
        
        Usage:
        ----------------------------------------
        
            INSTALLED_APPS += ['digested']
            manage.py migrate digested
        
        Now subclass digested.digest_managers.BaseDigestManager and override
        these methods:
        
            get_items(self)
            get_subscribers_for_item(self, item)
            get_updates_for_digest(self, item, preference)
            send_one_instant_update(self, subscriber, update)
            send_one_digest_update(self, subscriber, preference, updates)
        
        Call send_instant_update to send out instant updates, and
        send_digest_updates at appropriate regular intervals.
        
Platform: UNKNOWN
