We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5ffdcdd + 10a1174 commit 0d11d08Copy full SHA for 0d11d08
README.md
@@ -165,7 +165,7 @@ Let's say you have a huge nested object and want to see if any item with the wor
165
```py
166
from deepdiff import DeepSearch
167
obj = {"long": "somewhere", "string": 2, 0: 0, "somewhere": "around"}
168
-ds = DeepSearch(obj, item, verbose_level=2)
+ds = DeepSearch(obj, "somewhere", verbose_level=2)
169
print(ds)
170
```
171
@@ -187,7 +187,7 @@ Just grep through your objects as you would in shell!
187
188
from deepdiff import grep
189
190
-ds = obj | grep(item)
+ds = obj | grep("somewhere")
191
192
193
0 commit comments