介绍

  1. #介绍:使用requests可以模拟浏览器的请求,比起之前用到的urllib,requests模块的api更加便捷(本质就是封装了urllib3)
  2.  
  3. #注意:requests库发送请求将网页内容下载下来以后,并不会执行js代码,这需要我们自己分析目标站点然后发起新的request请求
  4.  
  5. #安装:pip3 install requests
  6.  
  7. #各种请求方式:常用的就是requests.get()和requests.post()
  8. >>> import requests
  9. >>> r = requests.get('https://api.github.com/events')
  10. >>> r = requests.post('http://httpbin.org/post', data = {'key':'value'})
  11. >>> r = requests.put('http://httpbin.org/put', data = {'key':'value'})
  12. >>> r = requests.delete('http://httpbin.org/delete')
  13. >>> r = requests.head('http://httpbin.org/get')
  14. >>> r = requests.options('http://httpbin.org/get')

GET请求

  1. requests.get(url="",
  2. headers={'User-Agent':'',
  3.       'Referer':'',},
  4. Cookie={},
  5. ) #headers:请求头信息,User-Agent:浏览器标识,Referer:上次请求的url
      

POST请求

  1. #GET请求
  2. HTTP默认的请求方法就是GET
  3. * 没有请求体
  4. * 数据必须在1K之内!
  5. * GET请求数据会暴露在浏览器的地址栏中
  6.  
  7. GET请求常用的操作:
  8. 1. 在浏览器的地址栏中直接给出URL,那么就一定是GET请求
  9. 2. 点击页面上的超链接也一定是GET请求
  10. 3. 提交表单时,表单默认使用GET请求,但可以设置为POST
  11.  
  12. #POST请求
  13. (1). 数据不会出现在地址栏中
  14. (2). 数据的大小没有上限
  15. (3). 有请求体
  16. (4). 请求体中如果存在中文,会使用URL编码!
  17.  
  18. #!!!requests.post()用法与requests.get()完全一致,特殊的是requests.post()有一个data参数,用来存放请求体数据

发送post请求,模拟浏览器的登录行为

  1. '''
  2. 一 目标站点分析
  3. 浏览器输入https://github.com/login
  4. 然后输入错误的账号密码,抓包
  5. 发现登录行为是post提交到:https://github.com/session
  6. 而且请求头包含cookie
  7. 而且请求体包含:
  8. commit:Sign in
  9. utf8:✓
  10. authenticity_token:lbI8IJCwGslZS8qJPnof5e7ZkCoSoMn6jmDTsL1r/m06NLyIbw7vCrpwrFAPzHMep3Tmf/TSJVoXWrvDZaVwxQ==
  11. login:egonlin
  12. password:123
  13.  
  14. 二 流程分析
  15. 先GET:https://github.com/login拿到初始cookie与authenticity_token
  16. 返回POST:https://github.com/session, 带上初始cookie,带上请求体(authenticity_token,用户名,密码等)
  17. 最后拿到登录cookie
  18.  
  19. ps:如果密码时密文形式,则可以先输错账号,输对密码,然后到浏览器中拿到加密后的密码,github的密码是明文
  20. '''
  21.  
  22. import requests
  23. import re
  24.  
  25. #第一次请求
  26. r1=requests.get('https://github.com/login')
  27. r1_cookie=r1.cookies.get_dict() #拿到初始cookie(未被授权)
  28. authenticity_token=re.findall(r'name="authenticity_token".*?value="(.*?)"',r1.text)[0] #从页面中拿到CSRF TOKEN
  29.  
  30. #第二次请求:带着初始cookie和TOKEN发送POST请求给登录页面,带上账号密码
  31. data={
  32. 'commit':'Sign in',
  33. 'utf8':'✓',
  34. 'authenticity_token':authenticity_token,
  35. 'login':'xxxxxx',
  36. 'password':'xxxxx'
  37. }
  38. r2=requests.post('https://github.com/session',
  39. data=data,
  40. cookies=r1_cookie
  41. )
  42.  
  43. login_cookie=r2.cookies.get_dict()
  44.  
  45. #第三次请求:以后的登录,拿着login_cookie就可以,比如访问一些个人配置
  46. r3=requests.get('https://github.com/settings/emails',
  47. cookies=login_cookie)
  48.  
  49. print('xxxx' in r3.text) #True

