deepdiff icon indicating copy to clipboard operation
deepdiff copied to clipboard

DeepDiff: Deep Difference and search of any Python object/data. DeepHash: Hash of any object based on its contents. Delta: Use deltas to reconstruct objects by adding deltas together.

Results 114 deepdiff issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** We use `DeepDiff` with great success to compare the states of different systems, thanks a lot! However, the descriptions in...

enhancement

When comparing extremely large objects sometimes I wish to specify only the paths I wish to diff rather than exclude a very large number of paths. (sometime regex is not...

I have some keys in my dicts with values coming from larger text files, if I change only one word and use the `diff.pretty()` it shows the whole old text...

I'd like to compare a dictionary where some of the expected values are regex to be matched to matching string values. eg. something along: ```python actual = { 'a': 'abcd',...

enhancement

**Describe the bug** Hi, I'm not experienced with python packaging so apologies in advance if I've missed the mark here. We're using `deepdiff` in a lambda that we're building with...

**Describe the bug** pathlib.PosixPath values are 'unprocessed' **To Reproduce** ```python from deepdiff import DeepDiff t1 = {'path': PosixPath('/foo/bar/'), } t2 = {'path': PosixPath('/foo/bar/'), } ddiff = DeepDiff(t1, t2, ignore_order=True) ```...

I would like to use DeepDiff to compare two dictionnaries of numpy types. This is mainly to make sure the column I have in a pandas dataframe have the expected...

**Is your feature request related to a problem? Please describe.** Im running DeepDiff on list of dict which has 500k element. The runtime is quite time-sensitive. It would be great...

I want to be able to do operations on the parent of a DeepSearch result. I've tried with the `extract` function, but it returns the value of the matched path....