from twisted.internet.protocol import ServerFactory class EchoFactory(ServerFactory): def buildProtocol(self, addr): p = Echo() p.factory = self return p