首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

在使用requests.get之后,我不能

确定您的问题是什么?

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

  • python requests模块详解

    requests是python的一个HTTP客户端库,跟urllib,urllib2类似,那为什么要用requests而不用urllib2呢?官方文档中是这样说明的:  python的标准库urllib2提供了大部分需要的HTTP功能,但是API太逆天了,一个简单的功能就需要一大堆代码。  我也看了下requests的文档,确实很简单,适合我这种懒人。下面就是一些简单指南。  插播个好消息!刚看到requests有了中文翻译版,建议英文不好的看看,内容也比我的博客好多了,具体链接是:http://cn.python-requests.org/en/latest/(不过是v1.1.0版,另抱歉,之前贴错链接了)。  1. 安装  安装很简单,我是win系统,就在这里下载了安装包(网页中download the zipball处链接),然后$ python setup.py install就装好了。  当然,有easy_install或pip的朋友可以直接使用:easy_install requests或者pip install requests来安装。  至于linux用户,这个页面还有其他安装方法。

    01

    Python使用requests库做爬虫时,乱码问题解决方案

    分析: res = requests.get(“http://www.baidu.com“) res.text返回的是Unicode型的数据。 使用res.content返回的是bytes型的数据。 也就是说,如果你想取文本,可以通过res.text。 如果想取图片,文件,则可以通过res.content。 方法1:使用res.content,得到的是bytes型,再转为str url='http://news.baidu.com' res = requests.get(url) html=res.content html_doc=str(html,'utf-8') #html_doc=html.decode("utf-8","ignore") print(html_doc) 方法2:使用res.text url="http://news.baidu.com" res=requests.get(url) res.encoding='utf-8' print(res.text) 方法3:使用res.text+apparent_encoding url="http://news.baidu.com" res=requests.get(url) res.encoding=res.apparent_encoding print(res.text)

    01
    领券