Re: [Twisted-Python] Seeking OSS 'point to point' data transfer solution

2009-01-25 Thread Nicolas Toper
Hi, SCP? FTP? My company will be releasing soon in OSS an application built on top of Twisted that in other things perform this Nicolas On Tue, Jan 20, 2009 at 9:57 PM, Worsham, Michael < michael.wors...@morris.com> wrote: > I was recommended to look at the Twisted application framework for >

Re: [Twisted-Python] Which twisted should I install?

2009-01-28 Thread Nicolas Toper
Hi, there is a dmg already for MacOS Why don't you install it? On Wed, Jan 28, 2009 at 9:46 AM, Theron D. Huffman < huff...@tokyo.email.ne.jp> wrote: > On the Twisted website there is an 8.2.0 for Python 2.6 on Windows, and > an 8.2.0 for Python 2.5 on OS X 10.5. > > But I got OS X 10.5 running

Re: [Twisted-Python] GSoC

2009-02-12 Thread Nicolas Toper
Hi, I think it's a great idea. I'm also an ex-student in this program and I use Twisted quite a lot in my work. I am willing to help mentor if you need me. Best, Nicolas On Thu, Feb 12, 2009 at 10:32 PM, Esteve Fernandez wrote: > Hi all, > > the GSoC FAQ was recently published [1] and I wondere

Re: [Twisted-Python] Twisted developers: please donate your time!

2009-02-24 Thread Nicolas Toper
Hi, I will spend two weeks improving SMTP libraries. Best, Nicolas On Tue, Feb 24, 2009 at 9:25 AM, Michael Hudson wrote: > 2009/2/24 Itamar Shtull-Trauring : > > As part of the TSF's fundraising efforts, we are trying to get upfront > > donations of time you will spend developing Twisted. It

[Twisted-Python] Bug in twisted.names.client

2009-03-02 Thread Nicolas Toper
Hi, It seems the resolv file in twisted.names.client#maybeParseConfig is never closed. This creates a exceptions.IOError: [Errno 24] Too many open files: '/etc/resolv.conf (FYI I am resolving a domain very often in my script). Am I correct? Would you like me to submit a patch to correct th

Re: [Twisted-Python] Bug in twisted.names.client

2009-03-02 Thread Nicolas Toper
Good point, you are right. Thanks :) I can still commit a patch: really there just need a finally clause at the end of maybeParseConfig to close the file AFAI Best, Nicolas On Mon, Mar 2, 2009 at 11:06 PM, Jean-Paul Calderone wrote: > On Mon, 2 Mar 2009 22:55:26 +0100, Nicolas Toper wr

[Twisted-Python] ESMTP: method DIGEST-MD5 and IP authenticator

2009-05-27 Thread Nicolas Toper
Hi, I am going to add in the ESMTP class these two authentications methods. Are you interested in a patch? Best, Nico http://www.deviant-abstraction.net ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/m

[Twisted-Python] ESMTP extension

2009-05-28 Thread Nicolas Toper
Hi, I am using SMTP-AUTH with Twisted. I have extended smtp.mail to handle LOGIN and PLAIN on the server side (the version I have handles only CRAM-MD5). I am adding currently DIGEST-MD5. Do you want a patch? If yes, what is the best way to submit a patch (I could not find it on the wiki)? Best

Re: [Twisted-Python] ESMTP extension

2009-05-29 Thread Nicolas Toper
No problem, just DIGEST-MD5. No need for PLAIN or LOGIN? On Fri, May 29, 2009 at 7:25 AM, Jean-Paul Calderone wrote: > On Fri, 29 May 2009 01:00:05 -0500, Nicolas Toper wrote: >>Hi, >> >>I am using SMTP-AUTH with Twisted. I have extended smtp.mail to handle >>LOGIN a

Re: [Twisted-Python] ESMTP extension

2009-05-29 Thread Nicolas Toper
AFAIK the ESMTP client handles these cases, not the server. See http://twistedmatrix.com/trac/browser/trunk/twisted/mail/protocols.py#L125 Maybe I did not get something. On Sat, May 30, 2009 at 1:19 AM, Jean-Paul Calderone wrote: > On Fri, 29 May 2009 21:08:59 -0500, Nicolas Toper wr

Re: [Twisted-Python] Ideas on limiting/throttling spawnProcess

2011-10-29 Thread Nicolas Toper
For a similar use case, we're using a combination of cooperator with defertoprocess. I can explain more if anyone's interested. Le 29 oct. 2011 00:41, "Donal McMullan" a écrit : > I think twisted.internet.defer.DeferredSemaphore is designed for this. John > Paul Calderone answers a similar quest

Re: [Twisted-Python] Ideas on limiting/throttling spawnProcess

2011-10-31 Thread Nicolas Toper
Herzmann wrote: > On Sat, Oct 29, 2011 at 2:10 AM, Nicolas Toper wrote: > > For a similar use case, we're using a combination of cooperator with > > defertoprocess. > > > > I can explain more if anyone's interested. > > I would certainly be interested :)

Re: [Twisted-Python] Python multiprocessing and Twisted stopService - success story

2012-01-20 Thread Nicolas Toper
Hi Tom, How do you pass data between the parent and its children with multiprocessing? It worked fine with Twisted in debug but never in prod :( Best Nicolas On Wed, Jan 18, 2012 at 6:39 PM, Tom Sheffler wrote: > We are using Py2.6's multiprocessing with Twisted and things are working > nicely