一、介紹
- JsonPath 是一種信息抽取類庫,是從JSON文檔中抽取指定信息的工具诵闭,提供多種語言實現(xiàn)版本,包括 Javascript、Python颈抚、PHP 和 Java
- 和jmeter中的JSON提取器很像
二、使用
1. JsonPath語法
語法 | 實例 | 描述 |
---|---|---|
$ |
$.property | 根節(jié)點,也是所有jsonpath表達式的開始叫榕,獲取子節(jié)點的"property"key值 |
. |
$.property | 獲取子節(jié)點的"property"key值 |
.. |
$..property | 獲取子節(jié)點及以下所有子節(jié)點的"property"key值 |
[] |
$.property[0] | 獲取子節(jié)點的"property"列表中第1個值 |
[, ] |
$.property[0, 1] | 獲取子節(jié)點的"property"列表中第1和第2個值 |
[start:end:step] |
$.property[1:5:2] | 按照固定間隔,獲取子節(jié)點的"property"列表中指定位置的值伶选,即第1和第3個值 |
* |
$.property[*] | 獲取子節(jié)點的"property"列表中所有值 |
@ |
$.data[?(@.age)]、$.data[(@.length-1)] | 一般跟?() 或() 一起使用。表示獲取data列表中所有值中帶"age"key的值、獲取data列表中第x個值葵姥,x等于data列表總長度-1 |
?() |
$.data[?(@.age)] | 表示過濾操作。一般跟@ 一起使用。表示獲取data列表中所有值中帶"age"key的值 |
$.property.* |
無 | 獲取"property"key值中所有的值 |
$.property1.property2 |
無 | 獲取"property1"key值中的"property2"key值 |
1.1 語法中的過濾操作
過濾操所對應符號 | 實例 | 描述 |
---|---|---|
== | $..book[?(@.price==10)] | 等于 |
!= | $..book[?(@.price!=10)] | 不等于 |
< | $..book[?(@.price<10)] | 小于 |
<= | $..book[?(@.price<=10)] | 小于或等于 |
> | $..book[?(@.price>10)] | 大于 |
>= | $..book[?(@.price>=10)] | 大于或等于 |
注意:多個條件過濾使用&&
連接,比如$..book[?(@.category=="fiction"&&@.price<10)]
2. 安裝
需要安裝JsonPath庫才能使用提取功能
pip install jsonpath
3. 使用
在使用 JsonPath 的時候一般是使用它里面的jsonpath函數(shù),即jsonpath.jsonpath()
jsonpath.jsonpath(obj, expr)
-
obj
:JSONPath 表達式操作對象
注意:操作對象是Python中的字典數(shù)據(jù)類型(dict) -
expr
:JSONPath 表達式,用于指定要提取的值的路徑
注意:
1.如果表達式錯誤羽峰,匹配結果則返回False(布爾類型的值)
2.如果表達式正確,匹配失敗則返回False(布爾類型的值)计雌,匹配成功則返回一個列表list
3.如果原數(shù)據(jù)中有多個滿足匹配的value妈橄,則按原數(shù)據(jù)中的value順序依次存到list中返回
三、實例
1. 實例一
data = { "store": {
"book": [
{ "category": "reference",
"author": "Nigel Rees",
"title": "Sayings of the Century",
"price": 8.95
},
{ "category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{ "category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{ "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
}
}
}
匹配表達式如下:
JSONPath 表達式 | 含義 |
---|---|
$.store.book[*].author | 商店中所有書籍的作者 |
$..author | 所有作者 |
$.store.* | 商店中所有東西 |
$.store..price | 商店中所有東西的價格 |
$..book[2] | 第三本書 |
$..book[(@.length-1)] | 最后一本書 |
$..book[-1:] | 最后一本書 |
$..book[0,1] | 前兩本書 |
$..book[:2] | 前兩本書 |
$..book[0::2] | 從第1本書開始獲取,每隔2本即第2次獲取的是第3本書,依次類推 |
$..book[?(@.isbn)] | 過濾所有帶isbn key的書籍 |
$..book[?(@.price<10)] | 過濾所有價格小于10的書籍 |
$..book[?(@.category=="fiction")] | 過濾所有category 為fiction 的書籍 |
$..book[?(@.category=="fiction"&&@.price<10)] | 過濾所有category 為fiction 且價格少于10的書籍 |
$..* | 獲取所有數(shù)據(jù) |
print(f"$.store.book[*].author:{jsonpath.jsonpath(data, '$.store.book[*].author')}")
print(f"$.store.*:{jsonpath.jsonpath(data, '$.store.*')}")
print(f"$.store..price:{jsonpath.jsonpath(data, '$.store..price')}")
print(f"$..book[2]:{jsonpath.jsonpath(data, '$..book[2]')}")
print(f"$..book[(@.length-1)]:{jsonpath.jsonpath(data, '$..book[(@.length-1)]')}")
print(f"$..book[-1:]:{jsonpath.jsonpath(data, '$..book[-1:]')}")
print(f"$..book[0,1]:{jsonpath.jsonpath(data, '$..book[0,1]')}")
print(f"$..book[:2]:{jsonpath.jsonpath(data, '$..book[:2]')}")
print(f"$..book[0::2]:{jsonpath.jsonpath(data, '$..book[0::2]')}")
print(f"$..book[?(@.isbn)]:{jsonpath.jsonpath(data, '$..book[?(@.isbn)]')}")
print(f"$..book[?(@.price<10)]:{jsonpath.jsonpath(data, '$..book[?(@.price<10)]')}")
print(f'''$..book[?(@.category=="fiction")]:{jsonpath.jsonpath(data, '$..book[?(@.category=="fiction")]')}''')
print(f'''$..book[?(@.category=="fiction"&&@.price<10)]:{jsonpath.jsonpath(data, '$..book[?(@.category=="fiction"&&@.price<10)]')}''')
print(f"$..*:{jsonpath.jsonpath(data, '$..*')}")
輸出結果如下:
$.store.book[*].author:['Nigel Rees', 'Evelyn Waugh', 'Herman Melville', 'J. R. R. Tolkien']
$.store.*:[[{'category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}, {'category': 'fiction', 'author': 'Evelyn Waugh', 'title': 'Sword of Honour', 'price': 12.99}, {'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}, {'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}], {'color': 'red', 'price': 19.95}]
$.store..price:[8.95, 12.99, 8.99, 22.99, 19.95]
$..book[2]:[{'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}]
$..book[(@.length-1)]:[{'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}]
$..book[-1:]:[{'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}]
$..book[0,1]:[{'category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}, {'category': 'fiction', 'author': 'Evelyn Waugh', 'title': 'Sword of Honour', 'price': 12.99}]
$..book[:2]:[{'category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}, {'category': 'fiction', 'author': 'Evelyn Waugh', 'title': 'Sword of Honour', 'price': 12.99}]
$..book[0::2]:[{'category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}, {'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}]
$..book[?(@.isbn)]:[{'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}, {'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}]
$..book[?(@.price<10)]:[{'category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}, {'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}]
$..book[?(@.category=="fiction")]:[{'category': 'fiction', 'author': 'Evelyn Waugh', 'title': 'Sword of Honour', 'price': 12.99}, {'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}, {'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}]
$..book[?(@.category=="fiction"&&@.price<10)]:[{'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}]
$..*:[{'book': [{'category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}, {'category': 'fiction', 'author': 'Evelyn Waugh', 'title': 'Sword of Honour', 'price': 12.99}, {'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}, {'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}}, [{'category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}, {'category': 'fiction', 'author': 'Evelyn Waugh', 'title': 'Sword of Honour', 'price': 12.99}, {'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}, {'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}], {'color': 'red', 'price': 19.95}, {'category': 'reference', 'author': 'Nigel Rees', 'title': 'Sayings of the Century', 'price': 8.95}, {'category': 'fiction', 'author': 'Evelyn Waugh', 'title': 'Sword of Honour', 'price': 12.99}, {'category': 'fiction', 'author': 'Herman Melville', 'title': 'Moby Dick', 'isbn': '0-553-21311-3', 'price': 8.99}, {'category': 'fiction', 'author': 'J. R. R. Tolkien', 'title': 'The Lord of the Rings', 'isbn': '0-395-19395-8', 'price': 22.99}, 'reference', 'Nigel Rees', 'Sayings of the Century', 8.95, 'fiction', 'Evelyn Waugh', 'Sword of Honour', 12.99, 'fiction', 'Herman Melville', 'Moby Dick', '0-553-21311-3', 8.99, 'fiction', 'J. R. R. Tolkien', 'The Lord of the Rings', '0-395-19395-8', 22.99, 'red', 19.95]
注意:在java中的jsonpath庫支持.length方法,但是python的jsonpath庫是不支持.length方法
2. 實例二
data = [
{
"data": 123,
"num": 100
},
{
"data": 456,
"num": 200
}
]
print(f'''$.[1]:{jsonpath.jsonpath(data, "$.[1]")}''')
輸出結果如下:
$.[1]:[{'data': 456, 'num': 200}]