使用tornado.httpclient下载 - 非阻塞Python

时间:2015-09-01 10:31:52

标签: python callback tornado

def handle_request(param1,param2):
    if response.error:
        print "Error:", response.error
    else:
        print response.body
        print param1
        print param2


param1
param2
http_client = AsyncHTTPClient()
http_client.fetch("http://www.google.com/", handle_request)

我需要将param1和param2传递给handle_request

1 个答案:

答案 0 :(得分:2)

使用functools.partial

import functools

# handle_response will be called with three arguments:
# first the ones from the partial, and then the response
def handle_response(param1, param2, response): pass

http_client.fetch("http://www.google.com",
    functools.partial(handle_request, param1, param2))