TL; DR:
I need a way to trigger a custom signal after a post_save signal, automatically, is there a way to do this?
I am currently developing a library for django that requires a lot of things and comes with a post_save signal in django, and I was wondering if it is possible to fire another signal after post_save so I could implement my own and not interfere with post_save in case if a project that uses the library needs to do this.
Until now, I know that the signals are expected to receive the class as the sender argument, and if I manually call the signal from post_save, I will not do anything (I will interfere with it anyway). Is there a workaround for this? Am I missing something in the docs?
python django django-signals
Oscar carballal
source share