Re: Windows service in production?

2015-03-20 Thread Raymond Cote
On Mar 19, 2015, at 2:58 AM, jyothi.n...@gmail.com wrote: On Tuesday, August 16, 2011 at 10:02:02 AM UTC+5:30, snorble wrote: Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports

Re: Windows service in production?

2015-03-19 Thread jyothi . nadu
On Tuesday, August 16, 2011 at 10:02:02 AM UTC+5:30, snorble wrote: Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports back to the central server. Sort of a heartbeat type agent

Re: Windows service in production?

2015-03-19 Thread jyothi . nadu
On Tuesday, August 16, 2011 at 1:22:37 PM UTC+5:30, Tim Golden wrote: On 16/08/2011 05:32, snorble wrote: Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports back to the central

Re: Windows service in production?

2015-03-19 Thread Michiel Overtoom
On Mar 19, 2015, at 08:00, jyothi.n...@gmail.com wrote: file_path = D:\Tarang\Project\form1.py Use either slashes (/), raw strings, or double backslashes: file_path = D:/Tarang/Project/form1.py file_path = rD:\Tarang\Project\form1.py

Re: Windows service in production?

2015-03-19 Thread CHIN Dihedral
Please check wxpython and there was an example. -- https://mail.python.org/mailman/listinfo/python-list

Re: [Python] Re: Windows service in production?

2011-08-18 Thread Chris Gonnerman
Chiming in late here, but I've been running a very simple Python service for some time now on a number of computers. It's my Raw Print Server, available at http://newcenturycomputers.net/projects/rawprintserver.html, and I have instructions on the page for installing the Windows service

Re: Windows service in production?

2011-08-18 Thread Grummble
On 08/16/2011 12:32 AM, snorble wrote: Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports back to the central server. Sort of a heartbeat type agent to assist with this server is down

Re: [Python] Re: Windows service in production?

2011-08-18 Thread Chris Gonnerman
Chiming in late here, but I've been running a very simple Python service for some time now on a number of computers. It's my Raw Print Server, available at http://newcenturycomputers.net/projects/rawprintserver.html, and I have instructions on the page for installing the Windows service

Re: Windows service in production?

2011-08-18 Thread Stephen Hansen
On 8/15/11 9:32 PM, snorble wrote: Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports back to the central server. Sort of a heartbeat type agent to assist with this server is down, go

Re: Windows service in production?

2011-08-18 Thread Adam Jorgensen
August 2011 07:00, Stephen Hansen me+list/pyt...@ixokai.io wrote: On 8/15/11 9:32 PM, snorble wrote: Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports back to the central server. Sort

Re: Windows service in production?

2011-08-17 Thread Tim Golden
On 16/08/2011 15:46, snorble wrote: Interesting. Normally I would use py2exe then do myapp.exe -install to install the app as a service. How do you handle installing the service? Also what does the service show under the properties, for the executable? python.exe script.py or something else?

Re: Windows service in production?

2011-08-16 Thread Tim Golden
On 16/08/2011 05:32, snorble wrote: Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports back to the central server. Sort of a heartbeat type agent to assist with this server is down, go

Re: Windows service in production?

2011-08-16 Thread alex23
snorble snor...@hotmail.com wrote: If using Visual Studio and C# is the more reliable way, then I'll go that route. I love Python, but everything I read about Python services seems to have workarounds ahoy for various situations (or maybe that's just Windows services in general?). What

Re: Windows service in production?

2011-08-16 Thread aspineux
On Aug 16, 6:32 am, snorble snor...@hotmail.com wrote: Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports back to the central server. Sort of a heartbeat type agent to assist

Re: Windows service in production?

2011-08-16 Thread snorble
On Aug 16, 2:52 am, Tim Golden m...@timgolden.me.uk wrote: On 16/08/2011 05:32, snorble wrote: Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports back to the central server. Sort

Windows service in production?

2011-08-15 Thread snorble
Anyone know of a Python application running as a Windows service in production? I'm planning a network monitoring application that runs as a service and reports back to the central server. Sort of a heartbeat type agent to assist with this server is down, go check on it type situations. If using