自动登陆github(自己处理cookie)

  1. import requests
  2. import re
  3.  
  4. session=requests.session()
  5. #第一次请求
  6. r1=session.get('https://github.com/login')
  7. authenticity_token=re.findall(r'name="authenticity_token".*?value="(.*?)"',r1.text)[0] #从页面中拿到CSRF TOKEN
  8.  
  9. #第二次请求
  10. data={
  11. 'commit':'Sign in',
  12. 'utf8':'✓',
  13. 'authenticity_token':authenticity_token,
  14. 'login':'xxxx',
  15. 'password':'xxx'
  16. }
  17. r2=session.post('https://github.com/session',
  18. data=data,
  19. )
  20.  
  21. #第三次请求
  22. r3=session.get('https://github.com/settings/emails')
  23.  
  24. print('xxxx' in r3.text) #True

requests.session()自动保存cookie

补充

  1. requests.post(url='xxxxxxxx',
  2. data={'xxx':'yyy'}) #没有指定请求头,#默认的请求头:application/x-www-form-urlencoed
  3.  
  4. #如果我们自定义请求头是application/json,并且用data传值, 则服务端取不到值
  5. requests.post(url='',
  6. data={'':1,},
  7. headers={
  8. 'content-type':'application/json'
  9. })
  10.  
  11. requests.post(url='',
  12. json={'':1,},
  13. ) #默认的请求头:application/json

响应Response

  1. import requests
  2. respone=requests.get('http://www.jianshu.com')
  3. # respone属性
  4. print(respone.text)
  5. print(respone.content)
  6.  
  7. print(respone.status_code)
  8. print(respone.headers)
  9. print(respone.cookies)
  10. print(respone.cookies.get_dict())
  11. print(respone.cookies.items())
  12.  
  13. print(respone.url)
  14. print(respone.history)
  15.  
  16. print(respone.encoding)
  17.  
  18. #关闭:response.close()
  19. from contextlib import closing
  20. with closing(requests.get('xxx',stream=True)) as response:
  21. for line in response.iter_content():
  22. pass

编码问题

  1. #编码问题
  2. import requests
  3. response=requests.get('http://www.autohome.com/news')
  4. # response.encoding='gbk' #汽车之家网站返回的页面内容为gb2312编码的,而requests的默认编码为ISO-8859-1,如果不设置成gbk则中文乱码
  5. print(response.text)

