There is a post_save
signal. Need to run it no earlier than an hour after the creation of the object.
I can use time.sleep(3600)
, but this is not the best approach, as I understand it.
What other options are there?
There is a post_save
signal. Need to run it no earlier than an hour after the creation of the object.
I can use time.sleep(3600)
, but this is not the best approach, as I understand it.
What other options are there?