The obvious solution (which may require a little tweaking) is to simply call the main function of each script from the script wizard. For example, if script1.py contains:
def main():
// Do something
if __name__ == "__main__":
main()
enter master.py
import script1
def main():
script1.main()
if __name__ == "__main__":
main()
You can continue this template for as many scripts as possible.
source
share