首页 > 代码库 > python编程(基于twisted的client编程)
python编程(基于twisted的client编程)
【 声明:版权全部,欢迎转载。请勿用于商业用途。 联系信箱: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/python from twisted.internet import protocol, reactor, endpoints class 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()
python编程(基于twisted的client编程)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。