Articles with the tag « diff » :

Python Dictdiffer - diff between two dictionaries

in «tip» by Michael Beard
Tags: , , , ,

Get a rational difference between two dictionaries

Dictdiffer is a helper module that helps you to diff and patch dictionaries.

Dictdiffer

from dictdiffer import diff, patch, swap, revert

first = {
    "title": "hello",
    "fork_count": 20,
    "stargazers": ["/users/20", "/users/30"],
    "settings": {
        "assignees": [100, 101, 201],
    }
}

second = {
    "title": "hellooo",
    "fork_count": 20,
    "stargazers": ["/users …