我在交互式 python 解释器中输入了来自 tornado 网站的AsyncHTTPClient
示例代码,但异步 HTTP 请求从未执行。
def handle_request(response):
if response.error:
print "Error:", response.error
else:
print response.body
http_client = AsyncHTTPClient()
http_client.fetch("http://www.google.com/", handle_request)
# handle_request function is never executed (nothing is printed)
我可以使用AsyncHTTPClient
not 作为 Web 服务器处理的一部分吗?