Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.albasani.net!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!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.011 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'subject:using': 0.04; 'instance': 0.05; 'pypy': 0.07; 'python': 0.08; 'message- id:@glegroupsg2000goo.googlegroups.com': 0.09; 'reply- to:addr:comp.lang.python': 0.09; 'to:addr:comp.lang.python': 0.09; 'subject:python': 0.11; 'protocol': 0.15; 'nginx)': 0.16; 'wsgi': 0.16; 'cc:addr:python-list': 0.16; '(but': 0.21; 'header:In-Reply- To:1': 0.22; 'server.': 0.24; 'subject:web': 0.28; 'bit': 0.28; 'server': 0.29; 'interact': 0.29; 'cc:addr:python.org': 0.30; 'version': 0.32; 'header:User-Agent:1': 0.34; 'force': 0.34; 'cc:2**1': 0.36; 'but': 0.37; 'received:google.com': 0.38; 'received:209.85': 0.38; 'should': 0.38; 'subject:: ': 0.39; "it's": 0.40; 'you.': 0.62; 'special': 0.67; 'header:Reply-To:1': 0.71; 'reply-to:no real name:2**0': 0.71; 'reply- to:addr:googlegroups.com': 0.74; 'complex,': 0.84; 'integrates': 0.84; 'recompile': 0.84 Newsgroups: comp.lang.python Date: Sat, 10 Sep 2011 20:21:46 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=82.239.111.183; posting-account=v7uz7AoAAADrY3ej1N8wVPiFcnr81fn4 References: User-Agent: G2/1.0 X-Google-Web-Client: true MIME-Version: 1.0 Subject: Re: using python in web applications From: Laurent To: comp.lang.python@googlegroups.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: comp.lang.python@googlegroups.com List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Message-ID: Lines: 7 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1315711316 news.xs4all.nl 2518 [2001:888:2000:d::a6]:58738 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:13104 Well PyPy is just an implementation of Python among many others (but limite= d to version 2.7). It is not a web server. If you want to make PyPy interac= t with a web server (such as nginx) you have to use a special protocol such= as WSGI or Fast-CGI. For best performances you can for instance use uWSGI = that integrates well with nginx but for this you have to recompile nginx. A= s you see it's a bit complex, you should read the wikis. May the Force be w= ith you.