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


Groups > comp.lang.python > #20793

Re: asynchronous downloading

Path csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <g.rodola@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.065
X-Spam-Evidence '*H*': 0.87; '*S*': 0.00; 'example:': 0.03; 'asynchat': 0.16; 'cc:addr:python-list': 0.16; 'url:bugs': 0.17; 'archives': 0.21; 'received:209.85.210.174': 0.21; 'received:mail- iy0-f174.google.com': 0.21; "doesn't": 0.22; 'header:In-Reply- To:1': 0.22; 'url:code': 0.28; 'message-id:@mail.gmail.com': 0.29; 'far.': 0.29; 'example': 0.29; 'problem': 0.29; 'cc:addr:python.org': 0.29; 'cc:addr:googlegroups.com': 0.30; 'actually': 0.31; '---': 0.31; 'actual': 0.32; 'fundamental': 0.34; 'maintains': 0.34; 'from:charset:iso-8859-1': 0.35; 'url:python': 0.35; 'cc:2**1': 0.36; 'received:google.com': 0.37; 'received:209.85': 0.38; 'url:org': 0.39; 'received:209': 0.39; 'point': 0.40; 'header:Received:6': 0.61; 'design': 0.61; 'url:p': 0.62; 'febbraio': 0.84; 'python-dev': 0.84
Received-SPF pass (google.com: domain of g.rodola@gmail.com designates 10.43.45.10 as permitted sender) client-ip=10.43.45.10;
Authentication-Results mr.google.com; spf=pass (google.com: domain of g.rodola@gmail.com designates 10.43.45.10 as permitted sender) smtp.mail=g.rodola@gmail.com; dkim=pass header.i=g.rodola@gmail.com
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=GTSID/KfYcNideIkZ20utx/vdOLXt18VDMFJ47+pc78=; b=bxBkloCJPa2B83+VMP3W1Q/EkHpjPd9gBNedyE7uFSxiqD356RxrZnbW1mrxKj2DhQ MSiVsJLDn4BFu6TAR3EtG4EO0egxDlflGyWJ8T8s9Wt4j4zKNl4n4vERSRpQ1u4c1lrv HwHyotR/PwUcv0DT2UGyqnRkNJ8PMTuSiuA0I=
MIME-Version 1.0
In-Reply-To <12104574.700.1330045825791.JavaMail.geo-discussion-forums@pbcwj5>
References <33089103.45.1329980290357.JavaMail.geo-discussion-forums@pbne2> <mailman.81.1330018318.3037.python-list@python.org> <12104574.700.1330045825791.JavaMail.geo-discussion-forums@pbcwj5>
Date Fri, 24 Feb 2012 10:03:45 +0100
Subject Re: asynchronous downloading
From Giampaolo Rodolà <g.rodola@gmail.com>
To Plumo <richardbp@gmail.com>
Content-Type text/plain; charset=ISO-8859-1
Cc python-list@python.org, comp.lang.python@googlegroups.com
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.12
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://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 <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.116.1330074228.3037.python-list@python.org> (permalink)
Lines 17
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1330074228 news.xs4all.nl 6915 [2001:888:2000:d::a6]:56718
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:20793

Show key headers only | View raw


Il 24 febbraio 2012 02:10, Plumo <richardbp@gmail.com> ha scritto:
> that example is excellent - best use of asynchat I have seen so far.
>
> I read through the python-dev archives and found the fundamental problem is no one maintains asnycore / asynchat.

Well, actually I do/did.
Point with asyncore/asynchat is that it's original design is so flawed
and simplicistic it doesn't allow actual customization without
breaking compatibility.
See for example:
http://bugs.python.org/issue6692


--- Giampaolo
http://code.google.com/p/pyftpdlib/
http://code.google.com/p/psutil/
http://code.google.com/p/pysendfile/

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


Thread

asynchronous downloading Plumo <richardbp@gmail.com> - 2012-02-22 22:58 -0800
  Re: asynchronous downloading Justin Ezequiel <justin.mailinglists@gmail.com> - 2012-02-22 23:25 -0800
  Re: asynchronous downloading Mark Hammond <mhammond@skippinet.com.au> - 2012-02-23 22:20 +1100
  Re: asynchronous downloading Paul Rubin <no.email@nospam.invalid> - 2012-02-23 03:46 -0800
    Re: asynchronous downloading Plumo <richardbp@gmail.com> - 2012-02-23 16:28 -0800
  Re: asynchronous downloading Richard Baron Penman <richardbp@gmail.com> - 2012-02-24 00:50 +1100
  Re: asynchronous downloading Giampaolo Rodolà <g.rodola@gmail.com> - 2012-02-23 18:31 +0100
    Re: asynchronous downloading Plumo <richardbp@gmail.com> - 2012-02-23 17:10 -0800
    Re: asynchronous downloading Plumo <richardbp@gmail.com> - 2012-02-23 17:10 -0800
      Re: asynchronous downloading Fayaz Yusuf Khan <fayaz.yusuf.khan@gmail.com> - 2012-02-23 18:31 -0800
      Re: asynchronous downloading Giampaolo Rodolà <g.rodola@gmail.com> - 2012-02-24 10:03 +0100
      Re: asynchronous downloading Richard Baron Penman <richardbp@gmail.com> - 2012-02-26 08:44 +1100

csiph-web