码迷,mamicode.com
首页 > 其他好文 > 详细

异步IO之tornado模块

时间:2019-05-01 18:35:58      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:port   ack   tornado   lse   res   and   sync   .com   hand   

from tornado.httpclient import AsyncHTTPClient
from tornado.httpclient import HTTPRequest
from tornado import ioloop


def handle_response(response):
    """
    处理返回值内容(需要维护计数器,来停止IO循环),调用 ioloop.IOLoop.current().stop()
    :param response: 
    :return: 
    """
    if response.error:
        print("Error:", response.error)
    else:
        print(response.body)


def func():
    url_list = [
        ‘http://www.baidu.com‘,
        ‘http://www.bing.com‘,
    ]
    for url in url_list:
        print(url)
        http_client = AsyncHTTPClient()
        http_client.fetch(HTTPRequest(url), handle_response)


ioloop.IOLoop.current().add_callback(func)
ioloop.IOLoop.current().start()

异步IO之tornado模块

标签:port   ack   tornado   lse   res   and   sync   .com   hand   

原文地址:https://www.cnblogs.com/Hessen/p/10800263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!