import os
...
os.system('the command to be launched as done from command line')
# Or newer approach using the subprocess module (here the helper function to
# make it simpler).
import subprocess
...
retcode = subprocess.call('command arg', shell=True)
|