HTTP 客户端开发包:Treq
                 jopen
                 12年前
            
                    类似于Python requests的API,构建在Twisted的HTTP客户端之上。它提供了一个简单,更高层次的API来发送HTTP请求。
>>> 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