您好,登錄后才能下訂單哦!
這篇文章主要介紹“Python deepdiff庫怎么使用”,在日常操作中,相信很多人在Python deepdiff庫怎么使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Python deepdiff庫怎么使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
pip install deepdiff
deepdiff模塊常用來校驗兩個對象是否一致,并找出其中差異之處,它提供了:
deepdiff模塊常用來校驗兩個對象是否一致,并找出其中差異之處,它提供了:
DeepDiff:比較兩個對象,對象可以是字段、字符串等可迭代的對象
DeepSearch:在對象中搜索其他對象
DeepHash:根據對象的內容進行哈希處理
作用:比較兩個對象,對象可以是字段、字符串等可迭代的對象
說明:
type_changes:類型改變的key
values_changed:值發生變化的key
dictionary_item_added:字典key添加
dictionary_item_removed:字段key刪除
# -*-coding:utf-8一*- # @Time:2023/4/16 # @Author: DH from deepdiff import DeepDiff # json校驗 json_one = { 'code': 0, "message": "失敗", 'data': { 'id': 1 } } json_two = { 'code': 1, "message": "成功", 'data': { 'id': 1 } } print(DeepDiff(json_one, json_two)) # 輸出 """ {'values_changed': {"root['code']": {'new_value': 1, 'old_value': 0}, "root['message']": {'new_value': '成功', 'old_value': '失敗'}}} root['code'] : 改變值的路徑 new_value : 新值 old_value :原值 """
cutoff_distance_for_pairs: (1 >= float > 0,默認值=0.3);通常結合ignore_order=true使用,用于結果中展示差異的深度。值越高,則結果中展示的差異深度越高。
from deepdiff import DeepDiff t1 = [[[1.0, 666], 888]] t2 = [[[20.0, 666], 999]] print(DeepDiff(t1, t2, ignore_order=True, cutoff_distance_for_pairs=0.5)) print(DeepDiff(t1, t2, ignore_order=True)) # 默認為0.3 print(DeepDiff(t1, t2, ignore_order=True, cutoff_distance_for_pairs=0.2)) """ {'values_changed': {'root[0][0]': {'new_value': [20.0, 666], 'old_value': [1.0, 666]}, 'root[0][1]': {'new_value': 999, 'old_value': 888}}} {'values_changed': {'root[0]': {'new_value': [[20.0, 666], 999], 'old_value': [[1.0, 666], 888]}}} {'values_changed': {'root[0]': {'new_value': [[20.0, 666], 999], 'old_value': [[1.0, 666], 888]}}} """
ignore_string_type_changes :忽略校驗字符串類型,默認為False
print(DeepDiff(b'hello', 'hello', ignore_string_type_changes=True)) print(DeepDiff(b'hello', 'hello')) """ 輸出: {} {'type_changes': {'root': {'old_type': <class 'bytes'>, 'new_type': <class 'str'>, 'old_value': b'hello', 'new_value': 'hello'}}} """
ignore_string_case:忽略大小寫,默認為False
from deepdiff import DeepDiff print(DeepDiff(t1='Hello', t2='heLLO')) print(DeepDiff(t1='Hello', t2='heLLO', ignore_string_case=True)) """ 輸出: {'values_changed': {'root': {'new_value': 'heLLO', 'old_value': 'Hello'}}} {} """
作用:在對象中搜索其他對象 查找字典key/value
from deepdiff import DeepSearch json_three = { 'code': 1, "message": "成功", 'data': { 'id': 1 } } # 查找key print(DeepSearch(json_three, "code")) print(DeepSearch(json_three, "name")) # 查找value print(DeepSearch(json_three, 1)) """ 輸出: {'matched_paths': ["root['code']"]} {} {'matched_values': ["root['code']", "root['data']['id']"]} """ # 正則 use_regexp obj = ["long somewhere", "string", 0, "somewhere great!"] # 使用正則表達式 item = "some*" ds = DeepSearch(obj, item, use_regexp=True) print(ds) # 強校驗 strict_checking 默認True item = '0' ds = DeepSearch(obj, item, strict_checking=False) # ds = DeepSearch(obj, item) # 默認True print(ds) # 大小寫敏感 case_sensitive 默認 False 敏感 item = 'someWhere' ds = DeepSearch(obj, item, case_sensitive=True) print(ds)
作用:根據對象的內容進行哈希處理
from deepdiff import DeepHash # 對對象進行hash json_four = { 'code': 1, "message": "成功", 'data': { 'id': 1 } } print(DeepHash(json_four))
extract : 根據路徑查詢值
from deepdiff import extract # 根據路徑查詢值 obj = {1: [{'2': 666}, 3], 2: [4, 5]} path = "root[1][0]['2']" value = extract(obj, path) print(value) """ 輸出: 666 """
搜索
from deepdiff import grep obj = ["long somewhere", "string", 0, "somewhere great!"] item = "somewhere" ds = obj | grep(item) print(ds) # use_regexp 為True 表示支持正則 obj = ["something here", {"long": "somewhere", "someone": 2, 0: 0, "somewhere": "around"}] ds = obj | grep("some.*", use_regexp=True) print(ds) # 根據值查詢路徑 obj = {1: [{'2': 'b'}, 3], 2: [4, 5, 5]} result = obj | grep(5) print(result) """ 輸出: {'matched_values': ['root[2][1]', 'root[2][2]']} """
到此,關于“Python deepdiff庫怎么使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。