Python学习爬虫(2)—requests库

作者:IT小样

requests库真的很强大,实力吹一波。
通过requests库可以发起各种请求,本文对requests库进行简介。

get 和post请求区别

http请求有get,post,put,delete,option等各种。而我们常用的主要是get和post请求。
get和post区别:
1、get的参数放在url中,比如参数为user='admin’以及password=‘123’,url为http://example.com,则形式为:http://example.com?user=‘admin’&password=‘123’;而post请求的参数则放在body之中;相对来说,post比较安全
2、get请求一般是对资源的查询获取,而post请求需要提交数据来获取对应需求

requests库函数介绍

requests.get

以上文提到的get请求的例子,以Python来编写如下:
import requests response = requests.get("http://example.com?user='admin'&password='123'")
或者还有一种方式:

import requests
response = requests.ge

你可能感兴趣的:(Python爬虫,Python爬虫,requests库)