Python grequests模块使用场景及代码实例


Posted in Python onAugust 10, 2020

使用场景:

1) 爬虫设置ip代理池时验证ip是否有效

2)进行压测时,进行批量请求等等场景

grequests 利用 requests和gevent库,做了一个简单封装,使用起来非常方便。

grequests.map(requests, stream=False, size=None, exception_handler=None, gtimeout=None)

Python grequests模块使用场景及代码实例

另外,由于grequests底层使用的是requests,因此它支持

GET,OPTIONS, HEAD, POST, PUT, DELETE 等各种http method

所以以下的任务请求都是支持的

grequests.post(url, json={“name”:“zhangsan”})
grequests.delete(url)

代码如下:

import grequests

urls = [
  'http://www.baidu.com',
  'http://www.qq.com',
  'http://www.163.com',
  'http://www.zhihu.com',
  'http://www.toutiao.com',
  'http://www.douban.com'
]
rs = (grequests.get(u) for u in urls)
print(grequests.map(rs))  # [<Response [200]>, None, <Response [200]>, None, None, <Response [418]>]
def exception_handler(request, exception):
  print("Request failed")
reqs = [
  grequests.get('http://httpbin.org/delay/1', timeout=0.001),
  grequests.get('http://fakedomain/'),
  grequests.get('http://httpbin.org/status/500')
]
print(grequests.map(reqs, exception_handler=exception_handler))

实际操作中,也可以自定义返回的结果

修改grequests源码文件:

例如:

新增extract_item() 函数合修改map()函数

def extract_item(request):
  """
  提取request的内容
  :param request:
  :return:
  """
  item = dict()
  item["url"] = request.url
  item["text"] = request.response.text or ""
  item["status_code"] = request.response.status_code or 0
  return item

def map(requests, stream=False, size=None, exception_handler=None, gtimeout=None):
  """Concurrently converts a list of Requests to Responses.

  :param requests: a collection of Request objects.
  :param stream: If True, the content will not be downloaded immediately.
  :param size: Specifies the number of requests to make at a time. If None, no throttling occurs.
  :param exception_handler: Callback function, called when exception occured. Params: Request, Exception
  :param gtimeout: Gevent joinall timeout in seconds. (Note: unrelated to requests timeout)
  """
  requests = list(requests)
  pool = Pool(size) if size else None
  jobs = [send(r, pool, stream=stream) for r in requests]
  gevent.joinall(jobs, timeout=gtimeout)
  ret = []
  for request in requests:

    if request.response is not None:
      ret.append(extract_item(request))
    elif exception_handler and hasattr(request, 'exception'):
      ret.append(exception_handler(request, request.exception))
    else:
      ret.append(None)

  yield ret

可以直接调用:

import grequests
urls = [
  'http://www.baidu.com',
  'http://www.qq.com',
  'http://www.163.com',
  'http://www.zhihu.com',
  'http://www.toutiao.com',
  'http://www.douban.com'
]
rs = (grequests.get(u) for u in urls)
response_list = grequests.map(rs, gtimeout=10)
for response in next(response_list):
  print(response)

支持事件钩子

def print_url(r, *args, **kwargs):
print(r.url)

url = “http://www.baidu.com”
res = requests.get(url, hooks={“response”: print_url})
tasks = []
req = grequests.get(url, callback=print_url)
tasks.append(req)
ress = grequests.map(tasks)
print(ress)

Python grequests模块使用场景及代码实例

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python发送伪造的arp请求
Jan 09 Python
python实现360皮肤按钮控件示例
Feb 21 Python
Python的函数的一些高阶特性
Apr 27 Python
python3 shelve模块的详解
Jul 08 Python
Python用 KNN 进行验证码识别的实现方法
Feb 06 Python
Python使用re模块实现信息筛选的方法
Apr 29 Python
python 从csv读数据到mysql的实例
Jun 21 Python
详解Django中六个常用的自定义装饰器
Jul 04 Python
python3使用print打印带颜色的字符串代码实例
Aug 22 Python
Python中pyecharts安装及安装失败的解决方法
Feb 18 Python
Python3 操作 MySQL 插入一条数据并返回主键 id的实例
Mar 02 Python
Python学习之os模块及用法
Jun 03 Python
基于Python pyecharts实现多种图例代码解析
Aug 10 #Python
Python Celery异步任务队列使用方法解析
Aug 10 #Python
使用Python将语音转换为文本的方法
Aug 10 #Python
Python获取excel内容及相关操作代码实例
Aug 10 #Python
Python利用命名空间解析XML文档
Aug 10 #Python
Python如何定义有默认参数的函数
Aug 10 #Python
如何更换python默认编辑器的背景色
Aug 10 #Python
You might like
将PHP作为Shell脚本语言使用
2006/10/09 PHP
图解找出PHP配置文件php.ini的路径的方法
2014/08/20 PHP
WordPress中创建用户角色的相关PHP函数使用详解
2015/12/25 PHP
PHP实现支持CURL字符串证书传输的方法
2019/03/23 PHP
getElementById在任意一款浏览器中都可以用吗的疑问回复
2007/05/13 Javascript
利用WebBrowser彻底解决Web打印问题(包括后台打印)
2009/06/22 Javascript
javascript 继承实现方法
2009/08/26 Javascript
为JavaScript提供睡眠功能(sleep) 自编译JS引擎
2010/08/16 Javascript
JavaScript闭包实例讲解
2014/04/22 Javascript
jquery实现的下拉和收缩效果示例
2014/08/21 Javascript
JS实现alert中显示换行的方法
2015/12/17 Javascript
React-router 4 按需加载的实现方式及原理详解
2017/05/25 Javascript
详解使用Typescript开发node.js项目(简单的环境配置)
2017/10/09 Javascript
AngularJS下$http服务Post方法传递json参数的实例
2018/03/29 Javascript
原生js实现拖拽功能基本思路详解
2018/04/18 Javascript
Javascript实现购物车功能的详细代码
2018/05/08 Javascript
layui实现点击按钮给table添加一行
2018/08/10 Javascript
记录vue项目中遇到的一点小问题
2019/05/14 Javascript
通过JS深度判断两个对象字段相同
2019/06/14 Javascript
layui 富文本编辑器和textarea值的相互传递方法
2019/09/18 Javascript
vue.js封装switch开关组件的操作
2020/10/26 Javascript
Python DataFrame设置/更改列表字段/元素类型的方法
2018/06/09 Python
python中itertools模块zip_longest函数详解
2018/06/12 Python
解决Tensorflow安装成功,但在导入时报错的问题
2018/06/13 Python
python基于itchat模块实现微信防撤回
2019/04/29 Python
Python学习笔记之函数的定义和作用域实例详解
2019/08/13 Python
opencv转换颜色空间更改图片背景
2019/08/20 Python
python函数的作用域及关键字详解
2019/08/20 Python
pycharm新建Vue项目的方法步骤(图文)
2020/03/04 Python
pycharm解决关闭flask后依旧可以访问服务的问题
2020/04/03 Python
美国校服网上商店:French Toast
2019/10/08 全球购物
音乐教师个人总结
2015/02/06 职场文书
2015新生加入学生会自荐书
2015/03/24 职场文书
2015年领导班子工作总结
2015/05/23 职场文书
SQL实现LeetCode(178.分数排行)
2021/08/04 MySQL
win10滚动条自动往上跑怎么办?win10滚动条自动往上跑的解决方法
2022/08/05 数码科技