Skip to main content

Reusable application for Django introducing a message delivery framework

Project description

https://github.com/idlesign/django-sitemessage

https://img.shields.io/pypi/v/django-sitemessage.svg https://img.shields.io/pypi/l/django-sitemessage.svg https://img.shields.io/coveralls/idlesign/django-sitemessage/master.svg

Description

Reusable application for Django introducing a message delivery framework.

Features:

  • Message Types - message classes exposing message composition logic (plain text, html, etc.).

  • Messengers - clients for various protocols (smtp, jabber, twitter, telegram, facebook, vkontakte, etc.);

  • Support for user defined message types.

  • Support for user defined messenger types.

  • Message prioritization.

  • Message subscription/unsubscription system.

  • Message grouping to prevent flooding.

  • Message ‘read’ indication.

  • Means for background message delivery and cleanup.

  • Means to debug integration: test requisites, delivery log.

  • Django Admin integration.

  1. Configure messengers for your project (create sitemessages.py in one of your apps):

from sitemessage.toolbox import register_messenger_objects, register_message_types
from sitemessage.messengers.smtp import SMTPMessenger

register_messenger_objects(
    # Here we register one messenger to deliver emails.
    # By default it uses mailing related settings from Django settings file.
    SMTPMessenger()
)
  1. Schedule messages for delivery when and where needed (e.g. in a view):

from sitemessage.shortcuts import schedule_email

def send_mail_view(request):
    ...

    # Suppose `user_model` is a recipient Django User model instance.
    user1_model = ...

    # We pass `request.user` into `sender` to keep track of senders.
    schedule_email('Message from sitemessage.', [user1_model, 'user2@host.com'], sender=request.user)

    ...
  1. Periodically run Django management command from wherever you like (cli, cron, Celery, uWSGI, etc.):

    ./manage.py sitemessage_send_scheduled

And that’s only the tip of sitemessage iceberg, read the docs %)

Documentation

http://django-sitemessage.readthedocs.org/

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-sitemessage-1.4.0.tar.gz (53.7 kB view details)

Uploaded Source

Built Distribution

django_sitemessage-1.4.0-py3-none-any.whl (52.8 kB view details)

Uploaded Python 3

File details

Details for the file django-sitemessage-1.4.0.tar.gz.

File metadata

  • Download URL: django-sitemessage-1.4.0.tar.gz
  • Upload date:
  • Size: 53.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.6

File hashes

Hashes for django-sitemessage-1.4.0.tar.gz
Algorithm Hash digest
SHA256 fb8717e1c36d29cd6d82295190f2b35d06bc513f6ae67e29c376a26a8d4ca212
MD5 788d233fececa71bcea383b70de46dd3
BLAKE2b-256 2584a2efefdd1a25ccec8bcb89b21c37e06a4d190b9efa2e26b521f0024f1ac9

See more details on using hashes here.

File details

Details for the file django_sitemessage-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: django_sitemessage-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 52.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.6

File hashes

Hashes for django_sitemessage-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 aab4bf92daad6324261f868af5c65414e669319e7c3f6dacb7653ac8fff63ddd
MD5 7ea38ef42eb18f229ab004e8d1a93a23
BLAKE2b-256 4a146e0ebebadc53bd0017d648e20873aebd1145268ac83785dea25c3103e39f

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