Re: [Tutor] Executing a command from a specific directory

2009-09-24 Thread Ansuman Dash
Hi Kurt, Sorry for the late reply. My problem is resolved. Instead of "subprocess.Popen", I used "subprocess.call". Thanks all for your replies. AD On Fri, Sep 18, 2009 at 8:05 PM, Kurt Bendl wrote: > Hello, > > On Sep 18, 2009, at 5:16 AM, Ansuman Dash wrote: > > I have written it like th

Re: [Tutor] Executing a command from a specific directory

2009-09-18 Thread Kurt Bendl
Hello, On Sep 18, 2009, at 5:16 AM, Ansuman Dash wrote: I have written it like that. It is like press 1 and it ll download file1 and press 2 it ll download file2 etc But my question was I am using "time.sleep()" to make my script to wait for the file download and then validate it in lo

Re: [Tutor] Executing a command from a specific directory

2009-09-18 Thread Sander Sweers
On Fri, 2009-09-18 at 14:46 +0530, Ansuman Dash wrote: > I have written it like that. It is like press 1 and it ll download > file1 and > press 2 it ll download file2 etc But without providing people how you accomplish this there is no way to help. > But my question was I am using "time.sleep

Re: [Tutor] Executing a command from a specific directory

2009-09-18 Thread Lie Ryan
Ansuman Dash wrote: Hi, I have written it like that. It is like press 1 and it ll download file1 and press 2 it ll download file2 etc What is "like that"? We are not psychic that could read your mind... Describe the way you downloaded the file. __

Re: [Tutor] Executing a command from a specific directory

2009-09-18 Thread Ansuman Dash
Hi, I have written it like that. It is like press 1 and it ll download file1 and press 2 it ll download file2 etc But my question was I am using "time.sleep()" to make my script to wait for the file download and then validate it in log file, so is there any other way I can synchronize my code

Re: [Tutor] Executing a command from a specific directory

2009-09-17 Thread Lie Ryan
Ansuman Dash wrote: I am downloading files using various command (because files are different) meant for a executable. What is "various commands"? Are you using wget/curl or similar command-line downloader programs? Or are you using a python-based script (that uses urllib)? Or are you using a

Re: [Tutor] Executing a command from a specific directory

2009-09-17 Thread Ansuman Dash
I am downloading files using various command (because files are different) meant for a executable. So I have created event driven program to download these files one by one. But some files are very huge so I want to know how can I synchronize it with my code. That means I want to make my code wai

Re: [Tutor] Executing a command from a specific directory

2009-09-17 Thread Kent Johnson
On Thu, Sep 17, 2009 at 8:40 AM, Ansuman Dash wrote: > I am using same process for multiple file download. So I need to download > those one by one. > > Moreover some files are very huge (around 120 MB). So I need to make script > to wait before verifying the file is downloaded. I don't understan

Re: [Tutor] Executing a command from a specific directory

2009-09-17 Thread Ansuman Dash
I am using same process for multiple file download. So I need to download those one by one. Moreover some files are very huge (around 120 MB). So I need to make script to wait before verifying the file is downloaded. Thanks AD On Thu, Sep 17, 2009 at 5:34 PM, Kent Johnson wrote: > On Thu, Sep

Re: [Tutor] Executing a command from a specific directory

2009-09-17 Thread Kent Johnson
On Thu, Sep 17, 2009 at 5:47 AM, Ansuman Dash wrote: > Hi, > > I modified my code little bit and it is working fine now, > > = >     if os.access("C:/Python25/Own.log", os.F_OK): >     f = open("C:/Python25/Own.log") >     time.sleep(30)

Re: [Tutor] Executing a command from a specific directory

2009-09-17 Thread Ansuman Dash
Hi, I modified my code little bit and it is working fine now, = if os.access("C:/Python25/Own.log", os.F_OK): f = open("C:/Python25/Own.log") time.sleep(30) try: line = f.readlines() a = string

Re: [Tutor] Executing a command from a specific directory

2009-09-16 Thread Steve Willoughby
> Ansuman Dash wrote: > >Now I am trying to validate that the command is executed successfully. > >I have written following script to validate the log file which is created > >after running the command. Notice what's happening here: > >for line in f.readlines(): > >a=l

Re: [Tutor] Executing a command from a specific directory

2009-09-16 Thread Dave Angel
(Don't top-post; it makes reading the thread quite confusing) Ansuman Dash wrote: Hi, Thank you very much for the quick response. Code is working fine. Now I am trying to validate that the command is executed successfully. I have written following script to validate the log file which is cr

Re: [Tutor] Executing a command from a specific directory

2009-09-16 Thread Alan Gauld
"Ansuman Dash" wrote In Python scripting, how can I execute a command (which can be run from spcific directory) and then retrieve the result (after executing the command it give the command is executed successfull or not), so that I can validate it. There are sweveral ways to do this but