I want to run a service in windows which will keep running in background and will run a cron with specific time.
how i can do that in windows using python?
feedback
|
|
| |||
|
feedback
|
|
Make sure win32 api is installed. Basically, you subclass the BasicNTService. The win32 package docs has some more information. I also have a working example in some code I wrote that does this. WindowsServer.py that also mixes in Pyro for a Python remote control agent. | |||
|
feedback
|
|
A combination of cx_freeze and srvany could do the job. See this for srvany usage (replace dropbox with your exe) | |||
|
feedback
|