Re: [Twisted-Python] How to hook at StandardIO factory to a twistd app

2009-04-08 Thread Itamar Shtull-Trauring
> Hi Twisted! > > Could a kind soul provide me an example of how to connect my StandardIO > factory to a twistd app? Here is an overview of my code > > class MyProtocol(basic.LineReceiver): > # Blah Blah > > class MyFactory( stdio.StandardIO ): > def __init__(self, protocol): >

Re: [Twisted-Python] How to hook at StandardIO factory to a twistd app

2009-04-08 Thread Alex Clemesha
On Wed, Apr 8, 2009 at 9:14 AM, wrote: > Hi Twisted! > > Could a kind soul provide me an example of how to connect my StandardIO > factory to a twistd app?  Here is an overview of my code > > class MyProtocol(basic.LineReceiver): >    # Blah Blah > > class MyFactory( stdio.StandardIO ): >    def

[Twisted-Python] How to hook at StandardIO factory to a twistd app

2009-04-08 Thread akrherz
Hi Twisted! Could a kind soul provide me an example of how to connect my StandardIO factory to a twistd app? Here is an overview of my code class MyProtocol(basic.LineReceiver): # Blah Blah class MyFactory( stdio.StandardIO ): def __init__(self, protocol): self.protocol = pro