Speno's Pythonic Avocado 18.2.2004

2004-02-18

Teaching Twisted

I gave a short presentation at work today on the basics of Twisted. I tried to cover what I consider Twisted's core networking features: Protocols, Transports, Reactors, Factories and Deferreds.

Here's the same code I used to demonstrate the first four of those items:

from twisted.internet import protocol from twisted.internet import reactor class CountingEchoProtocol(protocol.Protocol): def dataReceived(self, data): self.transport.write(data) self.factory.incrementCount(len(data)) data_written = self.factory.getCount() self.transport.write('Wrote %d bytes so far.\r\n' % data_written) class CountingEchoFactory(protocol.ServerFactory): protocol = CountingEchoProtocol def __init__(self, max=24): self.count = 0 self.max = max def incrementCount(self, length): self.count = self.count + length if self.count >= self.max: reactor.stop() def getCount(self): return self.count ce_factory = CountingEchoFactory(25) reactor.listenTCP(2323, ce_factory) reactor.run() print 'Wrote %d bytes total.' % ce_factory.getCount()

In prepartion for giving this informal talk, I spent about an hour or so just digging through the Twisted docs and/or the code answering my own questions. So hopefully my co-workers and I all got something from this.

Take care.

posted at 20:57:20    #    comment []    trackback []
February 2004
MoTuWeThFrSaSu
       1
2 3 4 5 6 7 8
9101112131415
16171819202122
23242526272829
Jan
2004
 Mar
2004

One python programmer's search for understanding and avocados. This isn't personal, only pythonic.

XML-Image Letterimage

© 2004-2005, John P. Speno