Running command lines within your Python script
or you can use
import os
os.system('your_command')
for example:
import os
os.system('notepad')
will launch the notepad with the command line behind.
hope this helps
You should use the subprocess module. In particular, subprocess.call will run command line programs for you.