Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #71786

Re: Python Internet Database

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <joshua.landau.ws@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.002
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'subject:Python': 0.06; 'compiler': 0.07; 'pypy': 0.07; 'python': 0.11; 'apache': 0.15; '22:06,': 0.16; 'mean,': 0.16; 'numpy': 0.16; 'optimised': 0.16; 'sat,': 0.16; 'sender:addr:gmail.com': 0.17; 'wrote:': 0.18; 'module': 0.19; 'code,': 0.22; 'to:name:python-list@python.org': 0.22; 'install': 0.23; 'compilation': 0.24; 'library,': 0.24; 'decide': 0.24; 'server.': 0.24; 'header:In-Reply-To:1': 0.27; 'hosting': 0.29; 'host': 0.29; 'chris': 0.29; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'page.': 0.31; 'that.': 0.31; 'subject:Database': 0.31; 'though.': 0.31; 'service,': 0.32; 'run': 0.32; 'another': 0.32; 'running': 0.33; 'actual': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'application': 0.37; 'server': 0.38; 'to:addr:python-list': 0.38; 'that,': 0.38; 'to:addr:python.org': 0.39; 'inexpensive': 0.84
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:content-type:content-transfer-encoding; bh=/ltjjajv4fCZtijCY9b7RlahGj8L8fRJ+eWGAbaPYJA=; b=Q5uoPmVoh+ySvVrKK5bX5LmJVwTZhhbgvFMdGzvIy9gFE7vwYJ0ePd1lIco3XJQbTh e9P1wznDyHqoRHArhpK+abmwVtUz1vnw3FsO2tFtEj/r3HZ+qJw4Bg+hWsi37xaA18Vz b1B4xEKV9WIqsHfZOSUUUyrHYRyYKDVhshaMj5olGwtEAWk1ec17vcjugD4c17ofEBE0 BBWwl25FfIf/oLVXF+ORTKSm6GAtmayS1XJXuDOZWgYRln2jTA16FKhtiuKkaMWAnL+Q DEGlxrzMb+9nh1kJNtraUQ0ItyBcfD80PLfVDuuCGCwd2P9yB4D5No73wUwiXrVC1nwq 9vnA==
X-Received by 10.180.212.48 with SMTP id nh16mr749558wic.49.1400551742733; Mon, 19 May 2014 19:09:02 -0700 (PDT)
MIME-Version 1.0
Sender joshua.landau.ws@gmail.com
In-Reply-To <CAPTjJmqSXx5VtNbVWvTLtoN9Hdnm+9LqHSrR_+6Y0gNAz+PH2g@mail.gmail.com>
References <caf3590c-ddd5-4921-98e3-3a49a3109899@googlegroups.com> <CAPTjJmqSXx5VtNbVWvTLtoN9Hdnm+9LqHSrR_+6Y0gNAz+PH2g@mail.gmail.com>
From Joshua Landau <joshua@landau.ws>
Date Tue, 20 May 2014 03:08:22 +0100
X-Google-Sender-Auth RyUatY8L_A0sDY7TTsg7golBz2o
Subject Re: Python Internet Database
To "python-list@python.org" <python-list@python.org>
Content-Type text/plain; charset=UTF-8
Content-Transfer-Encoding quoted-printable
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.10149.1400551745.18130.python-list@python.org> (permalink)
Lines 15
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1400551745 news.xs4all.nl 2874 [2001:888:2000:d::a6]:58933
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:71786

Show key headers only | View raw


On 9 May 2014 22:06, Chris Angelico <rosuav@gmail.com> wrote:
> On Sat, May 10, 2014 at 6:45 AM,  <junnia@gmail.com> wrote:
>> 2 - Jit compiler for using from a web server. I mean, one has a web server running under Apache in a hosting service like Hostgator, Daddy Host or another inexpensive service. I decide to run a few applications in Racket, but the application  requires number crunching. I install the Jit Racket in the hosting service, and call it from my dynamic generated page. My programs will run almost at the speed of optimised C.
>>
>
> For number crunching, you can use the numpy library, which is highly
> efficient. For general JIT compilation of actual Python code, PyPy
> will do that. AFAIK there's no standard module for that, though.

There's also Numba for JIT compilation of Numpy code inside CPython.

Back to comp.lang.python | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Python Internet Database junnia@gmail.com - 2014-05-09 13:45 -0700
  Re: Python Internet Database Chris Angelico <rosuav@gmail.com> - 2014-05-10 07:06 +1000
  Re: Python Internet Database Ian Kelly <ian.g.kelly@gmail.com> - 2014-05-09 15:07 -0600
  Re: Python Internet Database Terry Reedy <tjreedy@udel.edu> - 2014-05-09 17:15 -0400
  Re: Python Internet Database Ian Kelly <ian.g.kelly@gmail.com> - 2014-05-09 15:30 -0600
  Re: Python Internet Database Joshua Landau <joshua@landau.ws> - 2014-05-20 03:08 +0100

csiph-web