Re: [Tutor] Daemonizing Scripts

2008-01-14 Thread Alan Gauld
"Lawrence Barrott" <[EMAIL PROTECTED]> wrote > Thank you I have read through the rest of the replies > for this problem and was wondering if something similar > could be done in Windows (XP). The equivalent to a daemon on XP is a service. If you do a bit of googling you should find an Active|

Re: [Tutor] Daemonizing Scripts

2008-01-13 Thread Michael Langford
I've had this work before: http://support.microsoft.com/kb/251192 Cygwin also has a service maker, but I'm unaware of the details of using it. --Michael On 1/14/08, Lawrence Barrott <[EMAIL PROTECTED]> wrote: > > >>Hello, > >> > >>How can a make a python script run in "deamon mode"? (on a

Re: [Tutor] Daemonizing Scripts

2008-01-13 Thread Lawrence Barrott
>>Hello,How can a make a python script run in "deamon mode"? (on a linux >>box)That is, I want to run the program via "python myfile.py" and have it >>drop me back to the command line. The program should continue running until >>I kill it via it's PID, the machine shuts >>down, or the p