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 126 deepdiff issues
Sort by recently updated
recently updated
newest added

Creating a new issue from, https://github.com/seperman/deepdiff/issues/194#issuecomment-631799918 using the current dev branch as of today other than adding a wrapper on the __init__ method. I did try to add the decorator...

**Is your feature request related to a problem? Please describe.** I have certain expected changes in 2 dicts but deepdiff throws error for such changes. Is their any way to...

I compare two dictionaries.. The first comes from a excel file and the second from an application. In the first, all numbers (int, float) are some strings. Example : d1...

**Describe the bug** Comparing values of type int and float based on the settings: number_format_notation='e' ignore_numeric_type_changes=True fail on compares like. key=41 with key=41.0. Does not happen with settings: number_format_notation='f' ignore_numeric_type_changes=True...

bug

I wondered if there's a way to make it easier to use the outputs of DeepSearch in order to change the contents of a nested dict (e.g., a JSON data...

enhancement

I often find myself doing something like this 1. Diff two objects, 2. Do something if a key has changed. _This may or may not care what has changed about...

It's currently possible to exclude types from `DeepDiff` and `DeepSearch` using the `exclude_types` kwarg. However, it's not possible to exclude certain values. Here's an example of what I'm looking for:...

enhancement

Hi there. I was hoping to use deepdiff to compare schemas of my pyspark dataframes, since pyspark comes with no good utility to do it. I've run into an issue...

I have two dictionaries coming from two different data sources one of which unfortunately messes up the case. I was planning to add an option to ignore_case which applies on...

enhancement
help wanted

hi, I have to manage a batch of yaml/json files under git, the default `git diff` shows the text line based diff, which make no sense for object differences in...