I have a "Contest" model that a user creates and one of the fields is
(endTime = models.DateField(default=datetime.now()+timedelta(days=7))
.
I need a method to run a function when their contest has expired. The function would be to notify users, update objects, etc.
What would be the best method to achieve this?