I'm trying to implement django extension management job. I would like to know how could I fire the job inside django in order to run the code daily and specify exact time like 4:00 am in django extension management job. so far code given below:
from django_extensions.management.jobs import DailyJob
class Job(DailyJob):
help = "Send notification On Instruction Instances"
def execute(self):
print("job executed at 4:00 Am")
Any help will be highly appreciated