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
📚 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.
A websockets demo: django-mqueue-livefeed is available