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. Simple Signal to denormalize vote counts in django-voting by ericmoritz 3 years, 4 months ago
  2. Generic Recievers For Signals by ericmoritz 3 years, 8 months ago
  3. easy signal registration by aisbaa 4 months, 1 week ago
  4. auto_now using signals by ddanier 3 years, 7 months ago
  5. improved getattr template filter by luckystarr 4 years, 5 months ago

Comments

(Forgotten your password?)