以下は竜巻documentationのスニペットです。Pythonの竜巻AsyncHttpClientはリクエストを送信しません
def handle_response(response):
if response.error:
print("Error: %s" % response.error)
else:
print(response.body)
http_client = AsyncHTTPClient()
http_client.fetch("http://www.google.com/", handle_response)
ただし、コンソールには何も印刷されません。私は最後にtime.sleep
を追加しようとしましたが、それでも何も印刷されません。
また、自分のサーバーを指すように上記のURLを変更すると、自分のサーバーに要求を送信しません。 tornado.httpclient.HTTPClient
でも問題ありません。
私はMacBookのPython 3.6.1を使用しています。