django-mqueue icon indicating copy to clipboard operation
django-mqueue copied to clipboard

Events queue for Django

Django Mqueue

Events queue application for Django. Features:

  • Monitor models: models can be registered to autogenerate events on create/update/delete actions
  • Export events: save events to Redis or send them over websockets

:books: Read the documentation

Example:

MEvent.objects.create(name="Test event", event_class="test", data={"k":"v"})

Events can be linked to a model instance and a user instance.

Event queue screenshot

Real time events demo

A websockets demo: django-mqueue-livefeed is available

Documentation