还是看使用场景:
1,httplib和httplib2直接处理HTTP /HTTP请求和响应,并为您提供更多空间来完成自己的工作。
2,urllib和urllib2构建在httplib上,它们更抽象而强大,但有时候不能满足您对某些HTTP相关操作的指定需求。对于一般的需求(不是很底层的),这个用的还是比较多的。
3,关于 requests,它应该是比 urllib* 系列更好使用的库。有的文章说它好,有的说它不好,还需要自己判断。
说它好的:What are the differences between the urllib, urllib2, and requests module?
说它不好的:Python——深入理解urllib、urllib2及requests(requests不建议使用?)
参考文章:
Python urllib和httplib?
What are the differences between the urllib, urllib2, and requests module?
Httplib Httplib2 Urllib Urllib2-what’s the Difference