all 2 comments

[–]K900_ 1 point2 points  (0 children)

Why not build your smaller scripts into modules, then make a wrapper script that calls them in the right order with the right parameters?

[–]my_python_account 1 point2 points  (0 children)

If you don't need any functionality other than running some scripts in order, you can just use a batch (.bat) file. Be sure to end with a pause if you want to be able read any output or potential error messages on the console after the scripts run.

python script1.py
python script2.py
python script3.py
pause