美文网首页
网络爬虫与信息提取(一)

网络爬虫与信息提取(一)

作者: 持之以蘅 | 来源:发表于2020-03-12 14:48 被阅读0次

Requests库入门

安装

网站:www.python-requests.org
1.管理员身份打开cmd

pip install requests

进行安装
2.查看安装效果
IDLE(python自带的)查看:
访问百度网站


image.png

状态码为200,访问成功
utf-8编码,打印网页内容


image.png

Requests库的7个主要方法

image.png

get()方法

r=requets.get(url)

返回的r是一个Reponse对象,包含从服务器返回的所有资源
正式形式


image.png

Reponse对象的五个类型


image.png

两种编码方式的区别:
r.enconding:如果header中不村子啊charset,则认为编码为ISO-8859-1
r.apparent_encoding:根据网页的内容分析出的编码方式

相关文章

网友评论

      本文标题:网络爬虫与信息提取(一)

      本文链接:https://www.haomeiwen.com/subject/fsiujhtx.html