使用tornado AsyncHTTPClient异步访问第三方资源

前言:

       描述下一个场景,可能由于权限和各种的限制导致,不是所有人都可以查询想要的信息,比如他的资产。然而我这边也不能直接从库里面查询,也是要通过申请好rest的去访问。

       这不用说的那么多,大家做平台开发的时候,一定会遇到去访问远端的数据,如果你用tornaod的话,就可以用httpclient的异步模式了。

       简单说下,什么是httpclient包? httpclient包是tornaod自带的http客户端,你可以想象成为curl和urllib2,他们所具备的功能,httpclient也都有的。

Hello, 又见面了,标注下链接,如果想看更多的关于Tornado的文章,请点击: http://blog.xiaorui.cc/?s=tornado

tornado的httpclient包,包含了两个模块,一个是同步的访问,一个是异步的访问。

http_client = AsyncHTTPClient()

这个是异步非阻塞的 http客户端, 这种方法需要提供 callback,当然他的异步是在tornado的体系里面体现出来的。

http_client = httpclient.HTTPClient()

这个同步阻塞的 http客户端, 这个完全就是同步的,也就是说,他堵塞了后,别人就不能在访问了。

这里简单说下他的用法:

用法很简单,这里的handle_reques是回调,也就是说,我访问了后产生了io堵塞,我会扔到后面,他自己搞定了后,直接会去调用handle_request的函数。

import tornado.ioloop
from tornado.httpclient import AsyncHTTPClient
def handle_request(response):
    '''callback needed when a response arrive'''
    if response.error:
        print "Error:", response.error
    else:
        print 'called'
        print response.body
http_client = AsyncHTTPClient() # we initialize our http client instance
http_client.fetch("http://xiaorui.cc", handle_request) # here we try
                    # to fetch an url and delegate its response to callback
tornado.ioloop.IOLoop.instance().start() # start the tornado ioloop to
                    # listen for events

大家可以多加上几个访问很慢的网站或者是根本不能访问的网站测试下。


#xiaorui.cc
import tornado.ioloop
from tornado.httpclient import AsyncHTTPClient
def handle_request(response):
    '''callback needed when a response arrive'''
    if response.error:
        print "Error:", response.error
    else:
        print 'called'
        print response.body
http_client = AsyncHTTPClient()
for i in range(10):                                               
    http_client.fetch("http://10.58.101.248/testsleep", handle_request)
tornado.ioloop.IOLoop.instance().start()

在服务端看到的日志是并发请求过来的。


大体的功能大家都了解了,现在说说用httpclient 常用的用法:


超时,这个很常用吧。

http_client.fetch("http://www.youtube.com",request_timeout=3,callback=self.on_fetch)

通过httpclient调用别人的接口,get post参数。

from tornado.httputil import url_concat
params = {"a": 1, "b": 2}
url = url_concat("http://xiaorui.cc/", params)
http_client = AsyncHTTPClient()
http_client.fetch(url, request_callback_handler)

有些接口需要你提交当前的cookie通过

login_cookies = response.headers.get_list('Set-Cookie')
request = httpclient.HTTPRequest(
        url='url',    #这里的url想要有东西就需要带着cookie
        method='GET',
        headers=self.__login_headers, #在这里携带cookie信息
)

如果你要在http server上做异步非阻塞请求的话,会用到下面的方法. tornado4.0以后就开始使用coroutine

from tornado.web import asynchronous, RequestHandler
from tornado.http_client import AsyncHTTPClient

class AsyncHandler(RequestHandler):                                          
    @asynchronous                                                               
    @gen.coroutine                                                              
    def get(self):                                                              
        http_client = AsyncHTTPClient()                                         
        response = yield http_client.fetch("http://xiaorui.cc")                
        do_something_with_response(response)                                    
        self.render("template.html") 

就先这样了~  有机会再进行补充下 ~



大家觉得文章对你有些作用! 如果想赏钱,可以用微信扫描下面的二维码,感谢!
另外再次标注博客原地址  xiaorui.cc

发表评论

邮箱地址不会被公开。 必填项已用*标注