我可以使用Tornado工具编写HTTP客户端查询吗?而不是在标准库中使用http.client模块。
等效的Tornado代码是什么:
curl 'http://localhost:2222/foo?bar=1'
答案 0 :(得分:2)
字面上的等价物是
python -m tornado.httpclient 'http://localhost:2222/foo?bar=1'
或者在协程中
print (yield AsyncHTTPClient().fetch('http://localhost:2222/foo?bar=1')).body