python编程(基于twisted的client编程)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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编程)的主要内容,如果未能解决你的问题,请参考以下文章

Twisted使用和scrapy源码剖析

编写Twisted Client以向多个API调用发送循环GET请求并记录响应

第一部分:Twisted理论基础

Python Twisted网络编程框架与异步编程入门教程

Python爬虫编程思想(26):Twisted的异步编程模型

python网络框架Twisted