[Answer]-How do I make my django application perform a job at a fixed time everyday?

2👍

Use a simple cron job to trigger a custom Django management command.

-1👍

Use a threading.Thread to schedule a continuous event loop. In your thread, use time.sleep to create a gap before the next occurrence of the event.

Leave a comment