Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeder2.ecngs.de!ecngs!feeder.ecngs.de!xlned.com!feeder7.xlned.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.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'subject:Python': 0.05; 'python': 0.09; "person's": 0.09; 'cc:addr:python-list': 0.10; 'aug': 0.13; '21:52,': 0.16; 'from:addr:timgolden.me.uk': 0.16; 'from:name:tim golden': 0.16; 'gilles': 0.16; 'low.': 0.16; 'message-id:@timgolden.me.uk': 0.16; 'received:74.55.86': 0.16; 'received:74.55.86.74': 0.16; 'received:smtp.webfaction.com': 0.16; 'received:webfaction.com': 0.16; 'tjg': 0.16; 'yup,': 0.16; 'wrote:': 0.17; 'certainly': 0.17; 'solution.': 0.18; 'requests': 0.18; "i'd": 0.22; 'cc:2**0': 0.23; "i've": 0.23; 'cc:no real name:2**0': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply- To:1': 0.25; 'header:User-Agent:1': 0.26; 'cgi': 0.29; 'far,': 0.29; 'probably': 0.29; 'running': 0.32; 'getting': 0.33; '+0200,': 0.33; 'anyone': 0.33; 'another': 0.33; 'subject:?': 0.35; 'really': 0.36; 'but': 0.36; 'should': 0.36; 'resources': 0.37; 'quite': 0.37; 'subject:: ': 0.38; 'page': 0.38; 'received:192': 0.39; 'received:192.168': 0.40; 'your': 0.60; 'mentioned': 0.63; 'production': 0.63; 'details': 0.63; 'more': 0.63; 'here': 0.65; 'websites': 0.66; 'articles': 0.69; 'from:addr:mail': 0.71; 'to:none': 0.93 Date: Sun, 12 Aug 2012 22:26:19 +0100 From: Tim Golden User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 CC: python-list@python.org Subject: Re: Running Python web apps on shared ASO servers? References: <4i5g2890hj3d1tuqe21o0dssh39tair3s2@4ax.com> In-Reply-To: <4i5g2890hj3d1tuqe21o0dssh39tair3s2@4ax.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1344806873 news.xs4all.nl 6948 [2001:888:2000:d::a6]:42050 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:26955 On 12/08/2012 21:52, Gilles wrote: > On Sun, 12 Aug 2012 07:56:26 +0200, Dieter Maurer > wrote: >> You should probably read the mentioned forum resources to learn >> details about the Python support provided by your web site hoster. > > Yup, but so far, no answer, so I figured someone here might now. > > Those articles seem to indicate that CGI isn't a good solution when > mod_python isn't available Just to make a point: one person's "isn't a good solution" is another person's "works perfectly well for me". Modern servers are really quite quick: the cost of starting up a Python process and generating an HTML page can be really quite low. I've certainly had low-traffic production websites running for years on CGI without anyone complaining. If speed was an issue or if I thought that I'd be getting more requests than I am then I'd consider a more sophisticated solution. TJG