python编程(基于twisted的客户端编程)

时间:2021-11-15 23:59:15

【 声明:版权所有,欢迎转载,请勿用于商业用途。 联系信箱:feixiaoxing @163.com】


    python的twisted比较有意思,既可以做server方面的编程,也可以做client方面的编程。关于这方面的编程,最简单的例子就是echo。


    client 代码如下,

#!/usr/bin/python
from twisted.internet.protocol import Protocol, ClientFactory
from sys import stdout
from twisted.internet import reactor

class Echo(Protocol):
def dataReceived(self, data):
stdout.write(data)

class EchoClientFactory(ClientFactory):
def startedConnecting(self, connector):
print 'Started to connect.'

def buildProtocol(self, addr):
print 'Connected.'
return Echo()

def clientConnectionLost(self, connector, reason):
print 'Lost connection. Reason:', reason

def clientConnectionFailed(self, connector, reason):
print 'Connection failed. Reason:', reason

if __name__ == '__main__':
reactor.connectTCP('localhost', 1234, EchoClientFactory())
reactor.run()

    server 代码如下,

#!/usr/bin/pythonfrom twisted.internet import protocol, reactor, endpointsclass Echo(protocol.Protocol):    def dataReceived(self, data):        self.transport.write(data)class EchoFactory(protocol.Factory):    def buildProtocol(self, addr):        return Echo()if __name__ == '__main__':    endpoints.serverFromString(reactor, "tcp:1234").listen(EchoFactory())    reactor.run()