AsyncHTTPClient
tornado の Web サイトのサンプル コードをインタラクティブな Python インタープリターで入力しましたが、非同期 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
Web サーバー処理の一部として使用できませんか?