'Spyder how to Schedule python scripts to run in sequence

I have multiple python scripts that need to run in sequence. Please advice how I achieve this scheduling within spyder

I have script1 to run followed by script2. and they need to start everyday 8:00am EST and end/stop at 4:25pm EST only during business days/hours. 


Solution 1:[1]

Don't try to do this from Python, use the built-in functionality that Operating Systems come with.

Let your pc automatically run the program using crontab (for Linux and Mac) or Scheduled Tasks in Windows.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Damiaan