获取二进制数据

  1. import requests
  2.  
  3. response=requests.get('https://timgsa.baidu.com/timg?image&quality=80&
    size=b9999_10000&sec=1509868306530&di=712e4ef3ab258b36e9f4b48e85a81c9d&imgtype=0&
    src=http%3A%2F%2Fc.hiphotos.baidu.com%2Fimage%2Fpic%2Fitem%2F11385343fbf2b211e1fb58a1c08065380dd78e0c.jpg')
  4.  
  5. with open('a.jpg','wb') as f:
  6. f.write(response.content)
  1. #stream参数:一点一点的取,比如下载视频时,如果视频100G,用response.content然后一下子写到文件中是不合理的
  2.  
  3. import requests
  4.  
  5. response=requests.get('https://gss3.baidu.com/
    6LZ0ej3k1Qd3ote6lo7D0j9wehsv/tieba-smallvideo-transcode/1767502_56ec685f9c7ec542eeaf6eac93a65dc7_6fe25cd1347c_3.mp4',
  6. stream=True)
  7.  
  8. with open('b.mp4','wb') as f:
  9. for line in response.iter_content():
  10. f.write(line)

解析json

  1. #解析json
  2. import requests
  3. response=requests.get('http://httpbin.org/get')
  4.  
  5. import json
  6. res1=json.loads(response.text) #太麻烦
  7.  
  8. res2=response.json() #直接获取json数据
  9.  
  10. print(res1 == res2) #True

Redirection and History

  1. import requests
  2. import re
  3.  
  4. #第一次请求
  5. r1=requests.get('https://github.com/login')
  6. r1_cookie=r1.cookies.get_dict() #拿到初始cookie(未被授权)
  7. authenticity_token=re.findall(r'name="authenticity_token".*?value="(.*?)"',r1.text)[0] #从页面中拿到CSRF TOKEN
  8.  
  9. #第二次请求:带着初始cookie和TOKEN发送POST请求给登录页面,带上账号密码
  10. data={
  11. 'commit':'Sign in',
  12. 'utf8':'✓',
  13. 'authenticity_token':authenticity_token,
  14. 'login':'317828332@qq.com',
  15. 'password':'alex3714'
  16. }
  17.  
  18. #测试一:没有指定allow_redirects=False,则响应头中出现Location就跳转到新页面,r2代表新页面的response
  19. r2=requests.post('https://github.com/session',
  20. data=data,
  21. cookies=r1_cookie
  22. )
  23.  
  24. print(r2.status_code) #
  25. print(r2.url) #看到的是跳转后的页面
  26. print(r2.history) #看到的是跳转前的response
  27. print(r2.history[0].text) #看到的是跳转前的response.text
  28.  
  29. #测试二:指定allow_redirects=False,则响应头中即便出现Location也不会跳转到新页面,r2代表的仍然是老页面的response
  30. r2=requests.post('https://github.com/session',
  31. data=data,
  32. cookies=r1_cookie,
  33. allow_redirects=False
  34. )
  35.  
  36. print(r2.status_code) #
  37. print(r2.url) #看到的是跳转前的页面https://github.com/session
  38. print(r2.history) #[]

高级用法

1、SSL Cert Verification

  1. #证书验证(大部分网站都是https)
  2. import requests
  3. respone=requests.get('https://www.12306.cn') #如果是ssl请求,首先检查证书是否合法,不合法则报错,程序终端
  4.  
  5. #改进1:去掉报错,但是会报警告
  6. import requests
  7. respone=requests.get('https://www.12306.cn',verify=False) #不验证证书,报警告,返回200
  8. print(respone.status_code)
  9.  
  10. #改进2:去掉报错,并且去掉警报信息
  11. import requests
  12. from requests.packages import urllib3
  13. urllib3.disable_warnings() #关闭警告
  14. respone=requests.get('https://www.12306.cn',verify=False)
  15. print(respone.status_code)
  16.  
  17. #改进3:加上证书
  18. #很多网站都是https,但是不用证书也可以访问,大多数情况都是可以携带也可以不携带证书
  19. #知乎\百度等都是可带可不带
  20. #有硬性要求的,则必须带,比如对于定向的用户,拿到证书后才有权限访问某个特定网站
  21. import requests
  22. respone=requests.get('https://www.12306.cn',
  23. cert=('/path/server.crt',
  24. '/path/key'))
  25. print(respone.status_code)

2、使用代理

  1. #官网链接: http://docs.python-requests.org/en/master/user/advanced/#proxies
  2.  
  3. #代理设置:先发送请求给代理,然后由代理帮忙发送(封ip是常见的事情)
  4. import requests
  5. proxies={
  6. 'http':'http://egon:123@localhost:9743',#带用户名密码的代理,@符号前是用户名与密码
  7. 'http':'http://localhost:9743',
  8. 'https':'https://localhost:9743',
  9. }
  10. respone=requests.get('https://www.12306.cn',
  11. proxies=proxies)
  12.  
  13. print(respone.status_code)
  14.  
  15. #支持socks代理,安装:pip install requests[socks]
  16. import requests
  17. proxies = {
  18. 'http': 'socks5://user:pass@host:port',
  19. 'https': 'socks5://user:pass@host:port'
  20. }
  21. respone=requests.get('https://www.12306.cn',
  22. proxies=proxies)
  23.  
  24. print(respone.status_code)

3、超时设置

  1. #超时设置
  2. #两种超时:float or tuple
  3. #timeout=0.1 #代表接收数据的超时时间
  4. #timeout=(0.1,0.2)#0.1代表链接超时 0.2代表接收数据的超时时间
  5.  
  6. import requests
  7. respone=requests.get('https://www.baidu.com',
  8. timeout=0.0001)

4、 认证设置

  1. #官网链接:http://docs.python-requests.org/en/master/user/authentication/
  2.  
  3. #认证设置:登陆网站是,弹出一个框,要求你输入用户名密码(与alter很类似),此时是无法获取html的
  4. # 但本质原理是拼接成请求头发送
  5. # r.headers['Authorization'] = _basic_auth_str(self.username, self.password)
  6. # 一般的网站都不用默认的加密方式,都是自己写
  7. # 那么我们就需要按照网站的加密方式,自己写一个类似于_basic_auth_str的方法
  8. # 得到加密字符串后添加到请求头
  9. # r.headers['Authorization'] =func('.....')
  10.  
  11. #看一看默认的加密方式吧,通常网站都不会用默认的加密设置
  12. import requests
  13. from requests.auth import HTTPBasicAuth
  14. r=requests.get('xxx',auth=HTTPBasicAuth('user','password'))
  15. print(r.status_code)
  16.  
  17. #HTTPBasicAuth可以简写为如下格式
  18. import requests
  19. r=requests.get('xxx',auth=('user','password'))
  20. print(r.status_code)

5、异常处理

  1. #异常处理
  2. import requests
  3. from requests.exceptions import * #可以查看requests.exceptions获取异常类型
  4.  
  5. try:
  6. r=requests.get('http://www.baidu.com',timeout=0.00001)
  7. except ReadTimeout:
  8. print('===:')
  9. # except ConnectionError: #网络不通
  10. # print('-----')
  11. # except Timeout:
  12. # print('aaaaa')
  13.  
  14. except RequestException:
  15. print('Error')

6、上传文件

  1. import requests
  2. files={'file':open('a.jpg','rb')}
  3. respone=requests.post('http://httpbin.org/post',files=files)
  4. print(respone.status_code)

python爬虫之requests模块介绍的更多相关文章

  1. 孤荷凌寒自学python第六十七天初步了解Python爬虫初识requests模块

    孤荷凌寒自学python第六十七天初步了解Python爬虫初识requests模块 (完整学习过程屏幕记录视频地址在文末) 从今天起开始正式学习Python的爬虫. 今天已经初步了解了两个主要的模块: ...

  2. Python爬虫练习(requests模块)

    Python爬虫练习(requests模块) 关注公众号"轻松学编程"了解更多. 一.使用正则表达式解析页面和提取数据 1.爬取动态数据(js格式) 爬取http://fund.e ...

  3. python爬虫之requests库介绍(二)

    一.requests基于cookie操作 引言:有些时候,我们在使用爬虫程序去爬取一些用户相关信息的数据(爬取张三“人人网”个人主页数据)时,如果使用之前requests模块常规操作时,往往达不到我们 ...

  4. Python爬虫之requests模块(2)

    一.今日内容 session处理cookie proxies参数设置请求代理ip 基于线程池的数据爬取 二.回顾 xpath的解析流程 bs4的解析流程 常用xpath表达式 常用bs4解析方法 三. ...

  5. Python 爬虫二 requests模块

    requests模块 Requests模块 get方法请求 整体演示一下: import requests response = requests.get("https://www.baid ...

  6. Python爬虫之requests库介绍(一)

    一:Requests: 让 HTTP 服务人类 虽然Python的标准库中 urllib2 模块已经包含了平常我们使用的大多数功能,但是它的 API 使用起来让人感觉不太好,而 Requests 自称 ...

  7. Python爬虫之requests模块(1)

    一.引入 Requests 唯一的一个非转基因的 Python HTTP 库,人类可以安全享用. 警告:非专业使用其他 HTTP 库会导致危险的副作用,包括:安全缺陷症.冗余代码症.重新发明轮子症.啃 ...

  8. python爬虫值requests模块

    - 基于如下5点展开requests模块的学习 什么是requests模块 requests模块是python中原生的基于网络请求的模块,其主要作用是用来模拟浏览器发起请求.功能强大,用法简洁高效.在 ...

  9. Python爬虫(requests模块)

     Requests是唯一的一个非转基因的Python HTTP库,人类可以安全享用. Requests基础学习 使用方法: 1.导入Requests模块: import requests 2.尝试用g ...

随机推荐

  1. 使用 webpack 打包 font 字体的问题

    之前在使用 Vue 做项目的时候使用了 font 字体,然而在打包的时候 font 字体的引用路径不正确. 解决办法就是在 webpack 的配置文件中设置根路径 目录在 \config\index. ...

  2. ArcGIS API for JavaScript 4.2学习笔记[12] View的弹窗(Popup)

    看本文前最好对第二章(Mapping and Views)中的Map和View类有理解. 视图类有一个属性是Popup类型的popup,查阅API知道这个就是视图的弹窗,每一个View的实例都有一个p ...

  3. kafka副本机制之数据可靠性

    一.概述 为了提升集群的HA,Kafka从0.8版本开始引入了副本(Replica)机制,增加副本机制后,每个副本可以有多个副本,针对每个分区,都会从副本集(Assigned Replica,AR)中 ...

  4. ZooKeeper如何保证单一视图

    由于ZooKeeper的数据模型简单且全部在内存中,ZooKeeper的速度非常快.它提供了一系列保证: • 顺序一致性 • 原子性 • 单一视图 • 可靠性 • 实时性 下面将结合源码(3.4.10 ...

  5. Docker(八):Docker端口映射

    1.随机映射 docker run -P -d --name mynginx1 nginx [root@node1 ~]# docker ps -l CONTAINER ID IMAGE COMMAN ...

  6. Nodejs进阶:crypto模块中你需要掌握的安全基础

    本文摘录自<Nodejs学习笔记>,更多章节及更新,请访问 github主页地址. 一. 文章概述 互联网时代,网络上的数据量每天都在以惊人的速度增长.同时,各类网络安全问题层出不穷.在信 ...

  7. Cleaner, more elegant, and harder to recognize(翻译)

    Cleaner, more elegant, and harder to recognize 更整洁,更优雅,但更难识别 看来,有些人把我几个月前一篇文章的标题"Cleaner,more e ...

  8. 再谈javascript面向对象编程

    前言:虽有陈皓<Javascript 面向对象编程>珠玉在前,但是我还是忍不住再画蛇添足的补上一篇文章,主要是因为javascript这门语言魅力.另外这篇文章是一篇入门文章,我也是才开始 ...

  9. Asp.net MVC在Razor中输出Html的两种方式

    http://qubernet.blog.163.com/blog/static/177947284201485104616368/ Razor中所有的Html都会自动编码,这样就不需要我们手动去编码 ...

  10. 树链剖分( 洛谷P3384 )

    我们有时候遇到这样一类题目,让我们维护树上路径的某些信息,这个时候发现我们无法用线段树或者树状数组来维护这些信息,那么我们就有着一种新的数据结构,树剖:将一棵树划分成若干条链,用数据结构去维护每条链, ...