Schedule A Python Script To Run On Webserver
I am in the process of writing a Python script, that I will want to run automatically, say every evening. I intend to run it from server, partly because I have one so I may as well
Solution 1:
If you are running on a *nix server and your user account has permission, use cron.
Edit your crontab using $ crontab -e
An entry along these lines will run your job at midnight each night:
0 0 * * * python /path/to/myscript.py
Post a Comment for "Schedule A Python Script To Run On Webserver"