1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
from twisted.internet import reactor, protocol
""" 这是定义一个客户端的类,同样继承了protocal.Protocol """
class EchoClient(protocol.Protocol): """这个方法定义了当和服务器的连接建立成功以后调用""" def connectionMade(self): print("connection is build, sending data...") self.transport.write("hello alex!")
def dataReceived(self, data): "这个函数方法是当数据收到这个事件时如何处理" print "Server said:", data exit('exit')
""" 出现连接断开这个事件后调用 """ def connectionLost(self, reason): print "====connection lost==="
""" 同服务端的类似,定义一个客户端的类,基础了protocol.ClinetFactory 用于定义客户端的遇到事件触发时候调用方法 """ class EchoFactory(protocol.ClientFactory): protocol = EchoClient
def clientConnectionFailed(self, connector, reason): print "Connection failed - goodbye!" reactor.stop()
def clientConnectionLost(self, connector, reason): print "Connection lost - goodbye!" reactor.stop()
def main(): f = EchoFactory() reactor.connectTCP("localhost", 9000, f) reactor.run()
if __name__ == '__main__': main()
|