Re: running applications in python

2007-01-25 Thread Daniel
2007-01-25 18:28:44 lee <[EMAIL PROTECTED]> wrote in message <[EMAIL PROTECTED]> > how can i run or open a windows application from the python prompt?for > e.g.mediaplayer opening,folder acess etc Here's another way of doing it: import os TheCommandIwantTorun = '"C:\Program\Windows Media Player

Re: running applications in python

2007-01-25 Thread Jordan
os.system, os.spawn, the process module, os.popen[1,2,3,4], this is a pretty basic thing, not trying to be mean, but you should look in the python docs, this is definitely in there. Also, the subprocess module is meant to replace all of those but i haven't looked too closely at it yet, so the foll

running applications in python

2007-01-25 Thread lee
how can i run or open a windows application from the python prompt?for e.g.mediaplayer opening,folder acess etc -- http://mail.python.org/mailman/listinfo/python-list