I\'m writing a (somewhat) modular application in Python 3 and I\'d like to run arbitrary programs from it, said program being specified at runtime and not necessarily a python s
Try
subprocess.call(['spam.py', "-i", eggs, "-o", ham])