1
Good morning guys, I made a Python script that searches various websites for the occurrences of a few words and stores in SQL database. I would like to track the occurrence of these words over time, but I don’t want to keep clicking to run it or leave the computer turned on to keep running this routine. I would like for example that every 6 hours he would do this search and save the results. Can I get it running on some server? What would I need to learn to make this work? Thank you!
Look for crontab or cronjob. Some servers provide access to this task scheduling tool from Cpanel. It is also possible to do it via the command line if you have access via SSH.
– Antonio Alexandre
Do you prefer the script to run full-time, and every 6 hours it runs the procedure? or you prefer it to be requested by an external agent?
– José Henrique Luckmann
@Joséhenriqueluckmann the idea is to run alone. Type of 12 in 12 hours.
– André