I know that that there are question about "how to make periodical task in Django" like this post. But I'm wondering which would be best option, to use one from the options mentioned in that post (Celerity or cron mostly) or dealing the periodical task from the Javascript/jQuery.
What I want to accomplish is to simply execute a task every day at a certain time. To call a function from the "view.py". That function will connect to an URL, download a file and search in that file for information and then store it in the database. After that, refresh the homepage with the new information.
Which would be the pros and cons?