I have a file named "update_job.py"(it's an ETL). It should be executed each 1h to update data.
Now I have an idea for it: using a infinit loop inside the update_job.py and make a sleep of 1h for each time we pass inside the loop and excute the script separately.
I think it's a bad practice.
Now I wanna know how can I make a job to exectute it from Django.
Please help, I'm new to Django.
Regards, Minonja