On Sep 4, 5:01 pm, [EMAIL PROTECTED] wrote: > On Sep 4, 8:42 am, n o s p a m p l e a s e <[EMAIL PROTECTED]> > wrote: > > > Suppose I have a batch file called mybatch.bat and I want to run it > > from a python script. How can I call this batch file in python script? > > > Thanx/NSP > > The subprocess module should work. > Thanx to all those who responded. It was quite simple.
import os os.system("mybatch.bat") NSP -- http://mail.python.org/mailman/listinfo/python-list