Flask Signals

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

Flask supports signals using Blinker. Signal support is optional; they will only be enabled if Blinker is installed.

pip install blinker

http://flask.pocoo.org/docs/dev/signals/


Signals are not asynchronous. When a signal is sent, it immediately executes each of the connected functions sequentially.



Got any Flask Question?