Callable object as signal receiver

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
from django.db.models.signals import pre_save

class Receiver(object):
   def __init__(self):
      ...
      pre_save.connect(self)

   def __call__(self, sender, instance, **kwargs):
      ...

receiver = Receiver()

More like this

  1. Callable Class View by zbyte64 5 years ago
  2. Query lookups using operators by diverman 2 years, 9 months ago
  3. Generic Recievers For Signals by ericmoritz 4 years, 11 months ago
  4. Simple Signal to denormalize vote counts in django-voting by ericmoritz 4 years, 7 months ago
  5. Signal to post new saved objects to Twitter by arthurfurlan 4 years, 2 months ago

Comments

(Forgotten your password?)