Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 813 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 813 Bytes

Simple Django Signals

Sample repository to lean Django Signals in small script Using Python.

Django Signals

In a nutshell, signals allow certain senders to notify a set of receivers that some action has taken place. They're especially useful when many pieces of code may be interested in the same events. Django provides a set of built-in signals that let user code get notified by Django itself of certain actions.

Suitable References