TreqPython HTTP 客戶端開發(fā)包
Treq 是一個 HTTP 客戶端開發(fā)包,靈感來自于 Requests,運行在 Twisted 之上,異步的而且支持高并發(fā)。
>>> from treq import get
>>> def done(response):
... print response.code
... reactor.stop()
>>> get("http://www.github.com").addCallback(done)
>>> from twisted.internet import reactor
>>> reactor.run()
200評論
圖片
表情
