爬虫--requests讲解

什么是requests?

Requests是用Python语言编写,基于urllib,采用Apache2 Licensed 开源协议的HTTP库。它比urllib更加方便,可以节约我们大量的工作,完全满足HTTP测试需求。

一句话——Python实现的简单易用的HTTP库

实例引入

import requests response = requests.get("") print(type(response)) print(response.status_code) print(type(response.text)) print(response.text) print(response.cookies)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgjwpp.html