Python爬虫利器1:Requests库的用法

Posted 小糊涂也学要编程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python爬虫利器1:Requests库的用法相关的知识,希望对你有一定的参考价值。

一、首先要利用pip安装Requests库

1.打开python安装目录如:F:\\python2.7\\Scripts

 2.然后进入cmd界面

 

3. 输入:pip install requests 后回车,即可完成安装。

二、Rquests库的使用

1.requests库提供了http所有的基本请求方式。例如:

r = requests.get("http://httpbin.org/get")
r = requests.post("http://httpbin.org/post")
r = requests.put("http://httpbin.org/put")
r = requests.delete("http://httpbin.org/delete")
r = requests.head("http://httpbin.org/head")
r = requests.options("http://httpbin.org/options")

 

以上是关于Python爬虫利器1:Requests库的用法的主要内容,如果未能解决你的问题,请参考以下文章

python爬虫---requests库的用法

python爬虫---requests库的用法

python爬虫---requests库的用法

Python爬虫编程思想(20):requests网络库的基本用法

Python爬虫利器三之Xpath语法与lxml库的用法

Python爬虫利器三之Xpath语法与lxml库的用法