Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.albasani.net!feeder.news-service.com!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.030 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.00; 'subject:: [': 0.03; 'subject:Python': 0.06; 'interpreter': 0.07; 'python': 0.08; 'server,': 0.12; 'subject:] ': 0.14; 'python;': 0.16; 'subject:Windows': 0.18; "doesn't": 0.22; 'header:In-Reply-To:1': 0.22; 'windows': 0.26; 'installing': 0.29; 'version.': 0.29; 'print': 0.29; 'from:addr:chris': 0.30; 'url:projects': 0.30; 'subject:?': 0.31; 'generally': 0.32; 'to:addr:python-list': 0.33; "i've": 0.34; 'header:User-Agent:1': 0.34; 'quite': 0.34; 'subject:service': 0.34; 'here,': 0.35; 'running': 0.35; 'but': 0.37; 'page': 0.37; 'install': 0.37; 'some': 0.38; 'subject:: ': 0.39; 'plain': 0.39; 'to:addr:python.org': 0.39; 'raw': 0.40; "it's": 0.40; 'computer.': 0.40; 'url:net': 0.60; 'full': 0.63; 'received:websitewelcome.com': 0.64; 'received:184': 0.67; 'computers.': 0.84; 'received:gateway04.websitewelcome.com': 0.91 Date: Thu, 18 Aug 2011 22:45:50 -0500 From: Chris Gonnerman User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.18) Gecko/20110617 Thunderbird/3.1.11 MIME-Version: 1.0 To: python-list@python.org Subject: Re: [Python] Re: Windows service in production? References: <90342eaa-28e2-4a86-9e5c-07299de10435@g9g2000yqb.googlegroups.com> <27ced2ef-7ae8-4b40-b4eb-c9168f369598@w11g2000vbp.googlegroups.com> <4E4BB152.5020904@timgolden.me.uk> In-Reply-To: <4E4BB152.5020904@timgolden.me.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - gator191.hostgator.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - gonnerman.org X-BWhitelist: no X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: ([10.0.1.176]) [207.192.237.37]:38880 X-Source-Auth: chris@newcenturycomputers.net X-Email-Count: 1 X-Source-Cap: bmV3Y2VudDtuZXdjZW50O2dhdG9yMTkxLmhvc3RnYXRvci5jb20= X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 10 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1313725560 news.xs4all.nl 23868 [2001:888:2000:d::a6]:49438 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:11829 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 version. It's really quite simple to do in plain Python; the only reason to use py2exe is if you don't want to install a full Python interpreter on the computer. But since I generally do anyway, it doesn't matter to me. -- Chris.