Python中JsonPath提取器和正则提取器

作者:炫酷的腿毛! 时间:2022-08-27 14:12:20 

一、前言

我们一般在做接口关联时,会通过保存中间变量实现接口关联,在关联时就需要用到变量提取,那今天我们就介绍接口自动化中变量提取的两大神器:正则提取器和JsonPath提取器。

1.1 正则提取器

正则提取(正则表达式只能提取字符串的数据)

1、re.seach:只匹配一个值,通过下标[1]取值,没有匹配到返回None
2、re.findall:匹配多个值,返回列表list,多个值通过下标取值,没有返回None

1.2 正则示例:

import re
import requests

a = requests.get("http://www.baidu.com")
# print(a.text)

b = re.search('charset=(.*?)><meta http-equiv=X-UA-Compatible content=IE=Edge>', a.text)
print(b)
print(b.group())
print(b.groups())
print(b.group(1))

结果:

<re.Match object; span=(94, 157), match='charset=utf-8><meta http-equiv=X-UA-Compatible co>
charset=utf-8><meta http-equiv=X-UA-Compatible content=IE=Edge>
('utf-8',)
utf-8

匹配通配符:

我们一般用(.*?)和(.+?)来匹配我们需要提取的数值

解释:

  • . 表示任意一个字符

  • + 表示匹配它前面的表达式1次或者多次

  • * 表示匹配它前面的表达式0次或者多次

  • ? 表示匹配它前面的表达式1次或者多次

token = re.search('"token":"(.*?)",',res.text)[1]
print("token1:%s",%token)

token = re.findall('"token":"(.*?)",'res.text)
print("token2:%s",%token)

1.3 JsonPath提取器

JsonPath提取(JsonPath只能提取json格式的数据)

jsonpath.jsonpath ,返回的是一个list,通过下标取值,没有返回None

JsonPath语法

符号描述
$查询的根节点对象,用于表示一个json数据,可以是数据或者对象
@过滤器,处理的当前节点对象
*获取所有节点
.获取子节点
. .递归搜索,筛选所有符合条件的节点
?()过滤器表达式,筛选操作
[a]或者[a,b]迭代器下标,表示一个或多个数组下标

1.4 JsonPath提取器具体使用

下面使用一个JSON文档演示JSONPath的具体使用。JSON 文档的内容如下:

{
 "store": {
   "book":[
     { "category": "reference",
       "author": "Nigel Rees",
       "title": "Sayings of the Century",
       "price": 8.95
     },
     { "category": "fiction",
       "author": "J. R. R. Tolkien",
       "title": "The Lord of the Rings",
       "isbn": "0-395-19395-8",
       "price": 22.99
     }
   ],
   "bicycle": {
     "color": "red",
     "price": 19.95
   }
 }
}

1、假设变量bookJson中已经包含了这段json字符串,可以通过一下代码反序列化得到json对象:

books=json.loads(bookJson)

2、查看store下的bicycle的color属性

checkurl = "$.store.bicycle.color"
print(jsonpath.jsonpath(data, checkurl))
# 输出:['red']  

3、输出book节点中包含的所有对象

checkurl = "$.store.book[*]"
object_list = jsonpath.jsonpath(data, checkurl)
print(object_list)

#输出
[{'category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}, 
{'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}]

4、输出book节点的第一个对象

checkurl = "$.store.book[0]"
obj = jsonpath.jsonpath(data, checkurl)
print(obj)
# 输出: ['category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}]

5、输出book节点中所有对象对应的属性title值

checkurl = "$.store.book[*].title"
titles = jsonpath.jsonpath(data, checkurl)
print(titles)
# 输出: ['Sayings of the Century', 'The Lord of the Rings']

6、输出book节点中category为fiction的所有对象

checkurl = "$.store.book[?(@.category=='fiction')]"
books=jsonpath.jsonpath(data, checkurl)
print(books)
#输出
[{'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}]

7、输出book节点中所有价格小于10的对象

checkurl="$.store.book[?(@.price<10)]"
books = jsonpath.jsonpath(data, checkurl)
print(books)
# 输出: [{'category': 'reference', 'author': 'Nigel Rees', 'title':'Sayings of the Century', 'price': 8.95}]

8、输出book节点中所有含有isb的对象

checkurl = "$.store.book[?(@.isbn)]"
books = jsonpath.jsonpath(data,checkurl)
print(books)
# 输出: [{'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}]

来源:https://blog.csdn.net/weixin_44244493/article/details/129766306

标签:JsonPath,提取器,Python
0
投稿

猜你喜欢

  • javascript修改图片src的方法

    2024-04-17 10:40:29
  • kali 2021新手安装教程与配置图文详解

    2022-04-18 01:32:36
  • webpack动态加载与打包方式

    2024-04-23 09:16:10
  • 如何编写CSS代码才能更有效率

    2007-11-07 18:51:00
  • 用Python编写一个漏洞验证脚本

    2022-03-23 02:30:43
  • python matplotlib库直方图绘制详解

    2023-01-19 06:38:34
  • python实现余弦相似度文本比较的示例

    2023-01-18 09:17:48
  • IE对CSS样式表的限制和解决方案

    2008-04-28 12:27:00
  • 微信小程序获取当前位置的详细步骤

    2024-04-08 10:52:09
  • Python reques接口测试框架实现代码

    2023-10-07 12:47:08
  • Python实现七彩蟒蛇绘制实例代码

    2022-04-28 20:03:37
  • python距离测量的方法

    2022-12-05 18:27:45
  • JavaScript选取(picking)和反选(rejecting)对象的属性方法

    2023-08-24 22:28:47
  • MySQL数据库优化推荐的编译安装参数小结

    2024-01-23 09:32:33
  • 在 Windows 下搭建高效的 django 开发环境的详细教程

    2023-08-31 06:14:12
  • Python文件夹批处理操作代码实例

    2022-12-15 12:58:55
  • python基础之reverse和reversed函数的介绍及使用

    2022-10-19 19:12:18
  • python语言元素知识点详解

    2023-07-30 03:33:08
  • mysql闪回工具binlog2sql安装配置教程详解

    2024-01-27 14:12:11
  • 对MySQL慢查询日志进行分析的基本教程

    2024-01-22 20:32:35
  • asp之家 网络编程 m.aspxhome.com