requests 库的(stream)

查找requests的相应资料

By default, when you make a request, the body of the response is 
downloaded immediately. You can override this behaviour and defer 
downloading the response body until you access the Response.content 
attribute with the stream parameter:

tarball_url = 'https://github.com/kennethreitz/requests/tarball/master'
r = requests.get(tarball_url, stream=True)
 
 
  • 1
  • 2

At this point only the response headers have been downloaded and the 
connection remains open, hence allowing us to make content retrieval 
conditional:

if int(r.headers['content-length']) < TOO_LONG:
  content = r.content
  ...
 
 
  • 1
  • 2
  • 3

只有headers头被下载了,body中的数据还没有被下载,这样就能避免不必要的流量开销,只有当你使用r.content 的时候,所有body内容才会被下载

You can further control the workflow by use of the 
Response.iter_content() and Response.iter_lines() methods. 
Alternatively, you can read the undecoded body from the underlying 
urllib3 urllib3.HTTPResponse at Response.raw.

实时上还可以使用Response.iter_content() Response.iter_lines() 
Response.raw()来自己决定要读取多少数据

最后要注意的是,使用stream=True以后需要自己执行Response的 

关闭操作close


默认情况下requests对URL的访问是阻塞式的,可以通过使用 
1)grequests 
2)requests-futures 
来实现非阻塞式的访问

参考资料 
1.http://docs.python-requests.org/en/master/user/advanced/#body-content-workflow 
2.http://docs.python-requests.org/en/master/user/advanced/#blocking-or-non-blocking 
3.http://docs.python-requests.org/en/master/user/advanced/#blocking-or-non-blocking


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值