RE: Python Processes for Win32

2005-02-05 Thread Robert Brewer
[EMAIL PROTECTED] wrote: > I have a daemon type script (daemon.py -- we'll say) that I would like > to have run continuously. I'd like to be able to do something like > this: > > daemon.py start > > ... and then to have it stop I'd like to do this: > > daemon.py stop > > I am having a hard time

Re: Python Processes for Win32

2005-02-05 Thread Do Re Mi chel La Si Do
Hi ! Look for "service" in PyWin @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

Python Processes for Win32

2005-02-05 Thread harlinseritt
I have a daemon type script (daemon.py -- we'll say) that I would like to have run continuously. I'd like to be able to do something like this: daemon.py start ... and then to have it stop I'd like to do this: daemon.py stop I am having a hard time googling for a clue as to how to accomplish th