DEV Community

Cover image for Understanding Django Signals
Tankala Ashok
Tankala Ashok

Posted on

Understanding Django Signals

If you want to listen to a model change or some action in your Django project then Django signals is a good place to explore. They are essentially a form of the Observer design pattern, enabling loose coupling between components in a Django application. In this article, Anand Rathore covered them in depth.

Top comments (0)